.price-tab {

}
.price-tab-menu-outer {
    overflow-x: scroll;
}
.price-tab-menu {
    list-style: none;
    margin: 0 0 70px;
    padding: 0;
    display: flex;
    font-family: sofia-pro, "Proxima Nova", -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    border-bottom: 1px solid #eaeaea;
    position: relative;
}
.price-tab-menu li {
    width: 50%;
}

.price-tab-menu li.active-marker {
    display: block;
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50%;
    height: 2px;
    background-color: rgba(5, 18, 38, 1);
    transition: all 0.5s ease;
}

.price-tab-menu li a {
    display: flex;
    height: 64px;
    font-size: 16px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: rgba(87, 102, 127, 1);
    transition: all 0.5s ease;
    white-space: nowrap;
    font-weight: 700;
    font-family: utopia-std,serif;
}
@media (max-width:767px) {
    .price-tab-menu li a {
        margin: 0 20px;
    }
}
.price-tab-menu li a.active {
    color: rgba(5, 18, 38, 1);
}


.price-tab-blocs {
    position: relative;
    /*padding-bottom: 120px;*/
    box-sizing: content-box;
}
/*.price-tab-blocs:after {*/
/*    display: block;*/
/*    position: absolute;*/
/*    height: 1px;*/
/*    background-color: #eaeaea;*/
/*    width: calc(50% - 70px);*/
/*    content: "";*/
/*    left: 50%;*/
/*    bottom: 0;*/
/*    transform: translateX(-50%);*/
/*}*/
.price-tab-bloc {
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all 0.5s ease;

}
.price-tab-bloc h3{
    font-size: 22px;
    text-align: center;
    margin: 0 0 100px;
}

.price-tab-bloc.active {
    z-index: 2;
    opacity: 1;

}

.price-tab-bloc ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.price-tab-bloc ul li {
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(234, 234, 234, 1);
    font-family: utopia-std,serif;
    font-size: 16px;
    line-height: 24px;

}

.price-tab-bloc ul li:first-child {
    border-top: 1px solid rgba(234, 234, 234, 1);
}

.price-tab-bloc ul li span {
    color: rgba(5, 18, 38, 1);
    flex-shrink: 0;
    margin-left: 36px;
}


