/* USER VARIABLES SECTION */

:root {
    --white: #fff;
    --gray: #f3f3f3;
    --black: #000;
    --text: #000;
    --regular-text: 16px;
    --lineheight: 1.65;
    --font-family: "Gilroy", sans-serif;
    --second-family: "Montserrat", sans-serif;
    --third-family: "Inter", sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    --bs-gutter-x: 0.938rem;
}

.row,
.row > * {
    --bs-gutter-x: 1.875rem;
}

@media (min-width: 1200px) {
    .container-fluid {
        max-width: 100%;
        padding: 0 20px;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1350px;
    }
}

@media (max-width: 991px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 100%;
    }
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

input[type="checkbox"],
input[type="radio"],
input[type="file"] {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    z-index: 1;
    visibility: hidden;
    position: absolute;
    width: 0;
    height: 0;
}

/* GENERAL CSS SETTINGS */
body.no-scroll {
    overflow: hidden;
}

.svg-block {
    position: absolute;
    bottom: -9999px;
    left: -9999px;
    overflow: hidden;
    opacity: 0; 
    height: 0;
}

.img-right,
.img-left {
    float: none;
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .img-right {
        float: right;
        margin-left: 55px;
        width: auto;
    }

    .img-left {
        float: left;
        margin-right: 55px;
        width: auto;
    }
}

::placeholder {
    color: #000;
    opacity: 1;
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: #14295e;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--font-family);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--text);
    font-weight: 400;
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: #fff;
}

body.overflow,
body.overflow-mobile {
    overflow: hidden;
}

/* common */
.phone {
    display: flex;
    gap: 0 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    transition: 0.2s ease;
}

.phone svg {
    fill: none;
    stroke: var(--white);
    width: 23px;
    height: 22px;
    transition: 0.2s ease;
}

.phone:hover {
    color: var(--white);
}

.social {
    display: flex;
    gap: 0 24px;
    margin: 0;
    padding: 0;
}

.social li {
    list-style-type: none;
}

.social li a {
    display: block;
}

.social li a svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

.lang-link {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
}

.lang-link:hover {
    color: var(--black);
    text-decoration: underline;
}

.btn-search {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.btn-search svg {
    fill: var(--accent-color);
    width: 23px;
    height: 23px;
}

.menu {
    padding: 0 0 0 93px;
    margin: 0;
    display: flex;
    gap: 0 30px;
}

@media (min-width: 1200px) {
    .menu {
        gap: 0 40px;
    }
}

@media (min-width: 1400px) {
    .menu {
        gap: 0 87px;
    }
}

.menu > li {
    list-style-type: none;
    position: relative;
    padding: 0 0 25px 0;
    margin: 0 0 -25px 0;
}

.menu > li > a {
    display: block;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0 15px;
    transition: 0.2s ease-in;
}

.menu > li > a > svg {
    width: 15px;
    height: 9px;
    transition: 0.2s ease-in;
    stroke: var(--white);
    fill: none;
}

.menu > li > a:hover {
    text-decoration: underline;
}

.menu > li > a.open {
    text-decoration: underline;
}

.menu > li > a.open svg {
    transform: scale(-1);
}

.submenu {
    padding: 55px 0 40px 52px;
    margin: 25px 0 0 0;
    position: absolute;
    background: #fff;
    width: 402px;
    visibility: hidden;
    opacity: 0;
    transition: 0.6s ease;
}

.submenu.show {
    opacity: 1;
    visibility: visible;
}

.submenu > li {
    list-style-type: none;
}

.submenu > li > a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 44px;
    color: #040404;
    transition: 0.2s ease;
}

.submenu > li > a:hover {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--accent-color);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    background: var(--accent-color);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .btn {
        height: 63px;
        max-width: 400px;
    }
}

.btn:hover {
    background: var(--white);
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.c-pagination {
    position: absolute;
    bottom: 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 15px;
    z-index: 99;
}

@media (min-width: 1024px) {
    .c-pagination {
        gap: 0 20px;
    }
}

.c-pagination .swiper-pagination-bullet {
    width: 29px;
    height: 2px;
    border-radius: 20px;
    background: var(--white);
    opacity: 1;
    padding: 0 !important;
    margin: 0 !important;
    display: block;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .c-pagination .swiper-pagination-bullet {
        width: 35px;
    }
}

.c-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 30px;
    height: 3px;
}

@media (min-width: 1024px) {
    .c-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        width: 36px;
        height: 3px;
    }
}

.title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    line-height: 1;
    text-align: center;
    color: #000;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .title {
        font-size: 55px;
    }
}

@media (min-width: 1024px) {
    .title--history {
        text-align: left;
    }
}

.title-h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    color: #000;
    margin: 0;
    padding: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .title-h2 {
        font-size: 55px;
    }
}

.title-h2 a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}

.c-prev {
    transform: scale(-1);
    position: absolute;
    left: -55px;
    top: 50%;
    z-index: 99;
}

.c-prev svg {
    stroke: var(--accent-color);
    width: 13px;
    height: 22px;
    fill: none;
}

.c-next {
    top: 50%;
    right: -55px;
    position: absolute;
    z-index: 99;
}

.c-next svg {
    stroke: var(--accent-color);
    width: 13px;
    height: 22px;
    fill: none;
}

/* end common */

/* title-block */
.title-block {
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .title-block {
        margin: 0 0 63px 0;
    }
}
/* end title-block */

/* title-inner */
.title-inner {
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .title-inner {
        margin: 0 0 60px 0;
    }
}

.title-inner--about {
    margin: 0 0 80px 0;
}

@media (min-width: 1024px) {
    .title-inner--about {
        margin: 0 0 150px 0;
    }
}
/* end title-inner */

/* header */
.header {
    position: fixed;
    top: 0;
    z-index: 999;
    left: 0;
    right: 0;
}
.header--inner {
    border-bottom: 1px solid #d3d3d3;
}

@media (min-width: 1200px) {
    .header--inner {
        border: none;
    }
}

.header__info {
    background: var(--gray);
    padding: 10px 0;
}

@media (min-width: 1024px) {
    .header__info {
        padding: 17px 0;
    }
}

.header__info-content {
    position: relative;
}

.header__info-content p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
    text-align: center;
}

@media (min-width: 1024px) {
    .header__info-content p {
        font-size: 20px;
    }
}

.haeder__btn-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.haeder__btn-close svg {
    fill: none;
    stroke: var(--black);
    stroke-width: 1px;
    width: 12px;
    height: 12px;
}

.header__top {
    padding: 7px 0 10px 0;
    background: #fff;
    transition: all .3s;
}

@media (min-width: 1024px) {
    .header__top {
        padding: 20px 0 27px 0;
    }
}

.header__top-menu {
    display: none;
}

@media (min-width: 1200px) {
    .header__top-menu {
        display: block;
    }
}

.header__top-menu-list {
    gap: 0 20px;
    padding: 0;
    margin: 0;
    display: flex;
}

@media (min-width: 1200px) {
    .header__top-menu-list {
        gap: 0 30px;
    }
}

@media (min-width: 1400px) {
    .header__top-menu-list {
        gap: 0 49px;
    }
}

.header__top-menu-list > li {
    list-style-type: none;
}

.header__top-menu-list > li > a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    text-decoration: none;
    transition: 0.2s ease;
    display: block;
}

.header__top-menu-list > li > a:hover {
    text-decoration: underline;
}

.header__top-logo {
    display: block;
    text-align: center;
    justify-content: center;
}

.header__top-logo svg {
    fill: var(--accent-color);
    width: 154px;
    height: 44px;
    transition: all .3s;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .header__top-logo svg {
        width: 248px;
        height: 72px;
    }
}

body{
    padding-top: 60px;
}

@media (min-width: 1024px) {

    body{
        padding-top: 115px;
    }
    
    .scrolled .header__top{
        padding: 7px 0 10px 0;
    }

    .scrolled  .header__top-logo svg {
        width: 180px;
        height: 52px;
    }
}

@media (min-width: 1200px) {

    body{
        padding-top: 189px;
    } 
}


.header__top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 14px;
}

@media (min-width: 1024px) {
    .header__top-right {
        gap: 0 25px;
    }
}

.header__top-basket-mobile {
    display: flex;
    align-items: center;
    color: #000;
    text-decoration: none;
}

.header__top-basket-mobile svg {
    fill: var(--black);
    width: 17px;
    height: 20px;
}

@media (min-width: 1024px) {
    .header__top-basket-mobile {
        display: none;
    }
}

.header__top-lang {
    color: var(--black);
}

@media (min-width: 1200px) {
    .header__top-lang {
        color: var(--accent-color);
    }
}

.header__top-lang:hover {
    color: var(--accent-color);
}

.header__top-phone svg {
    stroke: var(--accent-color);
    width: 23px;
    height: 23px;
}

.header__top-btn-search {
    display: none;
}

@media (min-width: 1024px) {
    .header__top-btn-search {
        display: flex;
    }
}

.header__top-phone {
    display: none;
}

@media (min-width: 1024px) {
    .header__top-phone {
        display: flex;
    }
}

.header__top-btn-mobile-search {
    margin: 0;
    display: block;
}

@media (min-width: 1200px) {
    .header__top-btn-mobile-search {
        display: none;
    }
}

.header__top-btn-mobile-search svg {
    fill: var(--black);
}

.header__top-btn-menu {
    position: relative;
    height: 17px;
    width: 24px;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: block;
}

@media (min-width: 1200px) {
    .header__top-btn-menu {
        display: none;
    }
}

.header__top-btn-menu span {
    background: var(--black);
    height: 2px;
    width: 24px;
    position: absolute;
    display: block;
    border-radius: 20px;
    transition: 0.2s ease;
}

.header__top-btn-menu span:first-child {
    top: 50%;
    width: 20px;
    transform: translateY(-50%);
}

.header__top-btn-menu span:last-child {
    top: 0px;
}

.header__top-btn-menu span:nth-child(2n) {
    bottom: 0;
}

.header__top-btn-menu.active span:first-child {
    opacity: 0;
}

.header__top-btn-menu.active span:last-child {
    top: 5px;
    rotate: 45deg;
}

.header__top-btn-menu.active span:nth-child(2n) {
    rotate: -45deg;
    top: 5px;
}

.header__top-btn-menu.active.catalog-active span:last-child {
    rotate: 45deg;
    top: 8px;
    width: 10px;
}

.header__top-btn-menu.active.catalog-active span:nth-child(2n) {
    rotate: -45deg;
    top: 0px;
    width: 10px;
}

.header__top-btn-menu.active.catalog-active span:first-child {
    opacity: 1;
    top: 5px;
}

.header__top-left {
    display: flex;
    align-items: center;
    gap: 0 27px;
}

.header__navigate {
    padding: 20px 0;
    background: var(--accent-color);
    display: none;
}

@media (min-width: 1200px) {
    .header__navigate {
        display: block;
    }
}

.header__navigate-btn-catalog {
    display: flex;
    align-items: center;
    gap: 0 22px;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
}

.header__navigate-btn-catalog-icon {
    height: 21px;
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.header__navigate-btn-catalog-icon span {
    background: var(--white);
    height: 2px;
    width: 24px;
    border-radius: 20px;
    display: block;
    transition: 0.2s ease;
}

.header__navigate-btn-catalog-icon span:first-child {
    top: 0;
    position: absolute;
    width: 30px;
    transition: 0.2s ease;
}

.header__navigate-btn-catalog-icon span:last-child {
    bottom: 0;
    position: absolute;
    width: 30px;
    transition: 0.2s ease;
}

.header__navigate-btn-catalog-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: var(--white);
}

.header__navigate-btn-catalog.open
    .header__navigate-btn-catalog-icon
    span:nth-child(2) {
    visibility: hidden;
}

.header__navigate-btn-catalog.open
    .header__navigate-btn-catalog-icon
    span:first-child {
    rotate: -45deg;
    top: 10px;
}

.header__navigate-btn-catalog.open
    .header__navigate-btn-catalog-icon
    span:last-child {
    rotate: 45deg;
    top: 10px;
}

.header__navigate-btn-cart {
    display: flex;
    align-items: end;
    gap: 0 8px;
    text-decoration: none;
    justify-content: end;
    color: #fff;
    font-size: 16px !important;
}

.header__navigate-btn-cart:hover{
    color: #fff;
    text-decoration: underline;
}

.header__navigate-btn-cart span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--white);
}

.header__navigate-btn-cart svg {
    width: 25px;
    height: 30px;
    fill: var(--white);
}

.header__menu-catalog {
    position: absolute;
    z-index: 99;
    margin: 0 auto;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s ease;
    opacity: 0;
    background: #fff;
    height: calc(100dvh - 50px);
    padding: 0 0 50px 0;
    overflow-y: scroll;
}

@media (min-width: 1200px) {
    .header__menu-catalog {
        background: transparent;
        height: auto;
        overflow: unset;
        padding: 0;
    }
}

