:root {
    --white: #fff;
    --main-color: #e30613;
  
    --dark-blue: #181d26;
    --light-grey: #eaeae8;
    --black: #000;
    --box-shadow-btn: 0 10px 10px 0 rgb(0 0 0 / 11%);
    --grey-blue: #9197a4;
    --menu-bg: #eaeae8;
    --menu-text: #191e27;
    --filter-btn: #0b101a;
}
* {
    outline: none;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
iframe {
}
html, body {
    font-size: 16px;
}
body {
    color: var(--white);
    line-height: 1.3;
    font-family: 'Montserrat Regular', sans-serif;
}
main {
    padding-top: 130px;
}
h1, .h1 {
    font-size: 24px;
    font-family: 'Montserrat Bold', sans-serif;
    margin-bottom: 25px;
}
h2, .h2 {
    font-size: 24px;
    line-height: 31px;
    font-family: 'Montserrat Bold', sans-serif;
}
#body-wrapper, body.error_site {
    min-height: 100vh;
    padding-bottom: 70px;
    background: rgb(175,176,179);
    background: -moz-radial-gradient(bottom, #afb0b3 0%, #050b14 85%);
    background: -webkit-radial-gradient(bottom, #afb0b3 0%, #050b14 85%);
    background: radial-gradient(at bottom, #afb0b3 0%, #050b14 85%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#afb0b3",endColorstr="#050b14",GradientType=1);
}
.home #body-wrapper {
    padding-bottom: 0;
    flex-direction: column;
    display: flex;
}
.home #banner {
    flex: 1 0 0%;
}
a {
    color: var(--white)
}
a:hover {
    text-decoration: none;
}
p, ul {
    margin-bottom: 25px;
}
li {
    padding-left: 20px;
    position: relative;
}
li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--white);
    margin-top: .4em;
    left: 0;
    position: absolute;
}
audio {
    display: none;
}
img {
    max-width: 100%;
}
.lazyload {
    opacity: 0.001;
}
.lazyloading {
    opacity: 1;
}

