:root {
    --font-family-montserrat: 'Montserrat', sans-serif;
    --font-family-tactic: 'Tactic Sans';
}

@font-face {
    font-family: 'Tactic Sans';
    src: local('Tactic Sans Medium'), local('Tactic-Sans-Medium'),
        url('../fonts/TacticSans-Med.woff2') format('woff2'),
        url('../fonts/TacticSans-Med.woff') format('woff'),
        url('../fonts/TacticSans-Med.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Tactic Sans';
    src: local('Tactic Sans Regular'), local('Tactic-Sans-Regular'),
        url('../fonts/TacticSans-Reg.woff2') format('woff2'),
        url('../fonts/TacticSans-Reg.woff') format('woff'),
        url('../fonts/TacticSans-Reg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Tactic Sans';
    src: local('Tactic Sans Bold'), local('Tactic-Sans-Bold'),
        url('../fonts/TacticSans-Bld.woff2') format('woff2'),
        url('../fonts/TacticSans-Bld.woff') format('woff'),
        url('../fonts/TacticSans-Bld.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Regular'), local('Montserrat-Regular'),
        url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Medium'), local('Montserrat-Medium'),
        url('../fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat Bold'), local('Montserrat-Bold'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


.btn {
    transition: all ease .3s;
}

.btn.red {
    border: 1px solid #e00000;
}

.btn:hover {
    background-color: #E00000;
    color: #fff;
    border-color: #E00000;
}

.btn.red:hover {
    color: #0D0D0D;
    background-color: #fff;
    border-color: rgb(66, 66, 66);
}


.overlay {
    display: none;
    background: rgba(0, 0, 0, 0.64);
    backdrop-filter: blur(46px);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 2;
}

.overlay.active {
    display: block;
}

.mobile-hidden {
    display: none;
}

.container {
    max-width: 300px;
    margin: 0 auto;
}

.header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.49);
    /* backdrop-filter: blur(13px); */
    z-index: 20;
    transition: all ease .3s;
}

.header.scrolled {
    background-color: rgb(25, 25, 25);
}

input[type='checkbox'] {
    width: 1px;
    height: 1px;
    margin: 0;
    position: absolute;
    display: block;

    top: 69px;
    left: 10px;
}

.form-modal input[type='checkbox'] {

    bottom: 35px;
    left: 25px;
}

.footer__form input[type='checkbox'] {
    bottom: auto;
    top: 20px;
    width: 1px;
    height: 1px;
}

.credit-form input[type='checkbox'] {
    bottom: auto;
    top: 20px;
}


.header-container {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;

    align-items: center;
}

.header-info {
    font-family: var(--font-family-montserrat);
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    color: #FFFFFF;
    /* flex-basis: 50%; */
}

.header-info a {
    color: #FFFFFF;
    line-height: 14px;
    font-size: 10px;
}

.header-info div {
    display: flex;
    align-items: center;

    font-size: 14px;
}

.header-info .wrapper-tel-header {
    display: none;
}


.header-info div img {
    width: 6px;
    height: 8px;
    margin-right: 6px;
}

.header-button button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    /* border: 0.358025px solid #FF0000; */
    border-radius: 50%;
}

.header-button span {
    display: none;
}

.header-nav {
    display: none;
}

/* side menu */

.side-menu {
    display: flex;
    flex-direction: column;
    transition: all ease .3s;
    width: 0vw;
    position: fixed;
    top: 61px;
    right: 0;
    z-index: 55;
    /* background-color: var(--color-white); */
    background-color: rgb(44, 44, 44);
    height: 100vh;
}

.side-menu-list {
    display: none;
    flex-direction: column;
}

.bg-logo-side-menu {
    position: absolute;
    left: 0;
    top: 100px;
    width: 100%;
    z-index: -1;
}

.side-menu.active .side-menu-list {
    display: flex;
    padding: 0 20px;
    margin: 20px 0 70px;
}

.side-menu.active .side-menu-list li {
    display: flex;
    /* padding: 9px 0; */
    font-size: 16px;

    justify-content: center;
    text-transform: uppercase;
    border-bottom: 1px solid rgb(224, 0, 0);
    padding: 29px 0;
}

.side-menu.active .side-menu-list li a {
    /* color: var(--color-gray); */
    color: #fff;
    text-decoration: none;
}

.side-menu .btn {
    display: none;
    /* border-radius: 37px;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
    width: auto;
    height: 39px;
    font-size: 14px; */
    margin: 0 auto;
    /* height: 42px; */

    width: 320px;
    height: 50px;
    border-radius: 24px;
    background: #fff;
    font-size: 15px;
    font-family: 'Tactic Sans';
}

.side-menu.active .btn {
    display: block;

}



.banner {
    width: 100%;
    background-size: cover;
    background-position: center;

    background-color: #000;
    padding-bottom: 20px;
}

.banner-info {
    padding-top: 20px;
    position: relative;
}

.list-advantages {
    font-size: 10px;
    padding-left: 7px;
    border-left: 2px solid #E00000;
    color: #fff;
    font-weight: 700;
    font-family: 'Montserrat';
    line-height: 17px;
    margin-top: 90px;
}

.wrapper-text-banner-mob {
    /* background: url(../img/banner-mob.webp) no-repeat; */
    background: url(../img/new-banner-mob.webp) no-repeat;
    background-size: cover;
    background-position: center;
    /* height: 368px; */
    height: auto;
    color: #fff;
    padding-top: 80px;
}

.wrapper-text-banner-mob .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 50px;
}

