
html,
body {
    color: var(--color);
    font-family: var(--font-family);
    font-size: var(--font-size);
    font-weight: normal;
    min-width: 320px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    background: var(--html-bg);
    height: 100%;
}
body {
    background: var(--body-bg);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Load animation */

#header-shape-gradient {
    --color-stop: #FF6464;
    --color-bot: #D661FF;
}
.fullpage-loader path,
.fullpage-loader circle {
    fill: url(#header-shape-gradient) #fff;
}
.fullpage-loader {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    background: #fff;
    z-index: 9999;
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    background-color: #FFECA5;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMzYiIHZpZXdCb3g9IjAgMCA2Mi45ODQ5OSAzNi4zNTk5OSI+PHBvbHlnb24gcG9pbnRzPSIxMC4yMDUgMTguMTggMTcuMDE1IDI5Ljk3IDIwLjQxNSAzNS44NiAyMC4xMjYgMzYuMzYgMjEuMjg1IDM2LjM2IDQxLjcwNSAzNi4zNiA0Mi44NTQgMzYuMzYgNDIuNTY1IDM1Ljg2IDUyLjc3NSAxOC4xOCA2Mi45ODUgMTguMTggNjIuOTg1IDE3LjE4IDUyLjc3NSAxNy4xOCA0Mi44NTQgMCA0MS43MDUgMCA1MS45MDUgMTcuNjggNDEuNzA1IDM1LjM2IDIxLjI4NSAzNS4zNiAxOC41MzUgMzAuNiAxMS4wNzUgMTcuNjggMTguNTU1IDQuNzMgMjEuMjg1IDAgMjAuMTI2IDAgMTAuMjA1IDE3LjE4IDAgMTcuMTggMCAxOC4xOCAxMC4yMDUgMTguMTgiIGZpbGw9IiNGRkUwNkEiLz48L3N2Zz4=');
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
}
.preload-page {
    display: grid;
    grid-template-columns: repeat(3, 70px);
    grid-template-rows: repeat(3, 70px);
    grid-gap: 10px;
    animation: animationRotate 16s infinite linear;
}
.preload-page>div {
    position: relative;
    animation: animationScale 4s infinite linear;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    background: #fff;
}
.preload-page>div:after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: antiquewhite;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    z-index: -1;
}
.preload-page>div:nth-child(3) {
    animation-delay: 0.8s;
}
.preload-page>div:nth-child(2),
.preload-page>div:nth-child(6) {
    animation-delay: 0.6s;
}
.preload-page>div:nth-child(1),
.preload-page>div:nth-child(5),
.preload-page>div:nth-child(9) {
    animation-delay: 0.4s;

}
.preload-page>div:nth-child(4),
.preload-page>div:nth-child(8) {
    animation-delay: 0.2s;
}
.preload-page>div:nth-child(7) {
    animation-delay: 0s;
}

/**/

.preload-page>div:nth-child(3):after {
    background: #FF8A00;
}
.preload-page>div:nth-child(2):after,
.preload-page>div:nth-child(6):after {
    background: #D36600;
}
.preload-page>div:nth-child(1):after,
.preload-page>div:nth-child(5):after,
.preload-page>div:nth-child(9):after {
    background: #A74300;
}
.preload-page>div:nth-child(4):after,
.preload-page>div:nth-child(8):after {
    background: #7F1F00;
}
.preload-page>div:nth-child(7):after {
    background: #5B0000;
}

/**/

@keyframes animationScale {
    0%,
    100% {
        transform: scale(0);
    }
    20%,
    80% {
        transform: scale(1);
    }
}
@keyframes animationRotate {
    0% {
        transform: rotate(0deg);
    }
    20% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(90deg);
    }
    45% {
        transform: rotate(90deg);
    }
    50% {
        transform: rotate(180deg);
    }
    70% {
        transform: rotate(180deg);
    }
    75% {
        transform: rotate(270deg);
    }
    95% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.fullpage-loader--invisible {
    opacity: 0
}

/* Load animation */

/* TINYMCE */
#tinymce {
    padding: 20px;
}
.tmce_notice_info,
.tmce_notice_success,
.tmce_notice_error {
    padding: 20px 30px;
    margin: 1rem 0 1.5rem;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    border-left: 8px solid rgba(188, 188, 188, 1);
    display: block;
}
.tmce_notice_error {
    background-color: #FFCAC6;
    border-left: 8px solid #FF3121;
    color: #222;
}
.tmce_notice_success {
    background-color: #D6FBCC;
    border-left: 8px solid #266F12;
    color: #222;
}
.tmce_notice_info {
    background-color: #E1F6FD;
    border-left: 8px solid #0A7CA2;
    color: #222;
}

/* HEADINGS [START] */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    display: block;
    position: relative;
    font-family: inherit;
    color: var(--body-heading);
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 1.5rem;
}
h1,
.h1 {
    font-size: 32px;
}
h2,
.h2 {
    font-size: 26px;
}
h3,
.h3 {
    font-size: 24px;
}
h4,
.h4 {
    font-size: 22px;
}
h5,
.h5 {
    font-size: 20px;
}
h6,
.h6 {
    font-size: 18px;
}

/* HEADINGS [END] */

