.tooltipster-base {
    display: -webkit-box;
    display: flex;
    pointer-events: none;
    position: absolute;
}
.tooltipster-box {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
}
.tooltipster-content {
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    overflow: auto;
}
.tooltipster-ruler {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
}
.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
    opacity: 1;
}
.tooltipster-grow {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.tooltipster-swing.tooltipster-show {
    opacity: 1;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
    -webkit-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-fall.tooltipster-initial {
    top: 0 !important;
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    transition-property: all;
    top: 0 !important;
    opacity: 0;
}
.tooltipster-slide {
    -webkit-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-slide.tooltipster-initial {
    left: -40px !important;
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    transition-property: all;
    left: 0 !important;
    opacity: 0;
}
@-webkit-keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tooltipster-fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.tooltipster-update-fade {
    -webkit-animation: tooltipster-fading 0.4s;
    animation: tooltipster-fading 0.4s;
}
@-webkit-keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
@keyframes tooltipster-rotating {
    25% {
        -webkit-transform: rotate(-2deg);
        transform: rotate(-2deg);
    }
    75% {
        -webkit-transform: rotate(2deg);
        transform: rotate(2deg);
    }
    100% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
}
.tooltipster-update-rotate {
    -webkit-animation: tooltipster-rotating 0.6s;
    animation: tooltipster-rotating 0.6s;
}
@-webkit-keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes tooltipster-scaling {
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.tooltipster-update-scale {
    -webkit-animation: tooltipster-scaling 0.6s;
    animation: tooltipster-scaling 0.6s;
}
.tooltipster-sidetip .tooltipster-box {
    background: #565656;
    border: 2px solid #000;
    border-radius: 4px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
    margin-top: 8px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-box {
    margin-right: 8px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-box {
    margin-left: 8px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-box {
    margin-bottom: 8px;
}
.tooltipster-sidetip .tooltipster-content {
    color: #fff;
    line-height: 18px;
    padding: 6px 14px;
}
.tooltipster-sidetip .tooltipster-arrow {
    overflow: hidden;
    position: absolute;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
    height: 10px;
    margin-left: -10px;
    top: 0;
    width: 20px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    right: 0;
    top: 0;
    width: 10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
    height: 20px;
    margin-top: -10px;
    left: 0;
    top: 0;
    width: 10px;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
    bottom: 0;
    height: 10px;
    margin-left: -10px;
    width: 20px;
}
.tooltipster-sidetip .tooltipster-arrow-background,
.tooltipster-sidetip .tooltipster-arrow-border {
    height: 0;
    position: absolute;
    width: 0;
}
.tooltipster-sidetip .tooltipster-arrow-background {
    border: 10px solid transparent;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
    border-bottom-color: #565656;
    left: 0;
    top: 3px;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
    border-left-color: #565656;
    left: -3px;
    top: 0;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
    border-right-color: #565656;
    left: 3px;
    top: 0;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
    border-top-color: #565656;
    left: 0;
    top: -3px;
}
.tooltipster-sidetip .tooltipster-arrow-border {
    border: 10px solid transparent;
    left: 0;
    top: 0;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #000;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #000;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #000;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #000;
}
.tooltipster-sidetip .tooltipster-arrow-uncropped {
    position: relative;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -10px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
    left: -10px;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-box {
    border: none;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 11px 43px rgba(10, 54, 88, 0.3);
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-box {
    margin-top: 6px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-box {
    margin-right: 6px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-box {
    margin-left: 6px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-box {
    margin-bottom: 6px;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-content {
    color: #8d8d8d;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow {
    height: 6px;
    margin-left: -6px;
    width: 12px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow,
.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow {
    height: 12px;
    margin-left: 0;
    margin-top: -6px;
    width: 6px;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-background {
    display: none;
}
.tooltipster-sidetip.tooltipster-shadow .tooltipster-arrow-border {
    border: 6px solid transparent;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-border {
    border-bottom-color: #fff;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-left .tooltipster-arrow-border {
    border-left-color: #fff;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-border {
    border-right-color: #fff;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-top .tooltipster-arrow-border {
    border-top-color: #fff;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-bottom .tooltipster-arrow-uncropped {
    top: -6px;
}
.tooltipster-sidetip.tooltipster-shadow.tooltipster-right .tooltipster-arrow-uncropped {
    left: -6px;
}
.tooltip-cont {
    padding: 10px 0 5px;
}
.tooltip-cont__vat {
    display: inline-block;
    background-color: #ff9000;
    font-family: RFRufo-Semibold;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    padding: 0 3px;
    margin-bottom: 7px;
}
.tooltip-cont p {
    display: block;
    max-width: 230px;
    font-size: 14px;
    color: #828282;
}
.tooltip-cont.tooltip-cont-configure p {
    max-width: 280px;
}
.tooltip-cont--conf p {
    max-width: 148px;
}
.tooltip-cont--order p {
    max-width: 155px;
}
.tooltip-cont--limit p {
    max-width: 190px;
}
.conf-section{
    position: relative;
    margin-bottom: 10px;
    padding: 0 15px 15px;
}
.conf-section:before{
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 17px;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    z-index: 0;
}
.conf-section > * {
    z-index: 1;
    position: relative;
}
.conf-section .summary-title{
    display: none;
}
.conf-section__title{
    display: inline-block;
    background: white;
    margin: 0 0 10px -3px;
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #2772C8;
    padding: 0 3px;
}
.conf-section__text{
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 15px;
}
.list-info__quantity{
    position: absolute;
    top: 8px;
    right: 12px;
    background: white;
    padding: 0 3px;
    margin: 0;
    display: flex;
    font-size: 14px;
    font-weight: 600;
    color: #2772C8;
}
.list-info__quantity .limit-memory,
.list-info__quantity .limit-counter,
.power-limit{
    color: red;
}
.power-limit{
    font-weight: 500;
}

.list-info__quantity li:not(:first-of-type){
    margin-left: 10px;
}
.list-info__quantity li{
    list-style: none;
}
.list-info__quantity li .max-value{
  color: #415B74;
}
.conf-section__list{
    padding: 0;
    margin: 0;
}
.conf-section__item{
    list-style: none;
    position: relative;
    padding: 0;
    color: black;
    font-size: 12px;
    margin-bottom: 5px;
}
.conf-section__list .conf-section__item:last-of-type{
    margin-bottom: 0;
}
.conf-section__item.hidden-item {
    display: none;
}
.conf-section__item.hidden-filter{
    display: none !important;
}
.conf-section__item.active-filter{
    display: block !important;
}
.conf-section__item .item-price{
    position: absolute;
    pointer-events: none;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 16px;
    display: flex;
    align-items: center;
}
.conf-section__item .radio:hover + .item-price,
.conf-section__item.item-included .item-price,
.conf-section__item.is-checked .item-price,
.conf-section__item.is-checked .item-price__value,
.conf-section__item:hover .item-price__value{
    color: white;
}
.conf-section__item .item-name{
    display: none;
}
.conf-section__item .radio,
.conf-section__item .checkbox{
    background: #F9F9F9;
    box-shadow: inset 0 0 0 1px #DADADA;
    border-radius: 5px;
    color: black;
}
.conf-section__item .radio:hover,
.conf-section__item .radio.is-checked,
.conf-section__item .checkbox:hover,
.conf-section__item .checkbox.is-checked{
    background: linear-gradient(112.88deg, #00AEEF 19.8%, #2772C8 82.51%, #2772C8 126.71%, #2772C8 126.72%), #00AEEF;
    color: #fff;
    box-shadow: none;
}
.conf-section__item .radio__custom,
.conf-section__item .checkbox__custom{
    /*top: 50%;
    transform: translateY(-50%);*/
    top: 8px;
    left: 13px;
    background: white;
    border-color: #C4C4C4;
    transition: none;
}
.conf-section__item .radio__default:checked + .radio__custom::before{
    background: #00AEEF;
    height: 10px;
    width: 10px;
    top: 2px;
    left: 2px;
}
.conf-section__item .checkbox__default:checked + .checkbox__custom::before{
    border-color: white;
}
.conf-section__item .radio:hover .radio__custom,
.conf-section__item .radio__default:checked + .radio__custom,
.conf-section__item .checkbox:hover .checkbox__custom,
.conf-section__item .checkbox__default:checked + .checkbox__custom{
    border-color: white;
}
.conf-section__item .checkbox:hover .checkbox__custom,
.conf-section__item .checkbox__default:checked + .checkbox__custom{
    background: transparent;
}
.conf-section__item .radio__label,
.conf-section__item .checkbox__label{
    position: relative;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 16px;
    display: flex;
    align-items: center;
    padding: 10px 50px;
    color: inherit;
    white-space: normal;
    transition: none;
}
.conf-section__item.specify .radio__label,
.conf-section__item.specify .checkbox__label{
    padding-right: 105px;
}
.colocation-section .conf-section__item.specify .radio__label{
    padding-right: 120px;
}
.colocation-section .item-price__value{
    width: 95px;
}
.conf-section__item.with-quantity .radio__label,
.conf-section__item.with-quantity .checkbox__label{
    padding-right: 168px;
}
.conf-section__item .radio__label:hover,
.conf-section__item .checkbox__label:hover{
    color: inherit;
}
.item-price__quantity{
    background: #FFFFFF;
    border: 1px solid #e7e7e7;
    border-radius: 5px;
    height: 24px;
    min-width: 70px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.item-price__quantity .js-item-counter-minus,
.item-price__quantity .js-item-counter-plus{
    height: 22px;
    width: 20px;
    position: relative;
    cursor: pointer;
    display: none;
}
.conf-section__item.is-checked .js-item-counter-minus,
.conf-section__item.is-checked .js-item-counter-plus{
    display: block;
}
.conf-section__item.is-checked .item-price__quantity .js-item-counter-minus,
.conf-section__item.is-checked .item-price__quantity .js-item-counter-plus{
    pointer-events: auto;
}
.item-price__quantity .js-item-counter-minus:before,
.item-price__quantity .js-item-counter-plus:before,
.item-price__quantity .js-item-counter-plus:after{
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background: rgba(0, 0, 0, 0.54);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.item-price__quantity .js-item-counter-plus:after{
    height: 10px;
    width: 1px;
}
.item-price__quantity .js-item-counter{
    border: none;
    height: 18px;
    width: 28px;
    font-size: 16px;
    line-height: 18px;
    text-align: center;
    color: black;
    padding: 0;
    display: inline-block;
    outline: none;
}
.conf-section__item.is-checked .item-price input{
    pointer-events: auto;
}
.item-price__quantity span{
    display: none;
}
.item-price__value{
    width: 80px;
    text-align: right;
    font-size: 16px;
}
.conf-price-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
}
.conf-price-block .server-price{
    margin: 0 15px 0 0;
    font-size: 30px;
    line-height: 24px;
}
.conf-price-block .server-price span{
    padding: 0;
    font-size: 12px;
    line-height: 24px;
    color: #184982;
    text-align: left;
}
.conf-price-block .server-buttons{
    padding: 0;
}
.server-detail .order-guarantees{
    padding: 0 20px;
}
.server-detail .order-guarantee{
    font-size: 13px;
}
.server-detail .server-buttons{
    position: relative;
}
.server-detail .server-buttons .btn{
    padding: 5px 30px;
    margin-right: 0;
    position: relative;
    z-index: 1;
}
.server-detail .server-buttons .configurator-order-discount{
    display: block;
    position: absolute;
    top: -5px;
    right: -15px;
    z-index: 100;
    color: white;
    border-radius: 5px;
/*    border: 1px solid #EBEBEB;*/
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.06px;
    background: linear-gradient(180deg, #B10101 0%, #FF2D2D 100%);
    padding: 0 2px;
}
.conf-widget{
    background: #F9F9F9;
    border-radius: 8px;
    padding: 20px 20px 9px;
}
.cw-header__name{
    font-weight: 600;
    font-size: 20px;
    line-height: 1.6;
    color: #2772C8;
    padding-bottom: 15px;
}
.cw-list{
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
    line-height: 24px;
}
.cw-list__name{
    display: flex;
    justify-content: space-between;
}
.cw-list__price,
.cw-list__price_2{
    display: none;
}
.summary-list{
    font-size: 12px;
    line-height: 14px;
}
.summary-item{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 5px 0;
    position: relative;
}
.summary-item_name{
    margin-right: 15px;
    position: relative;
    z-index: 1;
}
.summary-item_name span{
    background: #F9F9F9;
    padding-right: 2px;
}
.summary-item_value{
    text-align: right;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: #F9F9F9;
    position: relative;
    z-index: 1;
    padding-left: 2px;
}
.summary-item:before{
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 8px;
    z-index: 0;
    border-bottom: 1px dotted #415B74;
}
.summary-cp-link{
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.make-co-pdf{
    cursor: pointer;
    font-size: 12px;
    color: #2772C8;
    padding: 8px 5px;
    display: inline-flex;
    align-items: center;
}
.make-co-pdf svg.save-icon{
    stroke: #2772C8;
    height: 14px;
    width: 14px;
    margin-right: 9px;
}
.copy-summary{
    cursor: pointer;
    font-size: 12px;
    color: #2772C8;
    padding: 8px 5px;
    display: inline-flex;
    align-items: center;
}
.make-co-pdf:hover,
.copy-summary:hover{
    text-decoration: underline;
}
.copy-summary svg.copy-icon{
    fill: #2772C8;
    height: 14px;
    width: 14px;
    margin-right: 9px;
}
.js-sticky{
    max-width: 100%;
}
.conf-section-filters{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.conf-section-filter{
    width: 46%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.conf-section-filter_title{
    font-size: 12px;
    margin-right: 20px;
}
.conf-section-filter_title .checkbox__custom{
    left: 13px;
    background: white;
    border-color: #C4C4C4;
    transition: none;
    top: 50%;
    transform: translateY(-50%);
}
.conf-section-filter_title .checkbox__default:checked + .checkbox__custom::before{
    left: 3px;
}
.conf-section-filter_title .checkbox__label{
    font-size: 12px;
    font-weight: 500;
    padding-left: 40px;
    opacity: 0.5;
}
.conf-section-filter_title .checkbox:hover .checkbox__label,
.conf-section-filter_title .is-checked .checkbox__label{
    color: #2772C8;
    opacity: 1;
}
.conf-section-filter_range{
    flex: 1 0 0;
}
.conf-section-filter .range-block{
    font-size: 12px;
    margin: 0;
}
.conf-section-filter .range-item{
    margin: 0 20px;
}
.conf-section-filter .noUi-handle{
    font-size: 12px;
    line-height: 17px;
    height: 18px;
    bottom: -10px;
}
.tooltip-accessories {
    display: inline-block;
    margin-left: 10px;
    vertical-align: top;
    flex-shrink: 0;
}
.tooltip-accessories svg {
    width: 15px;
    height: 15px;
    fill: #9badb5;
}
.conf-section__item.is-checked .tooltip-accessories svg,
.radio:hover .tooltip-accessories svg,
.checkbox:hover .tooltip-accessories svg {
    fill: white;
}
@media(max-width: 1249px){
    .conf-section-filter{
        width: 100%;
        margin-bottom: 10px;
    }
}
@media(max-width: 1023px){
    h1{
        margin-bottom: 15px !important;
    }
    .conf-section-filter{
        width: 47%;
        margin-bottom: 20px;
    }
    .server-detail-right{
        margin-top: 15px;
    }
}
@media(max-width: 767px){
    .conf-section-filter{
        width: 100%;
        margin-bottom: 10px;
        display: block;
    }
    .conf-section-filter_range{
        margin: 10px 15px;
    }
}
@media(max-width: 560px){
    .conf-section__item.with-quantity .radio__label,
    .conf-section__item.with-quantity .checkbox__label,
    .conf-section__item.specify .radio__label,
    .conf-section__item.specify .checkbox__label,
    .colocation-section .conf-section__item.specify .radio__label{
        padding: 8px 15px 40px 40px;
    }
    .conf-section__item.with-quantity .item-price,
    .conf-section__item .item-price{
        top: auto;
        bottom: 8px;
        transform: none;
    }
    .list-info__quantity{
        position: relative;
        top: auto;
        margin: 0 0 15px 10px;
    }
    .configurator .server-files a{
        font-size: 12px;
        line-height: 20px;
    }
    .configurator .server-files a svg,
    .configurator .server-co-pdf svg{
        height: 15px;
        width: 15px;
        margin-right: 10px;
    }
}
@media(max-width: 400px){
    .server-detail-right{
        margin-top: 0;
    }
    .conf-widget{
        position: relative;
        margin: 0 -15px;
        padding: 15px;
        border-radius: 0;
    }
    .server-detail .server-buttons .configurator-order-discount{
        right: -15px;
    }
    .conf-price-block{
        padding: 15px 0;
    }
    .cw-header__name{
        background: linear-gradient(112.88deg, #00AEEF 19.8%, #2772C8 82.51%, #2772C8 126.71%, #2772C8 126.72%), #00AEEF;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    .server-detail .order-guarantees{
        padding: 0;
    }
}
h1.in-stock:after{
    content: "на складе";
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: white;
    letter-spacing: -0.06px;
    background: linear-gradient(180deg, #2BD751 0%, #078E25 100%);
    text-fill-color: white;
    -webkit-text-fill-color: white;
    padding: 0 2px 2px;
    vertical-align: top;
    margin-left: 5px;
}
h1.out-of-stock:after{
    content: "под заказ";
    display: inline-block;
    border-radius: 5px;
    border: 1px solid #EBEBEB;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: white;
    letter-spacing: -0.06px;
    background: linear-gradient(180deg, #D7D02B 0%, #FDA700 100%);
    text-fill-color: white;
    -webkit-text-fill-color: white;
    padding: 0 2px 2px;
    vertical-align: top;
    margin-left: 5px;
}
.server-tabs{
    position: relative;
    margin-left: -7px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.server-tab{
    display: flex;
    align-items: center;
    padding: 7px;
    margin: 0 10px 10px 0;
    white-space: nowrap;
    font-size: 14px;
    color: #415B74;
    text-decoration: none;
    opacity: 0.7;
    cursor: pointer;
}
.server-tab.open,
.server-tab:hover{
    opacity: 1;
    text-decoration: none;
}
.server-tab svg,
.server-tab-mobile svg{
    display: flex;
    max-width: 15px;
    max-height: 15px;
    object-fit: cover;
    margin-right: 8px;
}
.server-tab svg path{
    fill: #595959;
}
.server-tab span b,
.server-tab-mobile span b{
    font-size: 0;
    line-height: 0;
}
.server-tab-mobile{
    position: relative;
    color: #2772C8;
    padding: 15px 15px;
    border-radius: 5px;
    margin: 0 -15px;
    white-space: nowrap;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.server-tab-mobile span{
    position: relative;
    z-index: 1;
    display: block;
    background: linear-gradient(112.88deg, #00AEEF 19.8%, #2772C8 82.51%, #2772C8 126.71%, #2772C8 126.72%), #00AEEF;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    flex: 1 0 0;
}
.server-tab-mobile:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(112.88deg, #00AEEF 19.8%, #2772C8 82.51%, #2772C8 126.71%, #2772C8 126.72%), #00AEEF;
    z-index: 0;
}
.server-tab-mobile:hover{
    text-decoration: none;
}
.server-tab-mobile[data-item]:after{
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-right: 2px solid #2772C8;
    border-bottom: 2px solid #2772C8;
    top: 50%;
    right: 15px;
    transform: translateY(-30%) rotate(-135deg);
    transition: transform 0.2s;
}
.server-tab-mobile[data-item].open:after {
    transform: translateY(-70%) rotate(45deg);
}
.server-tab-mobile svg{
    fill: #00AEEF;
    flex-shrink: 0;
    margin-right: 12px;
}
.server-tab-mobile svg path{
    fill: #00AEEF;
}
.server-tabs-data{
    display: flex;
    flex-direction: column;
}
.server-tab-reviews{
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}
.server-tab-reviews iframe{
    width: 100%;
    height: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-sizing: border-box;
}
@media (min-width: 1024px){
    .server-tab-data,
    .server-tab-mobile {
        display: none;
    }
    .server-tab-data.active {
        display: block;
    }
}
@media (max-width: 1023px){
    .server-tab-reviews{
        width: calc(100% + 30px);
        margin: -15px -15px 0;
    }
    .server-tab-reviews iframe{
        border: none;
    }
    .server-tab-mobile{
        display: flex;
    }
    .server-tab-data.open{
        display: block;
    }
    .server-tabs,
    .server-tab-data {
        display: none;
    }
    .server-tab-data{
        padding-top: 15px;
    }
    .server-tabs-data [data-item="configurator"]{
        order: -1;
    }
}
