body {
    font-family: 'NT Somic', sans-serif;
    font-weight: 400;
    font-size: 16px ;
    position: relative;
}
body, html {
    margin: 0;
    padding: 0;
}
body.compensate-for-scrollbar {
    overflow: initial !important;
}
.compensate-for-scrollbar {
    margin-right: 0 !important;
}
::-webkit-scrollbar {
    width: 2px;
    background: #222222;
    border-radius: 7px;
}
::-webkit-scrollbar-thumb {
    background: #D09E56;
    border-radius: 7px;
    cursor: pointer;
    max-width: 2px;
    max-height: 2px;
}
::-webkit-scrollbar-track {
    cursor: pointer;
}

h2, h1, p {
    margin: 0;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a {
    color: #fff;
    text-decoration: none;
    line-height: normal;
}

p {
    line-height: normal;
    color: #fff;
}

button, input {
    outline: none;
    border: none;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    margin: 0px auto;
    width: 100%;
}

.container-fluid {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.d-flex  {
    display: flex;
}
.a-item-center {
    align-items: center;
}
.a-item-f-start {
    align-items: flex-start;
}
.a-item-f-end {
    align-items: flex-end;
}
.j-content-sb {
    justify-content: space-between;
}
.j-content-center {
    justify-content: center;
    height: 520px;
    margin-bottom: 64px;
}
.f-direction-column {
    flex-direction: column;
}
.j-content-end {
    justify-content: flex-end;
}
.j-content-start {
    justify-content: flex-start;
}
.f-wrap {
    flex-wrap: wrap;
}
.w-100 {
    width: 100%;
}
.fz-11 {
    font-size: 11px;
}
.fz-12 {
    font-size: 12px;
}
.fz-14 {
    font-size: 14px;
}
.fz-16 {
    font-size: 16px;
}
.fz-18 {
    font-size: 18px;
}
.fz-20 {
    font-size: 20px;
}
.fz-22 {
    font-size: 22px;
}
.fz-24 {
    font-size: 24px;
}
.fz-26 {
    font-size: 26px;
}
.fz-28 {
    font-size: 28px;
}
.fz-32 {
    font-size: 32px;
}
.fz-58 {
    font-size: 58px;
}
.mw-50 {
    max-width: 50%;
}
.mw-48 {
    max-width: 48%;
}
.mw-172 {
    max-width: 172px;
}
.fw-300 {
    font-weight: 300;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-900 {
    font-weight: 900;
}
.color-red {
    color: #D80010;
}
.color-gray {
    color: #8D8D8D;
}
.color-blue {
    color: #014FA2;
}
.color-white {
    color: #fff;
}
.color-black {
    color: #292A2B;
}
.color-w-blue {
    color: #F5FAFF;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40 {
    margin-bottom: 40px;
}
.transition {
    transition: all 0.3s ease-in-out;
}
h1 {
    color: #292A2B;
    font-size: 51px;
    font-weight: 500;
}
h3 {
    color: #292A2B;
    font-size: 42px;
    font-weight: 300;
}
img {
    max-width: 100%;
}
.ttu {
    text-transform: uppercase;
}
.tdu {
    text-decoration: underline;
}
.p-70 {
    padding: 70px 0px;
}
.p-80 {
    padding: 80px 0px;
}
.pb-80 {
    padding-bottom: 80px;
}

.header {
    background: #222222ad;
    padding: 15px 0px;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 99;
    top: 0;
    transition: all 0.3s ease;
}

.header.fixed {
    transition: all 0.3s ease;
    padding: 10px 0px;
    position: fixed;
    background: #222222a8;
}
.header.fixed .logo {
    max-width: 60px;
    transition: all 0.3s ease;
}

.logo {
    transition: all 0.3s ease;
    max-width: 78px;
}

.header-block ul {
    gap: 0px 33px;
}

.header-block-contacts {
    gap: 0px 26px;
}

.header-block-contacts a {
    font-size: 16px;
    display: flex;
}

.top-banner {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
    position: relative;
    text-align: center;
     animation: zoomInOut 30s infinite alternate ease-in-out;
}
@keyframes zoomInOut {
    0% {
        background-size: 100%;
    }
    50% {
        background-size: 110%;
    }
    100% {
        background-size: 100%;
    }
}
.top-banner::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.7;
}

.brands {
    padding: 85px 0px 70px;
}

.main-page-brands {
    /* зарезервировано */
}

.main-page-brands-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0px;

}

.main-page-brands-item {
    width: 368px;
    height: 96px;
    border-radius: 20px;
    background: #F1F1F3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.main-page-brands-item-left, .main-page-brands-item-right {
    display: flex;
    align-items: center;
    height: 16px;
}

.main-page-brands-item-left img {
    height: 72px;
    background: #fff;
    border-radius: 16px;
}

.main-page-brands-item-left span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    margin-left: 10px;
}

.main-page-brands-item-right img {
    margin-left: 5px;
}

.main-page-brands-item-right span {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #999999;
}

.services-container {
    display: flex;
    flex-direction: column;
    /* margin-left: 152px;
    margin-right: 152px; */
    gap: 20px;
    align-items: center;
}

.services-items-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.services-item {
    background: #F1F1F3;
    color: #1C1C1C;
    width: 340px;
    height: 172px;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-item-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.services-item-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}

.services-item img {
    width: 24px;
    height: 24px;
    align-self: flex-end;
}

.services-footer {
    display: flex;
    gap: 10px;
    background: #fff;
    margin-bottom: 20px;
    align-self: flex-start;
}

.services-footer-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #E4E8F4;
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    align-items: center;
}

.services-footer-item-right {
    color: #BBB079;
}

.section-on-main {
    background: #fff;
    border-radius: 10px;
    text-align: center;
}

.section-on-main-relative-div {
    width: 420px;
    height: 248px;
    position: relative;
    background: #000;
    bottom: 269px;
    left: 732px;
    border-radius: 24px;
    opacity: 0.5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    box-sizing: border-box;
}

