/* Pricing 1 ---------------------------------- */
.checklist {
    li {
        &.unavailable {
            >i {
                color: $body-color;
            }
        }
    }
}

.price-card {
    --space-x: 40px;
    --space-y: 40px;
    background-color: $smoke-color;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;

    &_top {
        background-color: $title-color;
        position: relative;
        z-index: 2;
        padding: var(--space-y) 0;
        overflow: hidden;
        transition: 0.4s ease-in-out;

        &:before,
        &:after {
            content: '';
            position: absolute;
            height: 110px;
            width: 110px;
            background-color: $theme-color;
            opacity: 0.6;
            border-radius: 50%;
            transition: 0.4s ease-in-out;
            z-index: -1;
        }

        &:before {
            top: -73px;
            left: -28px;
        }

        &:after {
            left: -73px;
            top: -28px;
        }
    }

    &_title {
        font-size: 30px;
        margin-top: -0.3em;
        margin-bottom: 4px;
        color: $white-color;
        padding: 0 var(--space-x);
        position: relative;
        z-index: 3;
    }

    &_text {
        color: $white-color;
        padding: 0 var(--space-x) 28px var(--space-x);
        margin-bottom: 35px;
        border-bottom: 2px solid;
        border-image: linear-gradient(to left, $title-color 27%, $theme-color 100%);
        border-image-slice: 1;
        transition: 0.4s ease-in-out;
    }

    &_price {
        font-size: 30px;
        font-weight: bold;
        line-height: 1;
        margin: -0.09em 0;
        color: $white-color;
        padding: 0 var(--space-x);
        position: relative;
        width: fit-content;

        .duration {
            font-size: 16px;
            font-weight: 400;
            color: $white-color;
            margin-bottom: 0;
            position: relative;
            top: -1px;
            left: -4px;
        }
    }

    .particle {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 190px;
        height: 165px;
        transition: 0.4s ease-in-out;
        clip-path: path("M182 165L0.5 164L11 111L51 55.5L110 13L182 0V165Z");
    }

    &_content {
        padding: var(--space-y) var(--space-x);
    }

    .checklist {
        margin: -5px 0 32px 0;
    }

    .th-btn {
        background-color: $title-color;
        box-shadow: none;

        &:before,
        &:after {
            background-color: $theme-color;
        }
    }

    &:hover {
        .particle {
            filter: brightness(0) invert(1);
        }

        .price-card {
            &_top {

                &:before,
                &:after {
                    opacity: 1;
                    height: 120%;
                    width: 120%;
                    border-radius: 0;
                    background-color: $theme-color;
                }
            }

            &_text {
                border-image: linear-gradient(to left, $theme-color 27%, $white-color 100%);
                border-image-slice: 1;
            }
        }
    }
}

@include vxs {
    .price-card {
        --space-x: 30px;
        --space-y: 30px;

        &_text {
            font-size: 14px;
        }

        &_title,
        &_price {
            font-size: 26px;
        }
    }
}

@media (max-width: 350px) {
    .price-card {
        --space-x: 20px;
        --space-y: 40px;
    }
}




/* Pricing 2 ---------------------------------- */
.available-list {
    padding-left: 30px;

    @include xs {
        padding: 0;
    }

    ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    li {
        position: relative;
        font-family: $body-font;
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        padding-left: 30px;
        margin-bottom: 10px;
        text-transform: capitalize;
        color: $body-color;

        &:after {
            content: "\f058";
            font-family: var(--icon-font);
            font-weight: 600;
            color: var(--theme-color);
            font-size: 1.1em;
            position: absolute;
            top: 1px;
            left: 0;
        }

        &.unavailable {
            &:after {
                content: "\f058";
                right: 4px;
                color: $body-color;
                font-weight: 400;
            }
        }

        img {
            max-width: 18px;
            margin-right: 10px;
        }

        &:last-child {
            margin-bottom: 0;
        }

        &.unavailable {
            font-weight: 400;
            color: $body-color;

            img {
                opacity: 0.2;
            }
        }
    }

}

