div[id^="wait_"] {
    display: none !important;
    background: none !important;
    border: 0 !important;
    color: #000000;
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
    font-style: normal !important;
    font-variant: normal !important;
    font-weight: normal;
    letter-spacing: normal !important;
    line-height: normal;
    padding: 0 !important;
    position: absolute;
    text-align: center !important;
    text-indent: 0 !important;
    width: 0px !important;
    height: 0px !important;
    word-spacing: normal !important;
    z-index: 0;
    content: "";
}
.policy-container{
    display: flex;
    gap:8px;
}
.checkbox-input {
    width: 100%;
    max-width: 15px;
    height: 15px;
    margin-left: 5px;
    border: 1px solid rgba(58, 70, 84, 0.2);;
    position: relative;
}
.modal-content .checkbox-input{
    margin-left: 0;
    width: 30px;
    height: 15px;

}
.checkbox-input.active {
    background-color: #e69f18;
}
.chess__item--not-match .chess__item-presentation {
    background-color: #ffffff;
}
.checkbox-input.active:before {
    width: 8px;
    height: 2px;
    background: white;
    content: "";
    position: absolute;
    top: 5px;
    left: 3px;
    transform: rotate(-45deg);
}
.checkbox-input.active:after {
    content: "";
    position: absolute;
    width: 5px;
    height: 2px;
    background: white;
    transform: rotate(45deg);
    top: 50%;
    left: 1px;
}
.chess__item--not-match {
    pointer-events: none;
    border-color: #dbc6af;
    fill: #3a4654;
}

.canvas-area {
    position: relative;
    display: block;
    margin: auto;
    height: 100%;
}

.canvas-area__canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.canvas-area__canvas-item {
    fill: #3a4654;
    opacity: .9;
}

.image-fancy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#apartment-section .tab-content>.active {
    margin-bottom: 40px;
}
.tab-pane--height-full {
    height: 100%;
}

@media (max-width: 767px) {
    .apartment-detail__plan .tab-pane {
        height: 100%;
    }
}

.button--color-text-white a span {
    color: white;
    -webkit-tap-highlight-color: transparent;
    outline: 0;
    -webkit-appearance: none;
}

.link--small {
    font-size: 12px;
    line-height: 16px;
}

.preloader-elements {
    transition: all ease-in-out 150ms;
    position: absolute;
    left: 0;
    top: 36px;
    z-index: -1;
    opacity: 0;
    /*background-image: url(../img/preloader.gif);*/
    background-image: url(../img/preloader.svg);
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    background-position: center 250px;
    background-repeat: no-repeat;
}

.preloader-elements+* {
    padding-top: 18px;
}

.preloader-elements.show {
    opacity: 0.8;
    z-index: 20;
}

.apartment-choose--pos-relative {
    position: relative;
}

.f-checkbox.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.ss-disabled--custom {
    cursor: not-allowed;
    color: #dedede;
    background-color: #fff;
    pointer-events: none;
}

.page__info-actions {
    margin-top: 20px;
}

.parking__img {
    height: 100%;
}

@media (max-width: 767px) {
    .hero {
        height: max-content;
    }

    .hero__bg {
        height: 100%;
    }
}

.news-card:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    transition: .2s ease-in-out;
    background: linear-gradient(0deg, rgba(58, 70, 84, 0.5), rgba(58, 70, 84, 0.5));
}

.genplan__labels-item {
    transform: translate(-50%, -50%);
}

.genplan__buildings-item {
    opacity: 0.6;
    fill: #3a4654;
}

.header.fixed {
    top: 0;
}

.section--colored+.section--colored {
    margin-top: 0px;
}