.section-on-main-relative-div-up {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.section-on-main-relative-div-middle {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.section-on-main-relative-div-button {
    width: 131px;
    height: 56px;
    gap: 10px;
    opacity: 1;
    padding-top: 19px;
    padding-right: 41px;
    padding-bottom: 16px;
    padding-left: 40px;
    border-radius: 12px;

    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.show-all-models {
    font-size: 16px;
    text-align: left;
    color: #D09E56;
    background: transparent;
    padding: 0;
    border-bottom: 0px;
}

.catalog-head-top-block .brands-list a.hidden-model {
  display: none;
}

.filter-form {
    margin-top: -420px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.filter-form-block {
    background: #fff;
    width: 712px;
    height: 72px;
    /* padding: 51px 15px; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
}

.filter-form-block form {
    max-width: 913px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 11px 20px;
}

.filter-form-block form button {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    gap: 0px 10px;
}

.custom-select-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    user-select: none;
    margin-left: 65px;
}

.custom-select {
    border-radius: 10px;
    display: none;
}

.custom-select-trigger {
    position: relative;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    background: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px 0px 11px;
    cursor: pointer;
}

.custom-select-trigger:after {
    content: '';
    position: absolute;
    pointer-events: none;
    width: 24px;
    height: 24px;
    background: url('../img/Arrow 7.svg') no-repeat center;
    background-size: contain;
    right: 11px;
    top: 15px;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

.custom-options.open {
    display: flex;
    flex-direction: column;
    max-height: 250px;
    overflow-y: auto;
    width: 240px;
    margin-left: -32px;
    border-radius: 10px;
}

.custom-options .custom-option {
    padding: 10px;
    cursor: pointer;
}

.custom-options .custom-option:hover {
    background: #fff;
}

.custom-options .custom-option.selected {
    background: #F1F1F3;
}

.btn-filter-search img {
    max-width: 20px;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.round-filter-button {
    width: 56px;
    height: 56px;
    border-radius: 20px;
}

.round-filter-button:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox-label input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 20px;
}

.custom-checkbox-label .custom-checkbox::before {
    content: '';
    position: absolute;
    left: 0;
    top: -10px;
    width: 20px;
    border-radius: 5px;
    min-width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #D09E56;

}

.custom-checkbox-label input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '✔';
    position: absolute;
    left: 5px;
    top: -10px;
    width: 10px;
    height: 10px;
    color: #D09E56;
}

.custom-checkbox-label span {
    color: #fff;
    margin-left: 10px;
}

.h2-title {
    color: #D09E56;
    font-weight: 500;
    font-size: 40px;
    margin-bottom: 35px;
    width: 100%;
    text-align: center;
}
.brands-cat {
    gap: 10px 52px;
    margin-bottom: 20px;
}

.brands-cat a {
    display: inline-block;
    perspective: 1000px;
}

.brands-cat img {
    display: block;
    width: 100px;
    height: auto;
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}
.brands-title {
    text-align: left;
    margin-bottom: 10px;
}
.h2-title .black {
    color: #1E1E1E;
}
.under-title {
    font-size: 20px;
    color: #1E1E1E;
    margin-bottom: 14px;
}

.d-grid {
    display: grid;
}

.body-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 64px;
}

.body-main .brands-list {
    grid-template-columns: repeat(5, 1fr);
}
.brands-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 48px;
}
.catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 48px;
    column-count: initial !important;
}
.catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list a{
    min-width: 0 !important;
    margin-bottom: 0;
}
.brands-list a {
    display: flex;
    width: 100%;
    font-size: 16px;
    color: #BBB079 !important;
    width: 100%;
    border-bottom: 1px solid #1E1E1E;
    justify-content: space-between;
}
.brands-list a:nth-child(5n) {
    margin-right: 0;
}
.brands-list a .brands-models-bg:first-child span {
    color: #BBB079 !important;
}
.brands-list a .brands-models-bg:last-child span {
    color: #adadad !important;
}
.brands-list a span {
    color: #adadad;
    position: relative;
}
.brands-models-bg {
    position: relative;
}
.brands-list a .brands-models-bg::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -1px;
    background: #fff;
}

.brands-list-wrap {
    padding: 15px 0px;
    border-radius: 10px;
}
.brands-list-wrap .brands-list {
    transition: 1s max-height;
}
.brands-list-wrap.hidden .brands-list {
    max-height: 141px;
    overflow: hidden;
}

.hot-sale-block {
    gap: 0px 17px;
}

.hot-sale-item {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.hot-sale-item:hover {
    transition: all 0.3s ease;
    box-shadow: 0 0 4px 0 rgba(208, 158, 86, 0.47);
}

.hot-sale-item:hover .hot-sale-item__content {
    background: #D09E56;
    transition: all 0.3s ease;
}
.hot-sale-item:hover .hot-sale-item__content p {
    color: #000;
    transition: all 0.3s ease;
}

.swiper-wrapper {
    padding: 20px 0px !important;
}

.hot-sale-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.hot-sale {
    background: #fff;
}

.hot-sale-item__content {
    border-bottom: 1px solid #D09E56;
    border-left: 1px solid #D09E56;
    border-right: 1px solid #D09E56;
    padding: 16px 19px;
    transition: all 0.3s ease;
    min-height: 256px;
}
.hot-sale-item__content p {
    font-size: 20px;
    transition: all 0.3s ease;
}
.hot-sale-item__content p:not(:last-child) {
    margin-bottom: 2px;
}

.hot-sale .h2-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 25px;
}

.swiper-arrow-effects {
    cursor: pointer;
}

.swiper-prev-2 {
    position: relative;
    left: 64px;
    z-index: 10;
}

.swiper-next-2 {
    position: relative;
    right: 64px;
    z-index: 10;
}

.adv {
    padding: 70px 0px;
}
.adv-block-n {
    gap: 40px 50px;
}
.adv-block-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    max-width: 263px;
}
.adv-block-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.adv-block-item span {
    font-weight: 900;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #fff;
    text-shadow:
            1px 1px 0 #D09E56,
            -1px -1px 0 #D09E56,
            1px -1px 0 #D09E56,
            -1px 1px 0 #D09E56,
            1px 0 0 #D09E56,
            0 1px 0 #D09E56,
            -1px 0 0 #D09E56,
            0 -1px 0 #D09E56;
}
.adv-block-item p {
    color: #2F2F2F;
    font-weight: 500;
}

.about-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about_container {
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-image {
    text-align: center;
}

.about-up {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-up-title {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    text-align: center;
}

.about-up-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #999999;
}

.about-bottom {
    display: flex;
    justify-content: space-between;
    flex-grow: 0;
}

.about-bottom-left {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    flex-basis: 300%;
}

.about-bottom-right {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.about-managers, .about-managers-up, .about-managers-bottom-item, .about-managers-bottom-note {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-managers-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.about-managers-up-title {
    font-weight: 400;
    font-size: 48px;
    text-align: center;
    line-height: 56px;
}

.about-managers-up-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #999999;
}

.about-managers-bottom-img {
    width: 272;
    height: 376;
    border-radius: 16px;
}

.about-managers-bottom-note-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #999999;
}

.about-managers-bottom-note-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.about-vacancies {
    background: #F1F1F3;
    display: flex;
    justify-content: center;
}

.vacancies {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-bottom: 64px;
    padding-top: 64px;
}

.vacancies-up, .vacancies-bottom, .vacancies-bottom-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.vacancies-bottom-item {
    background: #fff;
    border-radius: 16px;
}

.vacancies-up-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    display: flex;
    justify-content: center;
}

.vacancies-up-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    display: flex;
    justify-content: center;
    color: #999999;
}

 .vacancies-bottom-item-title {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    display: flex;
    justify-content: center;
}

.vacancies-bottom-item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    justify-content: center;
}

.about-contacts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #1C1C1C;
    background: #fff;
}

.about-contacts-up {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-contacts-up-title {
    font-weight: 400;
    font-size: 48px;
    text-align: center;
    line-height: 56px;
}

.about-contacts-up-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #999999;
}

.about-contacts-bottom {
    display: flex;
    gap: 10px;
    flex-basis: 50%;
}

.about-contacts-bottom-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.about-contacts-left-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
}

.about-contacts-left-phone, .about-contacts-left-email {
    display: flex;
    flex-direction: column;
}

.about-contacts-left-phone-title, .about-contacts-left-email-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}

.about-contacts-left-phone-text, .about-contacts-left-email-text {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.about-contacts-left-image {

}

.about-contacts-left-inn {
    background: #F1F1F3;
    display: flex;
    flex-direction: column;
    padding: 10px;
    border-radius: 8px;
}

.about-contacts-left-inn-item {
    display: flex;
    justify-content: space-between;
}

.about-contacts-left-inn-item-left, .about-contacts-left-inn-item-right {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    flex-basis: 50%;
}

.about-contacts-left-inn-item-left {
    color: #999999;
}

.about {
    background: #222222;
    padding: 70px 0px;
}
.about-inner {
    padding-top: 0;
}
h1.h2-title {
    font-size: 46px;
}
.about-left__img {
    width: 100%;
    height: 425px;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}
.about-left {
    position: relative;
    min-height: 538px;
    max-width: 495px;
    display: flex;
    flex-direction: column;
}
.about-left__bg {
    content: '';
    border-radius: 10px;
    width: 100%;
    max-width: 502px;
    display: block;
    position: absolute;
    height: 515px;
    left: 0;
    top: 0;
    background: #D09E56;
    display: none;
}
.about-block {
    gap: 46px;
}

.about-right p {
    font-size: 16px;
    margin-bottom: 35px;
}
.about-right ul {
    padding-left: 22px;
    border-left: 1px solid #D09E56;
}
.about-right li {
    color: #fff;
    position: relative;
    font-size: 16px;
    padding-left: 9px;
}
.about-right li:not(:last-child) {
    margin-bottom: 11px;
}
.about-right li::before {
    content: '';
    display: block;
    position: absolute;
    top: 12px;
    left: 0;
    background: #fff;
    height: 1px;
    min-width: 3px;
    width: 3px;
}
.partners {
    padding: 40px 0px;
}
/*.partners-block {
    gap: 20px 41px;
    flex-wrap: wrap;
}*/
.partners-block {
    position: relative;
    overflow: hidden;
    height: 285px;
}

.row {
    display: flex;
    white-space: nowrap;
    position: absolute;
    width: 200%;
    gap: 20px;
}

.row img {
    height: 150px;
}

.row-left {
    top: 0;
    animation: move-left 20s linear infinite;
}

.row-right {
    bottom: 0;
    animation: move-right 20s linear infinite;
}
@keyframes move-left {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes move-right {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}
.partners-block a {
    max-width: 16%;
    width: 100%;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners-block a img {
    width: 100%;
    min-width: 80px;
    object-fit: contain;
    max-width: 175px;
}

.clients-title {
    display: flex;
    justify-content: space-between;
}

.clients-title-left {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: #000;
}

.clients-title-right {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #000;
}

.reviews-slider-item {
    border-radius: 24px;
    padding: 20px;
    min-height: 325px;
    width: 272px;
    height: 480px;
}
.reviews-slider-item__top {
    display: flex;
    align-items: center;
    gap: 0px 20px;
    /*margin-bottom: 20px;*/
}

.reviews-slider-item__top__relative {
    position: relative;
    bottom: 460px;
    left: 200px;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-slider-item__top__relative2 {
    width: 240px;
    height: 128px;
    position: relative;
    bottom: 190px;
    left: 16px;
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    padding: 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;

    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}

.reviews-slider-item__top__relative2__top {
    display: flex;
    gap: 5px;
}

.slider-arrow {
    width: 56px;
    height: 56px;
    border-radius: 28px;
    background: linear-gradient(to left,#C0BEA6, #807C6C) padding-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-slider-item__bottom {
    font-size: 14px;
    display: none;
}
.reviews-slider-item__bottom p {
    line-height: 130%;
}

.main-page-catalog {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* margin-left: 152px;
    margin-right: 152px; */
    margin-bottom: 64px;
    align-items: center;
}

.main-page-catalog-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
}

.main-page-catalog-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-page-catalog-products-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.main-page-catalog-button {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border-color: #E4E8F4;
    background: #fff;
    border-width: 1px;
    border-style: solid;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-page-catalog-button a {
    color: #000;
}

.managers {
    padding: 80px 0px;
}
.news-slider-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 5px;
    position: relative;
    padding-bottom: 24px;
    min-height: 400px;
}
.news-slider-item::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    box-shadow: 0 0 4px 0 rgba(208, 158, 86, 0.47);
    background: #D09E56;
    border-radius: 5px;
}
.news-slider-item__link {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #D09E56;
}
.news-slider-item__content img:first-child {
    height: 240px;
    border-radius: 5px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}
.news-slider-item__date {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 9px;
}
.footer {
    background: #000;
    color: #fff;
    padding: 33px 0px 40px;
    display: flex;
    justify-content: space-around;
    width: 100%;
}
.footer-block-left {
    width: 100%;
    max-width: 345px;
}
.qr-list {
    gap: 56px;
    /*grid-template-columns: repeat(2, 1fr);*/
    justify-content: center;
}
.qr-list-item {
    display: flex;
    gap: 10px;
}

.qr-list-item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qr-list-link {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 5px;
}
.qr-list-link img {
    width: 100%;
    max-width: 95px;
}
.social-list {
    gap: 8px;
    flex-wrap: wrap;
}
.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-block {
    gap: 35px 30px;
    position: relative;
    padding-bottom: 20px;
}
/* .footer-block::after {
    width: 100%;
    height: 3px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(58deg, #9a5410 16.64%, #f9e7ce 68.22%, #9a5410 100%);
} */
.color-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 5px 9px;
}
.color-box {
    width: 100%;
    height: 32px;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid transparent;
}
.color-list a {
    color: #000;
    cursor: pointer;
}
.color-box[data-value="grey"] {
    background: gray;
}
.color-box[data-value="purple matte"] {
    background: #7c4691;
}
.color-box[data-value="brown metallic"] {
    background: #927c75;
}
.color-box[data-value="silver"] {
    background: #cbcbcb;
}
.color-box[data-value="white metallic"] {
    background: #efefef;
}
.color-box[data-value="white"] {
    background: #fff;
    border: 1px solid #dbdbdb !important;
}
.color-box[data-value="black"] {
    background: #000;
}
.color-box[data-value="black metallic"] {
    background: #000000d1;
}
.color-box[data-value="red metallic"] {
    background: #a62c2b;
}
.color-box[data-value="green"] {
    background: green;
}
.color-box[data-value="green metallic"] {
    background: #296e01;
}
.color-box[data-value="red"] {
    background: red;
}
.color-box[data-value="blue metallic"] {
    background: #32527b;
}
.color-box[data-value="grey metallic"] {
    background: #a0a1a1;
}
.color-box[data-value="blue"] {
    background: blue;
}
.color-box[data-value="gold metallic"] {
    background: #d4af37;
}
.color-box[data-value="silver metallic"] {
    background: #aaa9ad;
}
.color-box[data-value="beige metallic"] {
    background: #b9a891;
}
.color-box[data-value="gold"] {
    background: #ffd700;
}
.color-box[data-value="yellow"] {
    background: yellow;
}
.color-box[data-value="purple metallic"] {
    background: #520E7D;
}
.color-box[data-value="purple"] {
    background: purple;
}
.color-box[data-value="brown"] {
    background: brown;
}
.color-box[data-value="orange"] {
    background: orange;
}
.color-box[data-value="orange metallic"] {
    background: #da680f;
}
.color-box[data-value="white matte"] {
    background: #f2f3f4;
}
.color-box[data-value="grey matte"] {
    background: #7B7B7C;
}
.color-list {
    margin-bottom: 12px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn.btn-primary.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 350px;
    margin-bottom: 0 !important;
    margin-top: 20px;
}
.callback-form .hover {
    height: 40px !important;
    font-size: 16px;
}
.callback-form .hover,
.card-inner-right .btn-brown {
    margin-bottom: 0 !important;
}
form .btn-filter-search,
.card-block-filter-container__item .btn-filter-search,
.ajax-more,
.btn.btn-primary.btn-more,
.callback-form .hover,
.card-inner-right .btn-brown {
    width: 100%;
    height: 50px;
    margin-bottom: 15px;
    transform: scale(1);
    background: linear-gradient(58deg, #9a5410, #f9a44e, #f9e7ce, #f9a44e, #9a5410);
    background-size: 300% 300%;
    animation: gradient-animation 8s ease-in-out infinite;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
}
.safe-search-link {
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    display: inline-block;
    color: #000;
    width: 100%;
    text-align: center;
}
.filter-dropdown-second {
    margin-bottom: 20px;
}
.filter-dropdown-second p {
    font-size: 18px;
    margin-bottom: 10px;
}
.filter-dropdown-second-block {
    display: flex;
    gap: 10px 15px;
}
.filter-dropdown-range {
    position: relative;
    width: 150px;
}
.filter-dropdown-range__result {
    border: 1px solid #D09E56;
    border-radius: 5px;
    height: 38px;
    cursor: pointer;
    display: flex;
    width: 100%;
    min-width: 88px;
    font-size: 16px !important;
    align-items: center;
    padding: 0 10px;
    position: relative;
    background-color: #fff;
}
.filter-dropdown-range__result::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: 12px;
    height: 15px;
    width: 9px;
    background-image: url('../img/arrow-gold.svg');
    background-repeat: no-repeat !important;
}
.filter-dropdown-range__result span {
    color: #adadad !important;
}
.filter-dropdown-range__list {
    display: none;
    position: absolute;
    width: 100%;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    background-color: #f9f9f9;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
}
.filter-dropdown-range__list li {
    padding: 8px;
    cursor: pointer;
}

.filter-dropdown-range__list li:hover {
    background-color: #e6e6e6;
}
.filter-dropdown-range__input {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 6px;
    width: 88px;
    min-width: 97px;
    max-width: 100%;
}
.card-block-filter-container__item p {
    color: #000;
}
.filter-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}
.filter-dropdown-index {
    font-size: 14px;
    color: #000;
}
.filter-btn {
    font-size: 16px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #ff4040;
    display: block;
}
.filter-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 350px;
    overflow-y: auto;
}
.filter-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}
.card-inner-block-filter {
    border-radius: 10px;
    background: #fff;
    width: 100%;
    max-width: 100%;
}
.card-block-filter-container {
    padding: 20px;
}
.card-block-filter-container__title {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.params-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.params-checkboxes-label {
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
}
.params-checkboxes-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    min-width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #fff;
    border: 1px solid #c4c4c4;
    cursor: pointer;
    position: relative;
    display: inline-block;
}
.params-checkboxes-label input[type="checkbox"]:checked {
    background-color: #ababab52;
    border-color: #d09e56;
}
.params-checkboxes-label span,
.params-checkboxes-label p {
    margin: 0;
    font-size: 14px;
}
.custom-checkbox-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.custom-checkbox-filter:not(:last-child) {
    margin-bottom: 15px;
}
.custom-checkbox-filter input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    position: relative;
    margin-right: 10px;
    background-color: white;
}
.custom-checkbox-filter input[type="checkbox"]:checked::before {
    content: "✔";
    font-size: 14px;
    color: #d09e56;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.custom-checkbox-filter label {
    cursor: pointer;
    font-size: 14px;
    color: #333;
}
.custom-checkbox-filter-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    background: #efecec;
    padding: 14px 3px;
}
.custom-checkbox-filter-content p {
    color: #000;
    font-size: 14px;
    margin-bottom: 7px;
}
.custom-checkbox-filter-content ul {
    padding-left: 22px;
    list-style-type: disc;
    margin-bottom: 9px;
}
.custom-checkbox-filter-content ul li::marker {
    font-size: 9px;
}
.custom-checkbox-filter-content ul li {
    font-size: 14px;
}
.custom-checkbox-filter-content a {
    font-size: 14px;
    text-decoration: underline;
    color: #000;
    text-decoration-skip-ink: none;
    display: inline-block;
    padding-left: 16px;
}
.card-block-filter-container__item {
    border-bottom: 1px solid #c4c4c4;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.inner-sect {
    padding: 163px 0px 0px;
    min-height: calc(75vh - 95px);
}
.inner-sect-about {
    padding-bottom: 1px;
}
.body-inner {
    background: #222222;
}
.breadcrumbs {
    position: relative;
    left: -24px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0px 8px;
    color: #AEAEAE;
}
.breadcrumbs li, .breadcrumbs a {
    font-size: 14px;
    color: #AEAEAE;
}

.card-inner-left {
    max-width: 368px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.card-sliders {
    background: #fff;
    border-radius: 10px;
    padding-bottom: 10px;
    margin-bottom: 23px;
}
.card-sliders .swiper-wrapper {
    padding: 0 !important;
}
.swiper {
    width: 100%;
}
.detail-swiper2-item img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 420px;
}
.detail-swiper {
    max-width: 100%;
}

.card-inner .detail-swiper .swiper-slide img {
    width: 100%;
}
.card-inner {
    margin-bottom: 40px;
}
.inner-small-slider-container {
    padding: 0 10px 10px;
}
.detail-swiper .swiper-slide img {
    height: 89px;
    display: flex;
    border: none;
    outline: none;
    align-items: flex-start;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
}
.detail-swiper2 {
    margin-bottom: 10px;
}

.filters {
    background: #F1F1F3;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
}
.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.filter-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.filter-cell {
    width: 24%;
    margin-right: 1.33333%;
    margin-bottom: 20px;
}
.filter-cell:nth-child(4n) {
    margin-right: 0;
}
.filter-item {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E4E8F4;
    border-radius: 8px;
    box-sizing: border-box;
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #1C1C1C;
    position: relative;
    height: 40px;
    width: 100%;
}
.filter-item:nth-child(4n) {
    margin-right: 0;
}
.filter-item img.arrow {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 10px;
}
.filter-item img.lupa {
    width: 13px;
    height: 13px;
    margin-right: 10px;
}
.filter-item select {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 16px;
    color: #1C1C1C;
}
.filter-item input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #1C1C1C;
}
.filter-item input::placeholder {
    color: #ADADAD;
}
.filter-button {
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border: 1px solid #D09E56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ADADAD;
    line-height: 16px;
}
.filter-group {
    display: flex;
    gap: 5px;
    width: 100%;
}
.filter-pair {
    display: flex;
    gap: 9px;
    width: 100%;
}
.filter-pair.no-gap {
    gap: 0;
}
.filter-pair.no-gap .filter-item:not(:last-child) {
    border-right: none;
}
.selected-filters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 80px;
    position: relative;
    bottom: 93px;
    right: 15px;
}
.selected-filter {
    background: #EFECEC;
    border-radius: 5px;
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #ADADAD;
    width: 142px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.reset-button {
    background: none;
    border: none;
    color: #1C1C1C;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
    width: 192px;
}
.reset-button img {
    width: 14px;
    height: 14px;
    margin-right: 5px;
}
/* .show-button {
    background: #D09E56;
    border-radius: 5px;
    width: 279px;
    height: 40px;
    border: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    cursor: pointer;
    margin-left: auto;
} */
.mobile-filter-toggle {
    display: none;
}
.filter-items {
    display: flex;
    flex-wrap: wrap;
}

.add-to-favorite-item-card {
    position: relative;
    left: 316px;
    top: 10px;
    width: 36px;
    height: 36px;
    background: url('/assets/tpl/img/heart.svg') no-repeat 50% 50%;
    background-size: contain;
    z-index: 2;
}
.add-to-favorite-item-card.active {
    background-image: url('/assets/tpl/img/heart-fill.svg');
}

.add-to-favorite {
    position: relative;
    /* left: 10px;
    top: 10px; */
    width: 30px;
    height: 30px;
    background: url('/assets/tpl/img/heart.svg') no-repeat 50% 50%;
    background-size: contain;
    z-index: 2;
}
.add-to-favorite.active {
    background-image: url('/assets/tpl/img/heart-fill.svg');
}

.to-favorite-text {
    position: relative;
    top: -10px;
    margin-left: 10px;
}

.share-text {
    position: relative;
    top: -6px;
    margin-left: 5px;
}

.card-inner-right .add-to-favorite {
    background-image: url('/assets/tpl/img/heart-black.svg');
    left: auto;
    right: 60px;
    top: 15px;
    width: 20px;
    height: 20px;
}
.card-inner-right .add-to-favorite.active {
    background-image: url('/assets/tpl/img/heart-black-fill.svg');
}

.card-inner-block {
    gap: 45px;
}
.card-inner-right p,
.card-inner-right a,
.card-inner-right span,
.card-inner-right li {
    color: #2F2F2F;
}
.card-inner-right {
    max-width: 752px;
}
.card-inner-right-content {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    padding: 0px 26px;
    position: relative;
}

.header-in-card {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    border-radius: 10px;
    padding: 28px 26px;
    position: relative;
    color: #000;
}

.card-inner-right-content__title {
    font-size: 20px;
    word-wrap: break-word;
    margin-bottom: 15px;
    padding-right: 50px;
}
.card-inner-right-content__price {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 2px;
}
.card-inner-right-content__price:last-child {
    font-weight: 500;
}
.card-inner-right-content__price span {
    font-weight: 400;
}
.inner-price-container {
    position: relative;
}
.inner-price-container::before {
    content: '';
    background: #eff1f6;
    position: absolute;
    display: block;
    height: 100%;
    left: -26px;
    top: 0;
}
.inner-price-container::after {
    content: '';
    background: #eff1f6;
    position: absolute;
    display: block;
    height: 100%;
    right: -26px;
    top: 0;
}
.card-inner-right-content__link {
    margin-bottom: 18px;
    font-weight: 500;
    display: block;
}
.card-inner-right-content .btn {
    height: 50px;
    width: 250px;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
}
.btn-brown {
    background: #D09E56;
    color: #000;
}
.card-white-item {
    border-radius: 10px;
    background: #fff;
}
.options-list-item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.options-list {
    padding: 30px;
}
.card-white-item p {
    color: #000;
}
.options-list-item__content p {
    font-size: 14px;
}
.options-list-item__content span {
    font-weight: 500;
    font-size: 16px;
}
.card-white-item .h3-title {
    padding: 30px;
    font-weight: 500;
    font-size: 20px;
}
.card-white-item-table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
    max-height: 270px;
}
.card-white-item-table table tr td:first-child {
    text-align: left;
}
.card-white-item-table table tr td:last-child {
    text-align: right;
}
table {
    border-collapse: collapse;
    width: 100%;
}
/* table tr:nth-child(odd) {
    background: #f0f0f0;
} */
table tr td {
    padding: 10px 27px;
    font-size: 14px;
}
.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px;
}
.btn-more span {
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid;
    color: #D09E56 !important;
}
.card-white-item-arr-list {
    gap: 0px 25px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    max-height: 230px;
}
.card-white-item-arr-list__item,
.card-inner-left.w-100 > div:nth-child(4) ul li {
    padding: 10px 27px;
}
.card-inner-left.w-100 > div:nth-child(4) ul {
    gap: 0px 25px;
    grid-template-columns: repeat(2, 1fr);
    display: grid;
    margin-bottom: 20px;
    /*max-height: 230px;*/
}
.card-white-item-arr-list__item p,
.card-inner-left.w-100 > div:nth-child(4) ul li {
    font-size: 14px;
}
.card-white-item-arr-list__item:nth-child(4n-2),
.card-white-item-arr-list__item:nth-child(4n-3),
.card-inner-left.w-100 > div:nth-child(4) ul li:nth-child(4n-2),
.card-inner-left.w-100 > div:nth-child(4) ul li:nth-child(4n-3) {
    background: #f0f0f0;
}
.card-white-item-cont {
    padding: 0 30px;
    margin-bottom: 20px;
    max-height: 100px;
}
.card-white-item-cont p {
    line-height: 130%;
    font-size: 14px;
}
.card-white-item-cont p:not(:last-child) {
    margin-bottom: 20px;
}
.card-white-item-map {
    padding: 0px 30px 30px 30px;
}
.card-white-item-map iframe {
    width: 100%;
    max-width: 100%;
    height: 214px;
}
.card-white-item-map__title {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.card-white-item-table,
.card-white-item-arr-list,
.card-white-item-cont {
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.card-white-item-table.show-more,
.card-white-item-arr-list.show-more,
.card-white-item-cont.show-more {
    max-height: none;
}
.btn-more {
    display: none;
}
.btn-more.show {
    display: flex !important;
}
.card-inner-block-category {
    background: #fff;
    border-radius: 10px;
    padding: 10px 0px 20px;
}

.card-inner-block-category h1 {
    font-size: 32px;
    margin-bottom: 6px;
    padding: 0;
}
.selected-category-list {
    padding: 0px 20px;
    margin-bottom: 30px;
    gap: 10px;
}
.selected-category-list__item {
    background: #efecec;
    padding: 0 15px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.selected-category-list__item span {
    display: inline-block;
    margin-right: 9px;
}
.block-category-sort__title {
    font-size: 14px;
    margin-bottom: 5px;
}
.block-category-sort {
    padding: 0 20px;
    max-width: 250px;
    margin-bottom: 16px;
}
.product-list-rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: 16px;
    margin-right: 16px;
}
/* .category-block-list-item:nth-child(even) {
    background: #EFECEC;
} */
/* .category-block-list-item .detail-swiper2-item img {
    max-height: 240px;
} */
.category-block-list-item {
    width: 368px;
    height: 448px;
    background: #F1F1F3;
    border-radius: 30px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 5px 10px 5px;
    gap: 20px;
    margin-bottom: 10px;
}
.category-block-list-item__top {
    align-self: center;
}
.title_image {
    margin-left: 8px;
    margin-top: -30px;
    border-radius: 20px;
    width: 352px;
    height: 260px;
}
.photos6 {
    position: relative;
    bottom: 150px;
    left: 300px;
}
/* .category-block-list-item__middle {
    max-width: 485px;
} */
.category-block-list-item__bottom {
    align-self: flex-start;
    margin-left: 8px;
    margin-right: 8px;
    color: #000;
}
/* .category-block-list-item__left .detail-swiper2 {
    margin-bottom: 4px;
}
.category-block-list-item__left .detail-swiper2 .swiper-wrapper,
.category-block-list-item__left .detail-swiper .swiper-wrapper {
    padding: 0 !important;
} */
.category-block-list-item__title {
    font-weight: 500;
    max-width: 465px;
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
    margin-bottom: 10px;
    word-wrap: break-word;
    color: #1C1C1C;
}
.category-block-list-item__content p {
    font-size: 14px;
    color: #1C1C1C;
}
.category-block-list-item__content p:not(:last-child) {
    margin-bottom: 5px;
    color: #1C1C1C;
}
.category-block-list-item__content {
    margin-bottom: 24px;
    color: #1C1C1C;
}
.category-block-list-item__link {
    font-size: 14px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}
.category-block-list-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 210px;
}
.category-block-list-item__price {
    font-size: 20px;
}
.category-block-list-item__nds {
    font-size: 14px;
}
.category-block-list-item__right_top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.category-block-list-item__btns {
    display: flex;
    align-items: center;
}
.category-block-list-item__btns a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-block-list-item__btns .btn-brown {
    border-radius: 5px;
    width: 90px;
    height: 40px;
    min-width: 90px;
}
.category-block-list-item__btns .btn-border-brown {
    border: 1px solid #D09E56;
    border-radius: 5px;
    width: 90px;
    height: 40px;
    background: #fff;
    min-width: 90px;
}
.category-block-list-item__btns {
    gap: 15px;
}
.detail-news-image {
    display: flex;
    border-radius: 12px;
    margin-bottom: 30px;
    max-width: 600px;
    height: 420px;
    width: 100%;
}
.detail-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
.card-inner__news h1 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 26px;
    line-height: 32px;
}
.news-inner-list {
    gap: 40px 25px;
    grid-template-columns: repeat(3, 1fr);
}
.contacts-content {
    gap: 30px 40px;
}
.contacts-content:not(:last-child) {
    margin-bottom: 30px;
}
#map {
    height: 300px;
    border-radius: 12px;
    width: 100%;
}
#map iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}
.contacts-content-left {
    font-size: 18px;
}
.contacts-content-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.manager-title,
.manager-phone {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    display: block;
}
.manager-title {
    font-weight: bold;
}
.inner-sect .manager-title,
.inner-sect .manager-phone {
    color: #fff;
}
a {
    outline: none;
}
.manager-phone {
    font-size: 16px;
}
.skiptranslate {
    display: none !important;
}
#loader {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 9999;
    background: #22222240;
    width: 100%;
    height: 100%;
    margin: auto;
}
#loader img {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
}
.product-loader-conteiner {
    position: relative;
}