.wrapper-text-banner-mob h3,
.wrapper-text-banner-mob p {
    text-transform: uppercase;
    font-size: 20px;
    font-family: 'Tactic sans';
}


.wrapper-text-banner-mob p {
    font-size: 16px;
    padding-top: 25px;
}

.wrapper-text-banner-mob h3 {
    /* max-width: 230px; */
    position: relative;

        font-size: 19px;
}

.wrapper-text-banner-mob h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 131px;
    height: 2px;
    background-color: #E00000;
}

.banner-info.banner-info-line,
.banner-advantage .banner-info-text {
    display: none;
}

.banner-info div:nth-child(1) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.banner-info div:nth-child(1)::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: -4px;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 254, 254, 0) 90%, rgba(255, 255, 255, 0.2847732843137255) 100%);
}




.action__timer {
    color: #fff;
    margin: 40px 0;
    font-family: 'Montserrat';
}

.action__timer-title {
    padding-bottom: 30px;
    text-align: center;
}

.timer {
    margin: 0 auto;
}



.banner__small-title {
    font-family: var(--font-family-tactic);
    font-weight: 400;
    font-size: 18.9px;
    line-height: 24px;
    color: #FFFFFF;
    position: relative;
}

.banner__small-title.advan {
    padding-bottom: 20px;
}

.banner-search {
    margin-top: 10px;
    position: relative;
}

.banner-search::before {
    content: "";
    position: absolute;
    background: url(../img/search-small.svg) no-repeat;
    width: 7px;
    height: 11px;
    left: 3px;
    top: 45%;
}

.banner-search input {
    width: 102px;
    height: 11px;
    margin-right: 10px;
    background: none;
    border: 0.304167px solid #FFFFFF;
    border-radius: 21.5958px;
    color: #FFFFFF;
    padding-left: 15px;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 7.81px;
    line-height: 8px;
}

.banner-info-text {
    font-family: var(--font-family-tactic);
    font-weight: 400;
    font-size: 16.7977px;
    line-height: 17px;
    color: #FFFFFF;
    padding-top: 141px;
}

.banner__button {
    background: #FFFFFF;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-tactic);
    border-radius: 23.9269px;
    font-weight: 500;
    line-height: 15px;
    color: #000000;

    width: 100%;
    height: 50px;
    margin-top: 0;
    font-size: 15px;
}

.banner__button:hover {
    background: rgb(159, 159, 159);
    background: linear-gradient(90deg, rgba(159, 159, 159, 1) 0%, rgba(255, 255, 255, 1) 100%);
}


.banner-advantage .item-advantages {
    display: flex;
    justify-content: space-between;
    /* padding-top: 11px; */
    padding-top: 21px;
}

.banner-advantage p {
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 8.81011px;
    line-height: 11px;
    color: #FFFFFF;
    position: relative;
    padding: 0 10px 13px;
}

.banner-advantage p::before {
    content: "";
    position: absolute;
    height: 10px;
    width: 1px;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
}

.banner-advantage p::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #FFFFFF;
}

.banner-advantage .banner-info-text {
    font-family: var(--font-family-tactic);
    font-weight: 400;
    font-size: 18.9px;
    line-height: 24px;
    color: #FFFFFF;
    position: relative;
}

.banner-info-text:after,
.banner-info-text::before {
    display: none;
}

.banner-advantage-info {
    /* border: 1px solid transparent;
     border-image: linear-gradient(214deg, #E00000 12%, transparent 10%);
     border-image-slice: 1; */

    border: 1px solid transparent;
    transition: all ease .3s;
}