@media (max-width: 1023px) {
    .apartment-detail__info+.apartment-detail__actions {
        margin-top: 16px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

@-webkit-keyframes burger-open-bot {
    50% {
        -webkit-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -6.5px, 0) rotate(-45deg);
        transform: translate3d(0, -6.5px, 0) rotate(-45deg);
    }
}

@keyframes burger-open-bot {
    50% {
        -webkit-transform: translate3d(0, -6px, 0);
        transform: translate3d(0, -6px, 0);
    }

    100% {
        -webkit-transform: translate3d(0, -6.5px, 0) rotate(-45deg);
        transform: translate3d(0, -6.5px, 0) rotate(-45deg);
    }
}

.parking img {
    object-fit: contain;
}

.mortgage__body-item {
    flex: 1 0 20%;
}

.cookies {
    font-size: 14px;
    position: fixed;
    bottom: 17px;
    left: 30px;
    background: white;
    padding: 19px 27px;
    display: flex;
    align-items: center;
    transform: translate(200px);
    animation: animationCookie .75s ease-in-out .5s;
    animation-fill-mode: forwards;
    opacity: 0;
    z-index: 1000;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05), 0px 1px 8px 3px rgba(183, 183, 183, 0.25);
    display: none;
    max-width: calc(100% - 60px);
}