.pagination {
    padding: 15px;
    display: flex;
}
.page-item {
    font-size: 16px;
}
.page-item.active a {
    color: #D09E56;
}

.about-mp-slider {
    padding-top: 10px;
    max-width: 560px;
    width: 100%;
    position: relative;
}
/*.about-left-slider {
    width: 100%;
    max-width: 591px;
}
.swiper-prev-about,
.swiper-next-about {
    position: absolute;
    top: 45%;
    z-index: 2;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.swiper-prev-about {
    left: 35px;
}
.swiper-next-about {
    right: 15px;
}*/
.category-block-list-item.removedCar {
    position: relative;
}
.category-block-list-item.removedCar::before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: gray;
    left: 0;
    background: #808080e0;
    pointer-events: none;
}
.category-block-list-item.removedCar .category-block-list-item__left,
.category-block-list-item.removedCar .category-block-list-item__middle,
.category-block-list-item.removedCar .category-block-list-item__right {
    pointer-events: none;
}
.category-block-list-item.removedCar::after {
    position: absolute;
    content: 'ПРОДАНО';
    display: block;
    top: 0;
    color: red;
    z-index: 2;
    left: 0;
    height: 50px;
    width: 100px;
    margin: auto;
    bottom: 0;
    right: 0;
    font-size: 28px;
    pointer-events: none;
    text-align: center;
    transform: rotate(322deg);
}
.gallery-block-ph {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}
.gallery-block-ph__item:nth-child(6n+1) {
    grid-column: span 1;
}
.gallery-block-ph__item:nth-child(6n+2) {
    grid-column: span 1;
}
.gallery-block-ph__item:nth-child(6n+3) {
    grid-column: span 1;
}
.gallery-block-ph__item:nth-child(6n+4) {
    grid-column: span 1;
}
.gallery-block-ph__item:nth-child(6n+5) {
    grid-column: span 1;
}
.gallery-block-ph__item:nth-child(6n+6) {
    grid-column: span 1;
}
.gallery-block-ph__item {
    display: flex;
    height: 460px;
    border-radius: 10px;
}
.gallery-block-ph__item img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}
.reviews-slider-item__top img {
    object-fit: cover;
    border-radius: 24px;
    width: 272px;
    height: 480px;
}
.brands-list a span strong {
    font-weight: normal;
    color: gray;
}
.custom-option.filter-option.model-option.active {
    display: block !important;
}
.filter-dropdown-content a:hover {
    background: #80808042;
    transition: all 0.3s ease;
}
/*.partners-about {
    overflow-x: hidden;
}*/
.about-left-slider {
    width: 100%;
    max-width: 100%;
}
.partners-about-inner {
    padding-top: 0;
}
.partners-about-inner .gallery-block-ph__item {
    height: 250px;
}
.partners-inner {
    background: #fff;
}
.managers-inner .managers {
    background: #fff;
}
.managers-inner p,
.managers-inner a {
    color: #222 !important;
}

