:root {
    --ON_toggle: initial;
    --OFF_toggle:
}

.theme-default,
.theme-light,
body:is(.theme-default, .theme-light) .theme-root {
    --light: var(--ON_toggle);
    --dark: var(--OFF_toggle)
}

.theme-dark,
body.theme-dark .theme-root {
    --light: var(--OFF_toggle);
    --dark: var(--ON_toggle)
}

@media (prefers-color-scheme: dark) {

    .theme-default,
    body.theme-default .theme-root {
        --light: var(--OFF_toggle);
        --dark: var(--ON_toggle)
    }
}

html,
body {
    font-family: var(--main-font-family), Arial, sans-serif;
    font-size: 16px;
    line-height: calc(1em + 8px);
    background-color: var(--page-background-color);
}

body {
    --primary-color: var(--light, #AB1E48) var(--dark, #fff);
    --secondary-color: var(--light, #1D1D1D) var(--dark, #fff);

    --default-text-color: var(--light, #1D1D1D) var(--dark, #fff);
    --default-text-color-reverse: var(--light, #fff) var(--dark, #1D1D1D);

    --page-background-color: var(--light, #E3E3E3) var(--dark, #1D1D1D);
    --block-backgorund-color: var(--light, #FFFFFF) var(--dark, #E3E3E3);

    --btn-border-radius: 100px;

    --title-font-family: "Manrope", sans-serif;
    --main-font-family: "Inter", sans-serif;

    --hr-color: #DDDDDD;
}

:root {
    --text-base-size: 1rem;
    --text-scale-ratio: 1.2;
    --text-xs: calc((var(--text-base-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md: calc(var(--text-sm) * var(--text-scale-ratio));
    --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-xxxxxl: calc(var(--text-xxxxl) * var(--text-scale-ratio));
    --text-xxxxxxl: calc(var(--text-xxxxxl) * var(--text-scale-ratio));
    --text-xxxxxxxl: calc(var(--text-xxxxxxl) * var(--text-scale-ratio));
}

@media (width <=1200px) {
    :root {
        --text-base-size: .9rem;
    }
}

button,
input,
textarea {
  font-family: Inter;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0);
  border: none;
  outline: none;
  font-family: var(--main-font-family);
}

button {
    border: none;
    outline: none;
}

body.no-overflow {
    overflow-y: hidden;
}

body main {
    flex:1 0 auto;
    ms-flex:1 0 auto;
    webkit-box-flex:1;
    webkit-flex:1 0 auto;
    margin: 3rem 0 4rem;
}

.theme-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
}

.theme-wrapper:not(.is-fluid) {
    margin: 0 auto;
}

@media only screen and (min-width: 320px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 568px;
    }
}

@media only screen and (min-width: 900px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 852px;
    }
}

@media only screen and (min-width: 1100px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1036px;
    }
}

@media only screen and (min-width: 1400px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1320px;
    }
}

@media only screen and (min-width: 1800px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1400px;
    }
}

.icon {
    display: flex;
}

.icon .svg {
    display: flex;
    align-items: center;
}

.header {
    position: relative;
    background-color: var(--block-backgorund-color);
    z-index: 10;
    font-size: 1rem;
}

.header .header_wrapper {
    display: flex;
    gap: 5rem;
}

@media (width <=1400px) {
    .header .header_wrapper {
        gap: 2rem;
    }
}

@media (width <=1100px) {
    .header .header_wrapper {
        gap: 1rem;
    }
}

.header .header-logo-block {
    max-width: 180px;
    display: flex;
    place-items: center
}

.header .header-content {
    width: 100%;
}

.header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--hr-color);
    padding: .8rem 0;
}

.header .header-top .socials-block {
    display: flex;
    gap: 2.5rem;
}

@media (width <=1200px) {
    .header .header-top .socials-block {
        gap: 1rem;
    }
}

.header .header-main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.header .personal-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.header .personal-profile .btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background-color: #F2F1F1;
    transition: background .3s ease;
}

.header .personal-profile .btn .svg {
    fill: var(--primary-color);
    stroke: var(--primary-color)
}

.header .personal-profile .btn:hover {
    background-color: var(--primary-color);
}

.header .personal-profile .btn:hover .svg {
    fill: white;
    stroke: white;
}

.header.header-v1 {}

@media (min-width: 1001px) {
    .header.header-v1 .personal-block .personal-phone {
        display: none;
    }

    .header.header-v1 .personal-block .personal-burger-menu {
        display: none;
    }
}

