.price-plans-holder {
    text-align: center;
}

.price-plans-holder .tabs-title {
    border: 1px solid var(--toggle-border-color);
    background: #fff;
    border-radius: 30px;
    display: inline-flex;
    padding: 4px;
    margin-bottom: 30px;
}

.price-plans-holder .tabs-title .title {
    padding: 5px 20px;
    font-weight: 600;
    border-radius: 30px;
    position: relative;
}

.price-plans-holder .tabs-title .title:not(.active):hover {
    background-color: var(--toggle-active-background-color-hover);
    cursor: pointer;
}

.price-plans-holder .tabs-title .title.active {
    background-color: var(--toggle-active-background-color);
}

.price-plans-holder .tabs-title .title .tab-save-text {
    position: absolute;
    left: -80px;
    top: -38px;
    font-size: 13px;
    background: url(../../images/price-icon.png) no-repeat right bottom;
    padding-bottom: 50px;
    font-weight: 700;
}

.price-plans-holder .tab-content {
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.tab-image {
    margin-bottom: 20px;
}

.price-plans-holder .tab-content-holder {
    display: none;
}

.price-plans-holder .tab-content-holder.active {
    display: block;
}

.price-plans-holder .plan {
    width: 50%;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    padding-bottom: 20px;
}

.price-plans-holder .plan:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.price-plans-holder .plan .plan-name {
    font-weight: 700;
    font-size: 31px;
    margin: 0px 0 20px;
    background: #30ffaf;
    padding: 5px 0;
}

.price-plans-holder .plan .plan-price {
    margin: 10px 0 20px
}

.price-plans-holder .plan .price {
    display: inline-block;
    font-weight: 500;
    font-size: 35px;
    line-height: 1.2;
    position: relative;
}

.price-plans-holder .plan .period {
    color: rgb(68, 68, 68, 0.5);
    font-size: 14px;
}

.price-plans-holder .plan .image {
    height: 40px;
}

.price-plans-holder .plan .image img {
    max-height: 100%;
    width: auto;
    margin: 0 auto
}

.price-plans-holder .plan .button-image {
    margin-bottom: 5px;
}

.price-plans-holder .options {
    margin-top: 30px;
    text-align: left;
    font-size: 15px;
    padding: 0 20px;
}

.price-plans-holder .options p {
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.price-plans-holder .options p:before {
    font-family: 'serviceos' !important;
    content: "\e905";
    position: absolute;
    left: 20px;
    top: 20px;
    color: #fff;
    background: var(--price-plan-check-color);
    width: 20px;
    height: 20px;
    text-align: center;
    vertical-align: middle;
    line-height: 20px;
    font-size: 12px;
    position: absolute;
    top: 3px;
    left: 0;
    border-radius: 50%;
}

.price-plans-holder .options .strike {
    text-decoration: line-through;
    color: rgb(68, 68, 68, 0.5);
}

.price-plans-holder .free-aditions {
    position: relative;
    text-align: left;
    display: flex;
    gap: 15px;
    border-top: 1px solid #e5e8e9;
    padding: 20px;
    border-bottom: 1px solid #e5e8e9;
    margin: 20px 0;
}

.price-plans-holder .free-aditions h4,
.price-plans-holder .free-aditions h5 {
    margin-bottom: 5px
}


@media screen and (max-width: 991px) {
    .price-plans-holder {
        flex-wrap: wrap;
    }
    .price-plans-holder .plan {
        width: calc(1/2*100% - (1 - 1/2)*30px);
    }
}

@media screen and (max-width: 767px) {
    .price-plans-holder .plan {
        width: 100%;
    }
}