.callback-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 25px;
    height: 25px;
    z-index: 99;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.callback-btn img {
    width: 100%;
    min-width: 25px;
}
.telega::after,
.telega::before,
.callback-btn:after,
.callback-btn:before {
  content: '';
  position: absolute;
  border: 1px solid #d09e56;
  left: -20px;
  opacity: 0;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: pulse 2.5s linear infinite;
}
.telega {
    position: relative;
}
.telega img {
    min-width: 25px;
}
.telega::after,
.callback-btn:after {
  animation-delay: 1.25s;
}

@keyframes pulse {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
#hidden-select {
    display: none;
}
.ajax-filter-count {
    max-width: 350px;
    margin: 0px auto;
    padding-top: 30px;
}

.qr-list-item ul li a {
    color: #000;
    font-size: 16px;
}
.qr-list-item ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.footer-email, .footer-phone {
    gap: 30px;
    justify-content: space-between;
    width: 272px;
    max-width: 380px;
}

.footer-email-up, .footer-phone-up {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.footer-email-down, .footer-phone-down {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}
/* .footer-block-right:first-child {
    max-width: 435px;
}
.footer-block-right:last-child {
    justify-content: flex-end;
}
.footer-block-right:last-child .footer-block-right__item {
    max-width: 227px;
}
.footer-block-right p, .footer-block-right a, .footer-block-right span {
    color: #000;
    font-size: 14px;
} */
.footer-block-right__title {
    font-weight: 500;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    gap: 5px;
}
.footer-block-right__item p:not(:first-child),
.footer-block-right__item p:not(:last-child) {
    margin-bottom: 5px;
}
.qr-list__title-soc {
    font-size: 16px;
    color: #000;
    text-align: center;
}
.footer-category .brands-cat a {
    max-width: 70px;
}
.footer-category .brands-cat {
    margin-bottom: 43px;
    gap: 10px 75px;
}
.footer-category {
    padding-top: 20px;
}
.animated-number {
    position: relative;
    display: inline-block;
}

.animated-number.highlighted::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(58deg, #9a5410 16.64%, #f9e7ce 68.22%, #9a5410 100%);
    animation: rotateRing 7s linear infinite;
    z-index: -1;
    opacity: 1;
    transform-origin: center;
}

.adv-block-item:nth-child(1) .animated-number::before {
    animation: rotateRing 7s linear infinite;
    animation-delay: 0s;
}

.adv-block-item:nth-child(2) .animated-number::before {
    animation: rotateRing 6s linear infinite;
    animation-delay: 1s;
}

.adv-block-item:nth-child(3) .animated-number::before {
    animation: rotateRing 8s linear infinite;
    animation-delay: 2s;
}

.adv-block-item:nth-child(4) .animated-number::before {
    animation: rotateRing 5s linear infinite;
    animation-delay: 3s;
}

.adv-block-item:nth-child(5) .animated-number::before {
    animation: rotateRing 9s linear infinite;
    animation-delay: 4s;
}

.adv-block-item:nth-child(6) .animated-number:nth-child(6)::before {
    animation: rotateRing 7s linear infinite;
    animation-delay: 5s;
}

.adv-block-item:nth-child(7) .animated-number:nth-child(7)::before {
    animation: rotateRing 6s linear infinite;
    animation-delay: 6s;
}

.footer-pub-of {
    padding-top: 20px;
}

.footer-pub-of p {
    font-size: 14px;
    max-width: 998px;
    color: #222;
}

@keyframes rotateRing {
    0% {
        transform: rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg);
        opacity: 1;
    }
}
.callback-form.fancybox-content {
    background: #222222;
    padding: 51px 15px 20px;
    border-radius: 10px;
    border: 3px solid #D09E56;
}
.form-text {
    font-size: 20px;
    max-width: 330px;
    text-align: center;
    margin: 0px auto 20px;
}
.form-labels {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}
.form-labels .input-same-line {
    height: 40px;
    border-radius: 5px;
    padding: 0px 10px;
    font-size: 16px;
}
.callback-form .all-checkbox-block {
    color: #fff;
    font-size: 14px;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}
.fancybox-button svg {
    color: #000;
    background: linear-gradient(58deg, #9a5410, #f9a44e, #f9e7ce, #f9a44e, #9a5410);
    border-radius: 50%;
}
#callback-form {
    width: 100%;
    max-width: 450px;
    display: none;
}
.jGrowl-notification.alert {
    background-color: #222222 !important;
    border-radius: 10px;
    border: 2px solid #D09E56;
}

.all-checkbox-block input[type=checkbox],
.all-checkbox-block input[type=radio] {display: none;}

.all-checkbox-block input[type=checkbox] + label:before {
    content: "\2714";
    display: inline-block;
    font-size: 14px;
    cursor: pointer;
    font-weight: 900;
    line-height: 16px;
    background: transparent;
    color: #fff;
    margin: 0px 10px 0 0;
    padding: 1px 3px 1px;
    text-align: center;
    border-radius: 5px;
    vertical-align: middle;
    transition: color ease .3s;
    background: #fff;
    border: 1px solid #fff;
}
.all-checkbox-block,
.all-checkbox-block label {
    cursor: pointer;
}
.all-checkbox-block input[type=checkbox]:checked + label:before {
    color: #D09E56;
    border-color: #D09E56;
}
.card-filter-btn-container {
    border-radius: 10px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 0px;
}
.card-filter-btn-container p {
    font-size: 14px;
    color: #222;
    border: 1px solid #c4c4c4;
    max-width: 260px;
    height: 40px;
    display: flex;
    gap: 0px 5px;
    align-items: center;
    width: 100%;
    justify-content: center;
}
#modal-filter {
    display: none;
    border-radius: 10px;
    padding: 40px 20px 20px;
}
.about-right-wrapper {
    position: relative;
}
.about-right {
    transition: max-height 0.5s ease;
}
.about-right.expanded {
    max-height: 100%;
    transition: max-height 0.5s ease;
}
.read-more-link {
    height: 45px;
    transform: scale(1);
    background: linear-gradient(58deg, #9a5410, #f9a44e, #f9e7ce, #f9a44e, #9a5410);
    background-size: 300% 300%;
    animation: gradient-animation 8s ease-in-out infinite;
    transition: transform 0.3s ease;
    max-width: 350px;
    margin: 30px auto 0px;
}

/* .footer-block::after {
    width: 100%;
    height: 3px;
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(58deg, #9a5410 16.64%, #f9e7ce 68.22%, #9a5410 100%);
} */
.contacts-content-right__text {
    margin-bottom: 20px;
}
.contacts-content-right__text p:first-child {
    font-size: 16px;
    margin-bottom: 5px;
}
.swiper-prev-about,
.swiper-next-about {
    position: absolute;
    top: 55%;
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    min-width: 30px;
}
.swiper-prev-about {
    left: 20px;
}
.swiper-next-about {
    right: 20px;
}
.top-banner__title,
.top-banner__title h1 {
    font-weight: 400;
    font-size: 56px;
    text-transform: uppercase;
    padding: 0px 20px;
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin-bottom: 120px;
}
.animate-top-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 20px;
}
.bannernew__title-animate.animate-1 {
    max-width: 270px;
}
.bannernew__title-animate.animate-2 {
    max-width: 415px;
}
.bannernew__title-animate.animate-3 {
    max-width: 100%;
}
.bannernew__title-animate {
    position: relative;
    opacity: 0;
    color: #fff;
}
.bannernew__title-animate_four {
    position: relative;
}
.bannernew__title-animate.active {
    animation: ib 1.5s linear both;
}