.banner-advantage-info:hover {
    color: #e00000;
    /* border: 1px solid transparent; */
    border-image: linear-gradient(218deg, #E00000 11%, transparent 10%);
    border-image-slice: 1;
    cursor: pointer;
}

.item-advantages p:nth-of-type(1) {
    /* border-image: linear-gradient(219deg, #E00000 9%, transparent 4%); */
    padding-top: 5px;
}

.item-advantages p:nth-of-type(1):hover {
    border-image: linear-gradient(219deg, #E00000 9%, transparent 4%);
    border-image-slice: 1;
    /* padding-top: 5px; */
}

.item-advantages p:nth-of-type(2):hover {
    border-image: linear-gradient(219deg, #E00000 7%, transparent 4%);
    border-image-slice: 1;
}

.banner-advantage-info:hover::after,
.banner-advantage-info:hover::before {
    background-color: #e00000;
}


.auto-price-card {
    width: 100%;
    box-shadow: 0px 41.7776px 33.4221px rgb(0 0 0 / 5%), 0px 22.3363px 17.869px rgb(0 0 0 / 4%), 0px 12.5216px 10.0172px rgb(0 0 0 / 4%), 0px 6.6501px 5.32008px rgb(0 0 0 / 3%), 0px 2.76726px 2.21381px rgb(0 0 0 / 2%);
    border-radius: 9px;
    padding: 15px 19px 30px;
    margin-bottom: 70px;
    background: #FFFFFF;
    /* margin-top: -30px; */
    border-bottom: 2px solid #E00000;
    position: relative;

    overflow: hidden;
}

.auto-price-card::before {
    content: "";
    position: absolute;
    width: 89%;
    height: 3px;
    right: 19px;
    z-index: 2;
    background: rgb(207, 207, 207);
    background: linear-gradient(90deg, rgb(207 207 207 / 7%) 0%, rgb(255 251 251 / 0%) 45%, rgba(0, 0, 0, 0.8730085784313726) 100%);
}

.auto-price-card::after {
    content: "";
    position: absolute;
    height: 90%;
    width: 3px;
    right: 19px;
    top: 18px;
    background: rgb(0, 0, 0);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8505996148459384) 0%, rgba(233, 232, 232, 0) 45%, rgba(255, 254, 254, 0.1727284663865546) 100%);
}

.auto-price-card::before,
.auto-price-card::after {
    display: none;
}

/* swiper style */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
}

.swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
}

.mySwiper2 {
    height: 80%;
    width: 100%;
}

.mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px 0;
}

.mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
    opacity: 1;
}



/* .main-img-model, */
/* auto-card__img {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    transition: all ease .3s;
    visibility: hidden;
    max-width: 340px;
}

.main-img-model.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.wrapper-color-n-text {
    position: relative;
    bottom: 35px;
    right: 20px;
 
}

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.colors .color {
    width: 24px;
    height: 24px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
}


.color svg {
    display: none;
}

.color.active svg {
    display: block;
}

.wrapper-color {
    display: flex;
    width: 160px;
    margin-left: 0;
    align-items: center;
}


.swiper-colors__prev,
.swiper-colors__next {
    transform: rotate(-90deg);
}


.wrapper-color span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.swiper-slide span svg {
    display: none;
}


.swiper-slide.swiper-slide-active span svg {
    display: block;
} */

.main-banner__sub-title {
        font-size: 18px;
    font-family: 'Tactic sans';
    margin-top: 15px;
    color: #fff;
}



.equipments {
    display: flex;
    flex-direction: column;
}

.auto-card-img {
    position: relative;
}

.auto-card__img {
    /* position: absolute; */
    /* right: 50%; */
    /* transform: translateX(50%); */
    /* left: auto; */
    max-width: 100%;
    z-index: 2;
    /* bottom: 60px; */
    top: auto;
}

.auto-card__bg {
    position: absolute;
    width: 100%;
    right: 0;
    top: -35px;
}

.block-img {
    /* padding: 206px 5px 0; */
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.block-img img {
    /* width: 70px;
    height: 47px; */
    width: 100%;
    height: unset;
}

.img-cont {
    position: relative;

    filter: brightness(0.4)
}

.img-cont.active {
    border-bottom: 3px solid #E00000;
    filter: brightness(1);
}

.img-cont:hover {
    filter: brightness(1);
}

/* .img-cont::after {
    height: 80%;
    content: "";
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
}

.img-cont.active::after {
    display: none;
} */

.bk__img {
    width: 60px;
    height: 47px;
    background: rgba(0, 0, 0, 0.63);
    cursor: pointer;
    position: relative;
}

.bk__img img.active {
    opacity: 1;
}

.bk__img.active::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 4px;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    background: #E00000;
    bottom: -7px;
}

.bk__img:hover img {
    opacity: 1;
}

.auto-card-info__title {
    font-family: var(--font-family-tactic);
    font-weight: 700;
    font-size: 26px;
    line-height: 28px;
    position: relative;
    margin: 20px 0 30px;
}

.auto-card-info__title span {
    display: none;
}

.auto-card__btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
}

.auto-card-info button {
    height: 40px;
    text-transform: uppercase;
    font-size: 12px;
    color: #535353;
    font-family: 'Tactic Sans', sans-serif;
    max-width: 265px;
    background: none;
    border: 1px solid #424242;
}

.auto-card-info button:last-child {
    background: #E00000;
    /* border: none; */
    color: #fff;
}

.auto-card-info p {
    font-family: var(--font-family-montserrat);
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    position: relative;
    padding: 3px 11px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auto-card-info p::before {
    content: "";
    position: absolute;
    height: 13px;
    width: 2px;
    left: 0;
    top: 5px;
    background: #000000;
}

.auto-card-info p::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    background: #000000;
    left: -12px;
}

.auto-card-info p::before,
.auto-card-info p::after {
    display: none;
}

.auto-card-info div:nth-child(3) h4 {
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 42px;
    line-height: 39px;
}