@media (min-width: 1200px) {
    .header__menu-catalog::before {
        content: "";
        display: block;
        width: 100%;
        height: 100vh;
        background: #000;
        opacity: 0.6;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
        pointer-events: none;
    }
}

.header__menu-catalog.show,
.header__menu-catalog.show-mobile {
    opacity: 1;
    visibility: visible;
}

.header__menu-catalog-tabs {
    background: #fff;
    padding: 0;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs {
        padding: 36px 0 127px 0;
    }
}

.header__menu-catalog-tabs-head {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--accent-color);
    padding: 33px 5px 28px 5px;
    position: relative;
}

@media (min-width: 990px) {
    .header__menu-catalog-tabs-head {
        max-width: 1000px;
        gap: 0 117px;
        padding: 0 0 16px 0;
        border-bottom: 1px solid #dbdbdb;
        background: transparent;
        justify-content: center;
    }
}

.header__menu-catalog-tabs-head::before {
    content: "";
    background: var(--accent-color); 
    height: 100%;
    left: -0.983rem;
    right: -0.983rem;
    position: absolute;
    top: 0;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-head::before {
        display: none;
    }
}

.header__menu-catalog-tabs-head-btn {
    padding: 0;
    margin: 0;
    position: relative;
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    background: none;
    border: none;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-head-btn {
        font-size: 22px;
        line-height: 1;
        color: #000;
    }
}

.header__menu-catalog-tabs-head-btn.active {
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-head-btn.active {
        text-decoration: none;
    }
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-head-btn::before {
        content: "";
        height: 3px;
        display: block;
        position: absolute;
        background: var(--accent-color);
        border-radius: 20px;
        bottom: -18px;
        width: 100%;
        visibility: hidden;
        opacity: 0;
        transition: 0.2s ease;
    }
}

.header__menu-catalog-tabs-head-btn.active::before,
.header__menu-catalog-tabs-head-btn:hover::before {
    visibility: visible;
    opacity: 1;
}

.header__menu-catalog-tabs-body {
    padding: 14px 0 0 0;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-body {
        padding: 55px 0 0 0;
        max-width: 1000px;
        max-height: 50vh;
        overflow-y: auto;
    }
}

.header__menu-catalog-tabs-body-item {
    display: none;
    /*
    align-items: center;
    */
    justify-content: center;
    gap: 9px 14px;
    flex-wrap: wrap;
}

@media (min-width: 1200px) {
    .header__menu-catalog-tabs-body-item {
        gap: 70px 20px;
    }
}

.header__menu-catalog-tabs-body-item.show {
    display: flex;
}

.category-menu-item {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    /*
    justify-content: center;
    */
    width: calc((100% / 2) - (14px * 2 / 3));
    text-decoration: none;
}

@media (min-width: 1024px) {
    .category-menu-item {
        width: calc((100% / 4) - (20px * 4 / 5));
    }
}

.category-menu-item__img {
    height: 138px;
}

.category-menu-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.2s ease;
}

.category-menu-item span {
    text-align: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 23px;
    line-height: 1;
    color: #000;
    transition: 0.2s ease;
}

.category-menu-item:hover span {
    color: var(--accent-color);
}

.category-menu-item:hover img {
    transform: scale(1.05);
}

.header__mobile-block {
    position: absolute;
    background: var(--accent-color);
    height: calc(100dvh - 50px);
    width: 100%;
    padding: 33px 0 47px 0;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
}

.header__mobile-block.show {
    opacity: 1;
    visibility: visible;
}

.header__mobile-block-footer-phone {
    margin: 0 0 30px 0;
}

.header__mobile-block-footer-social {
    display: flex;
    align-items: center;
    gap: 0 24px;
}

.header__mobile-block-footer-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

.header__mobile-block-footer-social .social {
    gap: 0 14px;
}

.header__mobile-block-footer-social .social li a svg {
    width: 29px;
    height: 29px;
}

.header__mobile-block-bottom-menu {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin: 34px 0 30px 0;
}

.header__mobile-block-bottom-menu ul {
    padding: 0;
    margin: 0;
    column-count: 2;
}

.header__mobile-block-bottom-menu > ul > li {
    list-style-type: none;
}

.header__mobile-block-bottom-menu > ul > li > a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 40px;
    color: #fff;
}

.header__mobile-block-menu-btn-catalog {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    padding: 0;
    color: #fff;
    margin: 0 0 25px 0;
    background: none;
    border: none;
}

.header__mobile-block-menu ul {
    padding: 0;
    margin: 0;
}

.header__mobile-block-menu ul li {
    list-style-type: none;
}

.header__mobile-block-menu ul li a {
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #fff;
}

/* end header */

/* footer */
.footer {
}

.footer__top {
    background: var(--accent-color);
    padding: 35px 0 40px 0;
}

@media (min-width: 1200px) {
    .footer__top {
        padding: 0 0 30px 0;
    }
}

.footer__top-row {
    flex-direction: column-reverse;
}

@media (min-width: 1200px) {
    .footer__top-row {
        flex-direction: row;
    }
}

.footer__top-left-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 70px 0 40px 0;
}

@media (min-width: 1200px) {
    .footer__top-left-wrap {
        padding: 67px 0 0 0;
    }
}

.footer__top-logo {
    display: none;
}

@media (min-width: 1200px) {
    .footer__top-logo {
        display: block;
        margin: 0 0 56px 0;
    }
}

.footer__top-logo svg {
    fill: var(--white);
    width: 227px;
    height: 67px;
}

@media (min-width: 1200px) {
    .footer__top-phone {
        gap: 0 20px;
        margin: 0 0 0 20px;
    }
}

.footer__top-social-chat-link {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
    margin: 20px 0 0 0;
}

@media (min-width: 1200px) {
    .footer__top-social-chat-link {
        margin: 30px 0 0 0;
        align-items: flex-start;
    }
}

.footer__social-link-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    gap: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--white);
    height: 40px;
    width: 100%;
    text-decoration: none;
    transition: 0.2s ease;
}

@media (min-width: 1200px) {
    .footer__social-link-chat {
        max-width: 228px;
        height: 43px;
    }
}

.footer__social-link-chat:hover {
    background: var(--white);
    color: var(--accent-color);
}

.footer__social-link-chat svg {
    fill: var(--white);
    width: 25px;
    height: 25px;
}

.footer__social-link-chat:hover svg {
    fill: var(--accent-color);
}

.footer__top-item-row {
}

@media (min-width: 1200px) {
    .footer__top-item-row {
        padding: 85px 0 0 0;
        display: flex;
        gap: 0 0;
    }
}

.footer__top-item h3 {
    margin: 0 0 30px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: #fff;
}

@media (min-width: 1200px) {
    .footer__top-item h3 {
        margin: 0 0 47px 0;
        font-size: 30px;
    }
}

.footer__menu-catalog {
    padding: 0 0 0 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

@media (min-width: 1200px) {
    .footer__menu-catalog {
        padding: 0;
    }
}

.footer__menu-catalog > li {
    list-style-type: none;
}

.footer__menu-catalog > li > a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
    display: block;
}

.footer__menu-catalog > li > a:hover {
    text-decoration: underline;
}

.footer__top-item--center {
    padding: 30px 0 38px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    margin: 38px 0 30px 0;
}

@media (min-width: 1200px) {
    .footer__top-item--center {
        margin: 0 90px 0 106px;
        border: none;
        padding: 76px 0 0 0;
    }
}

.footer__menu {
    padding: 0 0 0 20px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0 55px;
}

@media (min-width: 1200px) {
    .footer__menu {
        padding: 0;
        gap: 0;
        flex-direction: column;
    }
    .footer__menu--info {
        display: block;
        column-count: 2;
        column-gap: 50px;
    }
}

.footer__menu > li {
    list-style-type: none;
    width: calc(50% - (55px * 2 / 3));
}

@media (min-width: 1200px) {
    .footer__menu > li {
        width: auto;
        margin: 24px 0 0 0;
        display: block;
    }
    .footer__menu > li:first-child {
        margin: 0;
    }
}

.footer__menu > li > a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 54px;
    color: #fff;
    text-decoration: none;
    transition: 0.2s ease;
    display: block;
}

@media (min-width: 1200px) {
    .footer__menu > li > a {
        line-height: 1;
        font-size: 22px;
    }
}

.footer__menu > li > a:hover {
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .footer__top-social-mobile {
        display: none;
    }
}

.footer__top-social {
    display: flex;
    gap: 0 12px;
    justify-content: flex-end;
    align-items: center; 
}

.footer__top-social-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--white);
}

.footer__top-social-pc li a svg {
    width: 29px;
    height: 29px;
}

.footer__pay{
    gap: 0 10px; 
}

.footer__pay svg{
    width: 60px;
    height: 30px;
}

.footer__bottom {
    padding: 30px 0;
    background: var(--white);
}

.footer__bottom-copy {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    text-align: center;
}

@media (min-width: 1200px) {
    .footer__bottom-copy {
        text-align: left;
    }
}

.footer__bottom-security {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 20px 0;
}

@media (min-width: 1200px) {
    .footer__bottom-security {
        margin: 0;
    }
}

.footer__bottom-security:hover {
    color: var(--black);
    text-decoration: underline;
}

.footer__bottom-developer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--black);
    gap: 0 10px;
    text-decoration: none;
}

@media (min-width: 1200px) {
    .footer__bottom-developer {
        justify-content: flex-end;
    }
}

.footer__bottom-developer:hover {
    text-decoration: underline;
    color: var(--black);
}

/* end footer */

/* slider-home */
.slider-home {
    /*height: 453px;*/
    overflow: hidden;
    position: relative;
}

@media (min-width: 1024px) {
    .slider-home {
        /*height: 688px;*/
    }
}

.big-swiper {
    height: 100%;
}

.big-swiper__slide-bg {
    display: block;
}

.big-swiper__slide-bg img {
    width: 100%;
}



/*
@media (min-width: 425px) {
    .big-swiper__slide-bg img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .big-swiper__slide-bg img {
        aspect-ratio: 4/3;
    }
}

@media (min-width: 1400px) {
    .big-swiper__slide-bg img {
        aspect-ratio: 16/8;
    }
}
*/

.big-swiper__slide-content {
    position: absolute;
    bottom: 57px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .big-swiper__slide-content {
        bottom: 59px;
    }
}

.big-swiper__slide-content-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    color: var(--white);
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .big-swiper__slide-content-title {
        font-size: 55px;
    }
}

.big-swiper__slide-btn {
    background: transparent;
    border: 1px solid #fff;
    color: var(--white);
    height: 35px;
    max-width: 141px;
    margin: 22px 0 0 0;
    line-height: 1;
}

@media (min-width: 1024px) {
    .big-swiper__slide-btn {
        margin: 39px 0 0 0;
        font-size: 25px;
        height: 48px;
        max-width: 195px;
    }
}

.big-swiper__pagination {
    bottom: 16px !important;
}

@media (min-width: 1024px) {
    .big-swiper__pagination {
        bottom: 27px !important;
    }
}
/* end slider-home */

/* category-home */
.category-home {
    padding: 28px 0 80px 0;
}

@media (min-width: 1024px) {
    .category-home {
        padding: 32px 0 130px 0;
    }
}

.category-home__row {
    gap: 9px 0;
}

@media (max-width: 991px) {
    .category-home__row .col-6:nth-child(odd) {
        padding-right: 7px;
    }

    .category-home__row .col-6:nth-child(even) {
        padding-left: 7px;
    }
}
/* end category-home */

/* category-small-item */
.category-small-item {
    display: block;
    position: relative;
    text-decoration: none;
    height: 115px;
}

@media (min-width: 1024px) {
    .category-small-item {
        height: 191px;
    }
}

.category-small-item__img {
    display: block;
    height: 100%;
    width: 100%;
}

.category-small-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category-small-item__title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--white);
    transition: 0.5s ease;
}

@media (min-width: 1024px) {
    .category-small-item__title {
        left: 16px;
        bottom: 18px;
        font-size: 25px;
    }
}

.category-small-item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: visible;
    transition: 0.8s ease;
}

.category-small-item:hover::before {
    visibility: visible;
    opacity: 1;
}

.category-small-item:hover .category-small-item__title {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    display: flex;
    align-items: center;
}
/* end category-small-item */

/* collect */
.collect {
    margin: 70px 0;
}

@media (min-width: 1024px) {
    .collect {
        margin: 130px 0;
    }
}

.collect__link-wrapper {
    display: block;
    position: relative;
    height: 422px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .collect__link-wrapper {
        height: 535px;
    }
}

.collect__img {
    display: block;
    width: 100%;
    height: 100%;
}

.collect__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.collect__info {
    position: absolute;
    bottom: 26px;
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .collect__info {
        bottom: none;
        top: 130px;
    }
}

.collect__info h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    color: var(--white);
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .collect__info h2 {
        font-size: 55px;
    }
}

