.pricing-section {
    background-color: var(--ced-heading-color);
}

.price-box {
    padding: 20px;
    border-radius: 15px;
}

.basic {
    background-image: linear-gradient(101deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 100%);
}

.plan-wrap {
    padding: 35px 0px 10px;
}

.plan-wrap .plan-name {
    color: var(--ced-blue-30);
    font-family: var(--ced-montserrat-eb);
}

.plan-price {
    font-size: 36px;
    color: var(--ced-white-color);
    font-family: var(--ced-montserrat-b);
}

.feature-list {
    padding: 0;
    list-style: none;
}

.feature-list li {
    color: var(--ced-white-color);
    padding-left: 35px;
    position: relative;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 15px;
}

.feature-list li svg {
    position: absolute;
    color: var(--ced-green-color);
    border-radius: 50%;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
}

.view-features {
    font-family: var(--ced-montserrat-sb);
    font-size: 15px;
    cursor: pointer;
    position: relative;
    transition: all 0.5s;
    color: var(--ced-white-color);
}

.view-features::after {
    position: absolute;
    content: "";
    top: 8px;
    width: 8px;
    height: 8px;
    transform: translateY(-25%) rotate(44deg);
    margin-left: 15px;
    border-right: 3px solid rgba(255, 255, 255, 0.9);
    border-bottom: 3px solid rgba(255, 255, 255, 0.9);
}

.rotate.view-features::after {
    transform: rotate(222deg);
    margin-top: 1px;
}

.advanced {
    background-image: linear-gradient(306deg,
            var(--ced-blue-60) 1.28%,
            rgba(65, 59, 188, 0.2) 101.42%);
}

.advanced::before {
    content: "Most Popular";
    position: absolute;
    top: 0;
    background-color: var(--ced-white-color);
    color: var(--ced-black-color);
    padding: 4px 8px;
    border-radius: 15px 15px 0 0;
    font-family: var(--ced-montserrat-m);
    width: 100%;
    text-align: center;
    max-width: 370px;
    left: 50%;
    transform: translateX(-50%);
}

.more-features {
    display: none;
}

.view-features:hover {
    text-decoration: underline;
}

.hover-underline {
    position: relative;
    padding-bottom: 3px;
}

.hover-underline::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    background-color: var(--ced-blue-60);
    transition: 0.5s ease;
}

.hover-underline:hover::before {
    transform: scaleX(1);
}

.pricing-slider .owl-prev,
.pricing-slider .owl-next {
    transition: 300ms all;
    border-radius: 50%;
    bottom: 35px;
    background-size: 26px !important;
    background-repeat: no-repeat !important;
    text-indent: -10000px;
    background-position: center !important;
    background-color: rgba(0, 0, 0, 0.2) !important;
    filter: invert(1);
    border: 2px solid rgba(0, 0, 0, 0.8) !important;
}

.pricing-slider .owl-prev {
    background-image: url("https://cedcommerce.com/wp-content/uploads/2023/08/chevron-left-Black.svg") !important;
}

.pricing-slider .owl-prev:hover,
.pricing-slider .owl-next:hover {
    background-color: rgba(0, 0, 0, 0.1) !important;
}

.pricing-slider .owl-next {
    background-image: url("https://cedcommerce.com/wp-content/uploads/2023/08/chevron-right-Black.svg") !important;
}

.pricing-slider .owl-nav .disabled {
    cursor: default !important;
    opacity: 0.5;
}

.pricing-slider .owl-nav .disabled:hover {
    background-color: var(--ced-grey-30);
}

.add-on-card {
    width: 100%;
    background-color: var(--ced-bg-gray);
    border-radius: 15px;
}

.add-on-card-container .add-on-card::before {
    position: absolute;
    bottom: -15px;
    left: 13px;
    width: 70%;
    height: 100px;
    background: conic-gradient(from 7deg at 25.05% 71.78%,
            rgba(106, 215, 150, 0.4) 0deg,
            rgba(65, 59, 188, 0.3) 360deg);
    filter: blur(25px);
    -webkit-filter: blur(35px);
    transition: all 0.5s;
    opacity: 0;
    content: "";
    z-index: -1;
    border-radius: 50px;
}

.add-on-card-container .add-on-card:hover::before {
    opacity: 1;
}

.add-on-card .add-on-title {
    margin-bottom: 10px;
}

.add-on-amount {
    color: var(--ced-blue-60);
    font-family: var(--ced-montserrat-b);
}

.switch-wrapper {
    display: flex;
    position: relative;
    border-radius: 50px;
    border: 2px solid var(--ced-bg-gray);
    background-image: linear-gradient(101deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.08) 100%);
}