.modal main {
    padding-top: 0;
}
.btn {
    min-width: 210px;
    padding: 15px 30px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
}
.btn__black {
    background-color: var(--black);
    color: var(--white);
}
.btn__black:hover {
    background: var(--main-color);
}
/* .error {
    color: var(--main-color);
} */
.error input {
    border-bottom-color: var(--main-color);
}
.error input::-webkit-input-placeholder {color: var(--main-color);}
.error input::-ms-input-placeholder {color: var(--main-color);}
.error input:-moz-placeholder {color: var(--main-color);opacity: 1;}
.error input::-moz-placeholder {color: var(--main-color);opacity: 1;}
.error input:-ms-input-placeholder {color: var(--main-color);}
.error input::placeholder {color: var(--main-color);}
.error > input, .error > textarea {
    border-color: var(--main-color);
}
.response.error {
    color: var(--main-color);
}
body.menu-is-open {
    overflow: hidden;
}
.mobile-menu {
    width: 100%;
    height: 100%;
    background: var(--menu-bg);
    padding-top: 60px;
    /*padding-bottom: 60px;*/
    overflow-y: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    z-index: 999;
    left: 0;
    top: 0;
    position: fixed;
    transform: translateX(100%);
    transition: all 150ms linear;
}
.menu-is-open .mobile-menu {
    transform: translateX(0);
}
.close-menu {
    width: 75px;
    height: 75px;
    background: var(--main-color);
    align-items: center;
    justify-content: center;
    display: flex;
    z-index: 99;
    right: 0;
    top: 0;
    position: absolute;
}
.close-menu span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transform: rotate(45deg);
    position: absolute;
}
.close-menu span:nth-child(1) {
    transform: rotate(-45deg);
}
.mobile-menu .nav {
    text-align: center;
}
.mobile-menu .nav a {
    font-size: 30px;
    color: var(--menu-text);
    text-decoration: none;
}
.mobile-menu .nav li {
    padding: 0;
    margin-bottom: 40px;
}
.mobile-menu .nav li:not(:last-of-type) {
    margin-bottom: 25px;
}
.mobile-menu .nav .active a {
    color: var(--main-color);
}
.mobile-menu__bg {
    margin-bottom: 40px;
}
.menu-bg__1 {
    margin: 0 auto -30px;
    z-index: -1;
    position: relative;
}
.header {
    padding-bottom: 10px;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.header-fly {
    background: rgba(0,0,0,1);
}
.nav-row__wrapper {
    justify-content: space-between;
    align-items: flex-end;
}
.nav li::before {
    display: none;
}
.header .nav {
    display: flex;
}
.header .nav li {
    padding-left: 0;
}
.header .nav-item span,
.header .nav-item a {
    padding: 25px 30px 15px;
    text-decoration: none;
    display: block;
}
.header .nav-item.active span,
.header .nav-item.active a {
    background-color: var(--main-color);
    box-shadow: var(--box-shadow-btn);
}
.header .nav-item:not(.active) a:hover {
    color: var(--main-color);
}
.mobile-menu__btn {
    gap: 6px;
    flex-direction: column;
    display: flex;
}
.mobile-menu__btn span {
    width: 48px;
    height: 4px;
    border-radius: 4px;
    background: var(--white);
}
#main {
    position: relative;
}
#footer {
    text-align: center;
    font-size: 14px;
    font-family: 'Montserrat Light', sans-serif;
    padding: 30px 0 60px;
    background-color: var(--black);
}
#footer .nav {
    gap: 40px;
    margin-bottom: 50px;
    justify-content: center;
    display: flex;
}
#footer .nav li {
    padding: 0 10px;
}
#footer .nav a {
    text-decoration: none;
}
#footer .nav a:hover {
    color: var(--main-color);
}
#footer .footer-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
#footer .footer-button div {
    margin: 20px;
    text-align: center;
    line-height: 150%;
    max-width: 400px;
}
#footer .footer-button div a {
    margin: 0 10px;
    display: inline-block;
}
.container-nav {
    align-items: flex-end;
    display: flex;
}
.change-language {
    line-height: 1;
    position: relative;
    margin: 0 20px;
}
.change-language__btn {
    padding: 0;
    background: none;
    border: 0;
    outline: none !important;
    box-shadow: none;
    text-align: center;
    cursor: pointer;
}
.change-language__btn img {
    max-width: 20px;
}
.change-language__lang-block {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    top: 0;
    transition: all 200ms linear;
    position: absolute;
    flex-direction: column-reverse;
    display: flex;
}
.change-language:hover .change-language__lang-block {
    opacity: 1;
    visibility: visible;
    top: 100%;
}
.change-language__lang-block li {
    padding: 5px 0;
    text-align: center;
}
.change-language__lang-block li::before,
.change-language__lang-block::after {
    display: none;
}
.change-language__lang-block a {
    text-decoration: none;
}
.banner__wrapper {
    /* padding-bottom: 70px; Было изначально*/
    padding-bottom: 70px;
    z-index: 0;
    position: relative;
}
.banner-title {
    /* max-width: 650px; */
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 54px;
    /* padding: 96px 0 110px; */
    /* START Ровняем текст справа */
    padding: 355px 93px 116px 0px;
    margin-left: auto;
    text-align: right;
    max-width: 700px;
    /* END Ровняем текст справа */
}
.banner-img__desktop {
    z-index: -1;
    position: absolute;
}
.banner-img__1 {
    top: 0;
    left: 0;
}
.banner-img__2 {
    top: 104px;
    left: -380px;
}
.banner-img__2::after {
    content: "";
    width: 500px;
    height: 400px;
    background: url(/images/page_bg/main_bg_4.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .3;
    z-index: -1;
    transform: rotate(45deg);
    left: 10%;
    bottom: 0;
    position: absolute;
}
.banner-img__3 {
    bottom: 0;
    right: 0;
    z-index: -2;
}
.audio-btn {
    cursor: pointer;
}
.banner-btn {
    color: var(--dark-blue);
    line-height: 1;
    box-shadow: var(--box-shadow-btn);
    background-color: var(--light-grey);
    background-image: url(/images/icons/sound.svg);
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 30px 25px;
    border-radius: 30px;
    padding: 23px 29px 23px 64px;
    display: inline-block;
    position: relative;
    left: 45%; /* Кнопка по центру */
}
.banner-btn.playing {
    background-image: none;
}
.banner-btn.playing::after, .banner-btn.playing::before {
    content: '';
    width: 5px;
    height: 20px;
    background-color: var(--dark-blue);
    margin-top: -10px;
    top: 50%;
    position: absolute;
}
.banner-btn.playing::before {
    left: 25px;
}
.banner-btn.playing::after {
    left: 35px;
}

.mod-breadcrumbs__wrapper {
    margin: 0 0 30px;
}
.home .mod-breadcrumbs__wrapper {
    display: none;
}
.mod-breadcrumbs__wrapper ol {
    margin: 0;
    padding: 0;
}
.mod-breadcrumbs__wrapper ol li {
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style-type:none;
}
.mod-breadcrumbs__wrapper ol li:before {
    content:"";
    margin:0;
    position: static;
    background: transparent;
}
.mod-breadcrumbs__wrapper ol li:not(:last-child):after {
    content:"-";
    margin:0 20px;
    position: static;
    background: transparent;
}
.mod-breadcrumbs__wrapper ol li:nth-child(1) {
    display: none;
}
.mod-breadcrumbs__wrapper ol li a {
    text-decoration: none;
    color: #bbb;
}
.mod-breadcrumbs__wrapper ol li a:hover {
    text-decoration: underline;
}
@media (max-width: 991px) {
    .mod-breadcrumbs__wrapper ol li {
        margin: 5px 0;
    }
}

.red-line {
    padding: 50px 0 65px;
    z-index: 0;
    position: relative;
}
.red-line::after {
    content: '';
    width: 83%;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;
    left: 0;
    top: 0;
    position: absolute;
}
.red-line__title {
    font-size: 24px;
    margin-right: 40px;
}
.red-line__subtitle {
    max-width: 668px;
    font-size: 15px;
    font-family: 'Montserrat Light', sans-serif;

    line-height: 24px;
}
.red-line__btn {
    width: 260px;
    height: 100%;
    background-color: var(--light-grey);
    right: 17%;
    top: 0;
    position: absolute;
    justify-content: center;
    align-items: center;
    display: flex;
}
.red-line__btn a {
    width: 67px;
    height: 67px;
    background-color: var(--light-grey);
    border: 1px solid var(--white);
    border-radius: 100%;
    box-shadow: var(--box-shadow-btn);
    justify-content: center;
    align-items: center;
    display: flex;
    transform: rotate(270deg);
}
.page-header h1 {
    font-size: 24px;
    font-family: 'Montserrat Bold', sans-serif;
    width: 100%;
}
.page-header h2 {
    display: none !important;
}
.page-submenu {
    margin-bottom: 40px;
}
.page-submenu li {
    display: inline-block;
    margin: 10px 30px 10px 0;
}
.page-submenu li::before {
    display: none;
}
.page-submenu__system {
    margin-bottom: 65px;
}
.page-submenu__models {
    margin: 0 0 40px;
}
.page-submenu__models a {
    color: var(--grey-blue);
}
.page-submenu__models a.active {
    color: var(--main-color);
}
.page-submenu li {
    padding-left: 0;
}
.page-submenu a {
    font-size: 18px;
    font-family: 'Montserrat Light', sans-serif;

    text-decoration: none;
}
.page-submenu .current,
.page-submenu .current a, .page-submenu a:hover {
    color: var(--main-color);
}
.layout-cassiopeia_enginevoxshop #body-wrapper {
    padding-bottom: 0;
}
.layout-cassiopeia_enginevoxshop.view-article #main {
    background: -moz-linear-gradient(to bottom,  #050b1400 30%,#808387 70%,#808387 100%);
    background: -webkit-linear-gradient(to bottom,  #050b1400 30%,#808387 70%,#808387 100%);
    background: linear-gradient(to bottom,  #050b1400 30%,#808387 70%,#808387 100%);

}
.system-page {
    background-image: url(/images/page_bg/equalizer.png);
    background-position: center;
    background-repeat: no-repeat;
}
.system-page__article-body {
    padding-bottom: 35px;
    border-bottom: 1px solid var(--white);
    flex-wrap: wrap;
    align-items: flex-start;
    display: flex;
}
.system-page__introtext {
    padding-right: 15px;
    flex: 1;
}
.system-page__fields,
.category__fields {
    width: 100%;
    margin-top: 20px;
    font-size: 18px;
    font-family: 'Montserrat Light', sans-serif;

    align-items: center;
    display: flex;
}
.category__fields {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--white);
}
.system-page__red-btn,
.category__red-btn {
    text-decoration: none;
}
.system-page__red-btn img,
.category__red-btn img {
    width: 56px;
    height: 38px;
    padding: 8px 13px;
    margin-right: 15px;
    background-color: var(--main-color);
    background-image: url(/images/icons/sound_white.png);
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--box-shadow-btn);
}
.system-page__red-btn.playing,
.category__red-btn.playing {
    background-image: url(/images/icons/pause_white.svg);
    background-size: 15px;
}
.system-page__title-before-menu {
    font-size: 18px;
    font-family: 'Montserrat Bold', sans-serif;
    margin: 36px 0 22px;
}
.system-page__brands {
    gap: 50px;
}
.system-page__brands a:hover {
    text-decoration: underline;
}
.about-us-page #body-wrapper {
    position: relative;
}
/*
.about-us-page #body-wrapper::before {
    content: '';
    background-image: url(/images/page_bg/main_bg_5.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .2;
    width: 700px;
    height: 700px;
    z-index: 0;
    left: 10%;
    bottom: -10%;
    position: absolute;
}
.about-us-page #body-wrapper::after {
    content: '';
    background-image: url(/images/page_bg/main_bg_4.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .3;
    width: 700px;
    height: 700px;
    z-index: 0;
    right: 5%;
    bottom: -10%;
    position: absolute;
    transform: rotate(180deg);
}
*/
.item-intro__row {
    margin-left: -15px;
    margin-right: 0px;
    z-index: 1;
    position: relative;
    justify-content: space-between;
    display: flex;
}
.item-intro__block-wrap {
    padding-left: 15px;
    padding-right: 15px;
}
.item-intro__block {
    box-shadow: var(--box-shadow-btn);
    transition: all 200ms linear;
    overflow: hidden;
    position: relative;
}
.item-intro__block .page-header {
    padding-right: 36px;
    right: 0;
    bottom: 25px;
    position: absolute;
    display: block;
}
.item-intro__block .page-header::after {
    content: '';
    width: 24px;
    height: 100%;
    background-color: var(--white);
    top: 0;
    right: 0;
    position: absolute;
}
.item-intro__block .page-header h2 {
    font-size: 30px;
    font-family: 'Montserrat Light', sans-serif;

}
.item-intro__image-wrap {
    max-width: 347.5px;
}
.item-intro__text-wrap {
    height: 100%;
    visibility: hidden;
    background-color: var(--white);
    color: var(--black);
    padding: 60px;
    opacity: 0;
    overflow: hidden;
    z-index: 1;
    top: 0;
    position: absolute;
    transition: all 150ms linear;
}
.shop-item {
    padding-bottom: 50px;
}
.shop-item__image-system:not(.active),
.shop-item__tab-content:not(.active) {
    display: none;
}
.shop-item__body {
    flex-wrap: wrap;
    display: flex;
    z-index: 1;
    position: relative;
}