.bannernew__title-animate.no-active {
    animation: jb 1.5s linear both;
}

.bannernew__title-animate.animate-4.active {
    animation: kb .5s cubic-bezier(.55,.085,.68,.53) both;
}
@keyframes ib {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 0;
        text-shadow: none;
    }

    10.1% {
        opacity: 1;
        text-shadow: none;
    }

    10.2% {
        opacity: 0;
        text-shadow: none;
    }

    20% {
        opacity: 0;
        text-shadow: none;
    }

    20.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.25);
    }

    20.6% {
        opacity: 0;
        text-shadow: none;
    }

    30% {
        opacity: 0;
        text-shadow: none;
    }

    30.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    30.5% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    30.6% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 0;
        text-shadow: none;
    }

    45.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    55% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    55.1% {
        opacity: 0;
        text-shadow: none;
    }

    57% {
        opacity: 0;
        text-shadow: none;
    }

    57.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35);
    }

    60% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35);
    }

    60.1% {
        opacity: 0;
        text-shadow: none;
    }

    65% {
        opacity: 0;
        text-shadow: none;
    }

    65.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35),0 0 100px hsla(0,0%,100%,.1);
    }

    75% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35),0 0 100px hsla(0,0%,100%,.1);
    }

    75.1% {
        opacity: 0;
        text-shadow: none;
    }

    77% {
        opacity: 0;
        text-shadow: none;
    }

    77.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.4),0 0 110px hsla(0,0%,100%,.2),0 0 100px hsla(0,0%,100%,.1);
    }

    85% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.4),0 0 110px hsla(0,0%,100%,.2),0 0 100px hsla(0,0%,100%,.1);
    }

    85.1% {
        opacity: 0;
        text-shadow: none;
    }

    86% {
        opacity: 0;
        text-shadow: none;
    }

    86.1% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.6),0 0 60px hsla(0,0%,100%,.45),0 0 110px hsla(0,0%,100%,.25),0 0 100px hsla(0,0%,100%,.1);
    }

    to {
        opacity: 1;
    }
}

@keyframes jb {
    0% {
        opacity: 1;
    }

    13.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.6),0 0 60px hsla(0,0%,100%,.45),0 0 110px hsla(0,0%,100%,.25),0 0 100px hsla(0,0%,100%,.1);
    }

    14% {
        opacity: 0;
        text-shadow: none;
    }

    14.9% {
        opacity: 0;
        text-shadow: none;
    }

    15% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.4),0 0 110px hsla(0,0%,100%,.2),0 0 100px hsla(0,0%,100%,.1);
    }

    22.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.4),0 0 110px hsla(0,0%,100%,.2),0 0 100px hsla(0,0%,100%,.1);
    }

    23% {
        opacity: 0;
        text-shadow: none;
    }

    24.9% {
        opacity: 0;
        text-shadow: none;
    }

    25% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35),0 0 100px hsla(0,0%,100%,.1);
    }

    34.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35),0 0 100px hsla(0,0%,100%,.1)
    }

    35% {
        opacity: 0;
        text-shadow: none;
    }

    39.9% {
        opacity: 0;
        text-shadow: none;
    }

    40% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35);
    }

    42.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.55),0 0 60px hsla(0,0%,100%,.35);
    }

    43% {
        opacity: 0;
        text-shadow: none;
    }

    44.9% {
        opacity: 0;
        text-shadow: none;
    }

    45% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    54.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    55% {
        opacity: 0;
        text-shadow: none;
    }

    69.4% {
        opacity: 0;
        text-shadow: none;
    }

    69.5% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    69.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.45),0 0 60px hsla(0,0%,100%,.25);
    }

    70% {
        opacity: 0;
        text-shadow: none;
    }

    79.4% {
        opacity: 0;
        text-shadow: none;
    }

    79.9% {
        opacity: 1;
        text-shadow: 0 0 30px hsla(0,0%,100%,.25);
    }

    80% {
        opacity: 0;
        text-shadow: none;
    }

    89.8% {
        opacity: 0;
        text-shadow: none;
    }

    89.9% {
        opacity: 1;
        text-shadow: none;
    }

    90% {
        opacity: 0;
        text-shadow: none;
    }

    to {
        opacity: 0;
    }
}

@keyframes kb {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.jGrowl-notification.alert {
     position: relative;
 }

.jGrowl-notification .jGrowl-close {
    color: #D09E56 !important;
    font-size: 42px !important;
    font-weight: 300 !important;
    position: absolute;
    right: 33px;
    top: 15px;
}

.jGrowl-message {
    font-size: 22px;
    color: #D09E56;
    text-align: center;
}

.jGrowl.top-right {
    left: 0;
    top: 25% !important;
}

.jGrowl-notification.alert {
    background-color: #161616 !important;
    opacity: 1;
    display: block;
    border-radius: 30px;
    max-width: 600px;
    padding: 60px 20px 40px;
    margin: 0 auto;
    width: 100%;
}
.grecaptcha-badge {
    right: -500px !important;
}
.brands-inner-category {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 21px 15px;

    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 22px 15px;
}

.brands-inner-category > a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(100% / 16 - 15px * 15 / 16);
}

.brands-new-cat__img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #000;
}
.BrandsMarquee {
    padding: 0 15px;
}
.brands-new-cat__img img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
    vertical-align: middle;
}

.search-row {
    display: flex;
    align-items: center;
}
.search-bar{
    flex-grow: 1;
    background: #FFFFFF;
    box-shadow: inset 0px 4px 4px rgba(0,0,0,0.25);
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 40px;
}

.search-bar input{
    border: none;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2F2F2F;
    background: url(/assets/tpl/img/lupa.svg) no-repeat 20px 50% #FFFFFF;
    background-size: 13px 13px;
    padding: 0 15px 0 45px;
    border-radius: 7px;
    width: 100%;
    height: 100%;
}
ul.ui-menu .ui-menu-item-wrapper {
    padding: 20px;
    border: none !important;
    outline: none !important;
}
ul.ui-menu .ui-menu-item:hover {
    background: #fff;
    color: black;
    border: none !important;
    outline: none !important;
}
ul.ui-menu .ui-menu-item-wrapper:hover {
    background: #fff;
    color: black;
    border: none !important;
    outline: none !important;
    opacity: .6;
}
ul.ui-menu .ui-menu-item-wrapper.product {
    padding-left: 60px;
    background: url(/assets/tpl/img/search_product_icon.svg) no-repeat 20px 50% #fff;
    padding-right: 20px;
}
ul.ui-menu .ui-menu-item-wrapper::after {
    content: '';
    width: 7px;
    height: 13px;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
    background: url(/assets/tpl/img/arrow-right.svg) no-repeat 50% 50%;
}
.ui-menu-item .ui-menu-item-wrapper.ui-state-active {
    background-color: #fff !important;
    color: #000 !important;
    border: none !important;
    outline: none !important;
    margin: 0 !important;
}
.favorites {
    display: flex;
    align-items: center;
    margin-left: 40px;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
}
.favorites img {
    width: 15px;
    height: 15px;
    margin-right: 8px;
}
/* .filters {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.filter-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.filter-item {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #00000051;
    box-sizing: border-box;
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #ADADAD;
    position: relative;
    flex: 1;
    height: 40px;
}
.filter-item.selected {
    background: #d09e5699;
    color: #000;
}
.filter-item.selected select, .filter-item.selected input {
    color: #000;
} 
.filter-item img.arrow {
    width: 12px;
    height: 15px;
    position: absolute;
    right: 10px;
}
.filter-item img.lupa {
    width: 13px;
    height: 13px;
    margin-right: 10px;
}
.filter-item select {
    appearance: none;
    background: transparent;
    border: none;
    width: 100%;
    font-size: 16px;
    color: #ADADAD;
}
.filter-item input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: #ADADAD;
}
.filter-item input::placeholder {
    color: #ADADAD;
}
.filter-button {
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    border: 1px solid #D09E56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ADADAD;
    line-height: 16px;
}
.filter-group {
    display: flex;
    gap: 5px;
    width: 100%;
}
.filter-pair {
    display: flex;
    gap: 9px;
    width: 100%;
}
.filter-pair.no-gap {
    gap: 0;
}
.filter-pair.no-gap .filter-item:not(:last-child) {
    border-right: none;
}
.selected-filters {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.selected-filter {
    background: #EFECEC;
    border-radius: 5px;
    padding: 0 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #ADADAD;
    width: 142px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
} */
/* .reset-button {
    background: none;
    border: none;
    color: #ADADAD;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    cursor: pointer;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.reset-button img {
    width: 11px;
    height: 11px;
    margin-left: 5px;
    margin-bottom: -4px;
    vertical-align: middle;
} */
/* .show-button {
    background: #D09E56;
    border-radius: 5px;
    width: 279px;
    height: 40px;
    border: none;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    cursor: pointer;
    margin-left: auto;
} */
.mobile-filter-toggle {
    display: none;
}
.catalog-section {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
}
.catalog-header {
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 38px;
    color: #2F2F2F;
    margin-bottom: 30px;
}
.catalog-info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 30px;
    padding: 0;
}
.catalog-info-left {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 100px;
}
.catalog-year-filter {
    display: flex;
    align-items: center;
    gap: 70px;
}
.year-group {
    display: flex;
    align-items: center;
    gap: 35px;
}
.year-group span {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}
.year-group .year-value {
    color: #D09E56;
}
.year-group .count-value {
    color: #ADADAD;
}
.catalog-promo {
    width: 100%;
    max-width: 477.05px;
    background: url('assets/tpl/img/arrow-car-bg.png') no-repeat center;
    background-size: contain;
    padding: 20px 28px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.catalog-promo-title {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: #2F2F2F;
    margin-bottom: 7px;
    margin-top: 20px;
    padding: 0 26px;
}
.catalog-promo-text {
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    color: #ADADAD;
    margin-bottom: 14px;
    width: 50%;
    padding: 0 26px;
}
.catalog-promo-button {
    width: 152px;
    height: 35px;
    background: #D09E56;
    border-radius: 5px;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
    cursor: pointer;
    margin: 0 26px;
}

.main-sort-container {
    display: flex;
    gap: 20px;
}

.sort-container {
    position: relative;
    bottom: 5px;
}

.sort-container_title {
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 20px;
    position: relative;
    top: 4px;
}

.sort-button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #2F2F2F;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
}
.sort-button img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.product-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.7fr;
    gap: 20px;
    margin-bottom: 70px;
    margin-top: 85px;
}
.product-gallery {
    display: flex;
    flex-direction: column;
}
.product-main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
}
.product-thumbnails {
    display: flex;
    gap: 2px;
}
.product-thumbnails img {
    width: calc(100% / 6 - 2px);
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}
.product-details {
    display: flex;
    flex-direction: column;
}
.product-title {
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 29px;
    color: #2F2F2F;
    margin-bottom: 10px;
}
.product-info {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2F2F2F;
}
.product-info span {
    display: block;
    margin-bottom: 2px;
}
.product-pricing {
    text-align: left;
}
.product-price {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 0px;
}
.product-price-vat {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #000000;
    margin-bottom: 10px;
}
.product-leasing {
    width: 205px;
    height: 26px;
    position: relative;
    background: #776d62d9;
    padding: 3px 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #2F2F2F;
    margin-bottom: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}