.price-box {
    position: relative;
    border-radius: 15px;
    border: 1px solid #E3EEFE;
    background: $white-color;
    padding: 50px;
    margin-top: 30px;
    transition: 0.4s;
    z-index: 1;

    @include md {
        padding: 40px;
    }

    @include xs {
        padding: 30px;
    }

    .offer-tag {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border-radius: 0;
        padding: 0;
        z-index: -1;

        .tag {
            text-align: center;
            transform: rotate(45deg);
            position: relative;
            padding: 7px 0;
            left: -31px;
            top: 25px;
            width: 210px;
            font-size: 14px;
            font-weight: 400;
            font-family: $body-font;
            letter-spacing: -0.408px;
            background-color: $theme-color;
            color: $white-color;
            display: inline-block;
        }
    }

    &.active {
        border: 1px solid $theme-color;
        transform: translateY(-30px);

        .offer-tag {
            opacity: 1;
            visibility: visible;
        }
    }

    .box-title {
        font-weight: 600;
        letter-spacing: -0.48px;
    }

    &_text {
        font-family: $title-font;
        color: $title-color;
        font-weight: 600;
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #D9D9D9;

        @include md {
            font-size: 16px;
        }

        @include xs {
            font-size: 14px;
        }
    }

    &_price {
        font-family: $title-font;
        color: $title-color;
        font-size: 48px;
        font-weight: 700;
        letter-spacing: -0.96px;
        margin-bottom: -0.2rem;
    }

    .available-list {
        padding: 0;
        margin-bottom: 35px;

        li {
            &:after {
                content: "\f00c";
                color: $body-color;
            }
        }
    }



    &:hover {

        .price-box {
            &_icon {
                img {
                    transform: rotateY(180deg);
                }
            }
        }
    }

    &.style3 {
        background-color: #16181D;
        border-radius: 20px;
        border: none;
        padding: 50px;

        @include md {
            padding: 40px;
        }

        .offer-tag {
            .tag {
                background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%);
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                text-transform: uppercase;
            }
        }

        &.active {
            border: 1px solid $theme-color;
            transform: translateY(-30px);

            .offer-tag {
                opacity: 1;
                visibility: visible;
            }
        }

        .price-box {
            &_text {
                color: #8D929C;
                font-weight: 400;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            &_price {
                font-weight: 600;
                font-size: 40px;
                color: $white-color;
                margin-bottom: 10px;
            }

            &_text2 {
                margin-bottom: 32px;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: #8D929C;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .box-title {
            font-weight: 600;
            font-size: 30px;
            color: $white-color;
            margin-bottom: 7px;
        }

        .available-list {
            li {
                &:after {
                    background: linear-gradient(180deg, $theme-color 0%, $theme-color2 100%);
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                    display: block;
                    text-align: center;
                    border-radius: 30px;
                    color: $title-color;
                    font-size: 10px;

                }
            }
        }
    }

    &.style4 {
        background-color: #16181D;
        border-radius: 20px;
        border: none;
        padding: 50px;

        @include md {
            padding: 40px;
        }

        .offer-tag {
            .tag {
                background: $theme-color;
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                text-transform: uppercase;
            }
        }

        &.active {
            border: 1px solid $theme-color;
            transform: translateY(-30px);

            .offer-tag {
                opacity: 1;
                visibility: visible;
            }
        }

        .price-box {
            &_text {
                color: #8D929C;
                font-weight: 400;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            &_price {
                font-weight: 600;
                font-size: 40px;
                color: $white-color;
                margin-bottom: 10px;
            }

            &_text2 {
                margin-bottom: 32px;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: #8D929C;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .box-title {
            font-weight: 600;
            font-size: 30px;
            color: $white-color;
            margin-bottom: 7px;
        }

        .available-list {
            li {
                &:after {
                    background: $theme-color;
                    width: 20px;
                    height: 20px;
                    line-height: 20px;
                    display: block;
                    text-align: center;
                    border-radius: 30px;
                    color: $title-color;
                    font-size: 10px;

                }
            }
        }

        .th-btn {
            text-transform: capitalize;
            font-size: 16px;
            font-family: $title-font;

            &:before,
            &:after {
                display: block;
                background-color: $white-color;
            }

            &:hover {
                color: $title-color;
            }
        }
    }

    &.style7 {
        background-color: $white-color;
        border: 1px solid #E3E7F0;
        border-radius: 30px;
        transition: all 0.4s ease-in-out;

        @include xl {
            padding: 30px;
        }

        .box-title {
            font-size: 36px;
        }

        .available-list {
            ul {
                display: grid;
                grid-template-columns: auto auto auto;

                @include xl {
                    grid-template-columns: auto auto;
                }

                @media(max-width: 480px) {
                    grid-template-columns: auto;
                }

                li {
                    padding: 0;
                    font-size: 18px;
                    color: $body-color;

                    i {
                        font-size: 18px;
                        color: $theme-color;
                        margin-right: 10px;
                    }

                    &:after {
                        display: none;
                    }
                }
            }
        }

        .price-box {
            &_text {
                font-weight: 400;
                font-size: 18px;
                line-height: 26px;
                color: $body-color;
                border-bottom: none;
                margin: 0;
                padding: 0;
                display: flex;
                gap: 20px;

                @media(max-width: 480px) {
                    display: block;
                }

                span {
                    background: rgba(64, 115, 96, 0.2);
                    border-radius: 30px;
                    padding: 4px 15px;
                    color: $theme-color;
                    font-weight: 500;

                }
            }

            &_price {
                font-size: 36px;
                margin-top: 10px;

                @media(max-width: 480px) {
                    margin: 10px 0;
                }
            }

            &_content {
                border-top: 1px solid #E3E7F0;
                margin-top: 30px;
                padding-top: 30px;
                display: flex;
                justify-content: space-between;
                align-items: center;

                @media(max-width: 480px) {
                    display: block;
                }
            }
        }

        &:hover {
            background-color: $theme-color;

            .box-title {
                color: $white-color;
            }

            .available-list {
                ul {
                    li {
                        color: $white-color;

                        i {
                            color: $white-color;
                        }
                    }
                }
            }

            .price-box {
                &_text {
                    color: $white-color;

                    span {
                        background-color: rgba(255, 255, 255, 0.2);
                        color: $white-color;
                    }
                }

                &_price {
                    color: $white-color;
                }
            }

            .th-btn {
                background-color: $white-color;
                color: $theme-color;

                &:hover {
                    color: $white-color;
                }
            }
        }
    }

    &.style8 {
        background-color: #16181D;
        border-radius: 20px;
        border: none;
        padding: 50px;
        margin: 0;
        transition: all 0.4s ease-in-out;

        @include xl {
            padding: 30px;
        }

        @include lg {
            padding: 25px;
        }

        .offer-tag {
            position: absolute;
            overflow: visible;
            right: 30px;

            &:before,
            &:after {
                content: "";
                position: absolute;
                width: 8.64px;
                height: 14.23px;
                clip-path: path("M0.609591 14.3483L9.08789 14.3479C7.3136 4.07572 5.17723 0.00546857 3.8932 0.122186C1.37185 1.05602 -0.0425863 9.78267 0.609591 14.3483Z");
                background-color: #0025A7;
            }

            &:before {
                top: -14px;
                left: -4px;
            }

            &:after {
                top: -14px;
                right: 10px;
            }

            .tag {
                background: $theme-color;
                font-weight: 400;
                font-size: 14px;
                line-height: 18px;
                text-transform: uppercase;
                background-color: $theme-color;
                width: 106px;
                height: 90px;
                line-height: 70px;
                font-size: 18px;
                font-weight: 400;
                text-transform: capitalize;
                top: -14px;
                left: 0;
                overflow: visible;
                clip-path: path("M106 0.0885214L0 0C2.52715 0.637354 3.23694 7.22925 3.27594 10.4455L5.1479 68.6041L53.117 91L100.852 68.073L102.724 10.534C102.63 3.02743 104.869 0.442607 106 0.0885214Z");
                transform: rotate(0deg);
            }
        }

        &.active {
            background: linear-gradient(181deg, rgba(22, 24, 29, 0.00) -5.59%, rgba(62, 102, 243, 0.20) 99.45%);
            border: 1px solid $theme-color;
            transform: translateY(-30px);

            @include sm {
                margin-top: 60px;
            }

            .offer-tag {
                opacity: 1;
                visibility: visible;
            }

            .price-box_price {
                padding-top: 40px;
            }

            .th-btn {
                background-color: $theme-color;
                color: $white-color;


                &:before,
                &:after {
                    background-color: $white-color;
                }

                &:hover {
                    color: $title-color;
                }
            }
        }

        .price-box {
            &_text {
                color: #A1A6B0;
                text-align: center;
                font-weight: 400;
                border-bottom: 1px solid rgba(255, 255, 255, 0.20);
            }

            &_price {
                font-weight: 600;
                font-size: 40px;
                color: $theme-color;
                text-align: center;
                margin-bottom: 10px;
            }

            &_text2 {
                margin-bottom: 32px;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: $white-color;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .box-title {
            font-weight: 600;
            font-size: 40px;
            color: $white-color;
            margin-bottom: 7px;
            text-align: center;
        }

        .available-list {
            li {
                color: #A1A6B0;

                &:after {
                    content: "\f00c";
                    color: #A1A6B0;
                    font-weight: 400;
                }

                &.unavailable:after {
                    content: "\f00d";
                }
            }
        }

        .th-btn {
            text-transform: capitalize;
            font-size: 18px;
            font-weight: 500;
            font-family: $title-font;
            background-color: $white-color;
            color: $title-color;

            @include lg {
                padding: 18px 30px;
                font-size: 16px;
            }

            @include vxs {
                padding: 18px 20px;
            }

            &:before,
            &:after {
                display: block;
                background-color: $theme-color;
            }

            &:hover {
                color: $white-color;
            }
        }
    }

    &.style9 {
        background: #FFFFFF;
        border: 1px solid #E2E8F6;
        padding: 42px 45px;
        margin: 0;
        border-radius: 0;
        transition: all 0.4s ease-in-out;

        @include xl {
            padding: 30px;
        }

        @include lg {
            padding: 25px;
        }

        .offer-tag {
            position: absolute;
            overflow: visible;



            &:after {
                content: "";
                position: absolute;
                width: 8.64px;
                height: 13px;
                clip-path: path("M0 0L11 12H0V0Z");
                background-color: #E2E8F6;
            }

            &:after {
                top: -12px;
                right: 10px;
            }

            span {
                display: block;
            }

            .tag {
                font-weight: 500;
                font-size: 16px;
                line-height: 22px;
                text-transform: uppercase;
                background-color: #F2F6FF;
                color: $title-color;
                width: 106px;
                height: 90px;
                text-transform: capitalize;
                display: block;
                top: -12px;
                left: 0;
                padding: 20px 0;
                overflow: visible;
                clip-path: path("M106 0.0885214L0 0C2.52715 0.637354 3.23694 7.22925 3.27594 10.4455L5.1479 68.6041L53.117 91L100.852 68.073L102.724 10.534C102.63 3.02743 104.869 0.442607 106 0.0885214Z");
                transform: rotate(0deg);
            }
        }

        &.active {
            background-color: $theme-color;
            transform: none;

            .offer-tag {
                opacity: 1;
                visibility: visible;

                .tag {
                    background-color: $theme-color2;
                }

                &:after {
                    background-color: $theme-color2;
                }
            }

            .available-list {
                li {
                    color: $white-color;
                }
            }

            .box-title {
                color: $white-color;
            }

            .price-box_price {
                color: $white-color;
            }

            .th-btn {
                background-color: $theme-color;
                color: $white-color;


                &:before,
                &:after {
                    background-color: $white-color;
                }

                &:hover {
                    color: $title-color;
                }
            }

            .th-btn2 {
                &:hover {
                    color: $title-color;

                    &:before,
                    &:after {
                        background-color: $white-color;
                    }
                }
            }
        }

        .price-box {
            &_text {
                color: #656A74;
                text-align: center;
                font-weight: 400;
                border-bottom: 1px solid rgba(255, 255, 255, 0.20);
            }

            &_price {
                font-weight: 600;
                font-size: 36px;
                color: $theme-color;
                border-bottom: 1px solid #E3E7F0;
                padding-bottom: 35px;
                margin-bottom: 35px;
            }

            &_text2 {
                margin-bottom: 32px;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: $white-color;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .box-title {
            font-weight: 400;
            font-size: 36px;
            margin-bottom: 7px;

            @include xs {
                font-size: 24px;
            }
        }

        .available-list {
            li {
                color: #656A74;
                font-size: 17px;
                padding-left: 34px;
                padding-bottom: 6px;

                &:after {
                    content: "";
                    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0L22.3923 6V18L12 24L1.6077 18V6L12 0Z' fill='%2300E3DB'/%3E%3Cpath d='M19.0458 7.34883C18.8477 7.15065 18.5263 7.15065 18.3281 7.34883L10.1019 15.5751L6.86632 12.3394C6.66817 12.1412 6.34683 12.1412 6.14863 12.3394C5.95046 12.5376 5.95046 12.8589 6.14863 13.0571L9.74313 16.6516C9.94123 16.8497 10.2627 16.8498 10.4608 16.6516L19.0458 8.06651C19.244 7.86831 19.244 7.547 19.0458 7.34883Z' fill='%231C1C25'/%3E%3C/svg%3E%0A");
                    width: 24px;
                    height: 24px;
                    color: #656A74;
                    font-weight: 400;
                }

                &.unavailable:after {
                    content: "\f00d";
                }
            }
        }

        .th-btn2 {
            text-transform: uppercase;
            font-size: 18px;
            font-weight: 500;
            font-family: $title-font;
            display: flex;
            justify-content: space-between;
            padding-left: 30px;

            span {
                padding: 18px 15px 18px 18px;
            }

            &:before,
            &:after {
                display: block;
                background-color: $theme-color;
            }

            &:hover {
                color: $white-color;
            }
        }
    }
}

/* Pricing 4 ---------------------------------- */
.pricing-tabs {
    margin-top: 31px;
    margin-bottom: 60px;

    .discount-tag {
        color: $theme-color;
        font-size: 16px;
        font-weight: 500;
        font-family: $body-font;
        position: absolute;
        bottom: -3px;
        transform: translate(-35px, 100%);
        display: inline-flex;
        align-items: end;
        gap: 10px;
    }

    @include xs {
        margin-bottom: 0px;

        .discount-tag {
            display: none;
        }
    }

    &.style3 {
        margin-bottom: 0;


        .switch-area {
            .switch {
                position: absolute;
                left: 4px;
                top: 4px;
                width: 28px;
                height: 28px;
            }

            .check:checked~.switch {
                right: 4px;
                left: 53.5%;
            }

            .toggle {
                width: 70px;
                height: 36px;
                background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%);
                border-radius: 30px;

            }

            .toggler {
                color: $white-color;
                font-family: $title-font;
                font-weight: 500;
                font-size: 20px;
                text-transform: capitalize;

            }
        }
    }

    &.style4 {
        .switch-area {
            .switch {
                position: absolute;
                left: 4px;
                top: 4px;
                width: 28px;
                height: 28px;
            }

            .check:checked~.switch {
                right: 4px;
                left: 53.5%;
            }

            .toggle {
                width: 70px;
                height: 36px;
            }
        }

        .toggler {
            color: $white-color;
            font-weight: 400;

            &.toggler--is-active {
                color: $white-color;
            }
        }
    }

    &.style5 {
        .switch-area {
            .toggler {
                font-weight: 400;
            }

            .toggle {
                position: relative;
                width: 70px;
                height: 35px;
                border-radius: 100px;
                background-color: $theme-color;
                overflow: hidden;
                clip-path: path("M10 0H60L70 18L60 36H10L0 18L10 0Z");
                border-radius: 0;
            }
        }

        .switch-area .switch {
            right: 4px;
            left: 6px;
            top: 4px;
            width: 28px;
            height: 28px;
            clip-path: path("M28 13L21 25.1244L7 25.1244L-6.11959e-07 13L7 0.875644L21 0.875644L28 13Z");
            border-radius: 0;
            background-color: $theme-color2;
        }

        .check:checked~.switch {
            right: 4px;
            left: 52%;
        }
    }
}

.switch-area {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    .toggler {
        transition: .2s;
        font-weight: 600;
        font-size: 20px;
        font-family: $body-font;
        color: $title-color;
        background: transparent;
        margin-bottom: -0.4em;
        cursor: pointer;

        &.toggler--is-active {
            color: $theme-color;
        }
    }

    .toggle {
        position: relative;
        width: 60px;
        height: 30px;
        border-radius: 100px;
        background-color: $theme-color;
        overflow: hidden;
        box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
    }

    .check {
        position: absolute;
        display: block;
        cursor: pointer;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 6;
        visibility: visible;

        &:checked~.switch {
            right: 2px;
            left: 57.5%;
            transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
            transition-property: left, right;
            transition-delay: .08s, 0s;
        }
    }

    .switch {
        position: absolute;
        left: 2px;
        top: 2px;
        bottom: 2px;
        right: 57.5%;
        background-color: $white-color;
        border-radius: 36px;
        z-index: 1;
        transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition-property: left, right;
        transition-delay: 0s, .08s;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
}

.wrapper-full.hide {
    display: none;
}

.price-box.style2 {
    background: #EFF1F9;
    border: 0;
    z-index: 1;

    .offer-tag {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border-radius: 0;
        padding: 0;
        z-index: -1;

        .tag {
            text-align: center;
            transform: rotate(45deg);
            position: relative;
            padding: 7px 0;
            left: -31px;
            top: 25px;
            width: 210px;
            font-size: 14px;
            font-weight: 400;
            font-family: $body-font;
            letter-spacing: -0.408px;
            background-color: $theme-color;
            color: $white-color;
            display: inline-block;
        }
    }

    .price-title-wrap {
        display: flex;
        gap: 15px;

        img {
            flex: none;
        }

        .subtitle {
            font-size: 14px;
            font-weight: 500;
            color: $theme-color;
            letter-spacing: -0.408px;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .box-title {
            margin-bottom: 0;
            font-size: 30px;
            font-weight: 600;

            @include xs {
                font-size: 24px;
            }
        }
    }

    .price-box_text {
        font-size: 16px;
        font-weight: 400;
        font-family: $body-font;
        color: $body-color;
        margin-top: 11px;
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 30px;
    }

    .price-box_price {
        font-size: 40px;
        border-top: 2px solid rgba(28, 28, 37, 0.1);
        padding-top: 28px;
        padding-bottom: 7px;

        .duration {
            font-weight: 400;
            font-size: 16px;
            font-family: $body-font;
            color: $body-color;
            letter-spacing: normal;
            margin-left: 7px;
        }
    }

    .available-list li {
        padding-left: 0;

        &:after {
            display: none;
        }

        i {
            color: $theme-color;
            margin-right: 10px;
        }

        &.unavailable {
            i {
                color: $body-color;
            }
        }
    }
}

/* price area start -------------------------*/
.price-area3 {
    background-color: #0E0E0E;
    margin: 0 100px;

    @media(max-width: 1699px) {
        margin: 0;
    }
}

/* price */
.price-area6 {
    position: relative;
    max-width: 1760px;
    display: block;
    margin: auto;
    border-radius: 30px;
    z-index: 3;
}

.pricing-tabs {
    &.style6 {
        margin-bottom: 30px;

        @include sm {
            text-align: center;
        }

        .switch-area {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 15.5px 8.5px;
            gap: 0;

            .toggle {
                opacity: 0;
                display: none;
            }

            .toggler {
                background-color: transparent;
                border-radius: 30px;
                padding: 5px 16.7px;
                font-weight: 600;
                font-size: 16px;
                color: $white-color;

                &.toggler--is-active {
                    background-color: $theme-color;
                    color: $white-color;
                }
            }
        }

    }
}

.price-box {
    &.style5 {
        background: #1C1C25;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;

        @include xl {
            padding: 30px;
        }

        .price-title-area {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 30px;
            margin-bottom: 30px;

            @include xl {
                display: block;

                img {
                    margin-top: 20px;
                }
            }

            img {
                margin-right: 20px;
            }

            @include vxs {
                img {
                    max-width: 40px;
                }
            }

        }

        .subtitle {
            color: $theme-color;
            margin-bottom: 0;
        }

        .box-title {
            font-weight: 600;
            font-size: 30px;
            color: $white-color;
            margin-bottom: 7px;
        }

        .th-btn {
            text-transform: capitalize;
        }


        .price-box {
            &_price {
                font-weight: 600;
                font-size: 40px;
                color: $white-color;
                margin-bottom: 10px;
            }

            &_text2 {
                color: $white-color;
                margin-bottom: 32px;
            }

            &_text {
                color: $white-color;
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: $theme-color;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .available-list {
            li {
                color: $white-color;
                padding: 0;

                &:after {
                    display: none;
                }

                i {
                    color: $theme-color;
                    margin-right: 10px;
                }

                &.unavailable {
                    i {
                        color: $white-color;
                    }
                }
            }
        }

        &:hover {
            background: $white-color;
            border-color: $white-color;

            .price-title-area {
                border-bottom: 2px solid #E3E7F0;
            }

            .box-title {
                color: $title-color;
            }

            .price-box {
                &_text {
                    color: $title-color;

                }

                &_text2 {
                    color: $body-color;

                }

                &_price {
                    color: $title-color;
                }
            }

            .available-list {
                li {
                    color: $body-color;

                    &.unavailable {
                        i {
                            color: $body-color;
                        }
                    }
                }
            }
        }
    }

    &.style10 {
        background: #16181D;
        border-radius: 32px;
        border: none;
        padding: 50px;
        transition: all 0.4s ease-in-out;

        @include xl {
            padding: 30px;
        }

        .price-title-area {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 30px;
            margin-bottom: 30px;

            @include xl {
                display: block;

                img {
                    margin-top: 20px;
                }
            }

            img {
                margin-right: 20px;
            }

            @include vxs {
                img {
                    max-width: 40px;
                }
            }

        }

        .offer-tag .tag {
            background-color: $theme-color2;
            text-transform: uppercase;
            color: $title-color;
        }

        .subtitle {
            color: $theme-color;
            margin-bottom: 0;
        }

        .box-title {
            font-weight: 600;
            font-size: 30px;
            color: $white-color;
            margin-bottom: 7px;
        }

        .th-btn {
            text-transform: capitalize;
            &:hover {
                background-color: $white-color; 
                color: $title-color;
            }
        }


        .price-box {
            &_price {
                font-weight: 600;
                font-size: 40px;
                color: $white-color;
                margin-bottom: 10px;
            }

            &_text2 {
                color: #8D929C;
                margin-bottom: 32px;
            }

            &_text {
                color: #8D929C;
                border-bottom: none;
                padding-bottom: 0;
                margin-bottom: 0;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 26px;
            font-family: $body-font;
            color: #8D929C;
            letter-spacing: -0.408px;
            margin-left: 10px;


        }

        .available-list {
            li {
                color: #8D929C;
                padding: 0;

                &:after {
                    display: none;
                }

                i {
                    color: $white-color;
                    margin-right: 10px;
                }

                &.unavailable {
                    i {
                        color: $white-color;
                    }
                }
            }
        }

      
    }
}

/* pricing box -----------------------------*/
.price-box {
    &.style6 {
        background-color: #EFF1F9;
        border: 1px solid #E3E7F0;
        padding: 0 40px 40px 40px;
        mask-size: auto;
        mask-repeat: no-repeat;
        margin: 0;

        @media(max-width: 1399px) {
            mask-size: 100% 100%;
        }


        .price-title-wrap {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            padding: 60px 40px;
            display: block;
            margin: 5px auto 45px auto;
            background: $theme-color;

            @include xl {
                width: 150px;
                height: 150px;
                padding: 40px 40px;
            }

            @include lg {
                width: 200px;
                height: 200px;
                padding: 60px 40px;
            }

            @include md {
                margin: auto auto 45px auto;
            }

        }

        .price-box {

            &_price {
                font-weight: 700;
                font-size: 40px;
                line-height: 48px;
                color: $white-color;
                display: block;
                text-align: center;
            }

            &_text {
                text-align: center;
                padding-bottom: 26px;
                margin-bottom: 17px;
            }
        }

        .duration {
            font-weight: 400;
            font-size: 16px;
            line-height: 19px;
            color: $white-color;
            display: block;
        }

        .box-title {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 5px;
            text-align: center;
        }

        .available-list {
            padding-left: 76px;
            margin-bottom: 30px;

            @include xl {
                padding-left: 40px;
            }

            @include sm {
                padding-left: 76px;
            }

            @include xs {
                padding-left: 50px;
            }

            @include vxs {
                padding-left: 0px;
            }

            li {
                font-family: $body-font;

                &:after {
                    font-weight: 400;
                    font-size: 16px;
                }
            }
        }

        .th-btn {
            max-width: 258px;
            display: block;
            margin: auto;
            text-transform: capitalize;
        }

        .offer-feature {
            text-align: center;
            display: block;

            .feature {
                background-color: $theme-color;
                border-radius: 4px;
                font-weight: 400;
                font-size: 24px;
                line-height: 28px;
                color: $white-color;
                padding: 5px 20px;
                display: inline-block;
                margin-bottom: 40px;
            }
        }
    }
}

/* price start --------------------*/
.pricing-tabs {
    &.style9 {
        margin-bottom: 60px;
        text-align: center;

        .switch-area {
            background: $white-color;
            border: 1px solid #E3E7F0;
            border-radius: 50px;
            padding: 7px 5px 10px 5px;
            justify-content: center;
            gap: 30px;

            .toggle {
                opacity: 0;
                display: none;
            }

            .toggler {
                background-color: transparent;
                border-radius: 30px;
                padding: 8px 23px;
                font-weight: 400;
                font-size: 14px;
                color: $title-color;

                &.toggler--is-active {
                    background: linear-gradient(180deg, rgba(62, 102, 243, 0.6) 0%, rgba(0, 49, 221, 0.6) 100%);
                    color: $white-color;

                    span {
                        background-color: $white-color;
                        color: $theme-color;
                        border-radius: 10px;
                        font-weight: 400;
                        font-size: 8px;
                        padding: 5px 6px;
                    }
                }
            }
        }
    }
}

.price-grid {
    background: $white-color;
    border: 1px solid #E3E7F0;
    border-radius: 20px;
    padding: 0 40px 40px 40px;
    transition: all 0.4s ease-in-out;

    &.active {
        box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
        border-radius: 20px;

        .price-title-wrap {
            background: linear-gradient(180deg, $theme-color 0%, $theme-color2 100%);
            border-radius: 0px 0px 20px 20px;

            .price-grid_price {
                background: linear-gradient(180deg, $white-color 0%, $white-color 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                text-fill-color: transparent;
            }

            .duration {
                color: $white-color;
                -webkit-text-fill-color: $white-color;
            }
        }

        .th-btn {
            background: linear-gradient(180deg, $theme-color 0%, $theme-color2 100%);
        }
    }

    .price-title-wrap {
        width: 232px;
        display: block;
        margin: auto;
        padding: 30px;
        background: #EFF1F9;
        text-align: center;
        border-radius: 0px 0px 20px 20px;
        margin-bottom: 40px;
    }

    &_price {
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        background: linear-gradient(180deg, $theme-color 0%, $theme-color2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
        margin-bottom: -0.3rem;
    }

    .duration {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        background: none;
        color: #1C1C25;
        -webkit-text-fill-color: #1C1C25;
    }

    .offer-feature {
        font-weight: 600;
        font-size: 24px;
        line-height: 34px;
        text-align: center;
        color: $white-color;
    }

    .box-title {
        font-weight: 700;
        font-size: 40px;
        line-height: 54px;
        text-align: center;
        color: #1C1C25;
        margin-bottom: 7px;
    }

    &_text {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        text-align: center;
        color: #1C1C25;
        border-bottom: 1px solid #D9D9D9;
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .available-list {
        max-width: 213px;
        display: block;
        margin: auto auto 30px auto;
        padding: 0;

        li {
            &:after {
                content: "\f00c";
                color: $body-color;
                font-weight: 300;
            }

            &.unavailable:after {
                content: "\f00d";
            }
        }
    }

    .th-btn {
        text-transform: capitalize;
        width: 100%;
    }
}

/* price grid2 start ------------------------------*/
.price-grid2 {
    background: $white-color;
    border: 1px solid #E3E7F0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 2;
    overflow: hidden;

    &:before,
    &:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: $theme-color;
        clip-path: path("M260.674 195.656C357.912 216.177 423.407 289.376 444 323.41V0H-3.05176e-05V51.303C30.1357 137.412 186.339 183.417 260.674 195.656Z");
        z-index: -1;

        @include sm {
            clip-path: path("M410.973 195.656C564.276 216.177 667.534 289.376 700 323.41V0H0V51.303C47.5113 137.412 293.778 183.417 410.973 195.656Z");
        }
    }

    &:after {
        top: 30px;
        background-color: #A9BCFF;
        z-index: -2;
    }

    .box-title {
        color: $white-color;
        font-size: 36px;

        @include vxs {
            font-size: 24px;
        }
    }

    .price-title-wrap {
        background: $white-color;
        box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.1);
        border-radius: 50px 0px;
        padding: 30px;
        text-align: center;
        max-width: 293px;
        margin-bottom: 30px;

    }

    .box-price {
        font-weight: 700;
        font-size: 30px;
        line-height: 36px;
        text-align: center;
        color: $theme-color;
        margin-bottom: 0;

    }

    .duration {
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        color: $theme-color;
    }

    .box-text {
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        color: #1C1C25;
    }

    .offer-feature {
        width: 120px;
        height: 120px;
        overflow: hidden;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border-radius: 0;
        padding: 0;
        z-index: -1;

        .feature {
            text-align: center;
            transform: rotate(45deg);
            position: relative;
            padding: 7px 0;
            left: -31px;
            top: 25px;
            width: 210px;
            font-size: 14px;
            font-weight: 500;
            font-family: var(--body-font);
            letter-spacing: -0.408px;
            background-color: #EFF1F9;
            color: $title-color;
            display: inline-block;
        }
    }

    .available-list {
        padding: 0;
        margin-bottom: 30px;

        li {
            &:after {
                content: "\f00c";
                color: $body-color;
                font-weight: 400;
            }

            &.unavailable:after {
                content: "\f00d";
            }
        }

    }

    .th-btn {
        text-transform: capitalize;
        width: 100%;

    }

    &.active .th-btn {
        background-color: $theme-color;
    }
}

.price-area13 {
    border-radius: 0px 0px 40px 40px;
}