.shop-item__images, .shop-item__tabs {
    flex: 1 0 50%;
    padding-left: 30px;
    padding-right: 30px;
}

/*Добавил новое свойство*/
@media screen and (max-width: 479px) {
    .shop-item__images, .shop-item__tabs {
        padding-left: 15px;
        padding-right: 15px;
    }
}



.shop-item__images {
    background-image: url(/images/page_bg/equalizer_2.png);
    background-repeat: no-repeat;
    background-position: 50% 30%;
    padding-bottom: 30px;
    position: relative;
}
/*.shop-item__images::before {
    content: '';
    width: 500px;
    height: 500px;
    background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(177,213,241,0) 60%, rgba(125,185,232,0) 100%);
    background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(177,213,241,0) 60%,rgba(125,185,232,0) 100%);
    background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(177,213,241,0) 60%,rgba(125,185,232,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#007db9e8',GradientType=1 );
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
}*/
.shop-item__images::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(/images/icons/spinner.svg);
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    position: absolute;
    display: none;
}
.shop-item__images.load::after {
    display: block;
}
.shop-item__image-car-slider {
    width: 100%;
    right: 90px;
    bottom: -60px; /* Было -30px */
    z-index: 1;
    position: absolute;
}
.shop-item__image-car-slider .swiper-wrapper {
    align-items: flex-end;
}
.shop-item__image-car img {
    margin: 0px auto 20px;
}
.shop-item__image-system {
    width: 100%;
    /*transform: translateX(-90px); 
    position: absolute; */
}

.shop-item__sound-title {
    margin-top: 15px;
    padding-left: 160px;
}

@media (max-width: 991px) {
    .shop-item__sound-title {
        text-align: center;
        margin-top: 0;
        padding-left: 0;
    }
}


.shop-item__sound-title > * {
    font-family: 'Montserrat Regular', sans-serif;

    font-size: 1em;
    margin: 0;
}
.shop-item__tabs-header {
    margin-bottom: 40px;
    display: flex;
}
.shop-item__tab-title {
    padding: 15px 20px;
    line-height: 1;
    cursor: pointer;
}
/* .shop-item__tab-title:first-of-type:not(.active) {
    padding-left: 0;
}  */



.shop-item__tab-title.active {
    background: var(--black);
}
.shop-item__tab-content {
    font-family: 'Montserrat Light', sans-serif;

    line-height: 1.5;
}
.shop-item__short-description, .shop-item__kit-title, .shop-item__kit-speakers-count {
    margin-bottom: 20px;
}
.shop-item__kit-title, .shop-item__kit-speakers-count {
    font-family: 'Montserrat Bold', sans-serif;
}
.shop-item__price-row {
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    display: flex;
}
.shop-item__price {
    font-size: 40px;
    font-family: 'Montserrat Bold', sans-serif;
    white-space: nowrap;
    flex: 1;
}
.shop-item__price-prefix {
    padding-right: 10px;
}
.shop-item__kit-speakers-count {
    padding-right: 50px;
    position: relative;
    display: inline-block;
}
.shop-item__kit-speakers-count::after {
    content: url(/images/icons/count_sounds.png);
    transform: translateY(-45%);
    top: 50%;
    right: 0;
    position: absolute;
}
.shop-item__sounds {
    margin-left: 30px;
    margin-top: 80px;  /* Было 50px  */
}
/* .shop-item__sounds-sound:not(.swiper-slide) {
    display: none;
} */
.shop-item__sounds-play-btn {
    width: 42px;
    height: 42px;
    background: var(--white);
    box-shadow: var(--box-shadow-btn);
    border-radius: 100%;
    position: relative;
    vertical-align: middle;
    display: inline-block;
}
.playing .shop-item__sounds-play-btn {
    background: var(--main-color);
}
.audio-btn:not(.playing) .shop-item__sounds-play-btn::before {
    content: '';
    width: 0px;
    height: 0px;
    border: 15px solid transparent;
    border-left: 15px solid var(--grey-blue);
    margin: auto;
    left: 15px;
    top: 0;
    bottom: 0;
    position: absolute;
}
.playing .shop-item__sounds-play-btn::before, .playing .shop-item__sounds-play-btn::after {
    content: '';
    width: 5px;
    height: 20px;
    background-color: var(--grey-blue);
    margin-top: -10px;
    top: 50%;
    position: absolute;
}
.playing .shop-item__sounds-play-btn::before {
    left: 14px;
}
.playing .shop-item__sounds-play-btn::after {
    left: 23px;
}
.shop-item__sounds {
    width: 50%;
    flex-basis: 50%;
    padding-left: 40px;
    padding-right: 110px;
}