.collect__btn {
    margin: 22px 0 0 0;
    height: 35px;
    max-width: 141px;
    background: transparent;
    border: 1px solid #fff;
}
@media (min-width: 1024px) {
    .collect__btn {
        margin: 39px 0 0 0;
        max-width: 195px;
        height: 48px;
        font-size: 25px;
    }
}

/* end collect */

/* slider-brand */
.slider-brand {
    padding: 34px 0 22px 0;
    background: #f3f3f3;
    margin: 70px 0 0 0;
}

@media (min-width: 1024px) {
    .slider-brand {
        padding: 50px 0 53px 0;
        margin: 130px 0 0 0;
    }
}

.brand-swiper {
    padding: 0 0 33px 0;
}

@media (min-width: 1024px) {
    .brand-swiper {
        padding: 0 0 44px 0;
    }
}

.brand-swiper .swiper-pagination-bullet {
    background: var(--accent-color);
}

.brand-swiper__pagination {
    bottom: 0;
}

.brand-swiper__slide-link {
    display: block;
    height: 49px;
}

@media (min-width: 1024px) {
    .brand-swiper__slide-link {
        height: 69px;
    }
}

.brand-swiper__slide-link img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
    transition: 0.2s ease;
}

.brand-swiper__slide-link:hover img {
    filter: grayscale(0);
}

/* end slider-brand */

/* last-articles */
.last-articles {
    padding: 70px 0 0 0;
}

@media (min-width: 1024px) {
    .last-articles {
        padding: 130px 0 0 0;
    }
}
/* end last-articles */

/* item-article */
.item-article {
    display: block;
    text-decoration: none;
}

.item-article__img {
    margin: 0 0 31px 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .item-article__img {
        margin: 0 0 29px 0;
    }
}

.item-article__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
}

.item-article__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 32px;
    color: #000;
    margin: 0 0 30px 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .item-article__title {
        font-size: 23px;
        margin: 0 0 26px 0;
    }
}

.item-article__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;
    margin: 0 0 32px 0;
}

@media (min-width: 1024px) {
    .item-article__text {
        font-size: 20px;
        margin: 0 0 29px 0;
    }
}

.item-article__more {
    display: flex;
    align-items: center;
    gap: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--accent-color);
}
@media (min-width: 1024px) {
}

.item-article__more svg {
    fill: var(--accent-color);
    width: 16px;
    height: 8px;
}

@media (min-width: 1024px) {
}

.item-article:hover .item-article__img img {
    transform: scale(1.1);
}

.item-article:hover .item-article__more {
    text-decoration: underline;
}

.article-link-category {
    margin: 60px auto 0 auto;
    max-width: 262px;
}

@media (min-width: 1024px) {
    .article-link-category {
        display: none;
    }
}
/* end item-article */

/* seo-block */
.seo-block {
    padding: 70px 0;
}

@media (min-width: 1024px) {
    .seo-block {
        padding: 130px 0;
    }
}

.seo-block--inner {
    padding-bottom: 0;
}

.seo-block__content {
    height: 90px;
    overflow: hidden;
    position: relative;
}

.seo-block__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .seo-block__content p {
        font-size: 20px;
        line-height: 30px;
    }
}

.seo-block__content p:last-child {
    margin: 0;
}

.seo-block__content::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(242, 242, 239, 0) 0%, #fff 100%);
}

.seo-block__content.show {
    height: auto;
}

.seo-block__content.show::before {
    display: none;
}

.seo-block__content table {
    border: 1px solid #e5e5e5;
    padding: 12px 15px;
    text-align: left;
    margin-bottom: 30px;
}

.seo-block__content table td{
    padding: 10px;
    border: 1px solid #e5e5e5;
}

.seo-block__btn {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 0 auto;
}

.seo-block__btn svg {
    fill: none;
    width: 21px;
    height: 12px;
    stroke: var(--accent-color);
}

.seo-block__btn.active svg {
    transform: scale(-1);
}

.seo-block__content h3{
    font-size: 26px
}

.seo-block__content h4{
    font-size: 24px
}

.seo-block__content h5{
    font-size: 23px
}

.seo-block__content h6{
    font-size: 22px
}

/* end seo-block */

/* product */
.product {
    display: block;
    position: relative;
}

.product__link-wrap {
    display: block;
    text-decoration: none;
}

.product__list-marker {
    padding: 0;
    margin: 0;
    position: absolute;
    display: block;
    right: 11px;
    top: 15px;
    z-index: 9;
}

@media (min-width: 1024px) {
    .product__list-marker {
        right: 16px;
    }
}

.product__merker-item {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
    list-style-type: none;
    text-align: left;
    margin: 0 0 23px 0;
}

.product__merker-item:last-child {
    margin: 0;
}

.product__merker-item--new {
    color: #338600;
}

.product__merker-item--popular {
    color: #d95a00;
}

.product__merker-item--sale {
    color: #c00000;
}

.product__img {
    margin: 0 0 20px 0;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .product__img {
        height: 315px;
    }

    .swiper-slide .product__img {
        height: 400px;
    }
}

.product__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    transition: 0.2s ease;
}

.product__img--sertificate {
    height: 315px;
}

.product__img--sertificate img {
    object-fit: contain;
}

.product__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 28px;
    color: #000;
    margin: 0;
}

@media (min-width: 1024px) {
    .product__title {
        font-size: 23px;
    }
    .product__title--sertificate {
        font-size: 20px;
        height: 46px;
    }
}

.product__price {
    margin: 31px 0 0 0;
    display: flex;
    align-items: center;
    gap: 0 15px;
    position: relative;
}

@media (min-width: 1024px) {
    .product__price {
        gap: 0 28px;
        margin: 28px 0 0 0;
    }
    .product__price--sertificate {
        margin: 31px 0 0 0;
    }
}

.product__btn-mobile {
    margin: 0 0 0 auto;
    border: none;
    background: none;
    display: block;
}

@media (min-width: 1024px) {
    .product__btn-mobile {
        display: none;
    }
}

.product__btn-mobile svg {
    fill: var(--accent-color);
    width: 18px;
    height: 21px;
}

.product__btn {
    max-width: 100%;
    height: 62px;
    visibility: hidden;
    transition: 0.2s ease;
    opacity: 0;
    margin: 30px 0 0 0;
    display: none;
}

@media (min-width: 1024px) {
    .product__btn {
        font-size: 26px;
        display: block;
    }
}

.product__btn:hover {
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.price {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .price {
        font-size: 26px;
    }
}

.old-price {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #6a6a6a;
    text-decoration: line-through;
}

@media (min-width: 1024px) {
    .old-price {
        font-size: 20px;
    }
}

.product:hover .product__img img {
    transform: scale(1.1);
}

.product:hover .product__btn {
    visibility: visible;
    opacity: 1;
}

.product-slider__wrapper {
    position: relative;
}

.product-category-link {
    margin: 50px auto 0 auto;
    max-width: 262px;
}

.product-slider__wrapper .c-prev {
    display: none;
}

@media (min-width: 1024px) {
    .product-slider__wrapper .c-prev {
        display: block;
    }
}

.product-slider__wrapper .c-next {
    display: none;
}

@media (min-width: 1024px) {
    .product-slider__wrapper .c-next {
        display: block;
    }
}

.swiper-product {
    padding: 0 0 38px 0;
}

@media (min-width: 1024px) {
    .swiper-product {
        padding: 0;
    }
}

.product__pagination {
    bottom: 0 !important;
}

.product__pagination .swiper-pagination-bullet {
    background: var(--accent-color);
}

@media (min-width: 1024px) {
    .product-category-link {
        max-width: 430px;
        margin: 62px auto 0 auto;
        font-size: 26px;
        line-height: 1;
    }
}

/* end product */

/* info-page */
.info-page {
    padding: 60px 0;
}

@media (min-width: 1024px) {
    .info-page {
        padding: 124px 0 77px 0;
    }
}

.info-page--success {
    padding: 60px 0 68px 0;
}

@media (min-width: 1024px) {
    .info-page--success {
        padding: 94px 0 84px 0;
    }
}

.info-page__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    line-height: 1;
    color: #000;
    text-align: center;
    margin: 0;
}

@media (min-width: 1024px) {
    .info-page__title {
        font-size: 55px;
    }
}

.info-page__error-number {
    margin: 55px 0 0 0;
    text-align: center;
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 130px;
    line-height: 1;
    color: var(--accent-color);
}

@media (min-width: 1024px) {
    .info-page__error-number {
        font-weight: 800;
        font-size: 200px;
        margin: 95px 0 0 0;
    }
}

.btn-home {
    height: 50px;
    max-width: 100%;
    margin: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .btn-home {
        max-width: 512px;
        height: 68px;
        font-size: 25px;
        line-height: 1;
        margin: 47px auto 0 auto;
    }
}

.info-page__success-img {
    text-align: center;
    margin: 62px auto 0 auto;
    width: 137px;
    height: 137px;
}

@media (min-width: 1024px) {
    .info-page__success-img {
        margin: 67px auto 0 auto;
        width: 264px;
        height: 264px;
    }
}

.info-page__success-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.btn-home--success {
    margin: 68px 0 0 0;
}

@media (min-width: 1024px) {
    .btn-home--success {
        margin: 77px auto 0 auto;
    }
}

/* end info-page */

/* main */
.main {
}

.main--inner {
    padding: 40px 0 70px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .main--inner {
        padding: 90px 0 120px 0;
        min-height: 55vh;
    }
}

.main--about {
    padding: 0 0 70px 0;
}

@media (min-width: 1024px) {
    .main--about {
        padding: 0 0 130px 0;
    }
}

/* end main */

/* faq */
.faq__list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

@media (min-width: 1024px) {
    .faq__list {
        gap: 25px 0;
    }
}

.faq-item__head {
    display: flex;
    height: 58px;
    background: #f3f3f3;
    justify-content: space-between;
    padding: 0 18px 0 20px;
    align-items: center;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .faq-item__head {
        height: 85px;
        padding: 0 90px 0 85px;
    }
}

.faq-item__head.active {
    background: var(--accent-color);
}

.faq-item__head h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin: 0;
    padding: 0;
}

@media (min-width: 1024px) {
    .faq-item__head h2 {
        font-size: 25px;
    }
}

.faq-item__head.active h2 {
    color: #fff;
}

.faq-item__head svg {
    fill: none;
    stroke: var(--accent-color);
    width: 16px;
    height: 10px;
    transition: transform 0.2s ease;
}

.faq-item__head.active svg {
    transform: scale(-1);
    stroke: #fff;
}

.faq-item__body {
    padding: 24px 32px 18px 21px;
    display: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

@media (min-width: 1024px) {
    .faq-item__body {
        padding: 37px 115px 12px 85px;
    }
}

.faq-item__body.show {
    display: block;
}

.faq-item__body p {
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .faq-item__body p,
    .faq-item__body  {
        font-size: 22px;
        line-height: 44px;
    }
}

/* end faq */

/* blog-page */
.blog-page__row {
    gap: 50px 0;
}

@media (min-width: 1024px) {
    .blog-page__row {
        gap: 60px 0;
    }
}
/* end blog-page */

/* history */
.history {
    padding: 0 0 110px 0;
}

.history__wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 70px 0;
}

.history__line {
    width: 2px;
    height: 103%;
    position: absolute;
    left: 11px;
    z-index: 5;
    background: var(--accent-color);
    top: -61px;
}

@media (min-width: 1024px) {
    .history__line {
        left: 50%;
        transform: translateX(-50%);
        height: 110%;
        top: -100px;
    }
}

.history-item {
    padding: 0 0 0 54px;
    position: relative;
}

@media (min-width: 1024px) {
    .history-item {
        padding: 0;
    }
}

.history-item::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: var(--accent-color);
    position: absolute;
    left: 2px;
    top: 5px;
}

@media (min-width: 1024px) {
    .history-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.history-item__content h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    color: #000;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .history-item__content h2 {
        margin: 0 0 40px 0;
        font-size: 70px;
    }
}

.history-item__content p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;
}

.history-item__img {
    margin: 11px 0 0 0;
}

@media (min-width: 1024px) {
    .history-item__img {
        margin: 0;
        padding: 0 0 0 30px;
    }
}

.history-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

@media (min-width: 1024px) {
    .history-item:nth-child(odd) .row {
        flex-direction: row-reverse;
    }

    .history-item:nth-child(odd) .history-item__img {
        padding: 0 30px 0 0;
    }

    .history-item:nth-child(odd) .history-item__content {
        padding: 0 0 0 30px;
    }
}
/* end history */

/* category-page */
.category-page {
    padding: 0 0 68px 0;
}

@media (min-width: 1024px) {
    .category-page {
        padding: 0 0 135px 0;
    }
}

.category-page__row {
    gap: 25px 0;
}

@media (min-width: 1024px) {
    .category-page__row {
        gap: 58px 0;
    }
}

.category-inner-item {
    text-decoration: none;
    display: block;
}

.category-inner-item__img {
    margin: 0 0 10px 0;
    height: 187px;
}