.auto-card-info div:nth-child(3) h4 span {
    font-size: 25.5317px;
    line-height: 24px;
    display: block;
}

.auto-card-info button {
    width: 100%;
    height: 40px;
    border-radius: 32.4654px;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 14.3284px;
    line-height: 17px;
}

.auto-card__prices {
    position: relative;
    font-family: "Montserrat", sans-serif;
    margin-top: 43px;
}

.auto-card__prices .old-price {
    color: #E00000;
    font-size: 15px;
    line-height: 107%;
    position: absolute;
    right: 0;
    top: 6px;
}

.auto-card__prices .new-price {
    display: block;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    padding-top: 0;
}

.auto-card__prices .new-price span {
    display: block;
    font-size: 39px;
    line-height: 42px;
}

/* .auto-card-info div:nth-child(3) button:nth-child(2) {
    border: 1.19403px solid #949494;
    color: #878787;
    background: none;
}
.auto-card-info div:nth-child(3) button:nth-child(2):hover {
    border: 1.19403px solid #000000;
    color: #000000;
} */
.auto-card-info div:nth-child(3) button:nth-child(3) {
    color: #FFFFFF;
    background: #E00000;
}

.auto-card-info div:nth-child(3) button:nth-child(3):hover {
    background: #000000;
}


.wrapper-main-img-model {
    display: flex;
    justify-content: center;
    align-items: center;

    padding-bottom: 35px;
}


/* .main-img-model, */
/* .auto-card__img {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    transition: all ease .3s;
    visibility: hidden;
    max-width: 340px;
} */

/* .auto-card__img.active {
    position: relative;
    opacity: 1;
    visibility: visible;
} */

.colors {
    position: absolute;
    /* right: 40px;
    bottom: 60px; */
    /* width: 180px; */
    width: 160px;

    bottom: auto;
    /* top: 200px; */
    top: 185px;
    z-index: 2;
    left: 50%;
    transform: translateX(-50%);
}

.colors .swiper {
    padding: 0 8px;
}

.colors-swiper {
    height: 100%;
    width: 125px;
    position: static;
}

.wrapper-main-img-model .swiper-slide,
.colors .swiper-slide {
    background-color: transparent;
}

.wrapper-main-img-model .swiper,
.colors .swiper {
    height: auto;
}

.swiper-slide img {
    display: block;
    /* width: 100%;
    height: 100%;
    object-fit: cover; */
}

.colors .color {
    /* width: 34px; */
    /* height: 34px; */
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid gray;
}


.color svg {
    display: none;
}

.color.active svg {
    display: block;
}

.wrapper-color {
    display: flex;
    width: 160px;
    margin-left: 0;
    align-items: center;
}


.swiper-colors__prev,
.swiper-colors__next {
    transform: rotate(-90deg);
}


.wrapper-color span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}

.colors-swiper .swiper-slide {
    background-color: transparent;
}

/* .swiper-slide span svg {
    display: none;
}


.swiper-slide.swiper-slide-active span svg {
    display: block;
} */


.colors .swiper-button-next,
.colors .swiper-button-prev {
    width: 14px;
    height: 23px;
}

.colors .swiper-button-next {
    left: auto;
    right: 0;
}

.colors .swiper-button-prev {
    left: 0;
}


.colors .swiper-button-next::after,
.colors .swiper-button-prev::after {
    display: none;
}



/* pop-up swiper style */

.pop-up-swiper {
    display: none;
    padding: 59px 39px 94px;
    /* background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(27px); */
    position: relative;
    /* background: url(../img/pop-up-swiper-bk.png) no-repeat; */
    width: 100%;
    min-height: 348px;
    top: 20%;
    z-index: 20;
    background-size: cover;
    position: fixed;
}

.pop-up-swiper.active {
    display: block;
}

.swiper-closed {
    position: absolute;
    cursor: pointer;
    width: 15px;
    height: 15px;
    right: 19px;
    top: 39px;
    z-index: 50;
}

.swiper-padding {
    padding-bottom: 50px;
}

.pop-up-swiper::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 32px;
    right: 15px;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.671327906162465) 0%, rgba(150, 150, 150, 0.32679009103641454) 48%, rgba(255, 254, 254, 0.9542410714285714) 100%);
}

.pop-up-swiper::after {
    content: "";
    position: absolute;
    height: 85%;
    width: 1px;
    top: 32px;
    right: 15px;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.16712622549019607) 0%, rgba(150, 150, 150, 0.26516544117647056) 0%, rgba(255, 254, 254, 0.9542410714285714) 100%);
}

.mySwiper {
    height: 100%;
}

.mySwiper .swiper-slide {
    opacity: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    top: auto;
    bottom: 3px;
    left: 0;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    top: auto;
    bottom: 3px;
    left: 55px;
}

.swiper-pagination {
    bottom: 17px !important;
    text-align: right;
}

.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    z-index: 11;
}

.swiper-button-next:hover {
    opacity: 0.4;
}