.shop-item__sounds-button-prev,
.shop-item__sounds-button-next {
    width: 15px;
    height: 43px;
    background-image: url(/images/icons/next_arrow.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: translateY(-50%);
    top: 50%;
    position: absolute;
}
.shop-item__sounds-button-prev {
    transform: rotate(180deg) translateY(50%);
    left: 0;
}
.shop-item__sounds-button-next {
    right: 70px;
}
.swiper-horizontal .shop-item__sounds-pagination {
    width: 35px;
    cursor: pointer;
    top: 0;
    left: auto;
    right: 0;
    position: absolute;
    align-items: center;
    flex-direction: column;
    /* display: flex; */
    display: none;
}
.shop-item__sounds-pagination .swiper-pagination-bullet {
    width: 35px;
    height: 35px;
    color: var(--white);
    line-height: 35px;
    text-align: center;
    border-radius: 100%;
    opacity: 1;
    background: none;
}
.shop-item__sounds-pagination .swiper-pagination-bullet-active {
    background: var(--black);
}
.shop-item__sounds-wave {
    width: calc(100% + 4px);
    min-height: 60px;
    align-items: center;
    display: flex;
}
.wave-surfer {
    flex: 1;
}
.shop-item__sounds-title {
    width: 200px;
    margin: 0 10px 0 40px;
}
.shop-item__bg {
    width: 100%;
    height: 900px;
    /* background: -moz-linear-gradient(top,  rgba(5,11,20,0) 0%, rgba(175,176,179,0.28) 10%, rgba(175,176,179,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(5,11,20,0) 0%,rgba(175,176,179,0.28) 10%,rgba(175,176,179,1) 100%);
    background: linear-gradient(to bottom,  rgba(5,11,20,0) 0%,rgba(175,176,179,0.28) 10%,rgba(175,176,179,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00050b14', endColorstr='#afb0b3',GradientType=0 ); */
    right: 0;
    bottom: 0;
    z-index: 0;
    position: absolute;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
}
.shop-item__bg img {
    margin: auto 0 0 auto;
}
.shop-item__description {
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms linear;
    overflow: hidden;
}
.shop-item__description.show {
    margin-top: 50px;
    opacity: 1;
    visibility: visible;
}
.shop-item__description-title {
    font-size: 24px;
    font-family: 'Montserrat Bold', sans-serif;
    margin-bottom: 25px;
}
.shop-item__description-gallery-btn,
.system-page__description-gallery-btn,
.category__description-gallery-btn {
    font-size: 18px;
    text-decoration: none;
    margin-top: 20px;
}
.shop-item__description-gallery-btn {
    margin-right: 67px;
}
.system-page__description-gallery-btn,
.category__description-gallery-btn {
    margin-right: 40px;
}
.shop-item__description-gallery-btn img,
.system-page__description-gallery-btn img,
.category__description-gallery-btn img {
    width: 56px;
    height: 38px;
    padding: 8px 13px;
    margin-right: 15px;
    background-color: var(--main-color);
    box-shadow: var(--box-shadow-btn);
}
.system-page__description-gallery-btn,
.category__description-gallery-btn {
    margin-top: 0;
}

.system-gallery__caption {
    margin-top: 30px;
    text-align: center;
}
.shop-item__buy-btn {
    font-size: 22px;
    font-family: 'Montserrat Bold', sans-serif;
    line-height: 1;
    text-decoration: none;
    background: var(--main-color);
    box-shadow: var(--box-shadow-btn);
    color: #fff;
    padding: 13px 50px;
    border-radius: 30px;
    display: inline-block;
}
.shop-item__buy-btn:hover {
    background: var(--dark-blue);
}
.shop-item__readmore-system {
    padding: 0 30px 0 20px;
}
.shop-item__readmore-btn.show {
    text-decoration: none;
}
.shop-category {
    padding-bottom: 70px;
    background-image: url(/images/page_bg/equalizer.png);
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    flex-wrap: wrap;
    display: flex;
}
.shop-category__desc,
.shop-category__image {
    width: 50%;
}
.filter {
    font-size: 14px;
    margin-bottom: 30px;
}
.filter__inner {
    align-items: center;
    justify-content: space-between;
}
.filter__dropdown {
    flex: 1 0 0%;
    position: relative;
}
.filter__dropdown--brands {
    margin-right: 10px;
    width: 100%;
}
.filter__dropdown--models {
    margin-left: 10px;
    width: 80%;
}
.filter__selected {
    cursor: pointer;
    justify-content: space-between;
    align-items: center;
    display: flex;
    width: 100%;
    border: solid 1px #aaa;
    font-size: 17px;
    padding: 0 0 0 10px;
}
.filter__selected.disabled {
    cursor: default;
}
.filter__selected--text {
    white-space: nowrap;
    font-family: 'Montserrat Light', sans-serif;

}
.filter__selected--btn {
    width: 29px;
    height: 29px;
    margin-left: 5px;
    border: 1px solid var(--white);
    background: url(/images/icons/arrow_down_white.png) no-repeat center;
    display: inline-flex;
}
.filter__dropdown.is-open .filter__selected--btn {
    background-color: var(--filter-btn);
    border-color: var(--filter-btn);
}
.filter__list {
    width: 100%;
    padding: 15px;
    background-color: var(--filter-btn);
    z-index: 99;
    top: 100%;
    left: 0;
    position: absolute;
    display: none;
}
.filter__dropdown.is-open .filter__list {
    display: block;
}
.filter__list--item {
    cursor: pointer;
}
.filter__list--item:not(:last-of-type) {
    margin-bottom: 20px;
}
.filter__list--item a {
    text-decoration: none;
    display: block;
}
.messagers-icons__fixed {
    top: auto;
    bottom: 50px;
    right: 25px;
    z-index: 99;
    flex-direction: column;
    display: flex;
    position: fixed;
}
.messagers-icons__fixed a {
    width: 56px;
    height: 58px;
    margin: 3px 0;
    margin-bottom: 10px;
    display: block;
}

.social-icons__fixed {
    display: flex;
    justify-content: center;
}
.social-icons__fixed a {
    width: 56px;
    height: 58px;
    margin: 5px;
    margin-bottom: 10px;
    display: block;
}

#contacts-map {
    width: 100%;
    height: 420px;
}
#contacts-map [class*="-map-copyrights-promo"], #contacts-map [class*="-copyrights-pane"] {
    display: none !important;
}
.contacts {
    width: 100%;
    max-width: 400px;
    height: 420px;
    color: var(--black);
    background: var(--white);
    padding: 35px;
    flex-direction: column;
    display: flex;
}
.contacts-country__wrapper {
    margin: -35px;
    padding: 35px;
    background-color: #eeeded;
}
.contacts-country__inner {
    margin-bottom: -10px;
}
.contacts-country__btn {
    color: var(--black);
    text-decoration: none;
    margin: 0 19px 10px 0;
    display: inline-block;
}
.contacts-country__btn.active {
    color: var(--main-color);
}
.contacts__dealer {
    padding-right: 15px;
    margin-bottom: 30px;
    display: none;
}
.contacts__dealer.active {
    display: block;
    color: var(--black);
}
.contacts__dealer.active a {
    color: var(--black);
}
.contacts__dealer.active a:hover {
    color: var(--main-color);
}
.contacts-content__wrapper {
    margin-top: 65px;
    overflow-y: auto;
}
.contacts-content__wrapper::-webkit-scrollbar {
    width: 5px;
}
.contacts-content__wrapper::-webkit-scrollbar-track {
    background: #6e7278;
    border: 2px solid transparent;
    background-clip: content-box;
}
.contacts-content__wrapper::-webkit-scrollbar-thumb {
    background: #6e7278;
}
.contacts-company {
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 1.1em;
    margin-bottom: 25px;
}
.contacts-address {
    margin-bottom: 25px;
}
[class*="ymaps-2"][class*="-map-bg"] {
    background: #000;
}
[class*="ymaps-2"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+ & Safari 6+ */
    opacity: .7;
}
.error-page {
    text-align: center;
    flex-direction: column;
    display: flex;
}
.error-page__title {
    font-size: 3em;
    font-family: 'Montserrat Bold', sans-serif;
    padding-top: 3em;
}
.error-page__subtitle {
    font-size: 1.5em;
}
.error-page__link a {
    padding: 20px 30px;
    background: var(--main-color);
    line-height: 1;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 2em;
    display: inline-block;
}
.error-page__link a:hover {
    background: var(--dark-blue);
}
.cart {
    align-items: center;
    justify-content: center;
    display: flex;
    position: relative;
}
.cart-item {
    padding: 0;
}
.cart-item::before {
    display: none;
}
.cart-item a {
    width: 25px;
    height: 25px;
    background-image: url(/images/icons/basket.png);
    background-position: left center;
    background-repeat: no-repeat;
    text-decoration: none;
    box-sizing: content-box;
    font-size: 0;
    display: block;
}
.cart-item a.active {
    background-image: url(/images/icons/basket_active.png);
}
.cart-count {
    font-size: 1rem;
    line-height: 1;
    left: 100%;
    bottom: -2px;
    position: absolute;
}
.basket__empty, .basket-is-empty .basket__order-title, .basket-is-empty .basket__order-form {
    display: none;
}
.basket-is-empty .basket__empty {
    display: block;
}
.basket__empty-url--mobile {
    display: none;
}
.basket-item, .basket__empty {
    margin-bottom: 100px;
}
.basket-item__row {
    flex-wrap: wrap;
    display: flex;
}
.basket-item__images {
    width: calc(50% + 30px);
    padding-right: 20px;
    display: flex;
}
.basket-item__params {
    width: calc(50% - 30px);
}
.basket-item__title {
    margin-bottom: 60px;
}
.basket-item__sounds {
    min-width: 275px;
}
.basket-item__sounds-title {
    font-family: 'Montserrat Bold', sans-serif;
    margin-bottom: 30px;
}
.basket-item__images-system {
    margin-left: -80px;
    padding-right: 50px;
    /* transform: translateX(-100px); */
}
.basket-item__sounds-container {
    height: 240px;
    overflow-y: auto;
    padding-right: 20px;
}
.basket-item__sounds-container::-webkit-scrollbar {
    width: 5px;
}
.basket-item__sounds-container::-webkit-scrollbar-track {
    background: #6e7278;
    border: 2px solid transparent;
    background-clip: content-box;
}
.basket-item__sounds-container::-webkit-scrollbar-thumb {
    background: #e30613;
}
.basket-item__sounds-sound {
    text-align: center;
    margin-bottom: 50px;
}
.basket-item__sounds-sound:last-of-type {
    margin-bottom: 0;
}
.basket-item__sounds-sound-image img {
    max-width: 128px;
    margin-left: auto;
    margin-right: auto;
}
.basket-item__sounds-sound-title {
    margin-top: 17px;
}
.basket-item__params-row {
    margin-bottom: 28px;
    justify-content: space-between;
    display: flex;
}
.basket-item__params-name {
    font-family: 'Montserrat Bold', sans-serif;
}
.basket-item__params-name, .basket-item__params-value {
    line-height: 1;
}
.basket-item__params-delivery .basket-item__params-value {
    max-width: 70%;
    text-align: right;
}
.basket-item__params-count .basket-item__params-value {
    align-items: center;
    display: flex;
}
.basket-item__params-count-minus, .basket-item__params-count-plus {
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    border: 1px solid var(--white);
    border-radius: 100%;
    cursor: pointer;
}
.basket-item__params-count input {
    width: 40px;
    background: none;
    border: 0;
    box-shadow: none;
    outline: none;
    text-align: center;
    color: var(--white);
}
.basket__total {
    margin-bottom: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.basket__total-title {
    font-size: 24px;
    font-family: 'Montserrat Bold', sans-serif;
}
.basket__total-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 32px;
    font-family: 'Montserrat Bold', sans-serif;
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 479px) {
    .basket__total-block {
    font-size: 26px;
    }
}
.basket__total-value {
    padding-left: 10px;
    padding-right: 10px;
}
.basket__order-title {
    font-size: 24px;
    margin-bottom: 45px;
}
.basket__order-form-group {
    margin-bottom: 30px;
    align-items: flex-end;
    display: flex;
}
.basket__order-form-group label {
    width: max-content;
    white-space: nowrap;
    font-family: 'Montserrat Mediumr', sans-serif;
    line-height: 1;
    padding-right: 20px;
}
.basket__order-form-group input {
    width: 100%;
    color: #fff;
    background: none;
    outline: none;
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid var(--white)
}
.basket__order-form-group.error input {
    border-bottom-color: var(--main-color);
}
.basket__order-form-textarea {
    margin-top: 85px;
    flex-direction: column;
    align-items: flex-start;
}
.basket__order-form-textarea label {
    margin-bottom: 20px;
}
.basket__order-form-textarea textarea {
    width: 100%;
    color: #fff;
    max-width: 100%;
    background: none;
    border: 1px solid var(--white);
    outline: none;
}
.basket__order-form-agree {
    align-items: center;
    justify-content: flex-start;
}
.basket__order-form-agree input {
    display: none;
}
.basket__order-form-agree label {
    cursor: pointer;
    line-height: 1;
    align-items: center;
    display: flex;
}
.basket__order-form-agree label a {
    color: var(--main-color);
}
.basket__order-form-agree input:checked + span {
    background: var(--main-color);
}
.basket__order-form-agree-checkbox {
    width: 25px;
    height: 25px;
    border: 1px solid var(--white);
    margin-right: 10px;
    display: inline-block;
}
.error .basket__order-form-agree-checkbox {
    border-color: var(--main-color);
}
.basket__order-form-btn {
    padding: 20px 40px;
    border-radius: 30px;
    box-shadow: var(--box-shadow-btn);
    outline: none;
    border: 0;
    background: var(--main-color);
    color: var(--white);
    margin-left: auto;
    margin-right: 0;
    cursor: pointer;
    display: block;
}
.basket__order-form-btn:hover {
    background: var(--black);
}
.basket__order-form-btn:disabled  {
    cursor: default;
    background: var(--black);
}
@media (min-width: 992px) {
    .page-header {
        /*display: none;*/
    }
    .mobile-menu {
        display: none;
    }
    .cart-item a {
        margin: 25px 30px 15px;
    }
    .banner-img__mobile {
        display: none;
    }
    .logo {
        width: 172px;
        padding-bottom: 7px;
    }
    .mobile-menu__btn {
        display: none;
    }
    .item-intro__block-wrap {
        width: 25%;
    }
    .item-intro__text-wrap {
        width: 0;
    }
    .item-intro__block-wrap:hover .item-intro__text-wrap {
        width: 100%;
        visibility: visible;
        opacity: 1;
    }
    .item-intro__block-wrap:hover .item-intro__block {
        width: calc(100% - 30px);
        overflow: auto;
        z-index: 1;
        left: 15px;
        top: 0;
        position: absolute;
        display: flex;
    }
    .item-intro__block-wrap:hover .page-header::after {
        background-color: var(--main-color);
    }
    .basket__order-form-columns {
        height: 250px;
        column-gap: 135px;
        column-count: 2;
        /* margin-right: 80px;  Отступ справа */
    }
    .filter {
        display: none;
    }
    .shop-item__tabs-mobile {
        display: none;
    }
}
@media (min-width: 1200px) {
    .system-page__item-image {
        max-width: 40%;
    }
    .red-line__wrapper {
        align-items: center;
    }
    .red-line__title {
        max-width: 248px;
    }
}
@media (max-width: 1399px) {
    .banner-title {
    font-size: 42px;
    }
    .banner-img__2 {
        top: 100px
    }
    .banner-img__3 {
        max-width: 300px;
    }
    .banner-img__2::after {
        width: 400px;
        height: 300px;
    }
    .red-line::after {
        width: 100%;
    }
    .red-line__title {
        margin-right: 60px;
    }
    .red-line__btn {
        right: 0;
    }
    .red-line__wrapper {
        width: calc(100% - 260px);
    }
}
@media (max-width: 1199px) {
    .red-line__wrapper {
        flex-direction: column;
    }
    .red-line__title {
        border-bottom: 0;
    }
    .logo {
        height: 32px;
    }
    #footer .nav {
        gap: 20px;
    }
}
@media (max-width: 991px) {
    .header {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .menu-is-fixed .header {
        width: 100%;
        background: #050b14;
        padding: 10px 0;
        left: 0;
        top: 0;
        position: fixed;
    }
    .header .nav {
        display: none;
    }
    #footer .nav {
        gap: 10px;
        flex-direction: column;
    }
    #footer .nav li {
        padding-left: 0;
    }
    .cart-item a {
        margin: 15px 40px 15px 35px;
        background-size: 25px;
    }
    .container-nav, .nav-row__wrapper {
        align-items: center;
    }
    .change-language {
        order: 1;
    }
    .cart-mod {
        order: 2;
    }
    .mobile-menu__btn {
        order: 3;
    }
    .banner__wrapper {
        text-align: center;
        padding-bottom: 30px;
    }
    .banner-img__desktop {
        display: none;
    }
    .banner-title {
        padding-top: 0;
        padding-bottom: 50px;
    font-size: 25px;
        text-align: left;
    }
    .banner-img__mobile {
        margin-bottom: 20px;
        width: 100%;
    }
    .banner-img__mobile img {
        margin-left: auto;
        margin-right: auto;
    }
    .banner-btn {
    font-size: .8em;
        background-size: 25px;
        padding-left: 55px;
        left: auto;
        right: 0;
    }
    .red-line {
        padding-top: 16px;
        padding-bottom: 0;
    }
    .red-line__wrapper {
        width: 100%;
    }
    .red-line__title {
    font-size: 18px;
    }
    .red-line__subtitle {
    font-size: 12px;
        margin-bottom: 16px;
    }
    .red-line__btn {
        width: calc(100% + 55px); /* width: calc(100% + 70px); */
        height: 104px;
        margin-left: -35px;
        position: relative;
    }
    .social-icons__fixed {
        right: 0px;
    }
    .social-icons__fixed a {
        width: 40px;
        height: 40px;
    }
    .about-us-page #body-wrapper::before, .about-us-page #body-wrapper::after {
        max-width: 100%;
        left: 0;
        right: auto;
        bottom: 0;
        opacity: .1;
    }
    .about-us-page #body-wrapper::after {
        bottom: 50%;
    }
    .item-intro__block .page-header h2 {
    font-size: 24px;
    }
    .item-intro__row {
        flex-direction: column;
    }
    .item-intro__block-wrap .item-intro__block {
        width: 100%;
        flex-direction: column;
    }
    .item-intro__block-wrap:not(:last-of-type) {
        margin-bottom: 45px;
    }
    .item-intro__image-wrap {
        max-width: 100%;
    }
    .item-intro__image-wrap .item-image {
        height: 265px;
    }
    .item-intro__image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .item-intro__text-wrap {
        height: 0;
        padding: 0 23px;
        bottom: 0;
        position: relative;
    }
    .item-intro__text-wrap:last-of-type {
        margin-bottom: 0;
    }
    .item-intro__block-wrap.is-active .item-intro__text-wrap {
        opacity: 1;
        visibility: visible;
        padding: 40px 23px;
    }
    .item-intro__block-wrap.is-active .page-header::after {
        background-color: var(--main-color);
    }
    .system-page__title-before-menu, .page-submenu__brands {
        display: none;
    }
    .system-page__article-body {
        border-bottom: 0;
    }
    .system-page__fields, .category__fields {
        flex-direction: column;
        align-items: flex-start;
    }
    .category__fields {
        padding-bottom: 50px;
    }
    .system-page__red-btn img, .category__red-btn img,
    .shop-item__description-gallery-btn img, .system-page__description-gallery-btn img, .category__description-gallery-btn img {
        width: 52px;
    }
    .system-page__description-gallery-btn, .category__description-gallery-btn {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .contacts-wrapper {
        flex-direction: column;
    }
    .contacts {
        max-width: 100%;
    }
    .page-submenu__shop, .page-submenu__models {
        display: none;
    }
    .shop-category__desc {
        width: 100%;
    }
    .shop-category__image {
        display: none;
    }
    .shop-item__sounds {
        width: 100%;
        flex-basis: 100%;
        padding: 0 60px 60px;
        margin: 10px 0 0;
        order: 2;
    }
  
  
  
  
  
  
  
@media (max-width: 991px) {
    .shop-item__sounds {
        margin: 60px 0 0;
        }
}
  
    .swiper-horizontal .shop-item__sounds-pagination {
        width: 100%;
        left: 0;
        bottom: 0;
        justify-content: center;
        flex-direction: row;
        position: relative;
    }
    .shop-item__sounds-button-prev, .shop-item__sounds-button-next {
        margin-top: -25px;
    }
    .shop-item__sounds-button-prev {
        left: 30px;
    }
    .shop-item__sounds-button-next {
        right: 30px;
    }
    .shop-item__sounds-title {
        width: 130px;
        margin: 0 10px;
    font-size: 14px;
    }
    .shop-item__sounds-play-btn {
        width: 30px;
        height: 30px;
    }
    .audio-btn:not(.playing) .shop-item__sounds-play-btn::before {
        width: 0px;
        height: 0px;
        border: 15px solid transparent;
        border-left: 15px solid var(--grey-blue);
        left: 10px;
    }
    .shop-item__page-header {
        display: none;
    }
    .playing .shop-item__sounds-play-btn::before, .playing .shop-item__sounds-play-btn::after {
        width: 4px;
        height: 15px;
        margin-top: -8px;
    }
    .playing .shop-item__sounds-play-btn::before {
        left: 9px;
    }
    .playing .shop-item__sounds-play-btn::after {
        left: 17px;
    }
    .shop-item__image-car img {
        max-width: 370px;
        width: 100%;
    }
    .shop-item__images::before {
        display: none;
    }
    .shop-item__images {
        background-size: 90%;
        min-height: 300px;
    }
    .shop-item__readmore-system {
        width: 100%;
        order: 1;
        padding: 0;
        margin-bottom: 20px;
    }
    .shop-item__price {
    font-size: 36px;
        order: 2;
    }
    .shop-item__buy {
        order: 3;
    }
    .shop-item__bg {
        height: 150px;
    }
    .shop-item {
        padding-bottom: 50px;
    }
    .shop-item__tabs-header {
        display: none;
    }
    .shop-item__images, .shop-item__tabs {
        flex-basis: 100%;
    }
    .shop-item__image-car-slider {
        bottom: -20px;
        left: 0px;
    }
    .shop-item__images {
        order: 1;
    }
    .shop-item__tabs {
        order: 3;
    }
    .shop-item__description {
        order: 4;
        padding-left: 15px;
        padding-right: 15px;
    }
    .shop-item__bg .item-image {
        height: 100%;
    }
    .shop-item__bg .item-image img {
        height: 100%;
        object-fit: cover;
        object-position: -50% 50%;
    }
    .shop-item__description-text {
        display: none;
    }
    .show >.shop-item__description-text {
        display: block;
    }
    .basket-item__images, .basket-item__params {
        width: 100%;
    }
    .basket-item__images {
        flex-direction: column;
    }
    .basket-item__images-system {
        margin-left: 0;
    }
    .basket-item__params {
        margin-top: 30px;
    }
    .basket__order-form-group label {
        min-width: 80px;
        white-space: unset;
    }
    .basket__empty-url {
        display: none;
    }
    .basket__empty-url--mobile {
        display: inline;
    }
    .shop-item__tabs-mobile {
        padding-left: 30px;
        padding-right: 30px;
        display: flex;
    }
    .shop-item__description-gallery {
        flex-direction: column;
        align-items: flex-start;
    }
    .shop-item__description-gallery-btn {
        margin-right: 0;
    }
}
@media (max-width: 565px) {
    .shop-item__image-car img {
        max-width: 330px;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .filter__inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .filter__dropdown--brands {
        margin: 0 0 15px;
    }
    .filter__dropdown--models {
        margin: 0;
        width: 100%;
    }
    .filter__selected--text {
        min-width: 165px;
    }
}
@media (max-width: 430px) {
    .cart-item a {
        margin-left: 20px;
        margin-right: 30px;
    }
    .shop-item__buy-btn {
        padding-left: 18px;
        padding-right: 18px;
    }
    .shop-item__buy-btn {
    font-size: 20px;
    }
}

/* Добавил свойство: Высота шрифта цены на мобиле */  
@media (max-width: 479px)  {
    .shop-item__price {
    font-size: 26px;
       /* order: 2; */
    }
    .shop-item__price-prefix {
        padding-right: 3px;
    }
}


/* Раздел "О компании". Кнопки "Назад" и "Далее" _START */
.navigation-block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    width: 350px;
    height: 45px;
    position: absolute;
    top: auto;
    bottom: 25px;
    left: auto;
    right: 0%;  
}