@media (min-width: 1024px) {
    .category-inner-item__img {
        margin: 0 0 27px 0;
    }
}

.category-inner-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.category-inner-item__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    transition: 0.2s ease;
    text-align: center;
}

@media (min-width: 1024px) {
    .category-inner-item__title {
        font-size: 25px;
    }
}

.category-inner-item:hover .category-inner-item__title {
    color: var(--accent-color);
    text-decoration: underline;
}

/* end category-page */

/* product-block */
.product-block__row {
    gap: 40px 0;
}

@media (min-width: 1024px) {
    .product-block__row {
        gap: 60px 0;
    }
}
/* end product-block */

/* brand-page */
.brand-page {
}

.brand-page__row {
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .brand-page__row {
        gap: 40px 0;
    }
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.brand-item img {
    width: 180px;
    height: 57px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .brand-item img {
        width: 90%;
        height: 80px;
    }
}

.brand-item:hover {
    border-color: var(--accent-color);
}

.brand-item:hover img {
    filter: grayscale(0);
}

/* end brand-page */

/* brand-inner-page */
.brand-inner-page {
}

.brand-inner-page__head {
    margin: 0 0 48px 0;
}

@media (min-width: 1024px) {
    .brand-inner-page__head {
        margin: 0 0 70px 0;
    }
}

.brand-inner-page__head-img {
    width: 140px;
}

@media (min-width: 1024px) {
    .brand-inner-page__head-img {
        width: 253px;
    }
}

.brand-inner-page__head-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.brand-inner-page__head-content p {
    margin: 0 0 0 20px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 34px;
    color: #000;
}

@media (min-width: 1024px) {
    .brand-inner-page__head-content p {
        font-size: 20px;
        line-height: 38px;
    }
}

.brand-inner-page__head-content p:last-child {
    margin: 0;
}

.brand-inner-page__product-row {
    gap: 40px 0;
}

@media (min-width: 1024px) {
    .brand-inner-page__product-row {
        gap: 50px 0;
    }
}
/* end brand-inner-page */

/* pagination-numbers */
.pagination-numbers {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    margin: 60px 0 0 0;
}

@media (min-width: 1024px) {
    .pagination-numbers {
        margin: 34px 0 0 0;
    }
}

.pagination-numbers--catalog {
    margin: 52px 0 0 0;
}

@media (min-width: 1024px) {
    .pagination-numbers--catalog {
        margin: 70px 0 0 0;
    }
}

.pagination-numbers li {
    list-style-type: none;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: #6a6a6a;
}

.pagination-numbers li a {
    position: relative;
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: #6a6a6a;
    text-decoration: none;
    transition: 0.2s ease;
}

.pagination-numbers li.active a,
.pagination-numbers li:hover a {
    font-weight: 700;
    font-size: 27px;
    line-height: 1;
    color: var(--accent-color);
}

.pagination-numbers li.active a::before,
.pagination-numbers li:hover a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 20px;
    bottom: -5px;
    background: var(--accent-color);
}
/* end pagination-numbers */

/* catalogs-inner */
.catalogs-inner {
}

.catalogs-inner__row {
    gap: 25px 0;
}

@media (min-width: 1024px) {
    .catalogs-inner__row {
        gap: 38px 0;
    }
}

.catalog-inner-item {
    position: relative;
    text-decoration: none;
    display: block;
}

.catalog-inner-item::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
    z-index: 8;
}

.catalog-inner-item__title {
    position: absolute;
    bottom: 15px;
    left: 13px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #fff; 
    transition:  0.2s ease;
    z-index: 9;
    display: block;
}

@media (min-width: 1024px) {
    .catalog-inner-item__title {
        left: 18px;
    }
}

.catalog-inner-item__open {
    position: absolute;
    bottom: 15px;
    right: 13px;
    display: flex;
    align-items: center;
    gap: 0 7px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    z-index: 9;
}

@media (min-width: 1024px) {
    .catalog-inner-item__open {
        right: 18px;
    }
}

.catalog-inner-item__open svg {
    width: 10px;
    height: 9px;
    fill: none;
    stroke: #fff;
}
/*
.catalog-inner-item:hover .catalog-inner-item__open{
    color: var(--accent-color)
}

.catalog-inner-item:hover .catalog-inner-item__open svg{
    stroke: var(--accent-color)
}
*/

.catalog-inner-item__img {
    height: 256px;
    overflow: hidden;
}

.catalog-inner-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-inner-item:hover::before {
    visibility: visible;
    opacity: 0.6;
}

.catalog-inner-item:hover .catalog-inner-item__title {
    top: 50%;
    bottom: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}
/* end catalogs-inner */

/* inner-page */
.inner-page__content p {
    margin: 0 0 29px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
}

@media (min-width: 1024px) {
    .inner-page__content p {
        font-size: 22px;
        line-height: 44px;
        margin: 0 0 50px 0;
    }
}

.inner-page__content p:last-child {
    margin: 0;
}

.img-right-inner {
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .img-right-inner {
        margin: 0 0 0 40px;
        float: right;
        width: 600px;
    }
}

.img-right-inner img {
    width: 100%;
    display: block;
}

@media (min-width: 1024px) {
    .img-right-inner img {
        display: inline-block;
        width: auto;
    }
}

/* end inner-page */

/* orders-info-page */
.orders-info-page__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
}

@media (min-width: 1024px) {
    .orders-info-page__content p {
        font-size: 22px;
        line-height: 44px;
    }
}

.orders-info-page__content p:last-child {
    margin: 0;
}
/* end orders-info-page */

/* to-order */
.to-order {
    margin: 34px 0 0 0;
    position: relative;
    overflow: hidden;
}

.to-order__form .row {
    gap: 12px 0;
}

@media (min-width: 1024px) {
    .to-order {
        margin: 60px 0 0 0;
        padding: 55px 0 60px 0;
        background: #f3f3f3;
    }
}

.to-order__title {
    margin: 0 0 30px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    line-height: 1;
    text-align: center;
    color: #000;
}

@media (min-width: 1024px) {
    .to-order__title {
        font-size: 35px;
        text-align: left;
    }
}

.to-order__form {
    background: #f3f3f3;
    margin: 0 0 60px 0;
    padding: 37px 0 31px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .to-order__form {
        background: transparent;
    }
}

@media (min-width: 1024px) {
    .to-order__form {
        margin: 0;
        padding: 0 0 0 0;
    }
}

.to-order__form::before {
    content: "";
    left: -10%;
    background: #f3f3f3;
    width: 120%;
    height: 100%;
    top: 0;
    display: block;
    position: absolute;
}

@media (min-width: 1024px) {
    .to-order__form::before {
        display: none;
    }
}

.to-order__link-chat {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}

@media (min-width: 1024px) {
    .to-order__link-chat {
        gap: 30px 0;
    }
}

.to-order__link-item {
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    max-width: 100%;
    gap: 0 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s ease;
    text-transform: capitalize;
}

@media (min-width: 1024px) {
    .to-order__link-item {
        height: 68px;
        font-size: 22px;
        gap: 0 20px;
    }
}

.to-order__link-item:hover {
    background: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.to-order__link-item svg {
    width: 25px;
    height: 25px;
    fill: #fff;
    transiton: 0.2s ease;
}

.to-order__link-item:hover svg {
    fill: var(--accent-color);
}

.custom-input-file {
    background: #fff;
    border: 1px dashed #bfbfbf;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 13px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #6a6a6a;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .custom-input-file {
        background: rgba(255, 255, 255, 0.5);
        height: 68px;
    }
}

.custom-input-file__icon {
    width: 28px;
    height: 28px;
    fill: #6a6a6a;
}

.control-form-file__type {
    margin: 11px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #6a6a6a;
}

@media (min-width: 1024px) {
    .control-form-file__type {
        margin: 17px 0 0 0;
        font-size: 16px;
    }
}

.btn-file-clear{
    border: none;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: #fff;
    font-size: 17px;
    line-height: 1;
    margin-left: 10px;
    border-radius: 50%;
}

.to-order__form-row {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    z-index: 3;
    position: relative;
}

@media (min-width: 1024px) {
    .to-order__form-row {
        gap: 30px 0;
    }
}

.control-form__input {
    background: #fff;
    height: 58px;
    padding: 0 47px;
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    border: 1px solid transparent;
    width: 100%;
}

.control-form__input.input-error,
.input-error,
.control-popup__input.input-error {
    border-color: red;
}

@media (min-width: 1024px) {
    .control-form__input {
        height: 68px;
        font-size: 22px;
        line-height: 1;
    }
}

.control-form__textarea {
    resize: none;
    padding: 16px 47px 0 47px;
    width: 100%;
    border: none;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #000;
    height: 58px;
}

.control-form__input:placeholder {
    color: var(--black);
}

@media (min-width: 1024px) {
    .control-form__textarea {
        height: 166px;
    }
}

.btn-form {
    margin: 40px 0 0 0;
    z-index: 3;
    position: relative;
    height: 50px;
}

@media (min-width: 1024px) {
    .btn-form {
        margin: 50px auto 0 auto;
        max-width: 430px;
        height: 68px;
        font-size: 22px;
        line-height: 1;
    }
}

.control-form .nice-select.custom-select-item {
    background: #fff;
    height: 58px;
}

@media (min-width: 1024px) {
    .control-form .nice-select.custom-select-item {
        height: 68px;
    }
}

.control-form .nice-select.custom-select-item .current {
    font-size: 18px;
    line-height: 1;
    padding: 0 0 0 47px;
}

@media (min-width: 1024px) {
    .control-form .nice-select.custom-select-item .current {
        font-size: 22px;
    }
}

.file_error .error{
    font-size: 12px;
    color: red; 
} 
/* end to-order */

/* vacancies-page */
.vacancies-page {
    overflow: hidden;
}

.vacancies-page__list {
    display: flex;
    flex-direction: column;
    gap: 9px 0;
}

@media (min-width: 1024px) {
    .vacancies-page__list {
        gap: 30px 0;
    }
}

.vacancies-item__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    padding: 0 18px 0 40px;
    background: #f3f3f3;
    transition: 0.2s ease;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .vacancies-item__head {
        height: 85px;
        padding: 0 141px 0 57px;
    }
}

.vacancies-item__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin: 0;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .vacancies-item__title {
        font-size: 25px;
    }
}

.vacancies-item__icon {
    width: 16px;
    height: 10px;
    fill: none;
    stroke: var(--accent-color);
    transition: 0.2s ease;
}

.vacancies-item__body-content {
    padding: 23px 26px 0 21px;
}

@media (min-width: 1024px) {
    .vacancies-item__body-content {
        padding: 34px 10px 0 0;
    }
}

.vacancies-item__body-content p,
.vacancies-item__body-content li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    color: #000;
    margin: 0;
}

@media (min-width: 1024px) {
    .vacancies-item__body-content p,
    .vacancies-item__body-content li {
        font-size: 19px;
        line-height: 42px;
    }
}

.vacancies-item__body-content ul {
    padding: 0 0 0 30px;
    margin: 0;
}

.vacancies-item__body {
    display: none;
}

.vacancies-item.active .vacancies-item__body {
    display: block;
}

.vacancies-item.active .vacancies-item__head,
.vacancies-item__head:hover {
    background: var(--accent-color);
}

.vacancies-item.active .vacancies-item__title,
.vacancies-item__head:hover .vacancies-item__title {
    color: #fff;
}

.vacancies-item.active .vacancies-item__icon,
.vacancies-item__head:hover .vacancies-item__icon {
    stroke: #fff;
    transform: scale(-1);
}

.vacancies-callback {
    background: #f3f3f3;
    padding: 38px 0 43px 0;
    margin: 50px 0 0 0;
    position: relative;
}

@media (min-width: 1024px) {
    .vacancies-callback {
        padding: 43px 85px 59px 63px;
        margin: 0;
    }
}

.vacancies-callback::before {
    display: block;
    content: "";
    background: #f3f3f3;
    left: -10%;
    width: 120%;
    height: 100%;
    position: absolute;
    top: 0;
}

@media (min-width: 1024px) {
    .vacancies-callback::before {
        display: none;
    }
}

.vacancies-callback__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    text-align: center;
    color: #000;
    line-height: 1;
    margin: 0 0 39px 0;
    position: relative;
    z-index: 3;
}

@media (min-width: 1024px) {
    .vacancies-callback__title {
        text-align: left;
    }
}

.vacancies-callback__form {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    position: relative;
    z-index: 3;
}

@media (min-width: 1024px) {
    .vacancies-callback__form {
        gap: 16px 0;
    }
}

.btn-vacancies {
    margin: 19px 0 0 0;
}

@media (min-width: 1024px) {
    .btn-vacancies {
        margin: 26px 0 0 0;
        max-width: 100%;
    }
}

/* end vacancies-page */

/* contact */
.contact-map {
    padding: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .contact-map {
        padding: 0 0 100px 0;
    }
}