@keyframes animationCookie {
    0% {
        opacity: 0;
        transform: translateY(200px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookies-msg {
    margin-right: 22px;
}

@media (max-width: 1024px) {
    .cookies {
        right: 18px;
        bottom: 18px;
        max-width: calc(100% - 36px);
        flex-direction: column;
    }

    .cookies-msg {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 800px) {
    .cookies {
        max-width: unset;
        width: 410px;
    }

    .cookies-msg {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 448px) {
    .cookies {
        right: 0;
        bottom: 0;
        left:0;
        width: 100%;
        padding: 19px;
    }
}

/* Новогоднее поздравление */

.header__aside {
    background: #0255ac;
    background-position: center;
    background-size: cover;
    background-image: url('../../static/img/aside-bg.png');
}

.hero__logo img {
    width: 180px;
    height: 65px;
}

.hero__logo svg {
    width: 180px;
    height: 65px;
}

.hero__logo svg path {
    width: 180px;
    height: 65px;
}

@media (max-width: 767px) {
    .header__aside {
        background-image: none;
    }
}

.building-card {
    position: relative;
}

.building-card a.first {
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

/* blur */
.blur-plug {
    width: 100%;
    background: rgb(255, 255, 255, 0.8);
    position: absolute;
    height: 80%;
    z-index: 10;
    display: grid;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.blur-plug-banks {
    height: 75%;
}

@media (max-width: 768px) {
    .blur-plug {
        line-height: 25px;
        width: 91%;
    }
}

/* прелоудер */

/* прелоудер */
.preloader-wrapper.active {
    opacity: 1;
    z-index: 100000;

}

.preloader-wrapper {
    opacity: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    background: #39414E;
    transition: .4s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#preloader-main path:last-child {
    opacity: 0.1;
    animation: logo 2s ease-in-out infinite;
}

#preloader-main path:nth-child(2) {
    animation: top 2s ease-in-out infinite;
}

#preloader-main path:first-child {
    animation: bottom 2s ease-in-out infinite;
}

@keyframes top {
    0% {
        transform: translateY(0) translateX(0);

    }

    50% {

        transform: translateY(-50px) translateX(50px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

@keyframes bottom {
    0% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(-50px) translateY(50px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes logo {
    0% {
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.1;
    }
}

/* ---- */

.news-pagination-tab--d-none {
    margin-top: 32px;
}

.hero {
    width: 100%;
    height: 90vh;
    min-height: 600px;
    position: relative;
}

.hero__logo>img {
    width: 180px;
    height: 65px;
}

.hero__logo>svg {
    width: 180px;
    height: 65px;
}

@media (max-width: 1023px) {
    .hero {
        min-height: initial;
        height: 50vh;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 50vh;
    }
}

.hero .container {
    height: 100%;
}

.hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 164px;
}

.hero__content {
    padding-bottom: 160px;
}

@media (max-width: 1439px) {
    .hero__content {
        padding-bottom: 146px;
    }
}

@media (max-width: 1023px) {
    .hero__content {
        padding-bottom: 155px;
    }
}

@media (max-width: 767px) {
    .hero__content {
        padding-bottom: 50px;
    }
}

.hero__title {
    font-weight: 700;
    max-width: 70%;
    color: #ffffff;
}

@media (min-width: 0) {
    .hero__title {
        font-size: 30px;
        letter-spacing: 0em;
        line-height: 36px;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 48px;
        letter-spacing: 0em;
        line-height: 56px;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 48px;
        letter-spacing: 0em;
        line-height: 56px;
    }
}

@media (min-width: 1440px) {
    .hero__title {
        font-size: 72px;
        letter-spacing: 0em;
        line-height: 80px;
    }
}

@media (max-width: 1023px) {
    .hero__title {
        max-width: 100%;
    }
}

.hero__tag+.hero__title {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .hero__tag+.hero__title {
        margin-top: 16px;
    }
}

.hero__tag {
    font-weight: 500;
    padding: 12px 24px;
   /* background-color: #d81159;*/
    color: #ffffff;
    border-radius: 4px 23px 23px 4px;
}

@media (min-width: 0) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 768px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 1024px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 1440px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 44, 57, 0)), color-stop(6.67%, rgba(30, 44, 57, 0.00691776)), color-stop(13.33%, rgba(30, 44, 57, 0.028408)), color-stop(20%, rgba(30, 44, 57, 0.0653279)), color-stop(26.67%, rgba(30, 44, 57, 0.117929)), color-stop(33.33%, rgba(30, 44, 57, 0.18542)), color-stop(40%, rgba(30, 44, 57, 0.265507)), color-stop(46.67%, rgba(30, 44, 57, 0.354153)), color-stop(53.33%, rgba(30, 44, 57, 0.445847)), color-stop(60%, rgba(30, 44, 57, 0.534493)), color-stop(66.67%, rgba(30, 44, 57, 0.61458)), color-stop(73.33%, rgba(30, 44, 57, 0.682071)), color-stop(80%, rgba(30, 44, 57, 0.734672)), color-stop(86.67%, rgba(30, 44, 57, 0.771592)), color-stop(93.33%, rgba(30, 44, 57, 0.793082)), to(rgba(30, 44, 57, 0.8)));
    background: -webkit-linear-gradient(top, rgba(30, 44, 57, 0) 0%, rgba(30, 44, 57, 0.00691776) 6.67%, rgba(30, 44, 57, 0.028408) 13.33%, rgba(30, 44, 57, 0.0653279) 20%, rgba(30, 44, 57, 0.117929) 26.67%, rgba(30, 44, 57, 0.18542) 33.33%, rgba(30, 44, 57, 0.265507) 40%, rgba(30, 44, 57, 0.354153) 46.67%, rgba(30, 44, 57, 0.445847) 53.33%, rgba(30, 44, 57, 0.534493) 60%, rgba(30, 44, 57, 0.61458) 66.67%, rgba(30, 44, 57, 0.682071) 73.33%, rgba(30, 44, 57, 0.734672) 80%, rgba(30, 44, 57, 0.771592) 86.67%, rgba(30, 44, 57, 0.793082) 93.33%, rgba(30, 44, 57, 0.8) 100%);
    background: linear-gradient(180deg, rgba(30, 44, 57, 0) 0%, rgba(30, 44, 57, 0.00691776) 6.67%, rgba(30, 44, 57, 0.028408) 13.33%, rgba(30, 44, 57, 0.0653279) 20%, rgba(30, 44, 57, 0.117929) 26.67%, rgba(30, 44, 57, 0.18542) 33.33%, rgba(30, 44, 57, 0.265507) 40%, rgba(30, 44, 57, 0.354153) 46.67%, rgba(30, 44, 57, 0.445847) 53.33%, rgba(30, 44, 57, 0.534493) 60%, rgba(30, 44, 57, 0.61458) 66.67%, rgba(30, 44, 57, 0.682071) 73.33%, rgba(30, 44, 57, 0.734672) 80%, rgba(30, 44, 57, 0.771592) 86.67%, rgba(30, 44, 57, 0.793082) 93.33%, rgba(30, 44, 57, 0.8) 100%);
}

.hero__bg {
    width: 100%;

    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (max-width: 767px) {
    .hero__bg {
        /* height: 200px;*/
    }
}

.section+.section--concat {
    margin-top: -130px;
    padding-bottom: 30px;
}

.complex-item-text__name>*:last-child:before {
    content: '';
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #90A2AC;
}

.complex-item-text__name>*:last-child {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.complex-item-text__name {
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    row-gap: 8px;
}

.complex-item-text__name h3 {
    margin-right: 40px;
}

.section--concat .f-input {
    border: 1px solid rgba(58, 70, 84, 0.20);
    padding-left: 30px;
}

.section--concat .f-checkbox--filter.f-checkbox input+span {
    border: 1px solid rgba(58, 70, 84, 0.20);
}

.section--concat .f-input__wrapper[data-label]:after {
    left: 12px;
}

.hero {
    width: 100%;
max-height: 90vh; 
/*max-height:639px;*/
    min-height: 600px;
    position: relative;
}

.hero__logo>img {
    width: 180px;
    height: 65px;
}

.hero__logo>svg {
    width: 180px;
    height: 65px;
}

@media (max-width: 1023px) {
    .hero {
        min-height: initial;
        height: 50vh;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 50vh;
    }
}

.hero .container {
    height: 100%;
}

.hero__content::after {
    content: unset !important;
}

.hero__title::after {
    content: unset !important;
}

.hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-bottom: 164px;
    border-left: unset !important;
}

.hero__content {
    padding-bottom: 160px;
}

@media (max-width: 1439px) {
    .hero__content {
        padding-bottom: 146px;
    }
}

@media (max-width: 1023px) {
    .hero__content {
        padding-bottom: 155px;
    }
}

@media (max-width: 767px) {
    .hero__content {
        padding-bottom: 160px !important;
        padding-left: 0 !important;
    }
}

.hero__title {
    font-weight: 700;
    max-width: 70%;
    color: #ffffff;
}

@media (min-width: 0) {
    .hero__title {
        font-size: 30px;
        letter-spacing: 0em;
        line-height: 36px;
    }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 48px;
        letter-spacing: 0em;
        line-height: 56px;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 48px;
        letter-spacing: 0em;
        line-height: 56px;
    }
}

@media (min-width: 1440px) {
    .hero__title {
        font-size: 72px;
        letter-spacing: 0em;
        line-height: 80px;
    }
}

@media (max-width: 1024px) {
    .hero__title {
        max-width: 100%;
    }
}

.hero__tag+.hero__title {
    margin-top: 24px;
}

@media (max-width: 767px) {
    .hero__tag+.hero__title {
        margin-top: 16px;
    }
}

.hero__tag {
    font-weight: 500;
    padding: 12px 24px;
    background-color: #d81159;
    color: #ffffff;
    border-radius: 4px 23px 23px 4px;
}

@media (min-width: 0) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 768px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 1024px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

@media (min-width: 1440px) {
    .hero__tag {
        font-size: 14px;
        letter-spacing: 0em;
        line-height: 18px;
    }
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 44, 57, 0)), color-stop(6.67%, rgba(30, 44, 57, 0.00691776)), color-stop(13.33%, rgba(30, 44, 57, 0.028408)), color-stop(20%, rgba(30, 44, 57, 0.0653279)), color-stop(26.67%, rgba(30, 44, 57, 0.117929)), color-stop(33.33%, rgba(30, 44, 57, 0.18542)), color-stop(40%, rgba(30, 44, 57, 0.265507)), color-stop(46.67%, rgba(30, 44, 57, 0.354153)), color-stop(53.33%, rgba(30, 44, 57, 0.445847)), color-stop(60%, rgba(30, 44, 57, 0.534493)), color-stop(66.67%, rgba(30, 44, 57, 0.61458)), color-stop(73.33%, rgba(30, 44, 57, 0.682071)), color-stop(80%, rgba(30, 44, 57, 0.734672)), color-stop(86.67%, rgba(30, 44, 57, 0.771592)), color-stop(93.33%, rgba(30, 44, 57, 0.793082)), to(rgba(30, 44, 57, 0.8)));
    background: -webkit-linear-gradient(top, rgba(30, 44, 57, 0) 0%, rgba(30, 44, 57, 0.00691776) 6.67%, rgba(30, 44, 57, 0.028408) 13.33%, rgba(30, 44, 57, 0.0653279) 20%, rgba(30, 44, 57, 0.117929) 26.67%, rgba(30, 44, 57, 0.18542) 33.33%, rgba(30, 44, 57, 0.265507) 40%, rgba(30, 44, 57, 0.354153) 46.67%, rgba(30, 44, 57, 0.445847) 53.33%, rgba(30, 44, 57, 0.534493) 60%, rgba(30, 44, 57, 0.61458) 66.67%, rgba(30, 44, 57, 0.682071) 73.33%, rgba(30, 44, 57, 0.734672) 80%, rgba(30, 44, 57, 0.771592) 86.67%, rgba(30, 44, 57, 0.793082) 93.33%, rgba(30, 44, 57, 0.8) 100%);
    background: #ffffff00;
}

.hero__bg {
    width: 100%;
   
    -o-object-position: center;
    object-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
@media (min-width: 1290px) {
    .swiper-slide .hero__bg{
        width: auto;
        min-width: 1290px;
    }
}
#no-main-bg .hero__bg{
    max-height: 90vh;
}
@media (max-width: 767px) {
    .hero__bg {
        /* height: 200px;*/
    }
    .section #mortgage-app .tabs#program-tabs{
        flex-wrap: wrap;
        justify-content: center;
    }
}

.section+.section--concat {
    margin-top: -100px;
    padding-bottom: 30px;
}

.complex-item-text__name>*:last-child:before {
    content: '';
    display: flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #90A2AC;
}

.complex-item-text__name>*:last-child {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.complex-item-text__name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    row-gap: 8px;
}

.section--concat .f-input {
    border: 1px solid rgba(58, 70, 84, 0.20);
    padding-left: 30px;
}

.section--concat .f-checkbox--filter.f-checkbox input+span {
    border: 1px solid rgba(58, 70, 84, 0.20);
}

.section--concat .f-input__wrapper[data-label]:after {
    left: 12px;
}


@media (min-width: 1440px) {
    .swiper-slide .banner-picture:not(.photo-preview) {
        display: none;
    }

    .hero {
        height: 866px;
    }
}

@media (max-width: 1439px) {
    .swiper-slide .banner-picture:not(.photo-desktop) {
        display: none;
    }

    .hero {
        height: 773px;
    }

    .hero__logo {
        width: 131px;
        margin: 48px 0 auto 0;
    }
}

@media (max-width: 1024px) {
    .swiper-slide .banner-picture:not(.photo-laptop) {
        display: none;
    }

    .swiper-slide .banner-picture.photo-laptop {
        display: flex;
    }

    .hero {
        height: 640px;
    }

    .hero__logo {
        width: 101px;
        margin: 32px 0 auto 0;
    }
}

@media (max-width: 767px) {
    .hero {
        height: calc(75vh - 70px);
    }

    .hero {
        height: 606px;
    }
}

@media (max-width: 435px) {
    .swiper-slide .banner-picture:not(.photo-mobile) {
        display: none;
    }

    .swiper-slide .banner-picture.photo-mobile {
        display: flex;
    }
}

.news-card {
    height: 100%;
}

.f-select__wrapper--sort .f-select {
    color: #e3b17b;
    padding: 0;
    border: none;
    cursor: pointer;
}

.f-select__wrapper--sort .f-select .ss-option {
    color: #000000;
}

.apartment-choose__header {
    margin-bottom: 15px;
}

.f-select {
    width: 100%;
}

@media (min-width: 1023px) {

    .hero__content .button-main__slider span {
        line-height: 30px;
    }

}

.hero{
z-index:0;
}

.icon-compare.active path{
  fill: #f90;           
}


.icon-compare:hover:not(.active) {
  color: #555;
}
.icon-compare:hover{
  cursor: pointer;
}
.message-com{
    position: absolute;
    background: white;
    border: 1px solid #dbc6af;
    right: -60px;
    bottom: -35px;
    transition: opacity 0.5s ease;
}
.header.message-com{
    right: 10px;
    bottom: -45px;
}
.detail.message-com{
    left: 50px;
    right: unset;
    bottom: -35px;
}
.header.message-com > a{
    color: #e3b17b;
}
.compare-count{
    color:red;
    margin-left: 10px;
}
.relative{
    position: relative;
}
.item-butt{
display: flex;
flex-direction: column;
justify-content: space-between;
}
ul.filter_list li.item_text{
color:black;
}
.comparison{
padding: 32px 0 32px 0;
}
.filter_compare-none{
padding-top: 3rem;
margin-bottom: 3rem;
min-width: 100%;
display: flex;
flex-direction: column;
gap: 2rem;
font-size: 18px;
line-height: 24px;
}
.filter_compare-none .compare__but{

min-width: 100%;

}
.filter_compare{
display: flex;
padding-top: 1rem;
margin-bottom: 3rem;
overflow-x:auto;
scrollbar-width: thin; 
scrollbar-color: #888 #f1f1f1; 
}

.filter_compare::-webkit-scrollbar {
height: 8px; 
}

.filter_compare::-webkit-scrollbar-track {
background: #f1f1f1; 
border-radius: 4px;
}

.filter_compare::-webkit-scrollbar-thumb {
background: #888; 
border-radius: 4px;
}

.filter_compare::-webkit-scrollbar-thumb:hover {
background: #555; 
}
.comapre_item{
min-width: 55%;
}
.header_text{
display: flex;
justify-content: space-between;
border-bottom: 1px solid black;
background-color: #F7FAFC;
align-items: center;
}
.item_text{
display: flex;
align-items: center;
min-height: 50px;
color:#4A739C;
}
.header_text{
color: black;
}
.remove {
  color: red;
  margin-right: 10px;
  cursor: pointer;
}
.compare__but{
max-width: 60%;
background-color: #3A4654;
color: #FFFFFF;
}
.button--gradient.button::after {
    background: #3A4654;
}
@media(min-width: 768px){
.comapre_item{
min-width: 33%;
}
.filter_compare-none{
max-width: 60%;
min-width: 60%;
}
.filter_compare-none .compare__but{
max-width: 40%;
min-width: 40%;
}
}
@media(min-width: 1400px){

.comapre_item{
min-width: 24%;
}
}
@media(min-width: 1920px){
.comapre_item{
min-width: 20%;
}
}

.red{
color:red;
}
.green{
color:green;
}
.tabs {
  display: flex;
  gap: 10px;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.tab-adv {
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.6rem;
  color: #d24545;
  background-color: #fff5f5;
  cursor: pointer;
  transition: background 0.2s;
}

.tab-adv:hover {
  background-color: #ffecec;
}

.tab-adv.active {
  font-weight: bold;
  border-bottom: 2px solid #d24545;
  background-color: #fff5f5;
}