.product-leasing span {
    z-index: 1;
}
.product-leasing::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #b7dbe9 0%, #ffffff00 83.86%);
    z-index: 0;
}
.product-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.mobile-btn-lising {
    background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box;
    border: 1.7px solid transparent;
}
.leasing-button {
    width: 130px;
    height: 40px;
    background: #D09E56;
    border-radius: 10px;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    position: relative;
     background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box;
    border: 1.7px solid transparent;
    cursor: pointer;
}
.call-button {
    width: 130px;
    height: 40px;
    background-color: #fff;
    border-radius: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000000;
    cursor: pointer;
    position: relative;
     background:
        linear-gradient(white, white) padding-box,
        linear-gradient(90deg,rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box;
    border: 1.7px solid transparent;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination img {
    width: 15px;
    height: 15px;
}
.pagination .arrow-left {
    margin-right: 15px;
}
.pagination .arrow-right {
    margin-left: 15px;
}
.pagination a {
    font-style: normal;
    font-weight: 400;
    color: #797878;
    font-size: 16px;
    line-height: 23px;
    margin: 0 5px;
    text-decoration: none;
}
.pagination a.active {
    color: #D09E56;
}
.pagination a.inactive {
    color: #797878;
}

.contact-plaque-modal .fancybox-close-small {
    display: none !important;
}
.contact-plaque {
    width: 1136px;
    height: 568px;
    background: #F1F1F3;
    border-radius: 20px;
    padding: 34px 11px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.contact-plaque-left{
    width: 544px;
    height: 536px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 10px;
}
.contact-plaque-right{
    background: #fff;
    width: 544px;
    height: 536px;
    border-radius: 10px;
}
.contact-plaque-close {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding-top: 2px;
}
.contact-plaque-title {
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: #1C1C1C;
    margin-bottom: 8px;
}
.contact-plaque-invite {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #999999;
    margin-bottom: 8px;
}
.contact-plaque-phone {
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #1C1C1C;
    margin-bottom: 8px;
}
.contact-plaque-phone > span {
    color: #999999;
}
.contact-plaque-hours {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.contact-plaque-email {
    font-style: normal;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: #1C1C1C;
}
.contact-plaque-email > span {
    color: #999999;
}
.contact-plaque-whatsapp {
    position: relative;
    bottom: -24px;
}

.model-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}
.model-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: auto;
    min-width: 600px;
    flex: 1;
}
.model-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.model-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.model-name {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #D09E56;
}
.model-divider {
    width: 87px;
    height: 1px;
    background: #2F2F2F;
}
.model-count {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #ADADAD;
}
.model-all {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #D09E56;
    text-decoration: none;
}


.sort-container, .mobile-sort-container {
    position: relative;
    display: block;
}
.sort-button, .mobile-sort-button {
    background: none;
    border: 1px solid #E4E8F4;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #2F2F2F;
    cursor: pointer;
    width: 200px;
}
.sort-button img, .mobile-sort-button img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}
.sort-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E4E8F4;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 200px;
}
.sort-dropdown.active {
    display: block;
}
.sort-dropdown-item {
    padding: 10px 15px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #2F2F2F;
    cursor: pointer;
}
.sort-dropdown-item:hover {
    background: #EFECEC;
}


@media (max-width: 900px) {
    .model-grid {
        min-width: 100%;
    }
    .catalog-promo {
        margin-top: 30px;
    }
}


.mobile-catalog-header,
.mobile-catalog-favorite,
.mobile-catalog-info,
.mobile-sort-container,
.mobile-year-filter,
.mobile-year-group,
.mobile-catalog-promo,
.mobile-catalog-promo-title,
.mobile-catalog-promo-text,
.mobile-catalog-promo-button,
.mobile-product-card,
.mobile-product-gallery,
.mobile-product-main-image,
.mobile-product-thumbnails,
.mobile-product-leasing,
.mobile-product-price,
.mobile-product-price-vat,
.mobile-product-title,
.mobile-product-info,
.mobile-product-buttons,
.mobile-call-button,
.mobile-product-favorite,
.mobile-contact-plaque,
.mobile-model-section,
.mobile-model-grid {
    display: none;
}

@media (max-width: 768px) {
    .sort-container {
        margin-left: 5px;
    }
    .search-row {
        display: none;
    }
    .filters {
        display: none;
    }
    .mobile-filter-toggle {
        display: block;
        background: #FFFFFF;
        border-radius: 10px;
        padding: 15px 10px;
        margin-bottom: 58px;
    }
    .mobile-filter-header {
        display: flex;
        align-items: center;
    }
    .mobile-search-bar {
        flex-grow: 1;
        background: #EFECEC;
        box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        display: flex;
        align-items: center;
        padding: 0 15px;
        height: 40px;
        margin-right: 8px;
    }
    .mobile-search-bar img {
        width: 13px;
        height: 13px;
        margin-right: 10px;
    }
    .mobile-search-bar input {
        border: none;
        outline: none;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #2F2F2F;
        width: 100%;
        background: none;
    }
    .mobile-search-bar input::placeholder {
        color: #2F2F2F;
    }
    .mobile-filter-button {
        background: none;
        border: none;
        display: flex;
        align-items: center;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #2F2F2F;
        cursor: pointer;
    }
    .mobile-filter-button img {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }
    .mobile-filter-content {
        display: none;
        padding: 15px 10px;
        margin-top: 13px;
    }
    .mobile-filter-content.active {
        display: block;
    }
    .mobile-filter-label {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #2F2F2F;
        margin-bottom: 5px;
        margin-top: 20px;
    }
    .mobile-filter-item {
        display: flex;
        align-items: center;
        background: #FFFFFF;
        border: 1px solid #D09E56;
        box-sizing: border-box;
        padding: 0 10px;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        color: #ADADAD;
        position: relative;
        height: 40px;
    }
    .mobile-filter-item select, .mobile-filter-item input {
        appearance: none;
        background: transparent;
        border: none;
        width: 100%;
        font-size: 16px;
        color: #ADADAD;
    }
    .mobile-filter-item img.arrow {
        width: 12px;
        height: 15px;
        position: absolute;
        right: 10px;
    }
    .mobile-filter-pair {
        display: flex;
        gap: 9px;
        width: 100%;
    }
    .mobile-filter-pair .mobile-filter-item {
        flex: 1;
    }
    .mobile-filter-item.no-arrow img.arrow {
        display: none;
    }
    .mobile-show-button {
        background: #D09E56;
        border-radius: 5px;
        width: 100%;
        height: 40px;
        border: none;
        color: #FFFFFF;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        cursor: pointer;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .catalog-section {
        padding: 15px 10px;
    }
    .mobile-catalog-header {
        display: inline-block;
        font-style: normal;
        font-weight: 500;
        font-size: 18px;
        line-height: 26px;
        color: #2F2F2F;
        width: 70%;
        vertical-align: middle;
        margin: 0;
    }
    .mobile-catalog-favorite {
        display: inline-block;
        width: 15px;
        height: 15px;
        cursor: pointer;
        vertical-align: middle;
        float: right;
    }
    .mobile-catalog-info {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 15px 0 12px;
    }
    .mobile-sort-container {
        display: block;
    }
    .mobile-sort-button {
        display: flex;
        background: none;
        border: none;
        align-items: center;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        color: #2F2F2F;
        cursor: pointer;
    }
    .mobile-sort-button img {
        width: 15px;
        height: 15px;
        margin-right: 5px;
    }
    .sort-dropdown {
        min-width: 180px;
        right: auto;
        left: 0;
        top: calc(100% + 5px);
        max-width: calc(100vw - 20px);
    }
    .mobile-year-filter {
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: flex-end;
    }
    .mobile-year-group {
        display: flex;
        align-items: center;
        gap: 35px;
    }
    .mobile-year-group span {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
    }
    .mobile-year-group .year-value {
        color: #D09E56;
    }
    .mobile-year-group .count-value {
        color: #ADADAD;
    }
    .mobile-catalog-promo {
        display: block;
        width: 100%;
        max-width: 300px;
        height: 130px;
        background: url('assets/tpl/img/arrow-car-bg.png') no-repeat center;
        background-size: 100% 100%;
        padding: 20px 28px;
        margin: 5px 0 20px;
        box-sizing: border-box;
    }
    .mobile-catalog-promo-title {
        display: block;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 12px;
        color: #2F2F2F;
        margin-bottom: 7px;
        margin-top: 8px;
        padding: 0;
    }
    .mobile-catalog-promo-text {
        display: block;
        font-style: normal;
        font-weight: 500;
        font-size: 8px;
        line-height: 12px;
        color: #ADADAD;
        margin-bottom: 8px;
        width: 50%;
        padding: 0;
    }
    .mobile-catalog-promo-button {
        display: block;
        width: 98px;
        height: 22px;
        background: #D09E56;
        border-radius: 5px;
        border: none;
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        color: #FFFFFF;
        cursor: pointer;
        margin: 0;
    }
    .mobile-product-card {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }
    .mobile-product-gallery {
        display: block;
        position: relative;
    }
    .mobile-product-main-image {
        display: block;
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    .mobile-product-thumbnails {
        display: none;
    }
    .mobile-product-leasing {
        display: flex;
        position: absolute;
        bottom: 22px;
        left: 0;
        width: auto;
        height: 26px;
        background: rgba(239, 236, 236, 0.8);
        padding: 3px 10px;
        font-style: normal;
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        color: #2F2F2F;
        align-items: center;
        justify-content: center;
    }
    .mobile-product-price {
        display: block;
        font-style: normal;
        font-weight: 700;
        font-size: 18px;
        line-height: 18px;
        color: #000000;
        margin-bottom: 0;
    }
    .mobile-product-price-vat {
        display: block;
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 18px;
        color: #000000;
        margin-bottom: 10px;
    }
    .mobile-product-title {
        display: block;
        font-style: normal;
        font-weight: 700;
        font-size: 16px;
        line-height: 16px;
        color: #2F2F2F;
        margin-bottom: 4px;
    }
    .mobile-product-info {
        display: block;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 14px;
        color: #2F2F2F;
        margin-bottom: 23px;
    }
    .mobile-product-buttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .mobile-call-button {
        display: block;
        box-sizing: border-box;
        height: 40px;
        background: #FFFFFF;
        border: 1px solid #D09E56;
        border-radius: 5px;
        flex-grow: 1;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 23px;
        color: #000000;
        cursor: pointer;
    }
    .mobile-product-favorite {
        display: block;
        width: 27px;
        height: 27px;
        cursor: pointer;
        filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
    }

    .mobile-contact-plaque {
        display: block;
        width: 100%;
        height: 200px;
        background: linear-gradient(320.05deg, #C5C5C5 2.19%, #222222 97.04%);
        border-radius: 15px;
        padding: 20px 10px;
        box-sizing: border-box;
        position: relative;
        margin: 20px 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .mobile-contact-plaque-close {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 12px;
        height: 12px;
        cursor: pointer;
    }
    .mobile-contact-plaque-phone {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #FFFFFF;
        margin-bottom: 6px;
    }
    .mobile-contact-plaque-hours {
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        color: #FFFFFF;
        margin-bottom: 6px;
    }
    .mobile-contact-plaque-invite {
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 20px;
        color: #FFFFFF;
        margin-bottom: 6px;
    }
    .mobile-contact-plaque-address {
        font-style: normal;
        font-weight: 400;
        font-size: 10px;
        line-height: 14px;
        color: #FFFFFF;
    }

    .mobile-model-section {
        display: block;
        margin-bottom: 20px;
    }
    .mobile-model-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .mobile-model-column {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .mobile-model-item {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: center;
    }
    .mobile-model-name {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #D09E56;
    }
    .mobile-model-divider {
        width: 50px;
        height: 1px;
        background: #2F2F2F;
    }
    .mobile-model-count {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #ADADAD;
    }
    .mobile-model-all {
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
        color: #D09E56;
        text-decoration: none;
    }

    .catalog-header,
    .product-card,
    .product-gallery,
    .product-thumbnails,
    .product-details,
    .product-pricing,
    .product-buttons,
    .leasing-button,
    .call-button,
    .model-section,
    .model-grid {
        display: none;
    }
}
.contact-plaque-modal {
    display: none;
    background: transparent !important;
    padding: 0 !important;
}
.pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination-custom button {
    background: transparent;
    padding: 0;
}
.card-prom-right {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box !important;
    border: 3px solid transparent;
    border-radius: 20px;
    background: #fff;
    margin-top: 42px;
}
.card-prom-right span {
    display: inline-block;
    padding: 0px 10px;
}
.card-prom-right__title {
    font-weight: 600;
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 7px;
    z-index: 2;
}
.card-prom-right__text {
    max-width: 280px;
    font-weight: 500;
    font-size: 14px;
    z-index: 2;
    color: #000 !important;
    margin-bottom: 14px;
}
.car-img-promo {
    position: absolute;
    right: -55px;
    top: initial;
    bottom: -2px;
    height: auto;
    max-width: 225px;
    max-height: 170px;
}
@media screen and (min-width: 1024px) {
    .catalog-promo-block-right {
        position: relative;
        top: 10px;
    }
}
.catalog-promo-block-right .car-img-promo {
    position: absolute;
    right: -55px;
    top: initial;
    bottom: -15px;
    height: auto;
    max-width: 248px;
    max-height: 170px;
}
.card-prom-right__btn {
    border-radius: 5px;
    width: 142px;
    z-index: 2;
    gap: 6px;
    height: 35px;
    border: 1.7px solid transparent;
    display: flex !important;
    background: #D09E56;
    align-items: center;
    padding: 0 0 0 5px !important;
    margin: 0px 10px 15px;
}
.card-prom-right__btn span {
    padding: 0 !important;
    color: #fff;
    font-size: 19px;
}
.card-inner-right .card-prom-right__btn {
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box;
}
.card-inner-right .card-prom-right__btn span {
    color: #000;
}
.card-prom-right__btn img {
    max-width: 40px;
    min-width: 40px;
}
.to-share-link {
    position: relative;
    top: -3px;
    color: #000;
    margin-left: 24px;
}
#modal-for-link {
    background: #222;
    border-radius: 10px;
    padding: 35px;
}
.share-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 11px 20px;
}
.share-title {
    font-size: 20px;
    border-bottom: 1px solid #fff;
    display: inline-block;
    margin-bottom: 15px;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 10;
    padding: 10px 0;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__left {
    display: flex;
    align-items: center;
    gap: 43px;
}

.header__navigation {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
}

.header__navigation__footer {
    display: flex;
}

.logo-mobile {
    display: none;
}

.header__menu, .header__menu__black {
    display: flex;
    list-style: none;
    gap: 20px;
}

.header__menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 100;
}

.header__menu__black a {
    color: #1C1C1C;
}

.header__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    vertical-align: middle;
}

.header__phone, .header__phone__black {
    color: #fff;
    padding: 15px 23.5px;
    margin-left: 10px;
    text-decoration: none;
    display: inline-block;
}

.header__phone__black {
    color: #1C1C1C;
}

.header__burger {
    display: none;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #141414;
    transition: 0.3s;
}

.sidebar.active {
    right: 0;
}

.sidebar__menu {
    list-style: none;
    padding: 60px 20px;
}

.sidebar__menu li {
    margin-bottom: 20px;
}

.sidebar__menu a {
    color: #fff;
    text-decoration: none;
}

.sidebar__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}
.fav-i {
    position: relative;
    top: 4px;
}
.fav-i.active img {

}
.fav-i__heart {
    background-image: url('../img/heart-pust.svg');
    background-repeat: no-repeat !important;
    width: 28px;
    height: 30px;
    min-width: 25px;
}
.fav-i.active .fav-i__heart {
    background-image: url('../img/heart-head.svg');
}
.fav-i span {
    background: #D09E56;
    width: auto;
    display: flex;
    visibility: hidden;
    position: absolute;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 16px;
    min-width: 16px;
    color: #fff;
    font-size: 12px;
    top: -9px;
    right: -5px;
    transition: all 0.3s ease;
}
.fav-i.active span {
    visibility: visible;
    transition: all 0.3s ease;
}
.about-right ol li::before {
    display: none;
}
.new-card-btns {
    display: flex;
    align-items: center;
    gap: 10px 20px;
}
.new-card-btn, .show-button, .general-button {
    border-radius: 12px;
    width: 225px;
    height: 56px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left,#C0BEA6, #807C6C) padding-box;
    border: 1.7px solid transparent;
}
.lising-card {
    margin-top: 25px;
    background: #fff;
    border-radius: 10px;
    padding: 25px 0px;
}
.lising-card__title {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    padding: 0px 10px;
    margin-bottom: 34px;
}
.lising-card-head {
    position: relative;
    margin-bottom: 58px;
}
.lising-card-head img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.lising-card-head__price {
    background: #efecec;
    width: 100%;
    max-width: 219px;
    text-align: center;
    padding: 12px 0px;
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    bottom: 5px;
}
.lising-card-lines {
    margin-bottom: 40px;
    padding: 0 20px;
}
.lising-card-lines__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.lising-card-lines__item:not(:last-child) {
    margin-bottom: 8px;
}
.lising-card__subtitle {
    text-align: center;
    padding: 0px 10px;
    margin-bottom: 16px;
}
.lising-card-partners {
    position: relative;
    padding: 0 20px;
    margin-bottom: 28px;
}
.lising-card-partners__more {
    position: absolute;
    font-weight: 500;
    color: #D09E56 !important;
    font-size: 14px;
    right: 20px;
    top: 7px;
}
.lising-send-btn {
    border-radius: 5px;
    width: 279px;
    height: 40px;
    color: #fff !important;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    background: #D09E56;
}
.modal-lising,
.modal-lising .fancybox-close-small {
    display: none;
}
.modal-lising.fancybox-content {
    background: linear-gradient(315deg, #c5c5c5 0%, #222 100%);
    padding: 43px 20px 14px;
    border-radius: 20px;
}
.modal-lising-qr__title {
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    max-width: 356px;
    text-align: center;
    margin: 0 auto 20px;
}
.modal-lising-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 53px;
    margin-bottom: 30px;
}
.modal-lising-qr__title span {
    color: #D09E56;
}
.modal-lising-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.modal-lising-list__item img:first-child {
    background: #fff;
    margin-bottom: 6px;
}
.modal-lising-qr > a {
    width: 100%;
    text-align: center;
    display: block;
}
.lising-card-lines__item span:last-child,
.lising-card-lines__item span:last-child input{
    text-align: right;
    color: #2F2F2F !important;
    font-size: 16px;
}
.pev-none {
    pointer-events: none;
}
.error_g-recaptcha-response span.error {
    text-align: center;
    margin: 10px auto 0px;
    width: 100%;
    display: block;
}
.modal-form-lis, .modal-clients-video {
    display: none;
}
.regal-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px 4px;
    margin-bottom: 40px;
}
.regal-list-item {
    padding: 5px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border-image: url(../img/promo-card/border-arr.svg) 36 fill / 45px / 0px 0.01rem 0.1rem;
}
.regal-list-item p {
    margin-bottom: 0;
}
.regal-list-item p:nth-child(2) {
    font-weight: 500;
    color: #D09E56;
}
.modal-form-lis {
    background: transparent !important;
    padding: 0 !important;
    width: 100%;
    max-width: 430px !important;
}
.modal-form-lis .fancybox-close-small {
    top: 22px !important;
    right: 0px !important;
}
.modal-form-lis .lising-card__title {
    color: #222;
    margin-bottom: 15px;
}
.modal-form-lis .lising-card-head__price {
    color: #222;
}
.product-leasing__text {
    display: inline-block;
    margin-left: 4px;
}
.form-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 0px 20px;
    flex-direction: column;
}
.text-vlising-mobile,
.favor-mobile,
.product-pricing-mobile,
.search-mobile {
    display: none;
}
.catalog-promo-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}
.catalog-head-top-block__item.catalog-head-top-block__mobile {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    margin-bottom: 50px;
}
.catalog-promo-block-left {
    max-width: 720px;
}
.catalog-promo-block-right {
    padding-right: 20px;
    min-width: 555px;
}
.catalog-promo-block .card-prom-right {
    margin-top: 0;
}
.catalog-promo-block .card-prom-right .card-prom-right__title {
    font-size: 22px;
    margin-top: 8px;
}
.catalog-promo-block .card-prom-right .card-prom-right__text {
    font-size: 16px;
    max-width: 315px;
}
.hide-block {
    display: none !important;
}
.full-width {
    width: 100% !important;
    max-width: 100% !important;
}
.grid-5-cols {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
}
.fullwidth {
    max-width: 100%;
    width: 100%;
}
.inner-price-container__link {
    color: #5371ff !important;
}
.link-toback {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 16px;
    margin-bottom: 20px;
}
.bg-gr-mobile {
    display: none;
    height: 100%;
    max-height: 1442px;
}
.bg-gr-mobile,
.bg-gr-desktop {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.bg-gr-desktop {
    height: 860px;
}
.catalog-header.catalog-header__mobile {
    display: none;
}
.body-inner.body-inner-catalog {
    background: #141414;
}
.card-inner-right .card-prom-right__text {
    max-width: 230px;
}
.comm-s {
    display: none;
}
.seo-gradient-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 11px 20px;
}
.seo-gradient-links a {
    border-radius: 5px;
    width: 100%;
    z-index: 2;
    gap: 6px;
    height: 35px;
    background: linear-gradient(white, white) padding-box, linear-gradient(90deg, rgba(229, 202, 170, 1) 0%, rgba(0, 0, 0, 1) 100%) border-box;
    border: 1.7px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0px;
}
.seo-gradient-links.mobile {
    display: none;
}
.favorite-container .catalog-header {
     padding: 0 20px;
}
.search-page-body .catalog-header {
    padding: 0 20px;
}
.translate-tooltip-mtz.translator-hidden {
    display: none;
}
.card-hands-description {
    padding: 0 30px 30px;
    font-size: 16px;
}
.card-hands-description p:not(:last-child) {
    margin-bottom: 10px;
}
.all-checkbox-block {
    font-size: 12px;
    line-height: 18px;
}
.container-checkbox {
    padding: 0px 20px;
    margin-bottom: 10px;
}
.policy-new-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.policy-new-main a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.inner-sect-text-page .card-inner a,
.all-checkbox-block a {
    color: #D09E56;
}