.contact-map__block {
    height: 279px;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .contact-map__block {
        height: 450px;
    }
}

.filter-address__body {
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .filter-address__body {
        margin: 60px 0 0 0;
    }
}

.filter-address__body-row {
    gap: 50px 0;
}

@media (min-width: 1024px) {
    .filter-address__body-row {
        gap: 80px 0;
    }
}

.filter-address__body-item-img {
    margin: 0 0 20px 0;
    height: 265px;
}

@media (min-width: 1024px) {
    .filter-address__body-item-img {
        height: 274px;
    }
}

.filter-address__body-item-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.filter-address__body-item-info {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .filter-address__body-item-info {
    }
}

.filter-address__body-item-info li {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .filter-address__body-item-info li {
        justify-content: center;
        gap: 0 15px;
    }
}

.filter-address__body-item-info li strong {
    min-width: 90px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #6a6a6a;
}

@media (min-width: 1024px) {
    .filter-address__body-item-info li strong {
        font-size: 23px;
    }
}

.filter-address__body-item-info li div,
.filter-address__body-item-info li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    display: block;
}

.filter-address__body-item-info li a{
    display: inline-block
}

.contact-details {
    padding: 70px 0 0 0;
}

@media (min-width: 1024px) {
    .contact-details {
        padding: 130px 0 0 0;
    }
}

.contact-details__content h3 {
    margin: 0 0 30px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .contact-details__content h3 {
        font-size: 30px;
    }
}

.contact-details__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
    margin: 0;
}

@media (min-width: 1024px) {
    .contact-details__content p {
        font-size: 22px;
        line-height: 44px;
    }
}

.filter-address__head {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .filter-address__head {
        max-width: 430px;
    }
}

.filter-address {
    display: flex;
    flex-direction: column;
}
/* end contact */

/* custom-select-item */
.custom-select-item {
    display: none;
}
.nice-select.custom-select-item {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    background: #f3f3f3;
    height: 58px;
    border-radius: 0;
}

.nice-select.custom-select-item::after {
    right: 52px;
    width: 13px;
    height: 13px;
    border-color: var(--accent-color);
    margin: -8px 0 0 0;
}

.nice-select.custom-select-item .current {
    width: 100%;
    display: block;
    padding: 0 0 0 30px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.nice-select.open .nice-select-dropdown {
    width: 100%;
    border: none;
    background: #f3f3f3;
    border-radius: 0;
    box-shadow: none;
    padding: 0 0 33px 0;
    z-index: 99;
}

.nice-select .option {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    padding: 25px 49px 0 49px;
    color: #000;
}

@media (min-width: 1024px) {
    .nice-select .option {
        font-size: 20px;
    }
}

.nice-select .option.selected {
    color: var(--accent-color);
    font-weight: 400;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background: none;
    color: var(--accent-color);
    font-weight: 400;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/* end custom-select-item */

/* article-page */
.article-page {
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .article-page {
        padding: 0 0 130px 0;
    }
}

.article-page__slider {
    position: relative;
}

.article-page__slider {
    padding: 40px 0 63px 0;
}

@media (min-width: 1024px) {
    .article-page__slider {
        padding: 0;
        margin: 70px 0 110px 0;
    }
}

.article-swiper {
    padding: 0 0 33px 0;
}

@media (min-width: 1024px) {
    .article-swiper {
        padding: 0;
    }
}

.article-swiper__pagination {
    bottom: 0 !important;
}

@media (min-width: 1024px) {
    .article-swiper__pagination {
        display: none;
    }
}

.article-swiper__pagination .swiper-pagination-bullet {
    background: var(--accent-color);
}

.article-swiper__slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* end article-page */

/* size-guide-page */
.title-inner--size {
    margin: 0 0 40px 0;
}

@media (min-width: 1024px) {
    .title-inner--size {
        margin: 0 0 34px 0;
    }
}

.size-guide-page {
}

.size-guide-page__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 0 56px 0;
    flex-wrap: wrap;
}

.size-guide-page__link {
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    height: 30px;
    width: 100%;
    max-width: 124px;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .size-guide-page__link {
        height: 48px;
        max-width: 200px;
        font-size: 20px;
    }
}

.size-guide-page__link:hover,
.size-guide-page__link:focus {
    background: var(--accent-color);
    color: #fff;
}

.size-guide-page__list {
    display: flex;
    flex-direction: column;
    gap: 80px 0;
}

@media (min-width: 1024px) {
    .size-guide-page__list {
        gap: 163px 0;
    }
}

.size-guide-page__item-video {
    padding: 50px 0 0 0;
}

@media (min-width: 1024px) {
    .size-guide-page__item-video {
        padding: 120px 0 0 0;
    }
}

.size-guide-page__item-video iframe {
    height: 310px;
}

@media (min-width: 1024px) {
    .size-guide-page__item-video iframe {
        height: 536px;
    }
}

.size-guide-page__item-title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 35px;
    line-height: 65px;
    color: #000;
    margin: 0 0 15px 0;
}

@media (min-width: 1024px) {
    .size-guide-page__item-title {
        margin: 0 0 37px 0;
        font-size: 40px;
        line-height: 1;
    }
}

.size-guide-page__item-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .size-guide-page__item-content p {
        font-size: 22px;
        line-height: 44px;
        margin: 0 0 90px 0;
    }
}

.size-guide-page__item-content p:last-child {
    margin: 0;
}
/* end size-guide-page */

/* about-block */
.about-block {
    overflow: hidden;
    padding: 0 0 60px 0;
}

@media (min-width: 1024px) {
    .about-block {
        padding: 0 0 90px 0;
    }
}

.about-block__img {
}

.about-block__img {
    margin: 0 0 65px 0;
}

@media (min-width: 1024px) {
    .about-block__img {
        margin: 0 0 0 30px;
        float: right;
        width: 600px;
    }
}

.about-block__img img {
    width: 100%;
    display: block;
}

@media (min-width: 1024px) {
    .about-block__img img {
        display: block;
        width: auto;
        max-width: 700px;
    }
}
@media (min-width: 1500px) {
    .about-block__img img {
        display: block;
        width: auto;
        max-width: 800px;
    }
}

@media (min-width: 1920px) {
    .about-block__img img {
        display: inline-block;
        width: auto;
        max-width: fit-content;
    }
}

.about-block__content h1 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 35px;
    line-height: 1;
    color: #000;
    text-align: center;
    margin: 0 0 30px 0;
}

@media (min-width: 1024px) {
    .about-block__content h1 {
        font-size: 55px;
        line-height: 1;
        margin: 0 0 54px 0;
        text-align: left;
        padding: 160px 0 0 0;
    }
}

.about-block__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: #000;
    margin: 0 0 20px 0;
}

@media (min-width: 1024px) {
    .about-block__content p {
        font-size: 22px;
        line-height: 44px;
    }
}

.about-block__content p:last-child {
    margin: 0;
}
/* end about-block */

/* statistic-block */
.statistic-block {
    padding: 34px 0 38px 0;
    background: #f3f3f3;
}

@media (min-width: 1024px) {
    .statistic-block {
        padding: 49px 0 48px 0;
    }
}

.statistic-block__row {
    gap: 43px 0;
}

@media (min-width: 1024px) {
    .statistic-block__row {
        gap: 0;
    }
}

.statistic-item {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .statistic-item {
        gap: 35px 0;
    }
}

.statistic-item__number {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    color: #000;
    text-align: center;
}

@media (min-width: 1024px) {
    .statistic-item__number {
        font-size: 70px;
    }
}

.statistic-item__desc {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #000;
    text-align: center;
}

@media (min-width: 1024px) {
    .statistic-item__desc {
        font-size: 22px;
    }
}

/* end statistic-block */

/* gallery-block */
.gallery-block {
    padding: 70px 0 0 0;
}

@media (min-width: 1024px) {
    .gallery-block {
        padding: 130px 0 0 0;
    }
}

.gallery-block__btn {
    margin: 45px auto 0 auto;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    background: #fff;
    width: 100%;
    max-width: 288px;
    height: 48px;
    display: none;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .gallery-block__btn {
        display: flex;
    }
}

.gallery-block__btn svg {
    fill: none;
    stroke: var(--accent-color);
    width: 15px;
    height: 9px;
    stroke-width: 2px;
    transition: 0.2s ease;
}

.gallery-block__btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.gallery-block__btn:hover svg {
    stroke: #fff;
}

.gallery-block__slider {
    display: block;
}

@media (min-width: 1024px) {
    .gallery-block__slider {
        display: none;
    }
}

.gallery-block__wrapper {
    display: none;
}

@media (min-width: 1024px) {
    .gallery-block__wrapper {
        display: block;
    }
}

.gallery-block__row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    grid-auto-rows: auto;
    gap: 18px 30px;
}

.gallery-block__row img,
.gallery-block__row--reverse img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-block__row a:nth-child(3n + 1) {
    grid-row: span 2;
    grid-column: 1;
}
.gallery-block__row a:nth-child(3n + 2),
.gallery-block__row a:nth-child(3n + 3) {
    grid-column: 2;
}

.gallery-block__row--reverse {
    grid-template-columns: 1.2fr 0.8fr;
    display: grid;
    grid-auto-rows: auto;
    gap: 18px 30px;
}

.gallery-block__row--reverse a:nth-child(3n + 1) {
    grid-column: 2;
    grid-row: span 2;
}

.gallery-block__row--reverse a:nth-child(3n + 2) {
    grid-column: 1;
    grid-row: 1;
}

.gallery-item {
    display: none;
}

.gallery-item.show {
    display: grid;
}

.gallery-block__row--reverse a:nth-child(3n + 3) {
    grid-column: 1;
    grid-row: 2;
}

.gallery-swiper {
    padding: 0 0 33px 0;
}

.gallery-swiper__slide img {
    object-fit: cover;
    width: 100%;
    height: 427px;
}

.gallery-swiper__pagination .swiper-pagination-bullet {
    background: var(--accent-color);
}

.gallery-block-list {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
}

/* end gallery-block */

/* team-block */
.team-block {
    padding: 80px 0 0 0;
}

@media (min-width: 1024px) {
    .team-block {
        padding: 130px 0 0 0;
    }
}

.team-block__wrapper {
    position: relative;
}

.team-item {
}

.team-item__img {
}

.team-item__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.team-item__name {
    margin: 13px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .team-item__name {
        font-size: 25px;
        margin: 22px 0 0 0;
    }
}

.team-item__info {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
    margin: 15px 0 0 0;
}

@media (min-width: 1024px) {
    .team-item__info {
        font-size: 18px;
        margin: 21px 0 0 0;
    }
}

.team-item__experience {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: var(--accent-color);
    margin: 9px 0 0 0;
}

@media (min-width: 1024px) {
    .team-item__experience {
        font-size: 18px;
        margin: 11px 0 0 0;
    }
}

.team-swiper__pagination {
    display: flex;
}

@media (min-width: 1024px) {
    .team-swiper__pagination {
        display: none;
    }
}

@media (max-width: 1024px) {
    .team-swiper-prev {
        left: -8px;
    }

    .team-swiper-next {
        right: -8px;
    }
}
/* end team-block */

/* sertificate-block */
.sertificate__row {
    gap: 40px 0;
}
/* end sertificate-block */

/* filter-block-head */
.filter-block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

@media (min-width: 1200px) {
    .filter-block-head {
        justify-content: end;
        margin: 0 0 52px 0;
    }
}

.btn-filter-mobile {
    display: flex;
    align-items: center;
    gap: 0 10px;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1200px) {
    .btn-filter-mobile {
        display: none;
    }
}

.btn-filter-mobile svg {
    width: 15px;
    height: 15px;
    fill: #000;
}

.nice-select.filter-select-sort {
    border: none;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    width: 200px;
    padding: 0 0 0 17px;
    height: auto;
}

@media (min-width: 1024px) {
    .nice-select.filter-select-sort {
        width: 230px;
    }
}

.nice-select.filter-select-sort .current {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .nice-select.filter-select-sort .current {
        font-size: 20px;
        line-height: 1;
    }
}

.nice-select.filter-select-sort .option {
    padding: 25px 17px 0 17px;
}

.nice-select.filter-select-sort .option:first-child {
    padding-top: 0;
}

.nice-select.filter-select-sort .list {
    height: 100%;
    overflow: hidden;
    margin: 0;
}

.nice-select.filter-select-sort.open .nice-select-dropdown {
    padding: 36px 0 26px 0;
}

.nice-select.filter-select-sort::after {
    right: 5px;
    width: 9px;
    height: 9px;
    border-color: var(--accent-color);
    margin: -5px 0 0 0;
}

@media (min-width: 1024px) {
    .nice-select.filter-select-sort::after {
        width: 13px;
        height: 13px;
    }
}
/* end filter-block-head */

/* category-filter */
.category-filter__head {
    margin: 0 0 30px 0;
    overflow-x: auto;
}