.switch-wrapper [type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.switch-wrapper label {
    z-index: 1;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    padding: 8px 16px;
    font-size: 18px;
    text-align: center;
    width: 110px;
    font-family: var(--ced-montserrat-m);
    color: var(--ced-white-color);
}

.switch-wrapper [type="checkbox"]:checked#monthly~label[for="monthly"],
.switch-wrapper [type="checkbox"]:checked#yearly~label[for="yearly"] {
    color: var(--ced-black-color);
    font-family: var(--ced-montserrat-b);
}

.switch-wrapper .highlighter {
    position: absolute;
    top: 6px;
    left: 8px;
    width: calc(50% - 10px);
    height: calc(100% - 12px);
    transition: transform 0.25s ease-in-out;
    border-radius: 50px;
    background-color: var(--ced-white-color);
}

@media only screen and (max-width: 575px) {
    .price-box {
        max-width: 340px;
    }

    .pricing-slider .owl-nav {
        display: flex;
        justify-content: center;
        gap: 0px 20px;
        margin-top: 20px;
    }

    .pricing-section .section-head::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .add-on-card-container {
        gap: 10px;
    }

    .add-on-card .add-on-title {
        font-size: 14px;
    }

    .add-on-card {
        padding: 25px 18px;
    }

    .add-on-amount {
        font-size: 24px;
    }
}

@media only screen and (min-width: 576px) {

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        top: 50%;
        transform: translateY(-50%);
    }

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        position: absolute;
    }
}

@media only screen and (max-width: 767px) {
    .plan-wrap .plan-name {
        font-size: 20px;
    }

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        height: 45px;
        width: 45px;
    }
}

@media only screen and (min-width: 768px) {
    .plan-wrap .plan-name {
        font-size: 24px;
    }

    .add-on-amount {
        font-size: 36px;
    }

    .add-on-card {
        padding: 25px 40px;
    }
}

@media screen and (min-width: 992px) {
    .add-on-section .section-subhead {
        flex: 1 1 100%;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .price-box {
        max-width: 370px;
    }

    .pricing-slider .owl-prev {
        left: 40px;
    }

    .pricing-slider .owl-next {
        right: 40px;
    }

    .add-on-card-container {
        gap: 20px;
    }

    .add-on-card {
        padding: 25px 30px;
    }

    .add-on-amount {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .add-on-card .add-on-title {
        font-size: 18px;
    }

    .pricing-slider .owl-prev {
        left: -35px;
    }

    .pricing-slider .owl-next {
        right: -35px;
    }

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        height: 50px;
        width: 50px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
    .add-on-card-container {
        gap: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .price-box {
        min-height: 485px;
    }

    .pricing-slider .owl-prev {
        left: -22px;
    }

    .pricing-slider .owl-next {
        right: -22px;
    }

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        height: 40px;
        width: 40px;
    }

    .add-on-section .section-head {
        flex: 1 1 35%;
    }

    .add-on-card .add-on-title {
        font-size: 20px;
    }

    .add-on-section .container {
        max-width: 90%;
    }
}

@media screen and (min-width: 1200px) {
    .price-box {
        min-height: 490px;
    }

    .pricing-slider .owl-prev {
        left: -35px;
    }

    .pricing-slider .owl-next {
        right: -35px;
    }

    .pricing-slider .owl-prev,
    .pricing-slider .owl-next {
        height: 50px;
        width: 50px;
    }

    .add-on-section .section-head {
        flex: 1 1 50%;
    }

    .add-on-card .add-on-title {
        font-size: 22px;
    }

    .add-on-card-container {
        gap: 35px;
    }
}

@media screen and (min-width: 1400px) {
    .add-on-section .container {
        max-width: 75%;
    }
}


.page-id-15222 .toggle-wrapper {
    position: relative;
    display: none;
}

.page-id-15222 .toggle-wrapper.show {
    display: block;
}

.page-id-15222 .switch-wrapper .highlighter {
    width: 30%;
}

.switch-wrapper label.active {
    color: var(--ced-black-color);
    font-family: var(--ced-montserrat-b);
}

.page-id-15222 .toggle-wrapper.is-loading:before {
    content: '';
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #03030b;
    left: 0;
    top: 0;
    position: absolute
}

.page-id-15222 .plan-price .month {
    font-size: 20px;
    font-family: var(--ced-montserrat-m);
    color: var(--ced-blue-30);
}

.price-sync {
    font-family: var(--ced-montserrat-b);
}