.body_404 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.main_404 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 81vh;
    color: #1C1C1C;
}

.main_404_title {
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
}

.main_404_text {
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #999999;
}

.main_404_button {
    background: linear-gradient(67.39deg, #807C6C 17.23%, #C0BEA6 81.93%);
    width: 157;
    height: 56;
    gap: 10px;
    opacity: 1;
    padding-top: 16px;
    padding-right: 40px;
    padding-bottom: 16px;
    padding-left: 40px;
    border-radius: 12px;
}

.configurator {
    color: #1C1C1C;
    padding-top: 82px;
    height: 100%;
}

.main_configurator {
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 74vh;
}

.configurator_image {
    width: 1136px;
    height: 688px;
    gap: 16px;
    opacity: 1;
    border-radius: 24px;
    padding: 16px;
    margin-top: 50px;
}

.configurator_title {
    position: relative;
    bottom: 690px;
    left: 50px;

    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: #fff;
}

.configurator_text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;

    position: relative;
    bottom: 260px;
    left: 48px;

    width: 320px;
    height: 96px;
    max-width: 320px;
}

.configurator_snippet {
    width: 479px;
    height: 506px;
    gap: 32px;
    border-radius: 16px;
    padding: 32px;
    background: #fff;
    color: #000;
    position: relative;
    bottom: 840px;
    left: 592px;
}