@media (min-width: 1024px) {
    .category-filter__head {
        margin: 0 0 43px 0;
        overflow: hidden;
    }
}

.category-filter__head-responsive {
    display: flex;
    align-items: center;
    gap: 0 14px;
}

@media (min-width: 1024px) {
    .category-filter__head-responsive {
        flex-wrap: wrap;
        gap: 20px 24px;
        justify-content: center;
    }

    .category-filter__head-responsive--left {
        justify-content: left;
    }
}

.category-item-filter-btn {
    flex: 1 0 124px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .category-item-filter-btn {
        height: 48px;
        flex: 1 0 200px;
        font-size: 20px;
        max-width: 200px;
    }
}

.category-item-filter-btn:hover,
.category-item-filter-btn.active {
    background: var(--accent-color);
    color: #fff;
}

.category-filter__row {
    gap: 40px 0;
}

@media (min-width: 1024px) {
    .category-filter__row {
        gap: 44px 0;
    }
}

.filter-block-mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 64px 0;
    position: relative;
}

@media (min-width: 1200px) {
    .filter-block-mobile-head {
        display: none;
    }
}

.filter-block-mobile-head h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #000;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.filters-block__item {
    padding: 0 0 30px 0;
    border-bottom: 1px solid #dbdbdb;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .filters-block__item {
        margin: 0 0 55px 0;
        padding: 0 0 35px 0;
    }
}

.filters-block__item:last-child {
    margin: 0;
}

.filters-block__item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 40px 0;
    cursor: pointer;
}

.filters-block__item-head span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .filters-block__item-head span {
        font-size: 25px;
        padding: 0 0 0 10px;
    }
}

.filters-block__item-head svg {
    fill: none;
    width: 14px;
    height: 8px;
    stroke: #000;
    stroke-width: 2px;
    transition: 0.2s ease;
    transform: scale(-1);
}

.filters-block__item-head.close svg {
    transform: scale(1);
}

.filters-block__item-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.filters-block__item-price-from {
    width: 134px;
    height: 37px;
    display: flex !important;
    align-items: center;
    border: 1px solid #9b9b9b;
    background: #fff;
    gap: 0 10px;
    padding: 0 10px;
}

.filters-block__item-price-from span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #9b9b9b;
    line-height: 1;
    white-space: nowrap;
}

.filters-block__item-price-from input {
    border: none;
    width: 100%;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #292929;
}

.filters-block__item-price-to {
    width: 134px;
    height: 37px;
    display: flex;
    align-items: center;
    border: 1px solid #9b9b9b;
    background: #fff;
    gap: 0 20px;
    padding: 0 30px 0 20px;
}

.filters-block__item-price-to span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #9b9b9b;
    line-height: 1;
}

.filters-block__item-price-to input {
    border: none;
    width: 100%;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
}

.filters-block__item-price-to input::placeholder,
.filters-block__item-price-from input::placeholder {
    color: #9b9b9b;
}

/*
------------------------------------------*/
.filters-block__item .ui-state-default,
.filters-block__item .ui-widget-content .ui-state-default {
    width: 18px;
    height: 18px;
    border: none;
    background: var(--accent-color);
    border-radius: 50%;
    top: -8px;
    cursor: pointer
}

.filters-block__item .ui-widget.ui-widget-content {
    height: 3px;
    border: none !important;
    background:  #9B9B9B;
}

.filters-block__item .ui-slider .ui-slider-range {
    height: 3px !important;
    background: var(--accent-color)
}

/*
------------------------------------------*/
.filters-block__item-checkbox-row {
    display: flex;
    align-items: center;
    gap: 15px 50px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.subcategory-filter-categories {
    display: none;
}

.control-checkbox {
    cursor: pointer;
}

.control-checkbox.disabled{
    opacity: .3;
    cursor: default;
}

.control-checkbox__element {
    display: flex;
    align-items: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #000;
    padding: 0 0 0 34px;
    position: relative;
}

.control-checkbox__element::before {
    content: "";
    border: 1px solid #9b9b9b;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
}

.control-checkbox__element::after {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-color);
    left: 4px;
    top: 4px;
    opacity: 0;
    transition: 0.2s ease;
    visibility: hidden;
}

.control-checkbox__input:checked ~ .control-checkbox__element::after {
    visibility: visible;
    opacity: 1;
}

.control-checkbox__input:checked ~ .control-checkbox__element::before {
    border-color: var(--accent-color);
}

.filters-block__item-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 15px 0;
}

.filters-block__item-switch-outer{
    border: none;
    margin: 0;
}

.filters-block__item-switch-list {
    display: flex;
    flex-direction: column;
    gap: 33px 0;
}

.filters-block__item-switch {
    cursor: pointer;
    position: relative;
}

.filters-block__item-switch span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 25px;
    color: #000;
    position: relative;
    display: block;
}

.filters-block__item-switch span::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 25px;
    border-radius: 40px;
    background: #9b9b9b;
}

.filters-block__item-switch span::after {
    content: "";
    position: absolute;
    right: 28px;
    top: 1px;
    width: 23px;
    height: 23px;
    border-radius: 100%;
    background: #fff;
    transition: 0.2s ease;
}

.control-checkbox__input-switch:checked + span::after {
    right: 1px;
}

.control-checkbox__input-switch:checked + span::before {
    background: var(--accent-color);
}

.filters-block-mobile {
    display: none;
    position: fixed;
    top: 98px;
    background: #fff;
    z-index: 990;
    width: 100%;
    left: 0;
    padding-top: 40px;
    padding-bottom: 35px;
    background: #f3f3f3;
    overflow-y: auto;
    height: calc(100vh - 98px);
}

@media (min-width: 1024px) {
    .filters-block-mobile {
        top: 174px;
        height: calc(100vh - 174px);
    }
}

@media (min-width: 1200px) {
    .filters-block-mobile {
        display: block;
        position: unset;
        padding-top: 0;
        padding-bottom: 0;
        background: none;
        height: auto;
        width: 25%;
    }
}

.filters-block-mobile.open {
    display: block;
}

.btn-show-product {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    background: var(--accent-color);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    height: 50px;
    color: #fff;
    width: 100%;
}

@media (min-width: 1024px) {
    .btn-show-product {
        display: none;
    }
}

.btn-reset-modile {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--accent-color);
}

.btn-close-filter {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.btn-close-filter svg {
    stroke: #000;
    width: 16px;
    height: 16px;
}

.c-hide {
    display: none;
}

.filter-block-head__count {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #000;
    line-height: 1;
}

@media (min-width: 1024px) {
    .filter-block-head__count {
        font-size: 20px;
    }
}
/* end category-filter */

/* basket */
.basket {
}

.basket__top {
}

.basket__top-code-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
}

.basket__top-code-item {
    background: #f3f3f3;
    padding: 25px 27px 25px 27px;
}

@media (min-width: 1024px) {
    .basket__top-code-item {
        padding: 35px 40px 47px 40px;
    }
}

.basket__top-code-item h3 {
    text-align: center;
    margin: 0 0 25px 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 25px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .basket__top-code-item h3 {
        text-align: left;
        margin: 0 0 28px 0;
    }
}

.basket__top-code-item-form {
    display: flex;
    flex-direction: column;
    gap: 37px 0;
    position: relative;
}

@media (min-width: 1024px) {
    .basket__top-code-item-form {
        flex-direction: row;
    }
}

.basket__top-code-item-form--bonus {
    margin: 33px 0 0 0;
}

@media (min-width: 1024px) {
    .basket__top-code-item-form--bonus {
        margin: 0;
    }
}

.basket__top-code-item-form-input {
    border: none;
    background: #fff;
    border-radius: 0px;
    height: 42px;
    display: flex;
    align-items: center;
    padding: 0 23px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #000;
    width: 100%;
}

@media (min-width: 1024px) {
    .basket__top-code-item-form-input {
        width: 100%;
        max-width: 275px;
        height: 40px;
    }
}

.basket__top-code-item-form-input::placeholder {
    color: #9b9b9b;
}

.basket__top-code-item-form-info {
    font-size: 14px;
    line-height: 1;
    margin: 12px 0 0 0;
    width: 100%;
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
}

.basket__top-code-item-form-info.error {
    color: #c70000;
}

.basket__top-code-item-form-info.success {
    color: #2e7702;
}

.basket__top-code-item-form-bounus-count {
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 18px 0;
}

@media (min-width: 1024px) {
    .basket__top-code-item-form-bounus-count {
        margin: 23px 0 28px 0;
    }
}

.basket__top-code-item-form-bounus-count li {
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #6a6a6a;
}

.basket__top-code-item-form-bounus-count li strong {
    font-weight: 400;
    color: #000;
}

.basket__top-code-item-btn {
    height: 50px;
    background: var(--accent-color);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    width: 100%;
    border: 1px solid var(--accent-color);
}

@media (min-width: 1024px) {
    .basket__top-code-item-btn {
        max-width: 188px;
        height: 40px;
    }
}

.basket__top-code-item-btn-save {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    max-width: 100%;
    margin: 12px 0 0 0;
}

@media (min-width: 1024px) {
    .basket__top-code-item-btn-save {
        margin: 0;
        height: 40px;
        font-size: 18px;
    }
}

.basket__top-code-wrapper {
    margin: 40px 0 0 0;
}

@media (min-width: 1024px) {
    .basket__top-code-wrapper {
        gap: 35px 0;
        margin: 0;
    }
}

.basket__top-code-item-small-text {
    color: #6a6a6a;
    font-size: 14px;
    line-height: 1;
    margin: 18px 0 0 0;
    font-family: var(--font-family);
    font-weight: 400;
}

.basket__center {
    padding: 0;
    margin: 64px 0 90px 0;
}

@media (min-width: 1024px) {
    .basket__center {
        padding: 29px 0 33px 0;
        background: #f3f3f3;
        margin: 38px 0 92px 0;
    }
}

.basket__center-table {
    text-align: right;
    margin: 0 0 0 auto;
}

.basket__center-table tr td {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #6a6a6a;
    padding: 0 0 15px 0;
}

.basket__center-table tr:last-child td {
    padding: 0;
}

.basket__center-table tr td strong {
    font-weight: 400;
    color: #000;
    padding: 0 0 0 5px;
}

.basket__center-total {
    clear: both;
    text-align: right;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    color: #000;
    margin: 20px 0 0 0;
}

.basket__center-total span {
    color: var(--accent-color);
}

.basket__bottom {
}

.basket__bottom-btns {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 35px 0;
    margin: 37px 0 0 0;
}

@media (min-width: 1024px) {
    .basket__bottom-btns {
        gap: 38px 0;
        flex-direction: column;
        margin: 80px 0 0 0;
    }
}

.basket__bottom-policy {
    display: flex;
    align-items: center;
    justify-content: center;
}

.basket__btn {
    height: 50px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #fff;
}

@media (min-width: 1024px) {
    .basket__btn {
        height: 62px;
        max-width: 430px;
        font-size: 25px;
        line-height: 1;
    }
}

.c-count {
    display: flex;
    align-items: center;
    gap: 0;
    height: 37px;
    width: 131px;
}

.c-count__minus {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 40px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 35px;
    line-height: 1;
    color: #000;
    background: #f4f4f4;
    border: none;
    padding: 0;
    margin: 0;
}

.c-count__input {
    border: none;
    width: 51px;
    height: 100%;
    background: var(--light-orange);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    border: none;
    display: block;
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    text-align: center;
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .c-count__input {
        font-size: 16px;
        line-height: 1;
    }
}

.c-count__plus {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 37px;
    width: 40px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 35px;
    line-height: 1;
    color: #000;
    background: #f4f4f4;
    border: none;
    padding: 0;
    margin: 0;
}

.basket__item-info {
    position: relative;
    width: 100%;
}

.btn-deleted {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}

.basket__row {
    gap: 25px 0;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .basket__row {
        gap: 35px 0;
    }
}

.basket__item {
    display: flex;
    align-items: flex-start;
    gap: 0 15px;
}

@media (min-width: 1024px) {
    .basket__item {
        display: flex;
        gap: 0 37px;
        padding: 0 0 35px 0;
        border-bottom: 1px solid #dbdbdb;
    }
}

.basket__item:last-child {
    border-bottom: none;
    padding: 0;
}

.basket__item-img {
    width: 124px;
    max-width: 100%;
} 

.basket__item-img img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.basket__item-info {
    width: calc(100% - (124px + 15px));
}
/*
@media (min-width: 1024px) {
    .basket__item-info {
        width: auto;
    }
}
*/

.basket__item-info-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: #000;
    max-width: 210px;
    width: 100%;
    margin: 0;
}

@media (min-width: 1024px) {
    .basket__item-info-title {
        font-size: 19px;
        max-width: 384px;
        line-height: 30px;
    }
}

.basket__item-info-title a {
    color: inherit;
    text-decoration: none;
}

.basket__item-info-bottom-size {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #3a3a3a;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-size {
        font-size: 17px;
    }
}