/* Раздел "О компании". Кнопка "Назад" _START */
.back-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  /*width: 200px;
  height: 45px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;  */
}

.back-text {
  font-size: 30px;
      font-family: 'Montserrat Light', sans-serif;

}

.back-img {
  width: 38px;
  height: 25px;
}
/* Раздел "О компании". Кнопка "Назад" _END */

/* Раздел "О компании". Кнопка "Далее" _START */
.next-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-left: 2rem;
 /* width: 200px;
  height: 45px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;*/
  
}
.next-text {
  font-size: 30px;
      font-family: 'Montserrat Light', sans-serif;

}
.next-img {
  width: 38px;
  height: 25px;
}

@media (min-width: 991px) {
  .basket__order-form {
    padding-right: 80px; 
  }
}

/* Селекторы в карточке товара на горизонтальной версии мобилы */
@media (max-width: 991px) {
  .filter__dropdown--brands {
    margin-right: 50px;
  }
  .filter__inner {
    width: 80%;
  }

  /* Новое лого от Жени */
  img.ls-is-cached.lazyloaded {
    max-width: 100%; 
  }
}

.page_polzovatelskoe-soglasenie h2,
.page_user-agreement h2,
.page_rekvizity h2,
.page_business-details h2,
.page_politika-konfidentsialnosti h2,
.page_privacy-policy h2,
.page_aboutus h2,
.page_o-kompanii h2,
.page_system h2,
.page_sistema h2,
.page_oplata-i-vozvrat h2,
.page_oferta h2 {
    color: var(--menu-bg);
    border-bottom: solid 3px var(--main-color);
    padding: 6px 0;
    margin: 40px 0 20px;
    display: inline-block;
}
.page_system h2 a,
.page_sistema h2 a {
    text-decoration:none;
}
.page_aboutus .section,
.page_o-kompanii .section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 30px 0;
}
.page_aboutus .section h2,
.page_o-kompanii .section h2 {
    margin: 0px 0 20px;
}
.page_aboutus .section img,
.page_o-kompanii .section img {
    margin: 0 20px 20px;
    width: 300px;
    height: auto;
}
.page_aboutus .section div,
.page_o-kompanii .section div {
    width: calc(100% - 370px);
}
@media (min-width: 800px) {
    .page_aboutus .section_1 div,
    .page_aboutus .section_3 div,
    .page_o-kompanii .section_1 div,
    .page_o-kompanii .section_3 div {
        order: 2;
    }
    .page_aboutus .section_1 img,
    .page_aboutus .section_3 img,
    .page_o-kompanii .section_1 img,
    .page_o-kompanii .section_3 img {
        order: 1;
    }
}
@media (max-width: 800px) {
    .page_aboutus .section img,
    .page_o-kompanii .section img {
        margin: 0 20px;
        max-width: 100%;
        width: auto;
    }
    .page_aboutus .section div,
    .page_o-kompanii .section div {
        width: 100%;
    }
}

