:root {
    --slant: 24px;
    --tab-radius: 10px;
}

.k-hp-control-outer {
    --outer-slant: 30px;
    background: #E5F8F0;
    padding: 6px 10px;
    clip-path: polygon(var(--outer-slant) 0%, 100% 0%, calc(100% - var(--outer-slant)) 100%, 0% 100%);
    display: inline-block;
}

.k-hp-control-wrapper {
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}

.k-hp-control-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
    user-select: none;
}

.k-hp-control-item-wrapper {
    position: relative;
    z-index: 1;
}

.k-hp-control-item-wrapper + .k-hp-control-item-wrapper {
    margin-left: calc(-1 * var(--slant));
}

.k-hp-control-item-wrapper:hover {
    z-index: 2;
}

.k-hp-control-item-wrapper:has(span.active) {
    z-index: 3;
}

.k-hp-control-item-wrapper > span {
    display: block;
    position: relative;
    padding: 12px 28px 12px 36px;
    line-height: 1.1;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    color: #0E1A1F;
    background: #E8EFF3;
    /* border-radius: var(--tab-radius); */
    clip-path: polygon(var(--slant) 0%, 100% 0%, calc(100% - var(--slant)) 100%, 0% 100%);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    cursor: pointer;
    text-transform: capitalize;
}

.k-hp-control-item-wrapper > span:hover {
    background: #dbe7ed;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.k-hp-control-item-wrapper > span.active {
    color: #fff;
    background: linear-gradient(180deg, #0CA138 0%, #004035 100%);
    box-shadow: 0 8px 20px rgba(13, 95, 178, 0.35);
}

.k-hp-control-item-wrapper > span.active::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: var(--tab-radius);
    clip-path: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.k-hp-pt-list-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.k-hp-pt-list-item-wrapper {
    flex: 0 0 32%;
    max-width: 32%;
}

.k-hp-pt-list-item-inner {
    padding: 36px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e2e2e2;
    transition: all 0.25s;
}

.k-hp-pt-list-item-inner:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.k-hp-pt-li-name-wrapper {
    color: #0CA138;
    font-size: 36px;
    line-height: 36px;
    font-weight: 700;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e2e2;
}

.k-hp-pt-li-price-wrapper {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e2e2e2;
}

.k-hp-pt-li-price-wrapper span {
    color: #0CA138;
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
}

.k-hp-li-details-item-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.k-hp-li-details-item-wrapper svg {
    width: 28px;
    height: 28px;
    padding: 4px;
    margin-right: 6px;
    background: #E0FFEA;
    border-radius: 50%;
}

.k-hp-li-details-item-wrapper b {
    margin-left: 4px;
}

.k-hp-li-register-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.k-hp-li-register-inner {
    display: flex;
    align-items: center;
    background: #FFA500;
    border-radius: 4px;
    border: 1px solid #FFA500;
    padding: 8px 16px;
    color: #004035;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.5s;
}

.k-hp-li-register-inner svg {
    width: 22px;
    height: 22px;
    margin-left: 8px;
}

.k-hp-li-register-inner svg path {
    transition: all 0.5s;
}

.k-hp-li-register-inner:hover {
    background: #004035;
    color: #FFA500;
}

.k-hp-li-register-inner:hover svg path {
    fill: #FFA500;
}

.k-hp-pt-list-center-item-wrapper .k-hp-pt-list-item-inner {
    background: #E5F8F0;
    margin-top: -36px;
    border: 1px solid #0CA138;
}

.k-hp-pt-list-center-item-wrapper .k-hp-li-details-item-wrapper svg {
    background: #fff;
}

.kanos-home-price .kanos-home-banner-heading {
    text-align: center;
}
.k-hp-li-details-button-wrapper {
    /* text-align: center;
    margin-top: 24px; */
}
.k-hp-li-details-button-wrapper {
    /* display: flex;
    justify-content: center;
    margin-top: 24px; */
}

.k-hp-li-details-button-inner {
    /* --slant: 20px;
    --radius: 8px;
    display: inline-block;
    clip-path: polygon(var(--slant) 0%, 100% 0%, calc(100% - var(--slant)) 100%, 0% 100%);
    border-radius: var(--radius);
    background: linear-gradient(180deg, #0CA138 0%, #004035 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease; */
}

.k-hp-li-details-button {
    /* display: block;
    padding: 10px 36px 10px 36px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--radius);
    transition: background 0.3s ease, color 0.3s ease; */
}

.k-hp-li-details-button-inner:hover {
    /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); */
}
.k-hp-li-details-button:hover {
    /* color: #fff !important */
}


.k-hp-li-details-button-wrapper .cta {
    display: flex;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    line-height: 18px;
    color: white;
    background: linear-gradient(180deg, #0CA138 0%, #004035 100%);
    transition: 1s;
    box-shadow: 6px 6px 0 #999999;
    transform: skewX(-15deg);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.k-hp-li-details-button-wrapper .cta span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

.k-hp-li-details-button-wrapper .cta:focus {
    outline: none;
}

.k-hp-li-details-button-wrapper .cta:hover {
    transition: 0.5s;
    box-shadow: 10px 10px 0 #0CA138;
}

.k-hp-li-details-button-wrapper .cta .second {
    transition: 0.5s;
    margin-right: 0px;
}

.k-hp-li-details-button-wrapper .cta:hover .second {
    transition: 0.5s;
    margin-right: 12px;
}

.k-hp-li-details-button-wrapper .span {
    transform: skewX(15deg);
}

.k-hp-li-details-button-wrapper .second {
    width: 20px;
    margin-left: 12px;
    position: relative;
    top: 12%;
}

.k-hp-li-details-button-wrapper .one {
    transition: 0.4s;
    transform: translateX(-60%);
}

.k-hp-li-details-button-wrapper .two {
    transition: 0.5s;
    transform: translateX(-30%);
}

.k-hp-li-details-button-wrapper .cta:hover .three {
    animation: color_anim 1s infinite 0.2s;
}

.k-hp-li-details-button-wrapper .cta:hover .one {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.6s;
}

.k-hp-li-details-button-wrapper .cta:hover .two {
    transform: translateX(0%);
    animation: color_anim 1s infinite 0.4s;
}

@keyframes color_anim {
    0% {
        fill: white;
    }

    50% {
        fill: #FFA500;
    }

    100% {
        fill: white;
    }
}
.k-hp-li-details-button-wrapper {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
.k-hp-li-details-button-inner {
    width: 190px;
}