/* LINKS [START] */
a {
    background-color: transparent;
    color: var(--color);
    -webkit-text-decoration-skip: objects;
    transition: all 0.5s;
}
a,
a:hover,
a:active,
.tooltip a:hover {
    text-decoration: none;
    outline: none;
}
a:hover {
    color: var(--color-hover);
}

/* LINKS [END] */

*,
::before,
::after {
    box-sizing: border-box;
}

/* HEADER [START] */
.header {
    background: var(--header-bg);
    display: flex;
    flex-direction: column;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 5px 5px #0000000f;
}

.header .container {
    height: 100%;
}

/* HEADER - TOP */
.header_top {
    border: none;
    border-bottom: 1px solid #f5eaea;
    width: 100%;
    height: 40px;
}
.header_top-container {
    height: 100%;
    width: 100%;
    padding-left: 156px;
    gap: 40px;
}

/* HEADER - BOTTOM */
.header_bottom {
    height: 60px;
}
.header_bottom-container {
    position: relative;
    height: 100%;
    gap: 40px;
}

/* HEADER - LOGO */
.header_logo {
    height: 100%;
}
.header_logo-link {
    background: #FFFFFF;
    border: 1px solid var(--border-image);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 116px;
    height: 116px;
    border-radius: 50%;
    transform: translateY(-25%);
    overflow: hidden;
}
.header_logo-img {
    display: block;
    width: 100%;
}
.header_logo-text {
    font-size: 16px;
    font-weight: 700;
}

/* HEADER - INFORMERS */
.header_informers {
    display: flex;
    gap: 16px;
}
.header_informer_link {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid var(--basic-company);
    position: relative;
}
a.header_informer_link {
    cursor: pointer;
}
/* HEADER [END] */

/* MAIN [START] */
.main {
    margin-top: 100px;
}
/* MAIN [END] */