.swiper-button-prev:hover {
    opacity: 0.4;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "";
    background: url(../img/next.svg);
    width: 40px;
    height: 40px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "";
    background: url(../img/next.svg);
    transform: rotate(-180deg);
    width: 40px;
    height: 40px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    /* opacity: 1; */
    opacity: .5;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #E00000;
}


/* offer style */

.offer {
    background: url(../img/offer-banner.webp) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 502px;
    margin-top: -90px;
}

.offer-container {
    padding: 0 20px;
}

.form__checkbox {
    opacity: 0;
    display: none;
    z-index: 1;
    margin: 0;
    width: 18px;
    height: 18px;
    margin-right: 20px;
    margin-top: 16px;
}

.block-checkbox {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

input[type=checkbox]+label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 1.33815px solid #FFFFFF;
    border-radius: 50%;
    position: absolute;
    left: 0%;
    bottom: auto;
    /* top: 10px; */
}

.credit-form input[type=checkbox]+label:before {
    border: 1.33815px solid #000000
}

.form__checkbox[type=checkbox]:checked+label:before {
    background-image: url(../img/checked.svg);
    background-repeat: no-repeat;
    background-size: 8px;
    background-position: center;
}

.offer__title {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding: 47px 0 20px;
    color: #FFFFFF;
}

.offer__form input:not(input[type='checkbox']) {
    width: 100%;
    height: 45px;
    border: 2px solid #FFFFFF;
    border-radius: 54.3795px;
    background: none;
    margin-bottom: 18px;
    font-family: var(--font-family-montserrat);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    padding-left: 18px;
    color: #FFFFFF;
}

.credit-form input:not(input[type='checkbox']) {
    color: #000;
}

.offer-flex button {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 49px;
    width: 100%;
    background: #E00000;
    border-radius: 54.3795px;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
}



.offer-btn__img {
    background: url(../img/offer-btn.svg) no-repeat;
    width: 19px;
    height: 19px;
}

.offer-flex button:hover {
    background: #FFFFFF;
    color: #000000;
}

/* .credit-flex button:hover {
    background: #000000;
    color: #FFFFFF;
}
.offer-flex button:hover .offer-btn__img {
    background: url(../img/btn-black.svg) no-repeat;
}
.credit-flex button:hover .offer-btn__img {
    background: url(../img/btn-white.svg) no-repeat;
} */
.block-checkbox label {
    font-family: var(--font-family-montserrat);
    font-weight: 400;
    padding-left: 30px;
    margin-top: 10px;
    font-size: 10px;
    line-height: 12px;
    color: #FFFFFF;
}

.block-checkbox label a {
    font-size: inherit;
    color: inherit;
}

.block-checkbox label span {
    color: #E00000;
    text-decoration: underline;
}