.basket__item-info-bottom {
    display: flex;
    flex-direction: column;
    margin: 15px 0 0 0;
    gap: 20px 0;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom {
        margin: 42px 0 0 0;
        gap: 0;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
    }
}

.basket__item-info-bottom-price {
    display: flex;
    align-items: center;
    gap: 0 5px;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-price {
        align-items: end;
    }
}

.basket__item-info-bottom-price span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #6a6a6a;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-price span {
        font-size: 18px;
    }
}

.basket__item-info-bottom-price-wrapper .price {
    font-size: 16px;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-price-wrapper .price {
        font-size: 16px;
    }
}

.basket__item-info-bottom-price-wrapper .old-price {
    font-size: 15px;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-price-wrapper .old-price {
        font-size: 16px;
    }
}

.basket__item-info-bottom-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
}

@media (min-width: 1024px) {
    .basket__item-info-bottom-price-wrapper {
        flex-direction: column;
    }
}

.basket__bottom-head {
    margin: 0 0 55px 0;
}

@media (min-width: 1024px) {
    .basket__bottom-head {
        margin: 0 0 60px 0;
    }
}

.basket__bottom-delivery {
    margin: 0 0 45px 0;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery {
        margin: 0 0 70px 0;
    }
}

.basket__bottom-payment {
    margin: 0 0 45px 0;
}

@media (min-width: 1024px) {
    .basket__bottom-payment {
        margin: 0 0 92px 0;
    }
}

.basket__bottom-user {
}

.basket__title-h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
    margin: 0 0 23px 0;
}

@media (min-width: 1024px) {
    .basket__title-h3 {
        font-size: 35px;
        margin: 0;
    }
}

.control__input {
    border: none;
    display: flex;
    align-items: center;
    width: 100%;
    height: 58px;
    background: #f3f3f3;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    padding: 0 47px;
}

@media (min-width: 1024px) {
    .control__input {
        height: 68px;
    }
}

.control__input::placeholder {
    color: #000;
}

.basket__bottom-user .row {
    gap: 12px 0;
}

.basket__bottom-delivery-row {
    gap: 12px 0;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery-row {
        gap: 28px 0;
    }
}

.basket__bottom-payment-row {
    gap: 12px 0;
}

.basket__bottom-delivery-item {
    height: 58px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    background: #f3f3f3;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery-item {
        height: 80px;
    }
}

.basket__bottom-delivery-item span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 0 0 39px;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery-item span {
        font-size: 22px;
    }
}

.basket__bottom-delivery-item span::before {
    content: "";
    display: block;
    border-radius: 100%;
    border: 1px solid #6a6a6a;
    background: #fff;
    height: 19px;
    width: 19px;
    position: absolute;
    top: 3px;
    left: 0;
}

.basket__bottom-delivery-item span::after {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--accent-color);
    border-radius: 100%;
    position: absolute;
    top: 6px;
    left: 3px;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s ease;
}

.basket__bottom-delivery-radio:checked ~ span::after {
    opacity: 1;
    visibility: visible;
}

.basket__bottom-delivery-radio:checked ~ span::before {
    border-color: var(--accent-color);
}

.basket__title-h3-m {
    margin: 0 0 35px 0;
}

@media (min-width: 1024px) {
    .basket__title-h3-m {
        margin: 20px 0 0 0;
    }
}

.basket__bottom-delivery-change {
    align-items: center;
    justify-content: space-between;
    padding: 30px 57px 30px 44px;
    background: #f3f3f3;
}

.basket__bottom-delivery-change{
    display: none;
}

.basket__bottom-delivery-change.show{
    display: flex;
}


.basket__bottom-delivery-change-btn {
    height: 50px;
    background: var(--accent-color);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    margin: 40px 0 0 0;
    border: none;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery-change-btn {
        margin: 0;
        height: 46px;
        font-size: 20px;
        font-weight: 500;
        width: 100%;
        max-width: 268px;
    }
}

.basket__bottom-delivery-change-address h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #000;
    margin: 0 0 10px 0;
}

@media (min-width: 1024px) {
    .basket__bottom-delivery-change-address h3 {
        font-size: 20px;
        line-height: 1;
        margin: 0 0 8px 0;
    }
}

.delivery-fields {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #000;
}

@media (min-width: 1024px) {
    .delivery-fields {
        font-size: 20px;
        line-height: 1;
    }
}

.uds-order-info{
    margin-top: 15px;
}

.popup-form-address__item .nice-select-dropdown .disabled{
    display: none;
}

.popup-form-address .nice-select .option{
    white-space: normal;
}

.popup-form-address .nice-select.custom-select-item .current{
    overflow: hidden;
    text-overflow:ellipsis;
    padding-right: 70px;
}

.popup-form-address .nice-select .list::-webkit-scrollbar {
    width: 4px; 
}

.popup-form-address .nice-select .list::-webkit-scrollbar-thumb {
    background: #999;
  }

/* end basket */

/* product-page */
.product-page {
    padding: 0 0 70px 0;
    margin: -40px 0 0 0;
}

@media (min-width: 1024px) {
    .product-page {
        padding: 0 0 130px 0;
        margin: 0;
    }
}

.product-page .product__list-marker{
    right: 25px;
}

.product-slider--inner {
    padding: 0 0 70px 0;
}

@media (min-width: 1024px) {
    .product-slider--inner {
        padding: 0 0 130px 0;
    }
}

.advantages__row {
    gap: 18px 0;
}

.advantages-item {
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px 0;
    height: 115px;
}

@media (min-width: 1024px) {
    .advantages-item {
        gap: 15px 0;
        height: 137px;
    }
}

.advantages-item__icon {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantages-item__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
    text-align: center;
}

@media (min-width: 1200px) {
    .advantages-item__text {
        font-size: 20px;
        line-height: 1;
    }
}

.product-page-info__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: #000;
    margin: 34px 0 24px 0;
}

@media (min-width: 1024px) {
    .product-page-info__title {
        font-size: 40px;
        margin: 0 0 36px 0;
    }
}

.product-gallery {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 1024px) {
    .product-gallery {
        display: grid;
    }
}

.product-gallery img {
    width: 100%;
    height: auto;
    display: block;
}
.product-gallery .large {
    grid-column: span 2;
}

.product-page__mobile-swiper {
    position: relative;
    display: block;
}

@media (min-width: 1024px) {
    .product-page__mobile-swiper {
        display: none;
    }
}

.swiper-product-inner__slide {
    height: 439px;
}

.swiper-product-inner__slide img {
    object-fit: cover;
    width: 100%;
    height: 439px;
}

.swiper-product-inner__pagination {
    bottom: 17px !important;
}

.swiper-product-inner__pagination .swiper-pagination-bullet {
    background: var(--accent-color);
}

.product-page-info__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-page-info__head-article {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .product-page-info__head-article {
        font-size: 18px;
    }
}

.product-page-info__head-availability {
    display: flex;
    align-items: center;
    gap: 0 13px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .product-page-info__head-availability {
        font-size: 18px;
    }
}

.product-page-info__head-availability svg {
    width: 17px;
    height: 17px;
    fill: #338600;
}

@media (min-width: 1024px) {
    .product-page-info__head-availability svg {
        width: 19px;
        height: 19px;
    }
}

.product-page-info__size {
    margin: 67px 0 30px 0;
}

@media (min-width: 1024px) {
    .product-page-info__size {
        margin: 41px 0 43px 0;
    }
}

.product-page-info__delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 13px;
}

.product-page-info__delivery span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .product-page-info__delivery span {
        font-size: 22px;
    }
}

.product-page-info__delivery svg {
    width: 30px;
    height: 30px;
}

@media (min-width: 1024px) {
    .product-page-info__delivery svg {
        height: 48px;
        width: 48px;
    }
}

.product-page-info__size-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-page-info__size-head span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .product-page-info__size-head span {
    }
}

.product-page-info__size-head a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #8a0b20;
}

@media (min-width: 1024px) {
    .product-page-info__size-head a {
        font-size: 15px;
    }
}

.product-page-info__specifications-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #000;
    margin: 0 0 12px 0;
}

@media (min-width: 1024px) {
    .product-page-info__specifications-title {
    }
}

.product-page-info__size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 25px 18px;
    margin: 30px 0 0 0;
}

@media (min-width: 1024px) {
    .product-page-info__size-row {
        gap: 20px 33px;
    }
}

.product-page-info__size-item {
    cursor: pointer;
}

.product-page-info__size-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 40px;
    border: 1px solid var(--accent-color);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

@media (min-width: 1024px) {
    .product-page-info__size-item span {
        font-size: 17px;
    }
}

.product-page-info__size-item-input:checked ~ span {
    background: var(--accent-color);
    color: #fff;
}

.product-page-info__specifications {
    margin: 0 0 62px 0;
}

.product-page-info__specifications-list {
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 0;
}

.product-page-info__specifications-list li {
    width: 100%;
    list-style-type: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #000;
    display: flex;
    align-items: center;
}

@media (min-width: 1024px) {
    .product-page-info__specifications-list li {
        display: block;
        font-size: 18px;
        width: 50%;
    }
}

.product-page-info__specifications-list li span:first-child {
    color: #6a6a6a;
    width: 30%;
}

@media (min-width: 1024px) {
    .product-page-info__specifications-list li span {
        width: auto;
    }
}

.product-page-info__specifications-list li a {
    text-decoration: none;
    color: inherit;
}

.product-page-info__bottom {
    display: flex;
    align-items: center;
    gap: 0 48px;
    margin: 0 0 32px 0;
}

@media (min-width: 1024px) {
    .product-page-info__bottom {
        gap: 0 25px;
    }
}

.product-page-info__bottom .price {
    font-weight: 500;
    font-size: 30px;
    line-height: 1;
}

.product-page-info__bottom .old-price {
    font-weight: 500;
    font-size: 22px;
    line-height: 1;
}

.product-page-info__btns-stock,
.product-page-info__btns-nostock{
    display: none
}

.product-page-info__btns-stock.active,
.product-page-info__btns-nostock.active {
    display: flex;
    gap: 13px 0;
    flex-direction: column-reverse;
    margin: 0 0 18px 0;
} 

@media (min-width: 1024px) {
    .product-page-info__btns-stock.active,
    .product-page-info__btns-nostock.active {
        gap: 0;
        flex-direction: row;
    }
}

.product-page-info__btn-one {
    height: 50px;
    background: #fff;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 18px;
}

@media (min-width: 1024px) {
    .product-page-info__btn-one {
        max-width: 50%;
        height: 56px;
    }
}

.product-page-info__btn-add {
    height: 50px;
    font-size: 18px;
}

@media (min-width: 1024px) {
    .product-page-info__btn-add {
        max-width: 50%;
        height: 56px;
    }
}

.product-page-info__small-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
    color: #000;
    margin: 0 0 13px 0;
}

@media (min-width: 1024px) {
    .product-page-info__small-title {
    }
}

.product-page-info__credit {
    margin: 70px 0 57px 0;
}

@media (min-width: 1024px) {
    .product-page-info__credit {
        margin: 37px 0 36px 0;
    }
}

.product-page-info__guarantees {
    margin: 0 0 18px 0;
}

@media (min-width: 1024px) {
    .product-page-info__guarantees {
        margin: 0 0 55px 0;
    }
}

.product-page-info__content-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0 auto;
    background: none;
    border: none;
}

.product-page-info__content-btn svg {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 2px;
    width: 18px;
    height: 11px;
    transition: 0.2s ease;
}

.product-page-info__content-btn.active svg {
    transform: scale(-1);
}

.product-page-info__content-inner {
    height: 90px;
    overflow: hidden;
    position: relative;
}

.product-page-info__content-inner p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
    color: #000;
    margin: 0;
}

.product-page-info__content-inner::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(180deg, rgba(242, 242, 239, 0) 0%, #fff 100%);
}

.product-page-info__content-inner.show {
    height: auto;
}

.product-page-info__content-inner.show::before {
    display: none;
}

.product-page-info__credit-row {
    display: flex;
    align-items: center;
    gap: 17px 14px;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .product-page-info__credit-row {
        gap: 11px 30px;
    }
}

.product-page-info__credit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    position: relative;
    width: calc(50% - 14px);
    height: 137px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .product-page-info__credit-item {
        width: calc(50% - 15px);
    }
}

.product-page-info__credit-item-per {
    position: absolute;
    top: 10px;
    right: 5px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--accent-color);
}

.product-page-info__credit-item-info h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 25px;
    line-height: 1;
    color: #000;
    margin: 0;
    text-align: center;
    margin: 0 0 11px 0;
}

.product-page-info__credit-item-info p {
    margin: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #737373;
    text-align: center;
}

@media (min-width: 1024px) {
    .product-page-info__credit-item-info p {
        margin: 0 0 11px 0;
    }
}

.product-page-info__credit-item-info-btn {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 29px;
    left: 0;
    border: none;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #fff;
    background: var(--accent-color);
}