/* SECTION TITLE [START] */
.section_heading {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
/* SECTION TITLE [END] */

/* SECTION MAIN [START] */
.section_main {
    background-image: url(../images/background-air-waves.jpg);
    background-color: #e3e8ed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}
.section_main .container {
    /* height: 580px; */
    height: fit-content;
}
.section_main-container {
    display: grid;
    grid-template-columns: 300px 1100px;
    grid-gap: 40px;
    gap: 40px;
    padding: 40px 0px;
}
.section_main-categories {
    background: #FFFFFF;
    padding: 25px;
    border-radius: var(--br);
    height: 100%;
    max-height: 500px;
}
.categories_list::-webkit-scrollbar, .mega_item_1 ul::-webkit-scrollbar, .menu_container::-webkit-scrollbar {
    width: 5px;
}
.section_main-categories .categories_list::-webkit-scrollbar-thumb, .mega_item_1 ul::-webkit-scrollbar-thumb, .menu_container::-webkit-scrollbar-thumb {
    width: 0;
    background: #e3e8ed;
}
.menu_container::-webkit-scrollbar-thumb {
    background: var(--basic-company);
}
.categories_list::-webkit-scrollbar-thumb {
    background: #b9bbbc;
}
.categories_title {
    font-weight: 700;
    margin-bottom: 16px;
}
.categories_list {
    height: 100%;
    overflow: auto;
    margin-right: -16px;
}
/* .categories_list:after,
.categories_list:before {
    content: '';
    width: 100%;
    height: 30px;
    position: sticky;
    left: 0;
    z-index: -1;
    opacity: 0;
    display: block;
    transition: .3s;
} */
.categories_list:after {
    margin-top: -30px;
}
.categories_list:before {
    margin-bottom: -30px;
}
.categories_list.scrolled_end:after {
    bottom: 0;
    z-index: 1;
    opacity: 1;
    background: -moz-linear-gradient(top, #fff0 0, #fff 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(100%, #fff));
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
    background: linear-gradient(top, rgba(255, 255, 255, 0) 0, #fff 100%);
}
.categories_list.scrolled_start:before {
    top: 0;
    z-index: 1;
    opacity: 1;
    background: linear-gradient(180deg, #fff 50.52%, rgba(255, 253, 248, 0.00) 100%);
}
.categories_menu {
    display: flex;
    flex-direction: column;
    margin: unset;
    padding: unset;
    gap: 17px;
    padding-right: 10px;
}
.category_item {
    margin: unset;
}
.category_link {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}
.subcategory .category_link span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
.category_link picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 40px;
    border: 2px solid var(--border-image);
    overflow: hidden;
    padding: 5px;
}
.category_link picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section_main-banners {
    width: 100%;
    background: #FFFFFF;
    border-radius: var(--br);
    overflow: hidden;
}
/* SECTION MAIN [END] */

/* SECTION CATEGORIES [START] */
.section_categories {
    margin-top: 130px;
}
.categories_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    grid-gap: 40px;
    gap: 80px;
}
.categories_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    min-width: 167px;
    max-width: 167px;
}
.categories_circle {
    background-color: #fff;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto 36px;
    display: block;
    width: 100%;
    padding: 50% 0%;
    position: relative;
    border-radius: 50%;
    transition: all 0.5s;
    transform: translateY(0px);
    border: 3px solid var(--basic-company);
}
.categories_image {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    margin: 0 auto;
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    border-radius: 50%;
}
.categories_image.lazy {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s !important;
    will-change: transform;
}
.categories_image.lazy.loaded {
    opacity: 1;
    transform: translateY(0px);
}
.categories_item:hover .categories_circle {
    transform: translateY(10px);
}
.categories_additional {
    background-color: #FFFFFF;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border: 10px solid transparent;
    width: 60%;
    height: 60%;
    position: absolute;
    top: -60px;
    right: -15px;
    overflow: hidden;
    border-radius: 50%;
}
.categories_additional.lazy {
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.5s, transform 0.5s !important;
    will-change: transform;
}
.categories_additional.lazy.loaded {
    opacity: 1;
    transform: scale(1);
}
.categories_item:hover .categories_additional {
    transform: translate(15px, -17px);
}
.categories_name {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
    display: block;
    width: 100%;
    margin-top: 10px;
}
@media (max-width: 1199px) {
    .categories_container {
        grid-template-columns: repeat(6, 1fr);
    }
}
@media (max-width: 991px) {
    .categories_container {
        grid-template-columns: repeat(5, 1fr);
    }
}
@media (max-width: 767px) {
    .categories_container {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 575px) {
    .categories_container {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 360px) {
    .categories_container {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* SECTION CATEGORIES [END] */

/* SECTION PRODUCTS [START] */
.section_products {
    margin-top: 150px;
}
.section_container {
    position: relative;
}
.product_list:not(.swiper-initialized) .swiper-wrapper {
    opacity: 0;
}
.product_item {
    padding-top: 75px;
}
.product_preview {
    position: relative;
    background: #e3e8ed;
    border: 1px solid #e3e8ed;
    border-radius: var(--br);
}
.swiper-wrapper .product_preview {
    margin: 0 1px;
}
.product_preview-center {
    width: 100%;
    margin: 0 auto;
}
.product_preview-image {
    background: #fff;
    border: 4px solid #e3e8ed;
    display: block;
    position: relative;
    border-radius: var(--br);
    overflow: hidden;
    width: 100%;
    max-width: 284px;
    margin: -75px auto 0;
    height: 300px;
    width: calc(100% - 20px);
    -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.19);
    -moz-box-shadow: 0 5px 5px rgba(0,0,0,0.19);
    box-shadow: 0 5px 5px rgba(0,0,0,0.19);
    padding: 20px;
}
.product_preview-image.rotate {
    animation: rotateY .5s linear;
}
.main_pages .product_preview-image {
    width: calc(100% - 20px);
    padding: 20px;
}
@keyframes rotateY {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(90deg);
    }
    100% {
        transform: rotateY(0deg);
    }
}
.product_preview-image picture {
    width: 100%;
    height: 100%;
}
.product_preview-image picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: .5s !important;
}
.product_preview__name_link {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 16px 0 24px;
    height: 77px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 120%;
    padding: 10px;
}
.discount_label {
    position: absolute;
    top: -55px;
    left: 20px;
    width: 46px;
    height: 46px;
    border-radius: 100px;
    background: var(--alternate-color);
    color: #fff;
    border: 1px solid var(--alternate-color);
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    transition: all 0.5s;
}
.product_image_slider .discount_label {
    position: absolute;
    top: 24px;
    left: 24px;
}
.discount_label.hidden {
    display: none !important;
}
.wishlist_button {
    position: absolute;
    top: -50px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
    background: #fff;
}
.wishlist_button.selected {
    color: var(--basic-company);
}
.svg_inner {
    opacity: 0;
}
.wishlist_button.selected .svg_inner,
.product_body_wishlist.selected .svg_inner {
    opacity: 1;
}
.product_preview-foot {
    width: 100%;
}
.product_preview__variants {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.product_preview-foot .sweet_btn {
    max-width: 220px;
    min-width: 170px;
    height: 56px;
    margin: 16px auto 24px;
    background: var(--alternate-color);
    color: #fff;
    transform: scale(1);
}
.product_preview-foot .sweet_btn:hover {
    transform: scale(.95);
}
.product_preview_variant {
    border-radius: 100px;
    border: 1px solid #D2D2D2;
    background: #FFF;
    transition: .3s;
    width: 96px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    margin: unset;
    cursor: pointer;
    line-height: 1;
}
.product_radio:checked+.product_preview_variant {
    border-color: var(--basic-company);
    -webkit-text-stroke: 1px var(--body-text);
}
.product_preview_prices {
    margin: 24px 0 0;
    gap: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}
.old_price {
    font-size: 14px;
    text-decoration: line-through;
}
.price.price--red {
    color: #EB5757;
}
/* SECTION PRODUCTS [END] */

/* SECTION REVIEWS [START] */
.section_reviews {
    background-image: url(../images/background-air-waves.jpg);
    background-color: #e3e8ed;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 150px;
    padding: 150px 0px;
}
/* SECTION REVIEWS [END] */

/* SECTION ABOUT [START] */
.section_about {
    margin-top: 150px;
}
.section_about-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 40px;
    gap: 40px;
}
/* SECTION ABOUT [END] */

/* FOOTER [START] */
.footer {
    background: var(--footer-bg);
    margin-top: 150px;
}

/* FOOTER - BOTTOM */
.footer_bottom {
    background: var(--footer-bottom-bg);
    border: none;
    border-top: 1px solid #2a465d;
    padding: 16px 0;
}
.footer_copyright {
    gap: 16px;
}
/* FOOTER [END] */

/* AUTOCOMPLETE [START] */
.autocomplete-suggestions {
    background-color: #FFF;
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid #DBDBDB;
    top: 100%;
}
.search_item:hover {
    color: #000;
}
.autocomplete-suggestions .autocomplete-selected .search_name {
    color: #FF8A00;
}
.autocomplete-suggestions strong {
    font-weight: 600;
    color: var(--basic-company);
}
.autocomplete-suggestion {
    cursor: pointer;
    border-bottom: 1px solid #D2D2D2;
    padding-bottom: 10px;
}
.autocomplete-suggestions {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px;
    top: calc(100% + 18px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    width: 100% !important;
    max-height: calc(100dvh - 200px) !important;
}
.autocomplete-suggestions::-webkit-scrollbar-thumb {
    background: linear-gradient(0deg, transparent 25px, #0C71C3 25px, #0C71C3 calc(100% - 25px), transparent 25px);
}
.search_item_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    border: 3px solid grey;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
}
.search_item_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.search_item {
    gap: 16px;
}
.search_item_inner {
    gap: 6px;
}
.search_name {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
.search_price_el {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.search_old_price {
    font-size: 14px;
    text-decoration: line-through;
}
.search_price {
    font-size: 16px;
}
.search_old_price+.search_price {
    color: #EB5757;
}
#fn_search_no_products_found {
    display: none;
    position: absolute;
    top: calc(100% + 18px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 25px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
    width: 100% !important;
    max-height: calc(100dvh - 200px) !important;
}
/* AUTOCOMPLETE [END] */

/* LAZYLOAD [START] */
.lazy:not(.initial) {
    transition: opacity 1s;
}
.lazy.initial,
.lazy.loaded,
.lazy.error {
    opacity: 1;
}
.lazy:not(.loaded) {
    -o-object-fit: scale-down;
    object-fit: scale-down;
  }
  
  /* .lazy.loaded {
    -o-object-fit: cover;
    object-fit: cover;
  } */

/* LAZYLOAD [END] */
.header_phones {
    gap: 36px;
}
.header_phone {
    gap: 4px;
}
.sweet_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    height: 50px;
    padding: 0 17px;
    border-radius: 100px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    border: unset;
    transition: .3s;
}
.sweet_btn.sweet_btn_alt {
    height: 40px;
    border: 2px solid var(--basic-company);
}
.sweet_btn.sweet_btn_disable {
    background: grey;
    cursor: default;
    color: #fff;
}
.orange_btn {
    background: var(--alternate-color);
    color: #fff;
    transform: scale(1);
}
/* SCROLLBAR [END] */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: unset;
}
::-webkit-scrollbar-thumb {
    background: #0C71C3;
    border-radius: 80px;
}
::-webkit-scrollbar-thumb:hover {
    background: #888;
}
/* SCROLLBAR [END] */

/*HEADER SEARCH [START]*/
.header_search {
    width: 100%;
}
.search {
    position: relative;
}
.search__input {
    width: 100%;
    height: 40px;
    border-radius: 150px;
    border: 1px solid #D2D2D2;
    background: #F9F9F9;
    padding: 0px 16px 0px 48px;
}
.search_button {
    position: absolute;
    z-index: 1;
    width: 24px;
    height: 24px;
    top: 8px;
    left: 16px;
    background: unset;
    border: unset;
    color: #BABABA;
}
/*HEADER SEARCH [END]*/

.footer_grid {
    display: grid;
    grid-template-columns: 20% 27% 27% 20%;
    margin-bottom: 60px;
    gap: 30px;
}
.footer_ttl {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}
footer a {
    color: #fff;
}
.footer_copyright a {
    text-decoration: underline;
}
.footer_phones,
.footer_contacts {
    gap: 16px;
}
.footer_phone {
    gap: 8px;
}
.footer_phone svg {
    min-width: 24px;
}
.footer_phones .footer_phone:not(:first-child) {
    padding-left: 32px;
}
.menu_group--footer,
.footer_categories {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 12px;
}
.menu_group--footer li,
.footer__menu_item {
    width: 100%;
    margin: 0;
    font-weight: 400;
}
.footer__menu_item.closed {
    display: none;
}
.footer_inner.opened .closed {
    display: block;
}
.footer__view_all {
    font-size: 16px;
    font-weight: 400;
    text-decoration-line: underline;
    margin-top: 12px;
    display: flex;
    width: fit-content;
}
.footer_socials {
    gap: 16px;
    margin-bottom: 24px;
}
.social_link {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
}
.banner_group_content {
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .3);
}
.banner_group_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 90%;
    margin: 0 auto;
    width: 80%;
    padding: 80px 0;
    align-items: center;
}
.banner_group_name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}
.banner_group_annotation {
    font-size: 96px;
    font-weight: 700;
    line-height: 1;
}
.banner_group_link {
    width: 221px;
    height: 80px;
    margin-top: 20px;
}
.swiper_custom_arrow {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #fff;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
    transition: .3s;
    color: #312B26;
}
.swiper~.swiper-button-prev {
    left: -20px;
}
.swiper~.swiper-button-next {
    right: -20px;
}
.review_item_body {
    border-radius: 24px;
    border: 1px solid #E6E6E6;
    background: #FFF;
    padding: 23px;
    gap: 12px;
}
.review_aithor_date {
    color: #A8A8A8;
}

.review_item_header {
    gap: 11px;
}
.review_item_image {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 24px;
    border: 3px solid var(--alternate-color);
    background: #fff;
    overflow: hidden;
}
.review_item_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.review_item_image svg {
    width: 100%;
    height: 50%;
    opacity: .5;
}
.review_item_description span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.review_item_name {
    font-weight: 700;
}
.review_item_rating {
    border-radius: 24px;
    background: var(--light-blue);
    margin-left: auto;
    padding: 12px 14px;
    font-size: 18px;
    color: var(--dark-blue);
}
.review_item_rating svg {
    color: #FEAC00;
}
.payments {
    gap: 16px;
}
.payment {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 3px 13px;
    background: #fff;
}
.payment img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.informer_counter {
    display: grid;
    place-items: center;
    border: 2px solid #fff;
    background: var(--alternate-color);
    width: 20px;
    height: 20px;
    font-size: 11px;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -2px;
    right: -7px;
}
.fn_main_menu.active {
    color: #FFF;
    background: var(--basic-company);
}
.main_menu_grid {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding: 20px 40px;
    width: calc(100% - 155px);
    max-height: calc(99dvh - 100px);
    grid-template-columns: 1fr;
    grid-gap: 40px;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
}
.main_menu_grid.active {
    display: grid;
}
.main_menu_ttl {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
}
.main_menu_list ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.main_menu_list li {
    font-weight: 400;
    margin: unset;
}
.main_menu_categories {
    height: 100%;
}
.main_menu_categories .categories_menu {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 15px;
    align-items: flex-start;
}
.main_menu_categories .categories_nav {
    overflow: auto;
}
.main_menu_categories .categories_menu li {
    width: calc(33% - 14px);
}
.main_menu_categories .categories_menu li span {
    line-height: 1.2;
}
@keyframes dropdownFadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 50%, 0);
        transform: translate3d(0, 50%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.search_results {
    position: relative;
}
.fn_main_menu:not(.active) .open {
    display: none;
}
.fn_main_menu.active .open {
    display: block;
}
.fn_main_menu:not(.active) .close {
    display: block;
}
.fn_main_menu.active .close {
    display: none;
}
.to_top {
    display: flex;
    align-items: center;
    justify-content: center;
}
.page_header {
    row-gap: 10px;
    justify-content: flex-end;
}
.h1 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin: unset;
}
.products_sort {
    width: 200px;
}
.products_footer {
    margin-top: 80px;
    row-gap: 24px;
}
.category_descrition, .block__description {
    /* width: calc(100% - 600px); */
    width: 100%;
}
.category_descrition td, .category_descrition th, .block__description td, .block__description th {
    border: 1px solid #aba1a1 !important;
    padding: 10px;
}
.category_descrition table thead th, .block__description table thead th{
    text-align: center;
    background: #edecec;
}
.category_descrition table, .block__description table {
    margin-bottom: 5px;
}
.table_responsive {
    width: 100%;
    overflow-y: auto;
    overflow: auto;
    margin-bottom: 1rem;
}
.category_description__image {
    width: 400px;
    height: fit-content;
    float: right;
}
.product_preview_wrapper {
    padding-top: 75px;
}
.catalog_grid {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 12px));
    grid-gap: 30px;
    column-gap: 24px;
}
.product_preview__no_image {
    width: 100%;
    height: 100%;
}
.product_preview__no_image svg {
    width: 70%;
    height: 70%;
}
.alt_section {
    background-color: #cdcfd1;
}
.fn_messanger:not(.active_ms) .open {
    display: none;
}
.fn_messanger.active_ms .open {
    display: block;
}
.fn_messanger:not(.active_ms) .close {
    display: block;
}
.fn_messanger.active_ms .close {
    display: none;
}
.sweet_messangers {
    position: fixed;
    z-index: 999;
    left: 30px;
    top: calc(80% - 10px);
}
.messanger_link {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--basic-company);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInUp;
    animation-duration: 0.4s;
}
.messanger_link:not(.fn_messanger) {
    position: absolute;
    display: none;
}
.active_ms .messanger_link:not(.fn_messanger) {
    display: flex;
}
.messanger_link:nth-child(4) {
    bottom: calc(100% + 16px);
}
.messanger_link:nth-child(3) {
    bottom: calc(100% + 96px);
}
.messanger_link:nth-child(2) {
    bottom: calc(100% + 176px);
}
.messanger_link:nth-child(1) {
    bottom: calc(100% + 256px);
}
.product_header {
    margin-bottom: 40px;
}
.product_top {
    margin-bottom: 56px;
}
.product_images {
    width: calc(100% - 540px);
    height: fit-content;
    border-radius: 24px;
    padding: 40px;
    background: #e3e8ed;
}
.product_images_slider {
    position: relative;
    width: 160px;
    height: 600px;
    padding: 40px 0;
}
.product_image_slider {
    position: relative;
    width: calc(100% - 176px);
}
.product_image_wrapper picture,
.product_images_wrapper picture {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product_image_wrapper {
    height: 600px;
    border-radius: 24px;
    border: 4px solid #fff;
    overflow: hidden;
    transition: unset;
    background: #fff;
    padding: 20px;
}
.product_images_wrapper {
    height: 160px;
    width: 160px;
    border-radius: 24px;
    border: 2px solid #D2D2D2;
    overflow: hidden;
    background: #fff;
}
.product_image_wrapper picture,
.product_images_wrapper img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.product_images_wrapper picture {
    margin: auto;
}
.product_image_wrapper img,
.product_images_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product_image_slider .swiper-button-next {
    right: 24px;
}
.product_image_slider .swiper-button-prev {
    left: 24px;
}
.product_images_list {
    height: 100%;
}
.product_images_slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-vertical~.swiper-button-next {
    right: calc(50% - 20px) !important;
    top: calc(100% - 10px);
    transform: rotate(90deg);
}
.swiper-vertical~.swiper-button-prev {
    right: calc(50% - 20px) !important;
    left: unset;
    top: 15px;
    transform: rotate(90deg);
}
.swiper-slide-thumb-active .product_images_wrapper {
    border-color: #061928d1;
}
.swiper:not(.swiper-initialized) {
    overflow: hidden;
}
.fn_images_slide:not(.swiper-initialized) .swiper-wrapper .swiper-slide:nth-child(1n+3) {
    display: none;
}
.product_information {
    width: 500px;
    gap: 32px;
}
.product_information_footer {
    margin-bottom: 40px;
    gap: 16px;
}
.product_anchor {
    text-decoration: underline;
    width: fit-content;
}
.product_variant_sku span:first-child,
.product_annotation span:first-child {
    color: #999;
}
.product_annotation ul, .product_annotation ul li:last-of-type {
    margin-bottom: 0;
}
.product_information_header {
    gap: 64px;
}
.product_body_wishlist {
    display: flex;
    align-items: center;
    gap: 12px;
}
.wishlist_product_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--basic-company);
    border-radius: 50%;
}
.selected .wishlist_product_button {
    color: var(--basic-company);
}
.product_rating,
.post_rating {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 50px;
    background: var(--light-blue);
    padding: 12px 18px;
}
.product_body_form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.product_annotation {
    background: #e3e8ed;
    border-radius: 12px;
    padding: 20px;
    
}
.product_annotation__content {
    max-height: 430px;
    overflow: auto;
}
.product_prices {
    font-size: 24px;
    gap: 6px;
}
.product_prices .old_price {
    font-size: 16px;
}
.product_available {
    margin-top: 6px;
    font-size: 16px;
}
.product_available_in_stock {
    color: #27AE60;
}
.product_available_out_stock {
    color: #EB5757;
}
.product_variants {
    display: flex;
    align-items: center;
    gap: 12px;
}
.product_body_btns {
    display: flex;
    align-items: center;
    gap: 40px;
}
.product_body_btns .sweet_btn {
    width: 221px;
}
.amount {
    display: flex;
    align-items: center;
    gap: 8px;
}
.amount span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid #D2D2D2;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
}
.amount_input {
    border-radius: 100px;
    border: 1px solid #D2D2D2;
    background: #F9F9F9;
    width: 72px;
    height: 48px;
    text-align: center;
}
.product_bottom_main {
    width: calc(100% - 600px);
    gap: 50px;
}
.product_bottom_ttl {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}
.desc_dealivery_payment {
    margin-bottom: 16px;
}
.desc_product_ttl {
    font-weight: 700;
}
.item_dealivery_payment ul {
    margin: unset;
    margin-left: 20px;
}
.item_dealivery_payment ul li {
    margin: unset;
}
.dealivery_payment_item {
    width: 50%;
}
.product_features {
    gap: 16px;
}
.product_feature_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product_feature_name, .product_feature_value {
    width: 50%;
}
.product_feature_name {
    color: #999;
    position: relative;
    min-height: 1px;
}
.product_feature_name::after {
    content: "";
    border-bottom: 2px dotted #e3e8ed;
    position: absolute;
    height: 1px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 20px;
    z-index: 2;
}
.product_feature_name span {
    background: #fff;
    position: relative;
    z-index: 10;
    line-height: 30px;
}
.product_side {
    width: 460px;
    height: fit-content;
    position: sticky;
    padding-top: 75px;
    top: 120px;
}
.review_block_header .sweet_btn {
    height: 48px;
    min-width: 208px;
}
.review_block_header {
    margin-bottom: 24px;
}
.product_no_reviews {
    border-radius: 12px;
    border: 1px solid #D2D2D2;
    background: #FFF;
    padding: 24px;
    font-size: 18px;
}
.popup_form_inner {
    display: flex;
    flex-direction: column;
    width: 400px;
    max-width: 100%;
    gap: 24px;
}
.popup_form_header {
    font-size: 24px;
    height: 40px;
    display: flex;
    align-items: center;
    font-weight: 600;
}
.form_input,
.form_textarea {
    width: 100%;
    height: 48px;
    padding: 0 24px;
    border-radius: 64px;
    border: 1px solid #D2D2D2;
    background: #F9F9F9;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}
.form_textarea {
    height: unset;
    padding: 24px;
    border-radius: 24px;
}
label.error {
    font-size: 16px;
    padding: 5px 26px 0;
}
::placeholder {
    color: #C7C7C7;
    font-family: var(--font-family);
}
.form_footer .sweet_btn {
    margin: 0 auto;
    width: 100%;
    max-width: 344px;
}
.rating-stars input {
    display: none;
}
.rating-stars,
.rating-stars label,
.review_block_header,
.review_form_rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.rating-stars {
    gap: 8px
}
.rating-stars .rating_fill {
    fill: #FF8A00;
    -webkit-transition: .3s;
    transition: .3s
}
.rating-stars label {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer
}
.rating-stars label svg {
    width: 100%;
    height: 100%
}
.rating-stars label:hover:before {
    -webkit-transition: all .25s ease 0s;
    transition: all .25s ease 0s
}
.rating-stars input:checked+label~label .rating_fill {
    fill: transparent
}
.rating-stars input:checked+label~label:hover .rating_fill {
    fill: #FF8A00
}
.review_form_rating {
    flex-direction: column;
}
.comments_block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.comment_item {
    position: relative;
    border-radius: 12px;
    border: 1px solid #D2D2D2;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.anchor_link {
    position: absolute;
    top: -120px;
    opacity: 0;
    visibility: hidden;
}
.comment_item_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #120C00;
    font-size: 18px;
    font-weight: 700;
}
.comment_item_footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}
.comment_item_admin {
    color: #EB5757;
}
.comment_item_date {
    color: #828282;
}
.swiper-navigation-disabled~.swiper-button-next,
.swiper-navigation-disabled~.swiper-button-prev {
    display: none;
}
.fn_variants_slide .swiper-slide {
    width: auto !important;
}
.fn_variants_slide .swiper-slide:last-child {
    margin: unset !important;
}
.product_preview_variants {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
}
.cart_popup_wrapper {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    animation-name: dropdownFadeInRight;
    animation-duration: 0.4s;
    padding: unset !important;
}
@keyframes dropdownFadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.cart_purchase_title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    padding: 24px;
    border-bottom: 1px solid #D2D2D2;
}
.cart_popup_inner,
.cart_popup_purchases {
    height: 100%;
}
.cart_popup_footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid #D2D2D2;
    gap: 16px;
}
.cart_popup_total_wrapper {
    gap: 5px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
}
.cart_popup_total_wrapper .currency {
    font-size: 18px;
    margin-bottom: 3px;
}
.cart_popup_purchases_wrapper {
    padding: 0 24px;
    overflow: auto;
    max-height: calc(100dvh - 257px);
}
.purchase_item {
    position: relative;
    padding: 24px 0;
    border-bottom: 1px solid #D2D2D2;
    gap: 12px;
}
.purchase_item_image {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 16px;
    border: 2px solid grey;
    overflow: hidden;
    background: #fff;
    padding: 10px;
}
.purchase_item_image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.purchase_item_image svg {
    width: 70%;
    height: 70%;
}
.purchase_item_content {
    gap: 7px;
    width: 100%;
}
.purchase__remove {
    position: absolute;
    top: 24px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.purchase_item_name {
    max-width: calc(100% - 34px);
    width: 100%;
}
.purchase_item_prices {
    gap: 10px;
}
.amount.purchase_item_amount span {
    width: 24px;
    height: 24px;
}
.purchase_item_amount .amount_input {
    width: 48px;
    height: 24px;
}
.cart_page .h6 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 24px;
}
.block--cart_purchases .h6 {
    margin-bottom: unset;
}
.form_cart .sweet_btn {
    width: 100%;
}
.order_boxeded .h6 {
    margin-bottom: 16px;
}
.form__footer .sweet_btn {
    min-width: 200px;
}
.delivery__description {
    border-radius: 12px;
    background: #F9F9F9;
    border: unset;
    padding: 15px;
    font-size: 16px;
    color: #312B26;
}
.order_payment__form .sweet_btn,
.order_payment__checkout .sweet_btn {
    min-width: fit-content;
    max-width: 100%;
    font-size: 16px;
    margin-top: 24px;
    width: 300px;
}
.feedback_btn {
    color: #fff;
    background: var(--basic-company);
    font-weight: 400;
    padding: 0 25px;
}
.ya_map iframe {
    width: 100%;
}
.advantages_wrapper {
    width: 100%;
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: minmax(min-content, 100%) minmax(min-content, 100%);
}
.filter__name_arrow svg {
    width: 15px;
    height: 15px;
    display: block;
    color: #000;
    transform: rotate(180deg);
}
.filter__name.active .filter__name_arrow svg {
    transform: rotate(0deg);
}
.prod_link_btn {
    border: 3px solid var(--basic-company);
    border-radius: var(--br);
    padding: 10px 20px;
    text-decoration: none!important;
}
#fn_wishlist_confirm .fancybox-button {
    display: none;
}
.form__group.change_password {
    border: 1px solid #000;
    border-radius: 20px;
    width: auto;
    padding: 10px 20px;
    color: #000;
    margin-bottom: 0;
}
.change_pass {
    margin-bottom: 0;
}
.form__group.change_password:hover {
    border-color: var(--basic-company);
}
.clearfix {
    margin-top: 30px;
}
.product_sort select {
    display: none!important;
}
.prod_weight, .product_body_variants {
    display: none;
}
.product_top_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product_side .discount_label, .product_side .wishlist_button {
    top: 20px;
}
.product_bottom_item {
    border-bottom: 1px solid #e3e8ed;
    padding-bottom: 50px;
}
.product_bottom_item:last-of-type {
    border-bottom: none;
    padding-bottom: 0px;
}
.delivery_wrapper {
    display: flex;
    justify-content: space-between;
}
.dots {
    border-bottom: 2px dotted #e3e8ed;
}
.product_video_wrapper iframe {
    width: 480px;
    height: 270px;
    border-radius: 12px;
}
.product_preview_variants {
    display: none;
}
.cat_image_grid {
    display: grid;
    place-items: center;
}
.cat_image_grid svg {
    display: block;
    width: 50%;
    height: 50%;
    color: #9d9c9c;
}
.subcategory .category_item {
    margin-bottom: 10px;
    height: 42px;
}
.services_icon, .services_icon picture  {
    display: grid;
    place-items: center;
}
.services_icon {
    transition: .5s;
}
.services_icon img {
    display: block;
    width: 70%;
    height: 100%;
}
.services_img {
    background-position: 50% -20%;
}