.page_gde-kupit .page-header {
    display: none;
}

@media (min-width: 800px) {
    .copyright {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 800px) {
    .copyright > * {
        margin-bottom: 20px;
    }
}

.page_shop .page-submenu__shop {
    display: block;
}

.page_ #main,
.page_ru #main {
    display: none;
}

.b24-widget-button-position-bottom-right {
    bottom: 200px !important;
    right: 20px !important;
}

#blog-relations ul,
.list-table {
    display:grid;
    grid-template-columns:32.3fr 32.3fr 32.3fr;
    grid-column-gap:1.3%;
}
.list-pagination {
    margin: 30px auto;
    text-align: center;
}
.list-pagination ul {
    margin: 0;
    padding: 0;
}
.list-pagination ul li {
    margin: 5px;
    padding: 3px 13px;
    display: inline-block;
    text-align: center;
    background: rgba(220,220,220,.4);
    list-style-type: none;
    font-size: 20px;
    font-weight: bold;
}
.list-pagination ul li a {
    text-decoration: none;
}
.list-pagination ul li:hover {
    background: rgba(220,220,220,.7);
}
.list-pagination ul li:before {
    content: '';
    background: none;
}
.list-pagination ul li.active {
    background: var(--white);
    color: var(--black);
}
.list-pagination ul li.active a {
    color: var(--black);
}
#blog-relations ul li:before {
    background: none;
}
#blog-relations ul li,
.list-item {
    padding: 20px;
    background: rgba(140,140,140,.3);
    margin-bottom: 30px;
}
#blog-relations ul li {
    display: none;
}
#blog-relations ul li.link {
    display: block;
}
#blog-relations ul li a,
.list-item a {
    text-decoration: none;
}
#blog-relations ul li .mod-articles-category-title ,
.list-item h3 {
    min-height: 80px;
    margin: 15px 0;
    font-size: 19px;
    font-family: 'Montserrat Bold', sans-serif;
}
#blog-relations ul li p,
.list-item p {
    min-height: 100px;
    margin: 15px 0;
}
#blog-relations ul li img,
.list-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0 0 15px;
}
@media screen and (max-width: 1250px){
    #blog-relations ul,
    .list-table {
        display:grid;
        grid-template-columns:49fr 49fr;
        gap:1fr;
    }
}
@media screen and (max-width: 650px){
    #blog-relations ul,
    .list-table {
        display: block;
    }
    #blog-relations ul li .mod-articles-category-title ,
    .list-item h3 {
        min-height: auto;
    }
    #blog-relations ul li p,
    .list-item p {
        display: none;
    }
}