.selects {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.block-select {
    width: 270px;
    margin: -74px auto 29px;
    background: white;
    box-shadow: 0px 19.3389px 15.4711px rgb(0 0 0 / 5%), 0px 10.3395px 8.27158px rgb(0 0 0 / 4%), 0px 5.79623px 4.63698px rgb(0 0 0 / 4%), 0px 3.07833px 2.46267px rgb(0 0 0 / 3%), 0px 1.28096px 1.02477px rgb(0 0 0 / 2%);
    border-radius: 4.1661px;
    padding: 19px 31px;
}

.block-select__title {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding-bottom: 30px;
}

.select2-container--default .select2-selection--single {
    border: none;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-family: var(--font-family-montserrat);
    font-style: normal;
    color: #000000;
    font-weight: 500;
    font-size: 11.1096px;
    line-height: 14px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: url(../img/select.svg) no-repeat;
    width: 14px;
    height: 7px;
    border: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: #E8E8E8;
    color: #000000;
    font-weight: 400;
    font-size: 12.9778px;
    line-height: 16px;
}

.select2-search--dropdown {
    display: none;
}

.SumoSelect.open>.CaptionCont,
.SumoSelect:focus>.CaptionCont,
.SumoSelect:hover>.CaptionCont {
    box-shadow: 0 0 2px #e00000;
    border-color: #e00000;
}

.SumoSelect>.optWrapper>.options li.opt {
    border-bottom: none;
    font-family: var(--font-family-montserrat);
    font-weight: 400;
    font-size: 12.9778px;
    line-height: 16px;
}


.auto-select .container {
    max-width: 100%;
}

.select-card {
    /* padding: 0 30px 59px; */
    box-shadow: 0px 3.77px 3.77px 0px rgba(0, 0, 0, 0.25);
    padding: 0 20px;
    flex-direction: column;
    align-items: center;

}

.select-card img {
    max-width: 100%;
}

.select-card-info p {
    font-family: 'Tactic Sans', sans-serif;
    font-weight: 700;
    font-size: 17.972px;
    line-height: 21px;
}

.select-card-info p:nth-child(2) {
    font-weight: 500;
    /* margin-bottom: 15px; */
}

.select-card-info p:nth-child(3) {
    color: #E00000;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 23px;
    margin-bottom: 12px;
}

.select-card-info p:nth-child(3) s {
    font-weight: 400;
    font-size: 15px;
    line-height: 107%;
}

.select-card button {
    width: 100%;
    height: 42px;
    background: #E00000;
    border-radius: 34.1339px;
    font-family: 'Tactic Sans', sans-serif;
    font-weight: 700;
    font-size: 12.554px;
    line-height: 15px;
    color: #FFFFFF;
    /* margin: 8px auto; */
    margin: 18px auto;
}

.select-card button:hover {
    background: #000000;
    color: #FFFFFF;
}

.open-button {
    text-align: center;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 12.3971px;
    line-height: 15px;
}

.open-button img {
    margin-top: 12px;
}

.js-closed-img.active {
    transform: rotate(180deg);
}

.closed-open {
    display: none;
}

.mobile-hidden-select {
    display: none;
}

.js-no-active {
    display: none;
}


.swiper-title {
    padding-bottom: 10px;
}

.wrapper-character-equip {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    padding: 35px 0 59px;

    gap: 18px;
    max-width: 335px;
}

.wrapper-character-equip div {
    /* font-size: 14px; */
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wrapper-character-equip div:nth-child(3) {
    width: 118px;
}

.wrapper-character-equip div:nth-child(2) {
    padding-left: 19px;
}

.wrapper-character-equip div p {
    font-size: 14px;
}

.price-equip {
    color: #e00000;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

.price-equip s {
    font-size: 14px;
    color: #2E2E2E;
    font-weight: 400;

}

.credit {
    /* background: url(../img/credit-bk.png) no-repeat; */
    width: 100%;
    min-height: 254px;
    background-size: contain;
    margin-top: 59px;
    /* padding: 51px 28px 51px; */

    padding: 0;
}

.credit .container {
    max-width: 100%;
}

.bg-credit {
    display: none;
}

.bg-credit-mob {
    width: 100%;
}


.container-line {
    position: relative;
}

/* .container-line::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    top: 0;
    background: rgb(255,255,255);
}   
.container-line::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0) 0%, rgba(150,150,150,0.26516544117647056) 50%, rgba(0,0,0,0.9542410714285714) 100%);
}  */
.credit-container {
    /* padding: 0 13px 35px; */
    position: relative;

    display: flex;
    flex-direction: column-reverse;
    padding: 0;
}

.credit-container>div {
    padding: 0 20px;
}

.credit .list-advantages {
    background: #000;
    padding: 38px 20px 48px 27px;
    border: none;
    font-weight: 500;
    margin-top: -4px;
    line-height: 23px;
    position: relative;
}

.credit .list-advantages::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 32px;
    width: 1px;
    height: 100px;
    background-color: rgb(255, 0, 0);
}


/* .credit-container::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(150,150,150,0.26516544117647056) 50%, rgba(0,0,0,0.9542410714285714) 100%);
}
.credit-container::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    right: 0;
    top: 0;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(150,150,150,0.26516544117647056) 50%, rgba(0,0,0,0.9542410714285714) 100%);
} */
.credit-info {
    position: relative;
}

/* .credit-info::before {
    content: "";
    position: absolute;
    background: url(../img/vector14.svg) no-repeat;
    width: 20px;
    height: 20px;
    top: 65%;
    left: 37%;
} */
/* .credit-info::after {
    content: "";
    position: absolute;
    background: url(../img/vector14.svg) no-repeat;
    width: 20px;
    height: 20px;
    top: 85%;
    left: 20%;
} */
.credit-info p {
    padding-top: 113px;
    text-align: right;
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 16.2358px;
    line-height: 33px;
    color: #FFFFFF;
}

.credit-info p img {
    margin-right: 10px;
}

.credit-container h3 {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 13px;
    line-height: 16px;
    padding: 50px 0 21px;
}

.credit-container h3 img {
    margin-right: 10px;
}

.credit-form input {
    border: 2px solid #000000;
}

.credit-check label {
    color: #000000;
}

.credit-form__checkbox[type=checkbox]:checked+label:before {
    border: 1.33815px solid #000000;
}

.credit-flex input {
    color: #000000;
}

.desk-position {
    display: none;
}

.footer {
    /* background: url(../img/map-mob.webp) no-repeat; */
    background: none;
    width: 100%;
    /* min-height: 1400px; */
    background-size: cover;
    background-position: bottom;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
    /* padding-top: 418px; */
    flex-direction: column;
}

#map {
    height: 350px;
    position: unset;
}

.footer-bk {
    background: rgba(0, 0, 0, 0.86);
    bottom: 0;
    width: 100%;
}

/* .footer-container {
    padding: 28px 41px;
} */
.footer__btn {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    border: 0.716049px solid #FF0000;
    background: none;
    margin-top: -50px;
    position: absolute;
    top: 0;
}

.map button img {
    width: 101px;
    height: 101px;
}

.map__img {
    /* position: absolute;
    top: 0;
    left: 0; */
    max-width: 100%;
}

.footer__title {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 13px;
    line-height: 29px;
    position: relative;
    color: #FFFFFF;
    margin-bottom: 28px;
}

.footer__title::after {
    content: "";
    position: absolute;
    width: 79px;
    height: 4px;
    background: #E00000;
    left: 0;
    bottom: -5px;
}

.footer-contact {
    margin-bottom: 12px;
}

.footer-contact div,
a {
    font-family: var(--font-family-montserrat);
    font-weight: 500;
    font-size: 14.1509px;
    line-height: 29px;
    color: #FFFFFF;
}

.footer-contact div:nth-child(2) {
    display: flex;
}

.footer-contact div:nth-child(3) {
    width: 65%;
}

.footer-contact img {
    margin-right: 12px;
}

.footer__form input {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.24);
    border-radius: 54.3795px;
    margin-bottom: 18px;
    border: none;
    padding-left: 18px;
    color: #FFFFFF;
}

