:root {
    --margin-b: 10px;
}

.plan-container {
    padding-top: 40px;
    background: var(--gradient-lite-bg);
    overflow: hidden;
    padding-bottom: 30px;
}

.plan-title {
    text-align: center;
    color: #fff;
    font-weight: 600 !important;
}

.switch-container {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-container-text {
    font-weight: 600;
    font-size: 20px;
    color: #fff;
}


/***********/

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0 10px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--special-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--special-color);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}


/**** end switch button *****/

.plan-card {
    text-align: center;
    box-shadow: 0px 3px 6px #00000029;
    padding: 20px 15px;
    border-radius: 52px;
    background: #fff;
}

@media (max-width: 768px) {
    .plan-card {
        margin-bottom: 15px;
    }
    .plan-cards-container {
        justify-content: center;
    }
}

.plan-card__title {
    color: var(--special-color);
    font-weight: 600;
    font-size: 35px;
    margin-bottom: var(--margin-b);
}

.plan-card__price {
    margin-bottom: var(--margin-b);
}

.plan-card__price-title {}

.plan-card__price-subtitle.price {
    font-size: 30px;
    font-weight: 600;
    margin-right: 12px;
}

.plan-card__price-subtitle.duration {
    font-size: 25px;
}

.plan-card__advantage {
    margin-bottom: var(--margin-b);
}

.plan-card__advantage-list {
    min-height: 300px;
}

.advantage-list__item {
    font-weight: 600;
    font-size: 19px;
    margin: 15px 0;
}

.card-submit__button {
    color: #fff;
    background: var(--special-color);
    padding: 11px 10px;
    width: 80%;
    border-radius: 10px;
    font-weight: 600;
    font-size: 19px;
    display: inline-block;
}