#blog-relations {
    margin: 100px 0 0 0;
}
#blog-relations h2 {
    margin: 20px 0;
}

@media screen and (min-width: 650px){
    .article-page figure {
        float: right;
        max-width: 50%;
        margin: 0 0 15px 15px;
    }
}

.button,
.shop-category__desc .callback-btn,
.com-content-article__body .callback-btn {
    text-decoration: none;
    font-size: 19px;
    font-family: 'Montserrat Bold', sans-serif;
    line-height: 1;
    text-decoration: none;
    background: var(--main-color);
    box-shadow: var(--box-shadow-btn);
    color: #fff;
    padding: 9px 35px;
    border-radius: 30px;
    border: solid 1px var(--main-color);
    display: inline-block;
    cursor: pointer;
}
.button-tr {
    background: #333;
}
.shop-category__desc .callback-btn:hover,
.com-content-article__body .callback-btn:hover {
    background: #fff;
    color: #000;
}

.swiper-horizontal {
    height: 100%;
}

#cookie-notice {
	padding: 15px 30px;
	width: 100%;
	position: fixed;
	bottom: 0;
	z-index: 500;
	background: #000;
	color: #fff;
	max-width: inherit;
	display: none;
}
#cookie-notice.displayed {
	display: block;
}
#cookie-notice .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
#cookie-notice a {
	text-decoration: underline;
	color: #ccc;
}
#cookie-notice div.text {
	width: 70%;
}
#cookie-notice div.buttons {
	width: 30%;
}
#cookie-notice .button {
	display: inline-block;
	margin: 0 0 0 20px;
}
@media screen and (max-width: 950px){
	#cookie-notice {
		padding: 20px 30px;
	}
	#cookie-notice div.text,
	#cookie-notice div.buttons {
		width: 100%;
	}
	#cookie-notice .button {
		margin: 15px 0 0 0;
		width: auto;
	}
}