.footer__form div input {
    width: 18px;
    height: 18px;
    margin-bottom: 0;
}

.footer__form input::placeholder {
    color: #FFFFFF;
}

.footer__form button {
    text-align: center;
    height: 49px;
    width: 100%;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    background: #E00000;
    border-radius: 54.3795px;
    color: #FFFFFF;
    border: none;
}

.footer__form button:hover {
    background: #FFFFFF;
    color: #000000;
}

.footer-checkbox label {
    color: #FFFFFF;
}

.footer-form__checkbox [type=checkbox]+label:before {
    border: 1.33815px solid #FFFFFF;
}

.footer-diskl p {
    font-family: var(--font-family-montserrat);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #E0E0E0;
}

.footer-diskl {
    background: #303030;
    padding: 13px 28px 27px;
    /* position: absolute; */
    left: 0;
    bottom: 0;
}

.footer-diskl p:nth-child(2) {
    font-weight: 500;
    font-size: 13px;
    line-height: 30px;
    margin: 15px 0 0;
}

.footer-diskl p:nth-child(3) {
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    opacity: 0.56;
}

.pop-up-one {
    width: 330px;
    margin: 0 auto;
    display: none;
    position: fixed;
    top: 14%;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    z-index: 30;
}

.pop-up-one img:nth-child(1) {
    margin: 0 0 30px 30px;
}

.pop-up-one.active {
    display: block;
}

.pop-up-one-container {
    position: relative;
    width: 90%;
    padding: 113px 18px 30px;
    background: #FFFFFF;
    border-radius: 9px;
}

.pop-up-one__img-position-line {
    position: absolute;
    width: 108%;
    left: 0;
    top: -32px;
}

.pop-up-one__img-position-car {
    position: absolute;
    top: -88px;
}

.pop-up-one__img-closed {
    position: absolute;
    top: -72px;
    right: -9px;
    cursor: pointer;
}

.pop-up-one-container::before {
    content: "";
    position: absolute;
    top: -88px;
    right: -25px;
    width: 100%;
    height: 3px;
    background: rgb(0, 0, 0);
    background: linear-gradient(90deg, rgb(0 0 0 / 0%) 0%, rgb(255 255 255) 100%);
}

.pop-up-one-container::after {
    content: "";
    position: absolute;
    height: 118%;
    width: 3px;
    top: -88px;
    right: -25px;
    background: rgb(255, 255, 255);
    background: linear-gradient(180deg, rgb(255 255 255) 0%, rgb(0 0 0 / 3%) 100%);
}

.pop-up-one__title {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 31.6675px;
    line-height: 38px;
    color: rgba(255, 0, 0, 0.26);
}

.pop-up-one-container p {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 15.7811px;
    line-height: 19px;
    padding: 19px 0 24px;
}

.pop-up__form input {
    color: black;
}