.header_menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header_menu {
    width: 35%;
}
.header_menu ul li {
    margin-bottom: 0;
    margin-right: 10px;
}
.header_menu ul li:last-of-type {
    margin-right: 0;
}
.section_main-categories .level_1_title {
    display: none;
}
.main_menu_inner .level_1_title picture {
    display: none;
}
.main_menu_inner .level_1_title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.main_menu_border {
    border-left: 1px solid #DBDBDB;
    padding-left: 23px;
}
.description_half {
    width: 70%;
    height: 100%;
}
.block_image {
    min-width: 300px;
    max-width: 330px;
    width: 30%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.block_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.prod_img_no_photo {
    /* height: 600px; */
}
.prod_img_no_photo .product_preview__no_image {
    width: 100%;
    height: auto;
    opacity: .5;
    margin-bottom: 20px; 
}
.no_photo__text {
    display: block;
    font-size: 20px;
    color: #000000b5;
    margin-top: 20px;
    text-align: center;
}
.ya_map {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 450px;
}
.ya_map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.block_font {
    font-size: 20px;
}
.block_pad {
    margin-left: -15px;
}
.section_main-banners .swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, transparent);
    border: 1px solid #fff;
}
.section_main-banners .swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: #fff;
}
.section_heading .sweet_btn {
    color: var(--basic-company);
}
.banner_group_description, .banner_group_description p {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}
.banner_group_description {
    margin-top: 30px;
}
.banner_group_link {
    margin: 0 auto;
    margin-top: 30px;
}
.main_menu_inner {
    max-height: 80vh;
}
.block_page .block__description a {
    color: var(--basic-company);
    text-decoration: underline;
    transition: .5s;
}
.block_page .block__description a:hover {
    color: var(--alternate-color);
}
.main_menu_list li.services_item_1 {
    text-decoration: none;
}
.mega_item_1 .item_bolt {
    font-weight: 500;
}
.menu_group--mega_menu .menu_group__item--2 .menu_group__link {
    padding: 5px 0;
}
.main_menu_list .menu_group--menu_services ul.menu_group__list--3 {
    gap: 0;
}
.menu_group--menu_services li.menu_group__item--3 {
    padding: 5px 20px;
}
.menu_container {
    display: grid;
    grid-template-columns: 44% 25% 22%;
    column-gap: 40px;
    width: 100%;
}
.item_bolt {
    margin-bottom: 10px;
    display: block;
}
.sub_container {
    display: flex;
    flex-direction: column;
}
.first_ul.item_columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-count: 2;
    column-gap: 20px;
    flex-wrap: wrap;
    /* height: 270px; */
    overflow-y: auto;
}
.menu_group__item--2 {
    padding: 0;
    white-space: wrap;
    width: 100%;
    margin: 0;
}
.mega_item_1 {
    height: 100%;
    display: block;
}
.item_none {
    display: none;
}
.no-scroll {
    overflow: hidden;
}
.color-blue {
    color: #0c71c3d9;
}
.marker {
    position: relative;
    padding: 5px 0 5px 15px!important;
}
.marker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 5px;
    height: 5px;
    background: var(--basic-company);
    border-radius: 50%;

}
.callback_btn_fixed {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 20px;
    bottom: 10%;
    background: #46c730;
    z-index: 9999;
    display: grid;
    place-items: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    transition: all .4s linear;
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.callback_btn_fixed svg {
    width: 20px;
    height: 20px;
    color: #fff;
}
.callback_btn_fixed:hover {
    box-shadow: none;
    background: #428736;
}
@keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
      transform: translate(-50%, -50%) scale(1);
    }
}
.categories_title_inner {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin-bottom: 10px;
}
.table_responsive::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 5px;
    height: 5px;
}
.table_responsive::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
}