@media (max-width: 1000px) {
    .header.header-v1 {
        padding: .8rem 0;
    }

    .header.header-v1 .menu-block {
        display: none;
    }

    .header.header-v1 .header-top {
        display: none;
    }

    .header.header-v1 .personal-block {
        flex-direction: row-reverse;
        gap: .6rem;
    }

    .header.header-v1 .header-content {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    .header.header-v1 .personal-block .personal-search {
        display: none;
    }

    .header.header-v1 .personal-block .personal-basket {
        display: none;
    }

    .header.header-v1 .personal-block .personal-profile {
        display: none;
    }
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

.social .social__value {
    display: flex;
}

.social .social__value .seporator {
    margin: 0 .2rem;
}

.social .social__title {
    font-size: var(--text-md);
}

@media (width <=1200px) {
    .social .social__title {
        display: none;
    }
}

.social .social__value a {
    font-size: var(--text-md);
    color: var(--default-text-color);
    transition: color .3s ease;
    font-weight: 500;
}

.social .social__value a:hover {
    color: var(--primary-color)
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    transition: all 0.5s ease;
    z-index: 100;
}

.mobile-menu .theme-wrapper {
    height: 100%;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu .mobile-menu_row {
    margin-bottom: 2rem;
}

.mobile-menu .mobile-menu_row .mobile-menu_left,
.mobile-menu .mobile-menu_row .mobile-menu_right {
    width: 50%;
}

@media (width <=320px) {

    .mobile-menu .mobile-menu_row .mobile-menu_left,
    .mobile-menu .mobile-menu_row .mobile-menu_right {
        width: 100%;
    }
}

@media (width <=320px) {
    .mobile-menu .mobile-menu_row {
        flex-direction: column;
    }
}

.mobile-menu .mobile-menu_right .btn,
.mobile-menu .mobile-menu_left .btn {
    max-width: 100%;
    width: 100%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.mobile-menu .mobile-menu_right .actions,
.mobile-menu .mobile-menu_left .actions {
    margin-right: -1rem;
}

.mobile-menu .mobile-menu_wrapper {
    position: relative;
    padding: 1rem 0 0;
    height: 100vh;
    width: 90%;
    background: white;
    margin-left: auto;
    z-index: 120;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu .mobile-menu_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;

    background-color: #000000a8;
}

.mobile-menu.show .mobile-menu_background {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .mobile-menu_header {}

.mobile-menu .mobile-menu_header .theme-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.mobile-menu .mobile-menu_header .site-logo img {
    height: 70px;
}

.mobile-menu .mobile-menu_content {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 6rem;
    overflow: auto;
    flex: 1;
}

@media (width <=1000px) {
    .mobile-menu .mobile-menu_content .theme-wrapper {
        padding: 0;
    }
}

.mobile-menu .mobile-menu_content::-webkit-scrollbar {
    width: 5px;
    background-color: var(--scroll-backgroud-color);
}

.mobile-menu .mobile-menu_content::-webkit-scrollbar-thumb {
    background-color: var(--scroll-color);
    border-radius: var(--border-radius);
}

.mobile-menu .mobile-menu_content .theme-wrapper {
    height: -moz-fit-content;
    height: fit-content;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu {
    text-align: justify;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu .btn-text {
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu .icon-arrow svg {
    transition: all 0.3s ease;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu.menu-open {
    background-color: var(--primary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu.menu-open .icon-arrow svg {
    transform: rotate(180deg) translateY(0);
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list {
    flex-direction: column;
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list .menu-item__link {
    text-align: left;
    font-size: var(--text-xxl);
    padding: 0;
    margin: 0;
    margin-bottom: 1.3rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list .menu-item:last-child .menu-item__link {
    margin-bottom: 0;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts {
    margin-top: 0.6rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .phone {
    font-size: var(--text-base-size);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .phone.phone--big {
    font-size: var(--text-xxxl);
    font-weight: 700;
    letter-spacing: -0.48px;
    margin: 0;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color {
    border-bottom-color: var(--primary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color:hover,
.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color:focus,
.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color.focus {
    border-bottom-color: var(--secondary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_email {
    margin-top: 0.6rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_address {
    font-size: var(--text-md);
    line-height: 150%;
    font-family: var(--main-font-family);
}

.mobile-menu .mobile-menu_content .mobile-menu_socials {
    margin-top: 2rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social {
    margin-right: 1.5rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg {
    fill: var(--text-footer-color);
    opacity: 0.7;
    stroke: none;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg svg {
    width: 2rem;
    height: 2rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg:hover,
.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg:focus,
.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg .focus {
    opacity: 1;
    fill: var(--primary-color);
    stroke: none;
}

@media (width >=900px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-menu .mobile-menu_footer {
    background-color: #E3E3E3;
    padding-bottom: 1rem;
    flex: 0;
}

.mobile-menu .mobile-menu_footer .mobile-menu_footer_wrapper {
    padding-top: 2rem;
}

.mobile-menu .mobile-menu_footer .mobile-menu_phone {
    font-size: var(--text-xxl);
    padding-bottom: 1rem;
}

.mobile-menu .mobile-menu_footer .mobile-menu_email {
    font-size: var(--text-xxl);
    padding-bottom: 1rem;
}

.mobile-menu .mobile-menu_footer .mobile-menu_whatsapp {
    font-size: var(--text-xl);
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.mobile-menu .mobile-menu_footer .mobile-menu_whatsapp .whatsapp-person-text a {
    color: var(--default-text-color);
}

.mobile-menu .mobile-menu_footer .mobile-menu_callback {
    margin-top: 2rem;
    font-size: var(--text-xxl);
}


.footer {
    --text-footer-color: white;
    padding-top: 3rem;
}

.footer.footer-v1 {
    background-color: #0E0E0E;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(../img/svg/footer.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (width <=600px) {
    .footer.footer-v1 {
        padding-top: 0;
    }
}

.footer.footer-v1 * {
    color: var(--text-footer-color);
    letter-spacing: 1;
}

.footer.footer-v1 *.primary-color,
.footer.footer-v1 *:focus,
.footer.footer-v1 *.focus {
    color: var(--primary-color);
}

.footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link {
    display: flex;
    align-items: flex-end;
    height: calc(100% - 52px);
    opacity: .5;
    transition: opacity .3s ease;
}

@media (width <=900px) {
    .footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: fit-content;
    }
}

.footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link:hover {
    opacity: 1;
}

.footer.footer-v1 .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.footer.footer-v1 .footer-top .logo {
    max-width: 140px;
    margin: 0 auto;
}

.footer.footer-v1 .footer-content {
    padding-top: 2rem;
    padding-bottom: 4rem;
    position: relative;
}

@media (width <=1100px) {
    .footer.footer-v1 .footer-content {
        padding-bottom: 6rem;
    }
}

@media (width <=600px) {
    .footer.footer-v1 .footer-content {
        padding-bottom: 3rem;
    }
}


@media (width <=900px) {
    .footer.footer-v1 .footer_col:first-child .socials {
        display: none;
    }
}

.footer.footer-v1 .footer-other {
    padding: 1rem 0;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other {
        padding-top: 3rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper sub {
    opacity: 0.6;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper sub {
        margin-bottom: .4rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper .btn.btn-partner-link {
    opacity: 0.4;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper .btn {
        font-size: var(--text-sm);
    }
}

@media (width <=320px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer .footer_col-title {
    color: #FFF;
    font-size: var(--text-md);
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 1rem;
}

.footer .footer_col-title a {
    color: inherit;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer .footer_col-title a:hover {
    color: var(--primary-color);
    opacity: 1;
}

@media (width <=600px) {
    .footer .footer_col-title {
        display: none;
    }
}

.footer .footer_col-menu .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer_col-menu .footer-menu li {
    margin-bottom: 0.6rem;
}

.footer .footer_col-menu .footer-menu li:last-child {
    margin-bottom: 0;
}

.footer .footer_col-menu .footer-menu li .link {
    color: inherit;
    transition: color 0.3s ease;
    font-size: var(--text-sm);
    margin-bottom: 0.8rem;
}

.footer .footer_col-menu .footer-menu li .link.selected {
    color: var(--primary-color);
}

.footer .footer_col-menu .footer-menu li .link:hover {
    color: var(--primary-color);
}

@media (width <=600px) {
    .footer .footer_col-menu .footer-menu li {
        margin-bottom: 0.8rem;
    }
}

.footer .email {
    font-size: var(--text-sm);
    font-weight: 200;
    padding: 0.4rem 0;
    font-family: var(--main-font-family);
}

.footer .email.email--white a {
    color: white;
}

.footer .email.email--white a:hover {
    color: var(--primary-color);
}

@media (width <=900px) {
    .footer .email {
        font-size: var(--text-xl);
    }
}

.footer .phone {
    font-size: var(--text-sm);
    padding: 0.4rem 0;
    font-family: var(--main-font-family);
}

.footer .phone.phone--big {
    font-size: var(--text-xxl);
}

@media (width <=900px) {
    .footer .phone.phone--big {
        font-size: var(--text-xxxl);
    }
}

.footer .phone .btn {
    font-size: inherit;
    font-weight: 300;
}

@media (width <=900px) {
    .footer .phone {
        font-size: var(--text-md);
    }
}

.footer .footer-content_wrapper {
    display: grid;
    grid-template-columns: 150px 20% 20% calc(50% - 150px - 1rem);
    justify-content: space-between;
    gap: 4rem;
}

@media (width <=1400px) {
    .footer .footer-content_wrapper {
        gap: 2rem;
    }
}

@media (width <=1100px) {
    .footer .footer-content_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width <=900px) {
    .footer .footer-content_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer .footer_col.footer_col--logo {
        grid-column-start: 1;
        grid-column-end: 3;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer .footer_col.footer_col-full {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media (width <=600px) {
    .footer .footer-content_wrapper {
        gap: 1.3rem;
    }
}

.footer .address {
    font-size: var(--text-sm);
    white-space: nowrap;
    padding: 0.4rem 0;
    font-weight: 300;
}

.footer .address span {
    font-family: var(--title-font-family);
}

@media (width <=900px) {
    .footer .address {
        font-size: var(--text-md);
        margin-bottom: 0;
        margin-top: 0;
    }
}

.footer .time-work {
    font-size: var(--text-sm);
    padding: 0.4rem 0;
}

.footer .slogan {
    color: white;
    opacity: 0.4;
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-right: 5rem;
}

@media (width <=900px) {
    .footer .slogan {
        font-size: var(--text-md);
        opacity: 1;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer .socials .socials-title {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin: 2rem 0 0.6rem;
}

@media (width <=320px) {
    .footer .socials .socials-title {
        font-size: var(--text-md);
    }
}

.footer .socials .btn.btn--link {
    margin-right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 5px;
    padding: 2px 4px;
}

@media (width <=600px) {
    .footer .socials .btn.btn--link.vk-link {
        line-height: 24px;
    }

    .footer .socials .btn.btn--link.tg-link {
        line-height: 22px;
    }

    .footer .socials .btn.btn--link.tg-link .svg {
        transform: translateX(-2px);
    }

    .footer .socials .btn.btn--link.dzen-link {
        line-height: 22px;
    }

    .footer .socials .btn.btn--link.dzen-link .svg {
        transform: translateX(1px);
    }
}

.footer .socials .btn.btn--link .svg {
    fill: white;
    opacity: 0.7;
    stroke: none;
    transition: all 0.3s ease;
}

.footer .footer_col.footer_col-full .footer-menu-children {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.footer .socials .btn.btn--link .svg svg {
    width: 1rem;
    height: 1rem;
}

.footer .socials .btn.btn--link .svg:hover,
.footer .socials .btn.btn--link .svg:focus,
.footer .socials .btn.btn--link .svg .focus {
    opacity: 1;
    fill: var(--primary-color);
    stroke: none;
}

@media (width <=600px) {
    .footer .socials .btn.btn--link:last-child {
        margin-right: 0;
    }
}

@media (width <=600px) {
    .footer .socials .btn.btn--link {
        margin-right: 2px;
    }
}

@media (width <=900px) {
    .footer .socials {
        text-align: center;
        margin-bottom: 3rem;
    }
}

.footer #btn-to-top-wrap {
    bottom: 10px;
    display: block;
    position: absolute;
    right: 50%;
    top: 15px;
    transform: translate(-50%, -50%);
    z-index: 3;
    height: fit-content;
}

@media (width <=600px) {
    .footer #btn-to-top-wrap {
        display: block !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
    }
}

.footer #btn-to-top-wrap #btn-to-top {
    height: 30px;
    width: 30px;
    opacity: 1;
    text-align: center;
    text-decoration: none;
    transition: opacity .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer #btn-to-top-wrap #btn-to-top .svg {
    display: flex;
}

.footer .btn--privacy {
    text-decoration: underline;
    opacity: .6;
    transition: opacity .3s ease
}

.footer .btn--privacy:hover {
    opacity: 1
}

.header-fixed {
    position: relative;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
    z-index: 3;
}

.header-fixed.show {
    position: fixed;
    top: 0;
}

.header-fixed.header-fixed-v1 .header-main {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8039215686);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.header-fixed.header-fixed-v1 .header-main .theme-wrapper {
    height: 100%;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main .theme-wrapper {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

.header-fixed.header-fixed-v1 .header-main .site-logo img {
    max-height: 50px;
}

.header-fixed.header-fixed-v1 .header-main_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main_inner {
        display: grid;
        grid-template-columns: auto 1fr 1fr;
        gap: 1.2rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item {
    position: relative;
    padding: 0 1rem;
    flex-shrink: 0;
}

.header-fixed.header-fixed-v1 .header-main__item.site-menu {
    flex: 1;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.site-menu {
        display: none;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .phone.phone--big .btn {
    font-size: var(--text-lg);
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .email {
    text-align: center;
    margin-top: 0.4rem;
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .email .btn {
    font-size: var(--text-sm);
}

@media (width <=1100px) {
    .header-fixed.header-fixed-v1 .header-main__item.contacts {
        display: none;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.logo {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        padding-right: 1rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item .menu-list {
    max-width: 100vw;
}

@media (width <=) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: 80vw;
    }
}

@media (width <=1800px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 800px);
    }
}

@media (width <=1400px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 700px);
    }
}

@media (width <=1100px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 600px);
    }
}

.header-fixed.header-fixed-v1 .header-main__item.catalog-action {
    display: none;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.catalog-action {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.catalog-form-search {
    flex: 1;
    padding-left: 0;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.catalog-form-search {
        order: 2;
        margin-top: 1rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.personal-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 50px;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .btn-mobile-menu {
        width: 50%;
    }
}

@media (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .btn-mobile-menu {
        width: 100%;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.personal-links .personal-links-container {
    display: flex;
    gap: 0.6rem;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .personal-links-container {
        width: 50%;
        text-align: end;
        justify-content: flex-end;
    }
}

@media (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links {
        max-height: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.actions .btn {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        font-size: 0.7rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.actions {
        margin: 0 -1rem 0 0;
    }
}

.header-fixed.header-fixed-v1 .header-main__item:first-child {
    padding-left: 0;
}

.header-fixed.header-fixed-v1 .header-main__item:last-child {
    padding-right: 0;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item {
        padding: 0;
        flex-shrink: initial;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        position: relative;
        padding: 0 1rem;
        flex-shrink: 0;
    }

    .header-fixed.header-fixed-v1 .header-main.site-menu {
        flex: 1;
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .phone.phone--big .btn {
        font-size: var(--text-lg);
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .email {
        text-align: center;
        margin-top: 0.4rem;
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .email .btn {
        font-size: var(--text-sm);
    }

    .header-fixed.header-fixed-v1 .header-main .menu-list {
        max-width: calc(100vw - 600px);
    }

    .header-fixed.header-fixed-v1 .header-main.catalog-action {
        display: none;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-action {
        display: block;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-form-search {
        flex: 1;
        padding-left: 0;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-form-search {
        order: 2;
        margin-top: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-height: 50px;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .btn-mobile-menu {
        width: 50%;
    }
}

@media (width <=900px) and (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .btn-mobile-menu {
        width: 100%;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .personal-links-container {
        display: flex;
        gap: 0.6rem;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .personal-links-container {
        width: 50%;
        text-align: end;
        justify-content: flex-end;
    }
}

@media (width <=900px) and (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links {
        max-height: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main:first-child {
        padding-left: 0;
    }

    .header-fixed.header-fixed-v1 .header-main:last-child {
        padding-right: 0;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        width: 100%;
    }
}

.header-fixed.header-fixed-v1 .header-submenu {
    display: block;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-submenu {
        display: none;
    }
}

.header-fixed.header-fixed-v1 .btn-mobile-menu {
    display: none;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .btn-mobile-menu {
        display: block;
    }
}

.breadcrumb_wrapper {
    margin-bottom: 4.5rem;
}

@media (width <= 768px) {
    .breadcrumb_wrapper {
        margin-bottom: 2rem;
    }
}

@media (width <= 420px) {
    .breadcrumb_wrapper {
        margin-bottom: 1.5rem;
    }
}

@media (width <= 768px) {
    .breadcrumb_wrapper .breadcrumbs {
        font-size: initial;
    }
}

.section.section--page-header.no-title .breadcrumb_wrapper {
    margin-bottom: 0;
}

.breadcrumb_wrapper .breadcrumbs li {
    font-size: var(--text-md);
}

.breadcrumb_wrapper .breadcrumbs li a {
    font-size: initial;
}

@media (width <= 768px) {
    .breadcrumb_wrapper .breadcrumbs li {
        font-size: var(--text-lg);
    }
}

.pricetable .first {
    background: #AB1542;
    color:white;
    min-height: 57px;
}

.section.section--page-header {
    padding-top: 0;
    padding-bottom: 0;
}

/* CATALOG */

.catalog-wrapper {
    display: flex;
    gap: 30px; /* отступ между колонками */
}

.catalog-aside {
    width: 20%;
    flex-shrink: 0;
}

.catalog-content {
    width: 80%;
}

/* Адаптив для мобильных */
@media (max-width: 991px) {
    .catalog-wrapper {
        flex-direction: column;
    }
    
    .catalog-aside,
    .catalog-content {
        width: 100%;
    }
}

.content-container .filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-container .filter .layout-switcher .__name {
    display: none;
}

.catalog-content .filter .sorting {
    display: flex;
    align-items: center;
}

.catalog-content .filter .sorting .__name {
    font-weight: 400;
}

.catalog-content .filter .sorting .fs-dropdown.fs-custom .fs-dropdown-selected {
    min-height: auto;
    padding-top: 0;
    color: #1D1D1D;
    font-weight: 600;
    padding-bottom: 0;
    font-family: var(--main-font-family);
    font-size: var(--text-sm);
}

.catalog-content .filter .layout-switcher .switcher__item {
    font-size: var(--text-xxxl);
    color: black;
}
/* Планшеты */
@media (max-width: 1024px) {
    .content-container .filter {
        gap: 15px;
    }
    
    .catalog-content .filter .sorting {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom {
        min-width: 160px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .content-container .filter {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
    
    .catalog-content .filter .sorting {
        width: 100%;
        justify-content: space-between;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom {
        flex-grow: 1;
        margin-left: 10px;
    }
    
    .catalog-content .filter .layout-switcher {
        width: 100%;
        display: flex;
        gap: 0;
        margin: 0 -.5rem;
    }
    
    .catalog-content .filter .layout-switcher .switcher__item {
        font-size: var(--text-xxxxl);
        line-height: 1;
    }
}

/* Маленькие мобильные устройства */
@media (max-width: 480px) {
    .catalog-content .filter .sorting .__name {
        font-size: 14px;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom .fs-dropdown-selected {
        font-size: 14px;
    }
    
    .catalog-content .filter .layout-switcher .switcher__item {
        font-size: var(--text-xxxxl);
    }
}

/* FORM */

.modal {
    display: none;
}

.form-popup {
    padding: 0;
    border-radius: 20px;
    max-width: 570px;
}
.form-popup .fancybox-close-small::after {
    color: white;
}
.form-popup .form-s.form-s--inline {
    padding: 30px;
}
.form-s.form-s--inline {
    background: linear-gradient(180deg, #AB1542 0%, #9B133B 100%);
    color: white;
    margin-bottom: 0;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 19px;
}

.form-s.form-s--inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../img/svg/form-bg.svg') center no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.form-s .form__description {
    display: none;
}

.form-s .form__success-text {
    color: green;
    background: white;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.form-s .form__errors {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    background-color: white;
    border-radius: 20px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.form-s .form__errors .error.error--text {
    font-size: var(--text-sm);
    color: #ff4d4f;
    line-height: 100%;
}

.form-s .form-wrapper {
    z-index: 1;
    position: relative;
}

.form-s .form-header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-s .form__title {
    font-size: var(--text-xxxxl);
    font-family: var(--title-font-family);
    margin-bottom: 2rem;
    line-height: 100%;
}

.form-s .form-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-s .form-content .form-field {
    position: relative;
}

.form-s .form-content .form-field.form-field--input input,
.form-s .form-content .form-field.form-field--textarea textarea {
    width: 100%;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 20px;
    padding: .6rem 1.2rem;
}

.form-s .form-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-s .form-footer .topmost {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.form-s .form-footer .topmost .btn {
    margin-top: 0;
    padding-left: 3rem;
    padding-right: 3rem;
}

.form-s .form-footer .license {
    position: relative;
}


.form-s .form-footer .license .license-checkbox {
    position: relative;
}

.form-s .form-footer .license  input {
    position: absolute;
    height: 1px;
    width: 1px;
}

.form-s .form-footer .license .license-checkbox::after {
    content: '';

    position: absolute;
    top: 2px;
    left: 0;

    height: 18px;
    width: 18px;

    border-radius: 100%;
    background-color: transparent;
    border: 2px solid white;
}

.form-s .form-footer .license .license-checkbox::before {
    content: '';

    opacity: 0;

    position: absolute;
    top: 6px;
    left: 4px;

    height: 10px;
    width: 10px;

    border-radius: 100%;
    background-color: white;

    transition: opacity .3s ease;
}

.form-s .form-footer .license .license-checkbox:hover::before {
    opacity: .8;
}

.form-s .form-footer .license input:checked + .license-checkbox::before {
    opacity: 1;
}

.form-s .form-footer .license input:checked + .license-checkbox:hover::before {
    opacity: .4;
}

.form-s .form-footer .license .license-checkbox {
    font-size: var(--text-md);
    font-weight: 400;
    font-family: var(--main-font-family);
    padding-left: 2rem;
}

.form-s .form-footer .license .license-checkbox a {
    color: white;
    text-decoration: underline;
    transition: color .3s ease;
}

.form-s .form-footer .license .license-checkbox a:hover {
    color: var(--secondary-color);
}

/* PERSONAL PAGE */

:root {
    --ON_toggle: initial;
    --OFF_toggle:
}

.theme-default,
.theme-light,
body:is(.theme-default, .theme-light) .theme-root {
    --light: var(--ON_toggle);
    --dark: var(--OFF_toggle)
}

.theme-dark,
body.theme-dark .theme-root {
    --light: var(--OFF_toggle);
    --dark: var(--ON_toggle)
}

@media (prefers-color-scheme: dark) {

    .theme-default,
    body.theme-default .theme-root {
        --light: var(--OFF_toggle);
        --dark: var(--ON_toggle)
    }
}

html,
body {
    font-family: var(--main-font-family), Arial, sans-serif;
    font-size: 16px;
    line-height: calc(1em + 8px);
    background-color: var(--page-background-color);
}

body {
    --primary-color: var(--light, #AB1E48) var(--dark, #fff);
    --secondary-color: var(--light, #1D1D1D) var(--dark, #fff);

    --default-text-color: var(--light, #1D1D1D) var(--dark, #fff);
    --default-text-color-reverse: var(--light, #fff) var(--dark, #1D1D1D);

    --page-background-color: var(--light, #E3E3E3) var(--dark, #1D1D1D);
    --block-backgorund-color: var(--light, #FFFFFF) var(--dark, #E3E3E3);

    --btn-border-radius: 100px;

    --title-font-family: "Manrope", sans-serif;
    --main-font-family: "Inter", sans-serif;

    --hr-color: #DDDDDD;
}

:root {
    --text-base-size: 1rem;
    --text-scale-ratio: 1.2;
    --text-xs: calc((var(--text-base-size) / var(--text-scale-ratio)) / var(--text-scale-ratio));
    --text-sm: calc(var(--text-xs) * var(--text-scale-ratio));
    --text-md: calc(var(--text-sm) * var(--text-scale-ratio));
    --text-lg: calc(var(--text-md) * var(--text-scale-ratio));
    --text-xl: calc(var(--text-lg) * var(--text-scale-ratio));
    --text-xxl: calc(var(--text-xl) * var(--text-scale-ratio));
    --text-xxxl: calc(var(--text-xxl) * var(--text-scale-ratio));
    --text-xxxxl: calc(var(--text-xxxl) * var(--text-scale-ratio));
    --text-xxxxxl: calc(var(--text-xxxxl) * var(--text-scale-ratio));
    --text-xxxxxxl: calc(var(--text-xxxxxl) * var(--text-scale-ratio));
    --text-xxxxxxxl: calc(var(--text-xxxxxxl) * var(--text-scale-ratio));
}

@media (width <=1200px) {
    :root {
        --text-base-size: .9rem;
    }
}

button,
input,
textarea {
  font-family: Inter;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0);
  border: none;
  outline: none;
  font-family: var(--main-font-family);
}

button {
    border: none;
    outline: none;
}

body.no-overflow {
    overflow-y: hidden;
}

body main {
    flex:1 0 auto;
    ms-flex:1 0 auto;
    webkit-box-flex:1;
    webkit-flex:1 0 auto;
    margin: 3rem 0 4rem;
}

.theme-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
}

.theme-wrapper:not(.is-fluid) {
    margin: 0 auto;
}

@media only screen and (min-width: 320px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
    }
}

@media only screen and (min-width: 600px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 568px;
    }
}

@media only screen and (min-width: 900px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 852px;
    }
}

@media only screen and (min-width: 1100px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1036px;
    }
}

@media only screen and (min-width: 1400px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1320px;
    }
}

@media only screen and (min-width: 1800px) {
    .theme-wrapper:not(.is-fluid) {
        width: 100%;
        max-width: 1400px;
    }
}

.icon {
    display: flex;
}

.icon .svg {
    display: flex;
    align-items: center;
}

.header {
    position: relative;
    background-color: var(--block-backgorund-color);
    z-index: 10;
    font-size: 1rem;
}

.header .header_wrapper {
    display: flex;
    gap: 5rem;
}

@media (width <=1400px) {
    .header .header_wrapper {
        gap: 2rem;
    }
}

@media (width <=1100px) {
    .header .header_wrapper {
        gap: 1rem;
    }
}

.header .header-logo-block {
    max-width: 180px;
    display: flex;
    place-items: center
}

.header .header-content {
    width: 100%;
}

.header .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--hr-color);
    padding: .8rem 0;
}

.header .header-top .socials-block {
    display: flex;
    gap: 2.5rem;
}

@media (width <=1200px) {
    .header .header-top .socials-block {
        gap: 1rem;
    }
}

.header .header-main {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.header .personal-block {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.header .personal-profile .btn {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    background-color: #F2F1F1;
    transition: background .3s ease;
}

.header .personal-profile .btn .svg {
    fill: var(--primary-color);
    stroke: var(--primary-color)
}

.header .personal-profile .btn:hover {
    background-color: var(--primary-color);
}

.header .personal-profile .btn:hover .svg {
    fill: white;
    stroke: white;
}

.header.header-v1 {}

@media (min-width: 1001px) {
    .header.header-v1 .personal-block .personal-phone {
        display: none;
    }

    .header.header-v1 .personal-block .personal-burger-menu {
        display: none;
    }
}

@media (max-width: 1000px) {
    .header.header-v1 {
        padding: .8rem 0;
    }

    .header.header-v1 .menu-block {
        display: none;
    }

    .header.header-v1 .header-top {
        display: none;
    }

    .header.header-v1 .personal-block {
        flex-direction: row-reverse;
        gap: .6rem;
    }

    .header.header-v1 .header-content {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }

    .header.header-v1 .personal-block .personal-search {
        display: none;
    }

    .header.header-v1 .personal-block .personal-basket {
        display: none;
    }

    .header.header-v1 .personal-block .personal-profile {
        display: none;
    }
}

.social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5rem;
}

.social .social__value {
    display: flex;
}

.social .social__value .seporator {
    margin: 0 .2rem;
}

.social .social__title {
    font-size: var(--text-md);
}

@media (width <=1200px) {
    .social .social__title {
        display: none;
    }
}

.social .social__value a {
    font-size: var(--text-md);
    color: var(--default-text-color);
    transition: color .3s ease;
    font-weight: 500;
}

.social .social__value a:hover {
    color: var(--primary-color)
}


.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    transition: all 0.5s ease;
    z-index: 100;
}

.mobile-menu .theme-wrapper {
    height: 100%;
}

.mobile-menu.show {
    right: 0;
}

.mobile-menu .mobile-menu_row {
    margin-bottom: 2rem;
}

.mobile-menu .mobile-menu_row .mobile-menu_left,
.mobile-menu .mobile-menu_row .mobile-menu_right {
    width: 50%;
}

@media (width <=320px) {

    .mobile-menu .mobile-menu_row .mobile-menu_left,
    .mobile-menu .mobile-menu_row .mobile-menu_right {
        width: 100%;
    }
}

@media (width <=320px) {
    .mobile-menu .mobile-menu_row {
        flex-direction: column;
    }
}

.mobile-menu .mobile-menu_right .btn,
.mobile-menu .mobile-menu_left .btn {
    max-width: 100%;
    width: 100%;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.mobile-menu .mobile-menu_right .actions,
.mobile-menu .mobile-menu_left .actions {
    margin-right: -1rem;
}

.mobile-menu .mobile-menu_wrapper {
    position: relative;
    padding: 1rem 0 0;
    height: 100vh;
    width: 90%;
    background: white;
    margin-left: auto;
    z-index: 120;
    justify-content: space-between;
}

.mobile-menu .mobile-menu_background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;

    background-color: #000000a8;
}

.mobile-menu.show .mobile-menu_background {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .mobile-menu_header {flex: 0;}

.mobile-menu .mobile-menu_header .theme-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.mobile-menu .mobile-menu_header .site-logo img {
    height: 70px;
}

.mobile-menu .mobile-menu_content {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 6rem;
    overflow: auto;
    height: 50vh;
}

@media (width <=1000px) {
    .mobile-menu .mobile-menu_content .theme-wrapper {
        padding: 0;
    }
}

.mobile-menu .mobile-menu_content::-webkit-scrollbar {
    width: 5px;
    background-color: var(--scroll-backgroud-color);
}

.mobile-menu .mobile-menu_content::-webkit-scrollbar-thumb {
    background-color: var(--scroll-color);
    border-radius: var(--border-radius);
}

.mobile-menu .mobile-menu_content .theme-wrapper {
    height: -moz-fit-content;
    height: fit-content;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu {
    text-align: justify;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu .btn-text {
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu .icon-arrow svg {
    transition: all 0.3s ease;
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu.menu-open {
    background-color: var(--primary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_catalog .btn-open-menu.menu-open .icon-arrow svg {
    transform: rotate(180deg) translateY(0);
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list {
    flex-direction: column;
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list .menu-item__link {
    text-align: left;
    font-size: var(--text-xxl);
    padding: 0;
    margin: 0;
    margin-bottom: 1.3rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_nav .menu-navigation .menu-list .menu-item:last-child .menu-item__link {
    margin-bottom: 0;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts {
    margin-top: 0.6rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .phone {
    font-size: var(--text-base-size);
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .phone.phone--big {
    font-size: var(--text-xxxl);
    font-weight: 700;
    letter-spacing: -0.48px;
    margin: 0;
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color {
    border-bottom-color: var(--primary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color:hover,
.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color:focus,
.mobile-menu .mobile-menu_content .mobile-menu_contacts .btn.primary-color.focus {
    border-bottom-color: var(--secondary-color);
}

.mobile-menu .mobile-menu_content .mobile-menu_email {
    margin-top: 0.6rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_address {
    font-size: var(--text-md);
    line-height: 150%;
    font-family: var(--main-font-family);
}

.mobile-menu .mobile-menu_content .mobile-menu_socials {
    margin-top: 2rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social {
    margin-right: 1.5rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg {
    fill: var(--text-footer-color);
    opacity: 0.7;
    stroke: none;
    transition: all 0.3s ease;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg svg {
    width: 2rem;
    height: 2rem;
}

.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg:hover,
.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg:focus,
.mobile-menu .mobile-menu_content .mobile-menu_socials .social .svg .focus {
    opacity: 1;
    fill: var(--primary-color);
    stroke: none;
}

@media (width >=900px) {
    .mobile-menu {
        display: none;
    }
}

.footer {
    --text-footer-color: white;
    padding-top: 3rem;
}

.footer.footer-v1 {
    background-color: #0E0E0E;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url(../img/svg/footer.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (width <=600px) {
    .footer.footer-v1 {
        padding-top: 0;
    }
}

.footer.footer-v1 * {
    color: var(--text-footer-color);
    letter-spacing: 1;
}

.footer.footer-v1 *.primary-color,
.footer.footer-v1 *:focus,
.footer.footer-v1 *.focus {
    color: var(--primary-color);
}

.footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link {
    display: flex;
    align-items: flex-end;
    height: calc(100% - 52px);
    opacity: .5;
    transition: opacity .3s ease;
}

@media (width <=900px) {
    .footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        height: fit-content;
    }
}

.footer.footer-v1 .footer_col.footer_col--logo .btn-partner-link:hover {
    opacity: 1;
}

.footer.footer-v1 .footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.footer.footer-v1 .footer-top .logo {
    max-width: 140px;
    margin: 0 auto;
}

.footer.footer-v1 .footer-content {
    padding-top: 2rem;
    padding-bottom: 4rem;
    position: relative;
}

@media (width <=1100px) {
    .footer.footer-v1 .footer-content {
        padding-bottom: 6rem;
    }
}

@media (width <=600px) {
    .footer.footer-v1 .footer-content {
        padding-bottom: 3rem;
    }
}


@media (width <=900px) {
    .footer.footer-v1 .footer_col:first-child .socials {
        display: none;
    }
}

.footer.footer-v1 .footer-other {
    padding: 1rem 0;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other {
        padding-top: 3rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper sub {
    opacity: 0.6;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper sub {
        margin-bottom: .4rem;
    }
}

.footer.footer-v1 .footer-other .footer-other_wrapper .btn.btn-partner-link {
    opacity: 0.4;
}

@media (width <=600px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper .btn {
        font-size: var(--text-sm);
    }
}

@media (width <=320px) {
    .footer.footer-v1 .footer-other .footer-other_wrapper {
        flex-direction: column;
        gap: 1rem;
    }
}

.footer .footer_col-title {
    color: #FFF;
    font-size: var(--text-md);
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 1rem;
}

.footer .footer_col-title a {
    color: inherit;
    transition: color 0.3s ease;
    opacity: 0.7;
}

.footer .footer_col-title a:hover {
    color: var(--primary-color);
    opacity: 1;
}

@media (width <=600px) {
    .footer .footer_col-title {
        display: none;
    }
}

.footer .footer_col-menu .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer_col-menu .footer-menu li {
    margin-bottom: 0.6rem;
}

.footer .footer_col-menu .footer-menu li:last-child {
    margin-bottom: 0;
}

.footer .footer_col-menu .footer-menu li .link {
    color: inherit;
    transition: color 0.3s ease;
    font-size: var(--text-sm);
    margin-bottom: 0.8rem;
}

.footer .footer_col-menu .footer-menu li .link.selected {
    color: var(--primary-color);
}

.footer .footer_col-menu .footer-menu li .link:hover {
    color: var(--primary-color);
}

@media (width <=600px) {
    .footer .footer_col-menu .footer-menu li {
        margin-bottom: 0.8rem;
    }
}

.footer .email {
    font-size: var(--text-sm);
    font-weight: 200;
    padding: 0.4rem 0;
    font-family: var(--main-font-family);
}

.footer .email.email--white a {
    color: white;
}

.footer .email.email--white a:hover {
    color: var(--primary-color);
}

@media (width <=900px) {
    .footer .email {
        font-size: var(--text-xl);
    }
}

.footer .phone {
    font-size: var(--text-sm);
    padding: 0.4rem 0;
    font-family: var(--main-font-family);
}

.footer .phone.phone--big {
    font-size: var(--text-xxl);
}

@media (width <=900px) {
    .footer .phone.phone--big {
        font-size: var(--text-xxxl);
    }
}

.footer .phone .btn {
    font-size: inherit;
    font-weight: 300;
}

@media (width <=900px) {
    .footer .phone {
        font-size: var(--text-md);
    }
}

.footer .footer-content_wrapper {
    display: grid;
    grid-template-columns: 150px 20% 20% calc(50% - 150px - 1rem);
    justify-content: space-between;
    gap: 4rem;
}

@media (width <=1400px) {
    .footer .footer-content_wrapper {
        gap: 2rem;
    }
}

@media (width <=1100px) {
    .footer .footer-content_wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (width <=900px) {
    .footer .footer-content_wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .footer .footer_col.footer_col--logo {
        grid-column-start: 1;
        grid-column-end: 3;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer .footer_col.footer_col-full {
        grid-column-start: 1;
        grid-column-end: 3;
    }
}

@media (width <=600px) {
    .footer .footer-content_wrapper {
        gap: 1.3rem;
    }
}

.footer .address {
    font-size: var(--text-sm);
    white-space: nowrap;
    padding: 0.4rem 0;
    font-weight: 300;
}

.footer .address span {
    font-family: var(--title-font-family);
}

@media (width <=900px) {
    .footer .address {
        font-size: var(--text-md);
        margin-bottom: 0;
        margin-top: 0;
    }
}

.footer .time-work {
    font-size: var(--text-sm);
    padding: 0.4rem 0;
}

.footer .slogan {
    color: white;
    opacity: 0.4;
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 1rem;
    margin-right: 5rem;
}

@media (width <=900px) {
    .footer .slogan {
        font-size: var(--text-md);
        opacity: 1;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

.footer .socials .socials-title {
    font-size: var(--text-sm);
    line-height: 1.5;
    margin: 2rem 0 0.6rem;
}

@media (width <=320px) {
    .footer .socials .socials-title {
        font-size: var(--text-md);
    }
}

.footer .socials .btn.btn--link {
    margin-right: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 5px;
    padding: 2px 4px;
}

@media (width <=600px) {
    .footer .socials .btn.btn--link.vk-link {
        line-height: 24px;
    }

    .footer .socials .btn.btn--link.tg-link {
        line-height: 22px;
    }

    .footer .socials .btn.btn--link.tg-link .svg {
        transform: translateX(-2px);
    }

    .footer .socials .btn.btn--link.dzen-link {
        line-height: 22px;
    }

    .footer .socials .btn.btn--link.dzen-link .svg {
        transform: translateX(1px);
    }
}

.footer .socials .btn.btn--link .svg {
    fill: white;
    opacity: 0.7;
    stroke: none;
    transition: all 0.3s ease;
}

.footer .footer_col.footer_col-full .footer-menu-children {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
}

.footer .socials .btn.btn--link .svg svg {
    width: 1rem;
    height: 1rem;
}

.footer .socials .btn.btn--link .svg:hover,
.footer .socials .btn.btn--link .svg:focus,
.footer .socials .btn.btn--link .svg .focus {
    opacity: 1;
    fill: var(--primary-color);
    stroke: none;
}

@media (width <=600px) {
    .footer .socials .btn.btn--link:last-child {
        margin-right: 0;
    }
}

@media (width <=600px) {
    .footer .socials .btn.btn--link {
        margin-right: 2px;
    }
}

@media (width <=900px) {
    .footer .socials {
        text-align: center;
        margin-bottom: 3rem;
    }
}

.footer #btn-to-top-wrap {
    bottom: 10px;
    display: block;
    position: absolute;
    right: 50%;
    top: 15px;
    transform: translate(-50%, -50%);
    z-index: 3;
    height: fit-content;
}

@media (width <=600px) {
    .footer #btn-to-top-wrap {
        display: block !important;
        position: relative;
        top: auto;
        right: auto;
        transform: none;
    }
}

.footer #btn-to-top-wrap #btn-to-top {
    height: 30px;
    width: 30px;
    opacity: 1;
    text-align: center;
    text-decoration: none;
    transition: opacity .3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer #btn-to-top-wrap #btn-to-top .svg {
    display: flex;
}

.footer .btn--privacy {
    text-decoration: underline;
    opacity: .6;
    transition: opacity .3s ease
}

.footer .btn--privacy:hover {
    opacity: 1
}

.header-fixed {
    position: relative;
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    transition: all 0.5s ease;
    z-index: 3;
}

.header-fixed.show {
    position: fixed;
    top: 0;
}

.header-fixed.header-fixed-v1 .header-main {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8039215686);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.header-fixed.header-fixed-v1 .header-main .theme-wrapper {
    height: 100%;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main .theme-wrapper {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

.header-fixed.header-fixed-v1 .header-main .site-logo img {
    max-height: 50px;
}

.header-fixed.header-fixed-v1 .header-main_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main_inner {
        display: grid;
        grid-template-columns: auto 1fr 1fr;
        gap: 1.2rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item {
    position: relative;
    padding: 0 1rem;
    flex-shrink: 0;
}

.header-fixed.header-fixed-v1 .header-main__item.site-menu {
    flex: 1;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.site-menu {
        display: none;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .phone.phone--big .btn {
    font-size: var(--text-lg);
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .email {
    text-align: center;
    margin-top: 0.4rem;
}

.header-fixed.header-fixed-v1 .header-main__item.contacts .email .btn {
    font-size: var(--text-sm);
}

@media (width <=1100px) {
    .header-fixed.header-fixed-v1 .header-main__item.contacts {
        display: none;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.logo {
        width: -moz-fit-content;
        width: fit-content;
        margin: 0 auto;
        padding-right: 1rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item .menu-list {
    max-width: 100vw;
}

@media (width <=) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: 80vw;
    }
}

@media (width <=1800px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 800px);
    }
}

@media (width <=1400px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 700px);
    }
}

@media (width <=1100px) {
    .header-fixed.header-fixed-v1 .header-main__item .menu-list {
        max-width: calc(100vw - 600px);
    }
}

.header-fixed.header-fixed-v1 .header-main__item.catalog-action {
    display: none;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.catalog-action {
        display: block;
        width: -moz-fit-content;
        width: fit-content;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.catalog-form-search {
    flex: 1;
    padding-left: 0;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.catalog-form-search {
        order: 2;
        margin-top: 1rem;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.personal-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 50px;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .btn-mobile-menu {
        width: 50%;
    }
}

@media (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .btn-mobile-menu {
        width: 100%;
    }
}

.header-fixed.header-fixed-v1 .header-main__item.personal-links .personal-links-container {
    display: flex;
    gap: 0.6rem;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links .personal-links-container {
        width: 50%;
        text-align: end;
        justify-content: flex-end;
    }
}

@media (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main__item.personal-links {
        max-height: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.actions .btn {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        width: 100%;
        font-size: 0.7rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item.actions {
        margin: 0 -1rem 0 0;
    }
}

.header-fixed.header-fixed-v1 .header-main__item:first-child {
    padding-left: 0;
}

.header-fixed.header-fixed-v1 .header-main__item:last-child {
    padding-right: 0;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main__item {
        padding: 0;
        flex-shrink: initial;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        position: relative;
        padding: 0 1rem;
        flex-shrink: 0;
    }

    .header-fixed.header-fixed-v1 .header-main.site-menu {
        flex: 1;
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .phone.phone--big .btn {
        font-size: var(--text-lg);
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .email {
        text-align: center;
        margin-top: 0.4rem;
    }

    .header-fixed.header-fixed-v1 .header-main.contacts .email .btn {
        font-size: var(--text-sm);
    }

    .header-fixed.header-fixed-v1 .header-main .menu-list {
        max-width: calc(100vw - 600px);
    }

    .header-fixed.header-fixed-v1 .header-main.catalog-action {
        display: none;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-action {
        display: block;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-form-search {
        flex: 1;
        padding-left: 0;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.catalog-form-search {
        order: 2;
        margin-top: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-height: 50px;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .btn-mobile-menu {
        width: 50%;
    }
}

@media (width <=900px) and (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .btn-mobile-menu {
        width: 100%;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .personal-links-container {
        display: flex;
        gap: 0.6rem;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links .personal-links-container {
        width: 50%;
        text-align: end;
        justify-content: flex-end;
    }
}

@media (width <=900px) and (width <=330px) {
    .header-fixed.header-fixed-v1 .header-main.personal-links {
        max-height: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main:first-child {
        padding-left: 0;
    }

    .header-fixed.header-fixed-v1 .header-main:last-child {
        padding-right: 0;
    }
}

@media (width <=900px) and (width <=900px) {
    .header-fixed.header-fixed-v1 .header-main {
        width: 100%;
    }
}

.header-fixed.header-fixed-v1 .header-submenu {
    display: block;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .header-submenu {
        display: none;
    }
}

.header-fixed.header-fixed-v1 .btn-mobile-menu {
    display: none;
}

@media (width <=900px) {
    .header-fixed.header-fixed-v1 .btn-mobile-menu {
        display: block;
    }
}

.breadcrumb_wrapper {
    margin-bottom: 4.5rem;
}

@media (width <= 768px) {
    .breadcrumb_wrapper {
        margin-bottom: 2rem;
    }
}

@media (width <= 420px) {
    .breadcrumb_wrapper {
        margin-bottom: 1.5rem;
    }
}

@media (width <= 768px) {
    .breadcrumb_wrapper .breadcrumbs {
        font-size: initial;
    }
}

.section.section--page-header.no-title .breadcrumb_wrapper {
    margin-bottom: 0;
}

.breadcrumb_wrapper .breadcrumbs li {
    font-size: var(--text-md);
}

.breadcrumb_wrapper .breadcrumbs li a {
    font-size: initial;
}

@media (width <= 768px) {
    .breadcrumb_wrapper .breadcrumbs li {
        font-size: var(--text-lg);
    }
}

.pricetable .first {
    background: #AB1542;
    color:white;
    min-height: 57px;
}

.section.section--page-header {
    padding-top: 0;
    padding-bottom: 0;
}

/* CATALOG */

.catalog-wrapper {
    display: flex;
    gap: 30px; /* отступ между колонками */
}

.catalog-aside {
    width: 20%;
    flex-shrink: 0;
}

.catalog-content {
    width: 80%;
}

/* Адаптив для мобильных */
@media (max-width: 991px) {
    .catalog-wrapper {
        flex-direction: column;
    }
    
    .catalog-aside,
    .catalog-content {
        width: 100%;
    }
}

.content-container .filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-container .filter .layout-switcher .__name {
    display: none;
}

.catalog-content .filter .sorting {
    display: flex;
    align-items: center;
}

.catalog-content .filter .sorting .__name {
    font-weight: 400;
}

.catalog-content .filter .sorting .fs-dropdown.fs-custom .fs-dropdown-selected {
    min-height: auto;
    padding-top: 0;
    color: #1D1D1D;
    font-weight: 600;
    padding-bottom: 0;
    font-family: var(--main-font-family);
    font-size: var(--text-sm);
}

.catalog-content .filter .layout-switcher .switcher__item {
    font-size: var(--text-xxxl);
    color: black;
}
/* Планшеты */
@media (max-width: 1024px) {
    .content-container .filter {
        gap: 15px;
    }
    
    .catalog-content .filter .sorting {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom {
        min-width: 160px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .content-container .filter {
        flex-direction: column;
        align-items: flex-start;
        gap: .5rem;
    }
    
    .catalog-content .filter .sorting {
        width: 100%;
        justify-content: space-between;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom {
        flex-grow: 1;
        margin-left: 10px;
    }
    
    .catalog-content .filter .layout-switcher {
        width: 100%;
        display: flex;
        gap: 0;
        margin: 0 -.5rem;
    }
    
    .catalog-content .filter .layout-switcher .switcher__item {
        font-size: var(--text-xxxxl);
        line-height: 1;
    }
}

/* Маленькие мобильные устройства */
@media (max-width: 480px) {
    .catalog-content .filter .sorting .__name {
        font-size: 14px;
    }
    
    .catalog-content .filter .sorting .fs-dropdown.fs-custom .fs-dropdown-selected {
        font-size: 14px;
    }
    
    .catalog-content .filter .layout-switcher .switcher__item {
        font-size: var(--text-xxxxl);
    }
}

/* FORM */

.modal {
    display: none;
}

.form-popup {
    padding: 0;
    border-radius: 20px;
    max-width: 570px;
}
.form-popup .fancybox-close-small::after {
    color: white;
}
.form-popup .form-s.form-s--inline {
    padding: 30px;
}
.form-s.form-s--inline {
    background: linear-gradient(180deg, #AB1542 0%, #9B133B 100%);
    color: white;
    margin-bottom: 0;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
}

.form-s.form-s--inline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('../img/svg/form-bg.svg') center no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.form-s .form__description {
    display: none;
}

.form-s .form__errors {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    background-color: white;
    border-radius: 20px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
}

.form-s .form__errors .error.error--text {
    font-size: var(--text-sm);
    color: #ff4d4f;
    line-height: 100%;
}

.form-s .form-wrapper {
    z-index: 1;
    position: relative;
}

.form-s .form-header {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-s .form__title {
    font-size: var(--text-xxxxl);
    font-family: var(--title-font-family);
    margin-bottom: 2rem;
    line-height: 100%;
}

.form-s .form-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-s .form-content .form-field {
    position: relative;
}

.form-s .form-content .form-field.form-field--input input,
.form-s .form-content .form-field.form-field--textarea textarea {
    width: 100%;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 20px;
    padding: .6rem 1.2rem;
}

.form-s .form-footer {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.form-s .form-footer .topmost {
    width: 100%;
}

.form-s .form-footer .topmost .btn {
    margin-top: 0;
    padding-left: 3rem;
    padding-right: 3rem;
}

.form-s .form-footer .license {
    position: relative;
}


.form-s .form-footer .license .license-checkbox {
    position: relative;
}

.form-s .form-footer .license  input {
    position: absolute;
    height: 1px;
    width: 1px;
}

.form-s .form-footer .license .license-checkbox::after {
    content: '';

    position: absolute;
    top: 2px;
    left: 0;

    height: 18px;
    width: 18px;

    border-radius: 100%;
    background-color: transparent;
    border: 2px solid white;
}

.form-s .form-footer .license .license-checkbox::before {
    content: '';

    opacity: 0;

    position: absolute;
    top: 6px;
    left: 4px;

    height: 10px;
    width: 10px;

    border-radius: 100%;
    background-color: white;

    transition: opacity .3s ease;
}

.form-s .form-footer .license .license-checkbox:hover::before {
    opacity: .8;
}

.form-s .form-footer .license input:checked + .license-checkbox::before {
    opacity: 1;
}

.form-s .form-footer .license input:checked + .license-checkbox:hover::before {
    opacity: .4;
}

.form-s .form-footer .license .license-checkbox {
    font-size: var(--text-md);
    font-weight: 400;
    font-family: var(--main-font-family);
    padding-left: 2rem;
}

.form-s .form-footer .license .license-checkbox a {
    color: white;
    text-decoration: underline;
    transition: color .3s ease;
}

.form-s .form-footer .license .license-checkbox a:hover {
    color: var(--secondary-color);
}

/* PERSONAL PAGE */

.personal-section {
    padding: 20px;
    position: relative;
}

.profile-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.profile-item {
    background-color: white;
    border-radius: 20px;
    width: calc(33% - 1rem);
    height: 100%;
}

.profile-item .profile-item__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.profile-item .profile-item__link:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-item .profile-item__link:hover span {
    color: var(--primary-color);
}

.profile-item .profile-item__link .profile-item__image {
    height: fit-content;
    width: fit-content;
    background-color: var(--primary-color);
    padding: 1rem;
    border-radius: 20px 0 0 20px;
    display: flex;
}

.profile-item .profile-item__link .profile-item__image svg {
    width: 2rem;
    height: 2rem;
}

.profile-item .profile-item__link span {
    font-size: var(--text-lg);
    font-family: var(--main-font-family);
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* Оптимизация для планшетов */
@media (max-width: 1024px) {
    .profile-item {
        width: calc(50% - 1rem); /* Две колонки */
    }
}

/* Оптимизация для телефонов */
@media (max-width: 768px) {
    .profile-item {
        width: 100%; /* Одна колонка */
    }

    .profile-menu {
        gap: 1rem; /* Уменьшение отступов */
    }

    .profile-item .profile-item__link span {
        font-size: var(--text-md); /* Уменьшение размера текста */
    }
}

.check-step {
    display: flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-flex;
    margin-bottom: 48px;
    list-style: none !important;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.check-step li {
    border-bottom: solid 2px transparent;
    color: #a0a0a0;
    font-size: 18px;
    margin-left: 28px;
}

.check-step li.active {
    border-color: #a0a0a0;
}

.check-step li.active a {
    color: #3c3c3c;
}

.check-step li {
    padding: 18px 28px;
}

.check-step li:first-child {
    margin-left: 0;
}

.check-step li a {
    color: #a0a0a0;
}

@media (max-width: 991px) {
    .bx-basket .check-step li {
        font-size: 14px;
        margin-left: 18px;
        padding: 18px 7px;
    }
}

.block-catalog-items.theme-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.block-catalog-items .swiper {
    /*overflow: visible;*/
}

.popup-window.popup-window-with-titlebar {
    border-radius: 30px;
    padding: 1rem;
}

.popup-window.popup-window-with-titlebar .popup-window-titlebar-text {
    color: var(--secondary-color);
    font-size: var(--text-lg);
}

.popup-window.popup-window-with-titlebar img {
    border-radius: 20px;
    width: 14rem;
    object-fit: cover;
    max-height: 100% !important;
    height: 14rem;
    margin-bottom: 1rem;
}

.popup-window.popup-window-with-titlebar .btn.btn-default {
    border-radius: 20px;
    padding: .5rem 1rem;
    width: 100%;
}

.grecaptcha-badge {
    display: none;
}

@media (max-width: 768px) {
	.table-wraper {
		overflow: scroll;
		scrollbar-color: #DDDDDD #ab1542;
	}
}