.clients, .clients_top, .clients_top_up {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.clients_top_up_title {
    font-weight: 400;
    font-style: Regular;
    font-size: 56px;
    line-height: 64px;
}

.clients_top_up_text {
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
}

.clients_top_middle, .clients_top_bottom {
    display: flex;
}

.clients_top_middle_left, .clients_top_bottom_right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.clients_top_middle_right, .clients_top_bottom_left {
    flex-basis: 200%;
}

.clients_middle {
    background: #F1F1F3;
    width: 100%;
    height: 692px;
    display: flex;
    align-items: center;
}

.clients_middle_video_preview {
    height: 564px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clients_head_image {
    width: 100%;
}

.clients_bottom_container {
    display: flex;
    justify-content: space-between;
}

.clients_bottom_title {
    font-weight: 400;
    font-style: Regular;
    font-size: 48px;
    line-height: 56px;
}

.catalog_sort {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    top: 130px;
    right: 190px;
}

.catalog-search {
    display: flex;
    align-items: center;
    gap: 10px;
}

.catalog-search .search-input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
}

.filter-item.is-selected,
.filter-item.selected{
    background:#1C1C1C;
    border: 1px solid #1C1C1C;
    border-radius: 8px;
}

.filter-item.is-selected select{
    background: transparent;
    color:#FFFFFF;
    border: 0;
    outline: 0;
}

.filter-item.is-selected img,
.filter-item.is-selected svg{
    filter: brightness(0) invert(1);
}

.filter-item.is-selected select {
    background: transparent;
    color: #fff !important;
}

.filter-item.is-selected select option,
.filter-item.is-selected select optgroup {
    color: #2F2F2F !important;
    background: #fff;
}

.filter-item.is-selected * {
    color: inherit;
}

.brands-list a.brand-link{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
}

.brands-list a.brand-link .brand-name{
    color:#BBB079;
    white-space:nowrap;
}

.brands-list a.brand-link .brand-line{
    flex:1;
    height:1px;
    background:#E4E8F4;
    transform: translateY(1px);
}

.brands-list a.brand-link .brand-count{
    min-width:40px;
    text-align:right;
    color:#9AA0A6;
    white-space:nowrap;
}

.brands-list a.brand-link{
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.brands-list a.brand-link:hover{
    text-decoration: none !important;
    border-bottom: 0 !important;
}

.brands-list a.brand-link{
    display: flex;
    align-items: center;

    gap: 0 !important;
    padding: 0 4px;
    box-sizing: border-box;

    width: 100%;
    text-decoration: none;
}

.brands-list a.brand-link .brand-line{
    flex: 1 1 auto;
    min-width: 40px;
    height: 1px;
    background:#E4E8F4;
}

.brands-list a.brand-link{ display:flex; }

.brands-list a.brand-link .brand-name{
    flex: 0 0 auto;
}

.brands-list a.brand-link .brand-count{
    flex: 0 0 auto;
    text-align: left;
}

.brands-list a.brand-link .brand-line{
    flex: 1 1 auto;
    height: 1px;
    background: #E4E8F4;
    margin: 0;
}

.brands-list a { min-width: 113px; }

.brands-list a.brand-link{ min-width: 0 !important; }

@font-face {
    font-family: "NT Somic";
    src: url("/assets/tpl/fonts/01_NTSomic-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NT Somic";
    src: url("/assets/tpl/fonts/02_NTSomic-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "NT Somic";
    src: url("/assets/tpl/fonts/03_NTSomic-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

.brands-list a.brand-link{
    display: flex !important;
    align-items: center;
    width: 100%;
    gap: 0 !important;
    padding: 0 !important;
}

.brands-list a.brand-link .brand-name{
    white-space: nowrap;
}

.brands-list a.brand-link .brand-line{
    flex: 1 1 auto;
    height: 1px;
    background: #E4E8F4;
    margin: 0 4px;
}

.brands-list a.brand-link .brand-count{
    white-space: nowrap;
}

.catalog-title-wrap {
    margin-top: 24px;
    margin-bottom: 24px;
}

.catalog-page-title {
    margin: 0;
    font-family: 'NT Somic', sans-serif;
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    color: #1C1C1C;
}

.filters .selected-filters .show-button,
.filters .selected-filters .show-button .total {
    font-family: 'NT Somic', sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: #FFFFFF !important;
}

.filters .selected-filters .show-button .total {
    color: inherit !important;
}

.catalog_sort{
    position: static !important;
    width: auto !important;
    display: flex;
    justify-content: flex-end;
}

.main-sort-container,
.sort-container{
    position: relative;
    right: auto !important;
    left: auto !important;
    top: auto !important;
}

.sort-button{
    position: relative;
    right: auto !important;
    left: auto !important;
    top: auto !important;
}

.sort-dropdown{
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    z-index: 9999;
}

.catalog_sort .sort-container-title,
.catalog_sort .sort-text{
    font-family: 'NT Somic', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.category-block-list-item .card-price--catalog{
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #1C1C1C;
    margin: 0 0 8px 0;
    font-variant-numeric: tabular-nums;
}

.category-block-list-item__title{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1C1C1C;
    margin: 0 0 6px 0;
    display: block;
    max-width: 100%;
    word-wrap: break-word;
}

.category-block-list-item__content{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #8A8A8A;
    margin: 0;
    display: block;
}

.category-block-list-item__top{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 328 / 220;
    background: #e9e9e9;
}

.category-block-list-item__top .title_image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@supports not (aspect-ratio: 1) {
    .category-block-list-item__top { height: 220px; }
}

.photos6{
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    opacity: .9;
    pointer-events: none;
}

.category-block-list-item__bottom{
    padding-bottom: 14px;
}

.category-block-list-item__title{
    margin-top: 0;
}

.catalog-head-top-block__item.catalog-head-top-block__mobile{
    flex-direction: row !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list-wrap{
    flex: 1 1 520px;
    min-width: 0;
}

.catalog-head-top-block__item.catalog-head-top-block__mobile .catalog_sort{
    flex: 0 0 auto;
    width: auto !important;
    margin-left: auto;
    justify-content: flex-end;
}

@media (min-width: 901px){
    .catalog-head-top-block__item.catalog-head-top-block__mobile{
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: start;
        gap: 12px 24px;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list{
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 48px;
        columns: unset !important;
        column-count: unset !important;
        column-width: unset !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list a{
        min-width: 0 !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .catalog_sort{
        justify-self: end;
        width: auto !important;
        position: static !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-button{
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-container{
        position: relative;
    }
    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-dropdown{
        right: 0;
        left: auto;
    }

}

@media (min-width: 992px){
    .catalog-head-top-block__item.catalog-head-top-block__mobile{
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-rows: auto auto;
        column-gap: 32px;
        row-gap: 12px;
        padding: 0 20px;
        margin-bottom: 50px;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list-wrap{
        grid-column: 1;
        grid-row: 1;
        min-width: 0;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .catalog_sort{
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        justify-self: end;

        width: auto !important;
        position: static !important;
        margin: 0 !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .seo-gradient-links.desktop{
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list{
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 48px;

        columns: unset !important;
        column-count: unset !important;
        column-width: unset !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list a{
        min-width: 0 !important;
        margin-bottom: 0 !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-container{
        position: relative;
    }
    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-dropdown{
        right: 0;
        left: auto;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .sort-button{
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }
}

@media (min-width: 992px){

    .catalog-promo-block-left{
        max-width: none !important;
        flex: 1 1 auto;
        width: auto;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile{
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 12px 24px;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .brands-list-wrap{
        flex: 1 1 auto;
        min-width: 0;
        align-self: flex-start;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .catalog_sort{
        flex: 0 0 auto;
        width: auto !important;
        margin-left: auto !important;
        align-self: flex-end;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .seo-gradient-links.desktop{
        flex: 0 0 100%;
    }

    .catalog_sort .sort-container{
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    .catalog_sort .sort-button{
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (min-width: 992px){

    .catalog-head-top-block__item.catalog-head-top-block__mobile{
        display: grid !important;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto auto;
        column-gap: 24px;
        row-gap: 16px;
        align-items: start !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .brands-list-wrap{
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: 0;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .catalog_sort{
        grid-column: 2;
        grid-row: 2;
        justify-self: end !important;
        align-self: end !important;

        position: static !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important;

        width: auto !important;
        margin: 0 !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile > .seo-gradient-links.desktop{
        grid-column: 1 / -1;
        grid-row: 3;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list{
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px 48px;

        columns: unset !important;
        column-count: unset !important;
        column-width: unset !important;
    }

    .catalog-head-top-block__item.catalog-head-top-block__mobile .brands-list a{
        min-width: 0 !important;
        margin-bottom: 0 !important;
    }

    .catalog_sort .sort-container{ position: relative; }
    .catalog_sort .sort-dropdown{ right: 0; left: auto; }
}

@media (min-width: 992px){
    .catalog_sort .main-sort-container{
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .catalog_sort .sort-container_title,
    .catalog_sort .sort-text{
        line-height: 20px;
    }

    .catalog_sort .sort-button{
        display: inline-flex;
        align-items: center;
    }

    .catalog_sort .sort-container_title{ margin-top: 1px; }
}

@media (min-width: 992px){
    .catalog_sort .main-sort-container{
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .catalog_sort .sort-container_title{
        position: static !important;
        top: auto !important;
        font-size: 16px;
        line-height: 20px;
        margin: 0;
    }

    .catalog_sort .sort-button{
        display: inline-flex;
        align-items: center;
    }
}

.category-block-list-item__top{
    position: relative;
}

.category-block-list-item__top .add-to-favorite-item-card{
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;

    left: auto !important;
    bottom: auto !important;

    width: 30px;
    height: 30px;

    z-index: 5;
}

.category-block-list-item__top .add-to-favorite{
    z-index: 5;
}

.category-block-list-item__top .title_image{
    color: transparent;
}

.category-block-list-item__top{
    position: relative !important;
    overflow: hidden !important;
    border-radius: 24px !important;
    background: #e9e9e9 !important;
    aspect-ratio: 328 / 220;
}

.category-block-list-item__top .title_image{
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    border-radius: inherit !important;
    object-fit: cover !important;
}

.photos6{
    display: none !important;
}

.photos-badge{
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 6;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #fff;
    font-size: 16px;
    line-height: 1;

    opacity: .95;
    pointer-events: none;
}

.photos-badge__num{
    font-variant-numeric: tabular-nums;
}

.photos-badge__icon{
    width: 18px;
    height: 18px;
    display: block;
}

.card-inner .card-inner-left{
    gap: 12px;
}

.new-card-btn{
    text-decoration: none;
    cursor: pointer;
}

.card-inner-right-content__price{
    font-weight: 400;
    font-size: 24px;
    line-height: 40px;
    color: #1C1C1C;
    margin-bottom: 10px;
}
.card-inner-right-content__price:last-child{
    font-weight: 400;
}
.card-inner-right-content__price span{
    font-weight: 400;
}

.options-list-item__content p{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #999999;
    margin: 0;
}
.options-list-item__content span{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #1C1C1C;
}

.card-white-item-table table tr td{
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}
.card-white-item-table table tr td:first-child{
    color: #999999;
}
.card-white-item-table table tr td:last-child{
    color: #1C1C1C;
}

body.body-main .clients-title{
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}
body.body-main .clients-title-right{
    text-decoration: underline;
    font-size: 14px;
    line-height: 20px;
    color: #1C1C1C;
}

body.body-main .hot-sale-block{
    position: relative;
    width: 100%;
}
body.body-main .hot-sale-block .reviews-slider{
    width: 100%;
}
body.body-main .swiper-prev-2,
body.body-main .swiper-next-2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: auto;
    z-index: 20;
}
body.body-main .swiper-prev-2{ left: -28px; }
body.body-main .swiper-next-2{ right: -28px; }

body.body-main .main-page-catalog-products-row{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
@media (max-width: 992px){
    body.body-main .main-page-catalog-products-row{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 576px){
    body.body-main .main-page-catalog-products-row{
        grid-template-columns: 1fr;
    }
}

body.body-main .main-page-catalog .category-block-list-item{
    width: 100%;
    height: auto;
    border-radius: 24px;
    padding: 12px;
    gap: 12px;
    margin-bottom: 0;
}
body.body-main .main-page-catalog .category-block-list-item__top{
    width: 100%;
    position: relative;
    align-self: stretch;
}
body.body-main .main-page-catalog .title_image{
    width: 100%;
    height: 200px;
    margin: 0;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

body.body-main .main-page-catalog .add-to-favorite-item-card{
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
}

body.body-main .main-page-catalog .photos6{
    position: absolute;
    right: 12px;
    bottom: 12px;
    left: auto;
    top: auto;
}

body.body-main .main-page-catalog .category-block-list-item__bottom{
    margin: 0;
    padding: 0 4px 4px 4px;
}

body.body-main .main-page-catalog .main-card-price{
    min-height: 32px;
    margin-top: 4px;
}

body.body-main .main-page-catalog .main-card-price,
body.body-main .main-page-catalog .category-block-list-item__price{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    color: #1C1C1C;
}

body.body-main .main-page-catalog .category-block-list-item__title{
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #1C1C1C;
    text-decoration: none;
    display: block;
    margin-top: 4px;
}

body.body-main .main-page-catalog .category-block-list-item__content{
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #999999;
    text-decoration: none;
    display: block;
    margin-top: 4px;
    margin-bottom: 0;
}

body.body-main .main-page-catalog-title{
    margin: 0 0 24px 0;
}

body.body-main .main-page-catalog-products{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
body.body-main .main-page-catalog-products-row{
    margin: 0;
    gap: 24px;
}


body.body-main .main-page-catalog-button{
    margin-top: 24px;
    padding-top: 0;
}


body.body-main .main-page-catalog-products-row{
    gap: 16px;
}


body.body-main .main-page-catalog-products{
    gap: 16px;
}

body.body-main .main-page-catalog .category-block-list-item{
    box-sizing: border-box;
}

body.body-main .main-page-catalog-products-row{
    gap: 16px;
}

body.body-main .main-page-catalog-products{
    gap: 16px;
}