@media (min-width: 1024px) {
    .product-page-info__credit-item-info-btn {
        position: unset;
        height: 24px;
        width: 117px;
        font-size: 14px;
    }
}

/* end product-page */

/* popup */
.modal-body {
    padding: 0;
}

.modal-content {
    border: none;
    border-radius: 0;
}

.popup {
    position: relative;
    width: 100%;
    padding: 28px 15px;
}

@media (min-width: 1024px) {
    .popup {
        padding: 60px 0 92px 0;
    }
}

.modal-dialog {
    max-width: 1352px;
    bottom: 0;
}

.popup__btn-close {
    position: absolute;
    right: 15px;
    top: 30px;
    opacity: 1;
    z-index: 99;
}

@media (min-width: 1024px) {
    .popup__btn-close {
        top: 24px;
        right: 23px;
    }
}

.popup__btn-close svg {
    fill: #000;
}

.popup__title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    color: #000;
    line-height: 1;
    text-align: left;
    margin: 0 0 40px 0;
    padding: 0 30px 0 0;
}

@media (min-width: 1024px) {
    .popup__title {
        text-align: center;
        font-size: 30px;
        margin: 0 0 50px 0;
    }
}

.popup-form-callback {
}

@media (min-width: 1024px) {
    .popup-form-callback {
        max-width: 660px;
        width: 100%;
        margin: 0 auto;
    }
}

.popup-form-callback__small-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 250%;
    color: #000;
    text-align: center;
}

@media (min-width: 1024px) {
    .popup-form-callback__small-text {
        font-size: 16px;
        margin: 18px 0 0 0;
    }
}

.popup-btn {
    margin: 21px 0 0 0;
}

@media (min-width: 1024px) {
    .popup-btn {
        height: 56px;
        max-width: 430px;
        font-size: 22px;
        line-height: 1;
        margin: 70px auto 0 auto;
    }
}

.popup-form-callback__row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 0;
}

@media (min-width: 1024px) {
    .popup-form-callback__row {
        gap: 0 30px;
    }
}

.control-popup {
    width: 100%;
}

@media (min-width: 1024px) {
    .control-popup {
        width: calc(50% - 15px);
    }
}

.control-popup__input {
    font-family: var(--font-family);
    font-weight: 400;
    line-height: 1;
    color: #000;
    border: 1px solid transparent;
    background: #f3f3f3;
    height: 58px;
    padding: 0 30px;
    width: 100%;
}

.control-popup__input::placeholder {
    color: #000;
}

@media (min-width: 1024px) {
    .control-popup__input {
        width: 100%;
        font-size: 22px;
        height: 68px;
        padding: 0 49px;
    }
}

.popup-form-credit__row {
    gap: 12px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .popup-form-credit__row {
        gap: 26px 30px;
    }
    .popup-form-credit__row .control-popup {
        width: calc((100% / 3) - (30px * 2 / 3));
    }
}

.popup-form-sizes {
    max-width: 658px;
    margin: 0 auto;
}

.popup-form-sizes__link {
    text-decoration: underline;
    color: var(--accent-color);
    font-size: 15px;
    margin: 20px 0 0 0;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    line-height: 45px;
    display: block;
    transition: 0.2s ease;
}

@media (min-width: 1024px) {
    .popup-form-sizes__link {
        font-size: 17px;
    }
}

.popup-form-sizes__link:hover {
    text-decoration: none;
    color: var(--accent-color);
}

.popup-form-sizes .popup-btn {
    margin: 14px 0 0 0;
    text-transform: capitalize;
}

@media (min-width: 1024px) {
    .popup-form-sizes .popup-btn {
        margin: 36px auto 0 auto;
    }
}

.popup-form-delivery__row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 0;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .popup-form-delivery__row {
        gap: 35px 30px;
    }

    .popup-form-delivery__row .control-popup {
        width: calc((100% / 3) - (30px * 2 / 3));
    }

    .popup-form-delivery__row .control-popup.control-popup--area {
        width: calc(100% - (100% / 3) - 10px);
    }
}

.popup-search-form {
    margin: 0 auto;
    max-width: 1000px;
    border-bottom: 1px solid #6a6a6a;
    position: relative;
    padding: 50px 0 10px 0;
}

@media (min-width: 1024px) {
    .popup-search-form {
        padding-top: 0;
    }
}

.popup-search-form__input {
    border: none;
    padding: 0 45px 0 0;
    margin: 0;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: #000;
    opacity: 1;
}

.popup-search-form__input::placeholder {
    color: #000;
}

.popup-search-form__btn {
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    position: absolute;
    right: 0;
    bottom: 15px;
}

.popup-search-form__btn svg {
    width: 25px;
    height: 25px;
    stroke: #000;
}

.search-autocomplete{
    display: none;
}

.popup-search-form-result-page {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    color: #8a0b20;
}

.popup-search-form-result {
    margin: 0 auto;
    max-width: 1000px;
}

.popup-search-form-result-page {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    color: #8a0b20;
    text-decoration: none;
    margin: 80px 0 0 0;
    display: flex;
    align-items: center;
    gap: 0 10px;
}

@media (min-width: 1024px) {
    .popup-search-form-result-page {
        font-size: 18px;
    }
}

.popup-search-form-result-page:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.popup-search-form-result-page svg {
    width: 15px;
    height: 8px;
    fill: var(--accent-color);
}

.popup-search-form-result__list ul {
    padding: 0;
    margin: 30px 0 0 0;
    flex-direction: column;
    gap: 16px 0;
    display: flex;
}

@media (min-width: 1024px) {
    .popup-search-form-result__list ul {
        gap: 20px 0;
    }
}

.popup-search-form-result__list li {
    list-style-type: none;
}

.popup-search-form-result__list li a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 17px;
    line-height: 1;
    color: #000;
    text-decoration: none;
}

.popup-search-form-result__list li a span {
    color: #6a6a6a;
}

@media (min-width: 1024px) {
    .popup-search-form-result__list li a {
        font-size: 18px;
    }
}

/*
======================================*/
.ui-autocomplete,
.ui-autocomplete.ui-widget-content {
    border: none !important;
    max-width: 100%;
    padding: 0;
    background-color: #fff;
}

.ui-autocomplete.ui-widget-content {
    display: flex !important; 
    padding: 0; 
    position: relative;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
}

.ui-menu .ui-menu-item {
    border: none !important;
    background: #fff !important;
}

.ui-menu .ui-menu-item-wrapper{
    padding: 0;
}

.ui-state-active,
.ui-widget-content .ui-state-active{
    color: #000 !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
}

.ui-state-active a{
    color: #000 !important;
}

/*
======================================*/
.popup__btn-footer {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup__btn-footer-btn {
    background: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    line-height: 1;
}

@media (min-width: 1024px) {
    .popup__btn-footer-btn {
        font-size: 22px;
    }
}

.popup__btn-footer-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

.popup__link-basket {
    line-height: 1;
}

@media (min-width: 1024px) {
    .popup__link-basket {
        font-size: 22px;
    }
}

.popup-form-basket {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 50px 0;
}

@media (min-width: 1024px) {
    .popup-form-basket {
        margin: 0 auto 47px auto;
        max-width: 427px;
    }
}

.basket__item--popup {
    gap: 0 15px;
    align-items: center;
    border-bottom: none;
}

@media (min-width: 1024px) {
    .basket__item--popup {
        gap: 0 28px;
    }
}

.basket__item--popup .basket__item-info-bottom {
    margin: 28px 0 0 0;
}

@media (min-width: 1024px) {
    .basket__item--popup .basket__item-info-bottom {
        margin: 23px 0 0 0;
    }
}

.basket__item--popup .basket__item-info-title {
    font-size: 16px;
}

@media (min-width: 1024px) {
    .basket__item--popup .basket__item-info-title {
        font-size: 18px;
    }
}

.popup__product-recomend-title {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: #000;
    margin: 0 0 32px 0;
}

@media (min-width: 1024px) {
    .popup__product-recomend-title {
        margin: 0 0 22px 0;
        text-align: center;
        font-size: 28px;
    }
}

.popup__product-recomend-slider {
    max-width: 1000px;
    position: relative;
    margin: 0 auto 50px auto;
}

@media (min-width: 1024px) {
    .popup__product-recomend-slider {
        margin: 0 auto 36px auto;
    }
}

.popup__product-prev {
    left: -5px;
}

@media (min-width: 1024px) {
    .popup__product-prev {
        left: -41px;
        top: 35%;
    }
}

.popup__product-next {
    right: -5px;
}

@media (min-width: 1024px) {
    .popup__product-next {
        right: -41px;
        top: 35%;
    }
}

.popup__product-recomend-slider .product__img {
    height: 315px;
}

.popup-form-address__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 0;
}

@media (min-width: 1024px) {
    .popup-form-address__row {
        gap: 0 30px;
        width: 100%;
        max-width: 890px;
        margin: 0 auto;
    }
}

.popup-form-address__item {
    width: 100%;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .popup-form-address__item {
        max-width: 430px;
    }
    .popup-form-address__item .nice-select.custom-select-item {
        height: 68px;
    }
}

/* end popup */

/*
==================================*/ 
.social-buttons-wrapper{
    position: fixed;
    right: 17px;
    bottom: 110px;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media(min-width: 992px){
    .social-buttons-wrapper{
        display: flex
    }
}

.social-buttons-wrapper .round-btn + .round-btn{
    margin-top: 15px;
}

.round-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-animation: social-anim 2s infinite;
    animation: social-anim 2s infinite;
    background-color: var(--accent-color);
    color: #fff;
}

.round-btn svg{
    width: 25px;
    height: 25px;
    fill: #fff;
}
 
/*
====================================*/
@-webkit-keyframes social-anim {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(139, 11, 32, .6);
		box-shadow: 0 0 0 0 rgba(139, 11, 32, .6);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(139, 11, 32, 0);
		box-shadow: 0 0 0 20px rgba(139, 11, 32, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(139, 11, 32, 0);
		box-shadow: 0 0 0 0 rgba(139, 11, 32, 0);
	}
}

@keyframes social-anim {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(139, 11, 32, .6);
		box-shadow: 0 0 0 0 rgba(139, 11, 32, .6);
	}
	70% {
		-webkit-box-shadow: 0 0 0 20px rgba(139, 11, 32, 0);
		box-shadow: 0 0 0 20px rgba(139, 11, 32, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(139, 11, 32, 0);
		box-shadow: 0 0 0 0 rgba(139, 11, 32, 0);
	}
}

/*
=======================================*/
.overlayp{
    display: none;
}

.overlayp.active {
    margin-right: 0;
    display: block;
}

.overlayp {
    position: fixed;
    z-index: 9999999999;
    right: 0;
    bottom: 50px;
    margin-right: -300px;
    transition: margin-left 1s ease-in;
    -moz-transition: margin-left 1s ease-in;
    -webkit-transition: margin-left 1s ease-in; 
}

.panel_viber {
    position: fixed;
    background: url(../images/viber_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}

.panel_wtsp {
    position: fixed;
    background: url(../images/wtsp_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}

.panel_telegram {
    position: fixed;
    background: url(../images/telegram_bg.png) center left;
    width: 240px;
    height: 340px;
    color: #fff;
    background-size: cover;
}

.close_panel {
    position: absolute;  
    left: 20px;
    top: 153px;
    z-index: 8;
    padding-left: 20px;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #fff;
}

.panel_info {
    position: absolute;
    top: 50px;
    right: 25px;
    height: 180px;
    width: 180px;
    text-align: right;
    line-height: 1;
    font-size: 12px;
    color: #fff;
}

.panel_info img {
    width: 40px;
}

.panel_info h2 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 29px;
}

.panel_info h3 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
    font-weight: normal;
}

.panel_info h3 a {
    color: #ffffff;
    margin: 0;
    padding: 0;
    font-size: 18px;
    text-decoration: none;
}

.grecaptcha-badge{
    opacity: 0;
}

/*
=======================================*/
.uds-info {
    display: none;
    margin-top: 15px;
}

.uds-info.active {
    display: block;
}

.uds-customer-info {
    margin-bottom: 15px;
    color: #6A6A6A;
}
.uds-customer-info span{
    margin-bottom: 15px;
    color: #000;
}

.uds-customer-info strong{
    font-weight: normal; 
}

.uds-customer-info p {
    margin: 5px 0;
}

.uds-customer-info--small{
    margin-top: 15px;
    color: #6A6A6A;
    font-size: 14px;
}

.uds-points-input {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.uds-error {
    color: #C70000;
    font-size: 14px;
    margin-top: 5px;
}

.uds-success {
    color: #2E7702;
    font-size: 14px;
    margin-top: 5px;
} 

.discount-info { 
    margin-top: 10px;
}

.uds-section button[disabled] {
    opacity: .5
}

#uds-info-form-accumulate .basket__top-code-item-btn{
    width: 100%;
    max-width: 100%;
}

.uds-info-form{
    display: none;
}

.uds-info-form.active{
    display: block
}