.pop-up__form button {
    background: #E00000;
    width: 100%;
    border-radius: 52.3299px;
    height: 47px;
    font-family: var(--font-family-montserrat);
    font-weight: 700;
    font-size: 13.4723px;
    line-height: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.pop-up-two {
    width: 330px;
    margin: 0 auto;
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    z-index: 30;
}

.pop-up-two.active {
    display: block;
}

.pop-up-two-container {
    position: relative;
    width: 90%;
    padding: 213px 18px 30px;
    background: #FFFFFF;
    border-radius: 9px;
    border-top-right-radius: 700px;
}

.pop-up-two-container p {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 15.7988px;
    line-height: 19px;
}

.pop-up-two__img-position-city {
    position: absolute;
    top: -101px;
    right: 0;
    width: 234px;
}

.pop-up-two__img-position-car {
    position: absolute;
    right: 0;
    top: -9px;
    width: 316px;
}

.pop-up-all {
    width: 330px;
    margin: 0 auto;
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    z-index: 30;
}

.pop-up-all.active {
    display: block;
}

.pop-up-all-container {
    background: #000000;
    padding: 170px 18px 30px;
    width: 90%;
}

.pop-up-all-container p {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 17.5621px;
    line-height: 21px;
    color: #FFFFFF;
}

.pop-up-btn {
    width: 51px;
    height: 51px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 51px;
}

.pop-up-btn img {
    width: 45px;
    height: 45px;
}

.pop-up-all__form input {
    background: none;
    border: 1.44025px solid #FFFFFF;
    border-radius: 47.2068px;
}

.pop-up-all-2 {
    background: #000000;
    width: 89%;
    margin: 0 auto;
    display: none;
    position: fixed;
    top: 11%;
    left: 50%;
    transform: translate3d(-50%, 0px, 0px);
    z-index: 30;
    padding: 12px 20px;
    border-radius: 9px;
}

.pop-up-all-2.active {
    display: block;
}

.pop-up-all-2 div:nth-child(1) {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pop-up-all-2 h3 {
    font-family: var(--font-family-tactic);
    font-weight: 500;
    font-size: 17.5621px;
    line-height: 21px;
    color: #FFFFFF;
    padding: 281px 0 14px;
}

.pop-up-all-2__img-position-car {
    position: fixed;
    top: 44px;
    width: 100%;
    right: 0;
    z-index: -1;
}

@media screen and (min-width: 360px) {
    .container {
        max-width: 335px;
    }

    /* .map__img {
        top: 8%;
    } */
    .banner-advantage p {
        /* font-size: 12.81011px; */
        font-size: 10px;
        padding-bottom: 5px;
        line-height: 13px;
    }
}

@media screen and (min-width: 375px) {
    .pop-up-all-2 h3 {
        padding: 220px 0 14px;
    }

    .pop-up-all-2__img-position-car {
        top: -14px;
    }
}

@media screen and (min-width: 414px) {
    .credit-container h3 {
        padding: 93px 0 21px;
    }

    /* .auto-price-card {
        margin-top: -21px;
    } */
    .pop-up-all-2 h3 {
        padding: 258px 0 14px;
    }
}


/* Новые модалки */

.modal {
    display: none;
    width: 360px;
    height: 320px;
    font-family: 'Tactic Sans';
    border-radius: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 15px;
}

#modal-callback .title-modal {
    line-height: 1.1;
}

.title-modal {
    font-size: 18px;
    line-height: 40px;
}

.text-modal {
    font-size: 12px;
    padding: 20px 0 55px;
    font-family: 'Montserrat';
    line-height: 1.3;
}

.text-modal span {
    font-weight: 700;
}

.modal input:not(input[type="checkbox"]) {
    width: 160px;
    height: 30px;
    border: 1px solid rgb(75, 75, 75);
    outline: none;
    border-radius: 20px;
    background: rgb(255, 255, 255);
    padding-left: 19px;
}

.modal .form-modal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modal .btn-modal {
    border-radius: 20px;
    width: 160px;
    height: 30px;
    background: rgb(224, 0, 0);
    color: #fff;
    font-size: 11px;
}

.modal label,
.modal label p a {
    font-size: 10px;
    line-height: 1;
}

.modal label {
    display: flex;
    gap: 10px;
    font-family: 'Montserrat';
}

.modal label p {
    max-width: 300px;
}

.checkbox-hidden {
    position: absolute;
    opacity: 0;
}

.checkbox-hidden:checked+span svg {
    display: block;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-checkbox svg {
    display: none;
}

.fancybox__content>.carousel__button.is-close {
    position: absolute;
    right: 5px;
    top: 8px;
}

.fancybox__content>.f-button.is-close-btn {
    right: 5px;
    top: 8px;
}

.wrapper-modal {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
}

#modal-credit {
    background-image: url('../img/modal/modal-mob-credit.webp');
}

#modal-callback {
    background-image: url('../img/modal/modal-mob-callback.webp');
}

#popup-success {
    background-image: url('../img/modal/modal-mob-thx.webp');
}

#popup-error {
    background-image: url('../img/modal/modal-mob-ready.webp');
}

#popup-success,
#popup-error {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    text-transform: uppercase;
}

#popup-success .text-modal,
#popup-error .text-modal {
    padding: 0;
}


.wrapper-logo-foter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper-logo-foter .footer__title {
    font-size: 20px;
    margin-bottom: 10px;
}

.wrapper-logo-foter svg {
    width: 83px;
}


.collapse:not(.show) {
    display: none;
}

.accordion-body {
    color: white;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
}

.disclaimer .accordion-button {
    color: white;
    font-weight: 700;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.accordion-button {
    width: 230px;
    height: 48px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    background: #E00000;
    border-radius: 54.3795px;
    color: #FFFFFF;
    border: none;
}

.accordion-header {
    text-align: center;
    padding: 40px;
}

.filtered-show,
.showmore-show {
    /* display: block; */
    display: flex;
    opacity: 1;
    transition: .3s;
}

.filtered-hide,
.showmore-hide {
    display: none;
    opacity: 0;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-results__option--selectable,
.select2-results__option.select2-results__option--selectable.select2-results__option--highlighted,
.select2-container--default .select2-results__option--disabled {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 16px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: -10px;
}

.js--show-more {
    display: flex;
    background: none;
    border: none;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    margin-top: 36px;
    margin-bottom: 70px;
    font-weight: 700;
    font-size: 13px;
    line-height: 15px;
    align-items: center;
}

.js--show-more.hidden {
    visibility: hidden;
}