/*Variables*/
:root {
    --font-color: #1C253D;

    --orange: #FFCE41;
    --black: #1C253D;

    --grey: #FAFAFA;
    --greySecond: #888C92;

    --green: #EBF6E5;
    --greenSecond: #68D327;

    --btn-orange: #FFCE41;
    --btn-orange-hover: #F1B300;
    --btn-orange-active: #DDA400;

    --btn-red: #F14A25;
    --btn-red-hover: #D44323;
    --btn-red-active: #B6361A;

    --btn-black: #1C253D;
    --btn-black-hover: #364262;
}
.hide_phone{
    display: none;
}
/*General*/
* {
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    outline: none;
    text-decoration: none;
    box-shadow: none;
    box-sizing: border-box;
    background: none;
}

*::selection {
    background: var(--orange);
    color: var(--font-color);
}

html {
    background: var(--grey);
}

body, a, div, p, button, span, label, input, select, textarea, h1, h2, h3, h4 {
    font-size: 15px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--font-color);
}

h1, h2 {
    font-weight: 800;
    font-size: 40px;
    line-height: 56px;
    text-transform: uppercase;
}

h2 {
    font-size: 36px;
    line-height: 50px;
}

h3 {
    font-size: 28px;
    line-height: 50px;
    text-transform: uppercase;
}

main, img, svg, a, iframe {
    display: block;
}

main {
    overflow: hidden;
}

li {
    list-style-type: none;
}

a {
    transition: .2s ease;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

body {
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
}

.krayt-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
div.side-panel-loader-container{
    width: 47px;
    height: 54px;
    margin: auto;
    animation: svgMainLoader 2.5s ease infinite;
    background-size: 46px;
}
.device{
    margin-top: 24px;
    width: 100%;
    border-bottom: 1px solid #F3F3F3;
}

.device + .mobile-menu_contacts{
    padding-top: 8px;
}
section._bg-white {
    background: white;
}

.reviews {
    display: flex;
    align-items: flex-end;
}

.reviews_stars {
    display: flex;
    align-items: center;
}

.reviews_star {
    width: 18px;
    height: 18px;
    position: relative;
}

.reviews_star + .reviews_star {
    margin-left: 5px;
}

.reviews_star div {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: auto 100%;
}

.reviews_star_empty {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0L11.4334 5.65067L17.5595 6.21885L12.9374 10.2793L14.2901 16.2812L9 13.14L3.70993 16.2812L5.06263 10.2793L0.440492 6.21885L6.56657 5.65067L9 0Z' fill='%23D4D9DF'/%3E%3C/svg%3E%0A");
}

.reviews_star_full {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 0L11.4334 5.65067L17.5595 6.21885L12.9374 10.2793L14.2901 16.2812L9 13.14L3.70993 16.2812L5.06263 10.2793L0.440492 6.21885L6.56657 5.65067L9 0Z' fill='%23FFC700'/%3E%3C/svg%3E ");
}

.reviews_count {
    color: var(--greySecond);
    line-height: 16px;
    margin-left: 12px;
}

.reviews_count.anchor-link {
    cursor: pointer;
    transition: .2s ease;
    border-bottom: 1px dashed var(--greySecond);
}

.reviews_count.anchor-link:hover {
    border-bottom: 1px dashed transparent;
}

.button {
    cursor: pointer;
    min-width: 200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    transition: .3s ease;
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    padding: 0 28px;
    user-select: none;
    -webkit-user-select: none;
}
.button span {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
}
.button path {
    transition: .3s ease
}

.button:active {
    transform: scale(0.95);
}

.btn_orange {
    transition: 0.3s ease;
    background: var(--btn-orange);
    color: var(--font-color);
}

.btn_orange:hover {
    background: var(--btn-orange-hover);
}

.btn_orange:active{
    background: var(--btn-orange-active);
}

.btn_red {
    background: var(--btn-red);
    color: white;
}

.btn_red:hover {
    background: var(--btn-red-hover);
}

.btn_red:active {
    background: var(--btn-red-active);
}


.btn_black {
    background: var(--btn-black);
    color: white;
}

.btn_black:hover {
    background: var(--btn-black-hover);
}

.btn_border {
    background: transparent;
    color: var(--font-color);
    border: 1px solid var(--btn-black);
}

.btn_border:hover {
    color: white;
    background: var(--btn-black);
}

.btn_border:hover path {
    fill: white;
}
.el-button:focus-visible{
    outline: none;
}

.btn_disable {
    border: none;
    color: #9A9DA7;
    background: #E7E7E7;
    pointer-events: none;
    cursor: default;
}


.no-select {
    user-select: none;
    -webkit-user-select: none;
}

.no-scroll {
    overflow: hidden !important;
}

.bx-no-touch .no-scroll {
    padding-right: 8px;
}

.bx-no-touch .no-scroll .banner-top-wrp{
    width: calc(100% - 8px);
}

.bx-no-touch .no-scroll .with-no-scroll-offset {
    padding-right: 8px;
}

.customScroll {
    overflow: auto;
    scrollbar-color: var(--black) #FBFBFC;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch
}
body.side-panel-disable-scrollbar {

    -webkit-overflow-scrolling: none !important;
    overscroll-behavior: none;
    touch-action: none;
    overflow: hidden;
}
body.side-panel-disable-scrollbar .catalog-element-top-panel.active{
    width: calc(100% - 8px);
}
.customScroll::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: #FBFBFC;
}

.customScroll::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 3px;
}

body.customScroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
body.customScroll::-webkit-scrollbar-thumb {
    border-radius: 8px;
}



.popup-window {
    padding: 0;
    font: unset;
    width: calc(100% - 32px);
    background: none;
    box-shadow: none;
    animation: popupFromTop .3s ease forwards;
}

.popup-window-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.popup-window-overlay {
    background: rgba(28, 37, 61, 0.5);
    opacity: 1;
    animation: fadeIn .3s ease forwards;
}

.popup-window-close-icon {
    cursor: pointer;
    opacity: 1;
    position: absolute;
    right: -50px;
    top: -8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.popup-window-close-icon:hover::after {
    transform: rotate(180deg);
}

.popup-window-close-icon:hover:active {
    transform: scale(0.9);
}

.popup-window-close-icon::after {
    display: block;
    position: static;
    transform: none;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.69999 12.0006L2.51272 5.81337C1.82909 5.12974 1.82909 4.02141 2.51272 3.33885L3.33756 2.514C4.02141 1.83016 5.12974 1.83016 5.8123 2.514L11.9994 8.70106L18.1866 2.51272C18.8703 1.82909 19.9786 1.82909 20.6612 2.51272L21.4873 3.33756C22.1709 4.02141 22.1709 5.12974 21.4873 5.8123L15.2989 12.0006L21.486 18.1877C22.1698 18.8715 22.1698 19.9799 21.486 20.6624L20.6612 21.4873C19.9775 22.1709 18.8692 22.1709 18.1866 21.4873L11.9994 15.3L5.8123 21.4873C5.12846 22.1709 4.02012 22.1709 3.33756 21.4873L2.51272 20.6624C1.82909 19.9786 1.82909 18.8703 2.51272 18.1877L8.69999 12.0006Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    transform-origin: center;
    transition: .3s ease;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}

.swiper-button {
    position: absolute;
    top: calc(50% - 22px);
    z-index: 8;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: white;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.swiper-button svg {
    opacity: 0.4;
    transition: .3s ease;
}

.swiper-button-prev svg {
    margin-left: -2px;
}

.swiper-button-next svg {
    margin-right: -2px;
}

.swiper-button:hover svg {
    opacity: 1;
}

.swiper-button:hover:active {
    transform: scale(0.9);
}

.swiper-button-prev {
    left: 2px;
}

.swiper-button-next {
    right: 2px;
}

.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

.switch {
    width: 46px;
    padding: 3px;
    border-radius: 29px;
    background: #9A9CA0;
    cursor: pointer;
    transition: .3s ease;
}

.switch div {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    background: white;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
    transition: .3s ease;
}

.switch:hover {
    background: #72757E;
}

.switch.active {
    background: var(--orange);
}

.switch.active div {
    transform: translateX(22px);
}

.loading {
    pointer-events: none;
}

.loading svg {
    margin: 0;
    display: block;
    stroke-dasharray: 70px;
    stroke-dashoffset: 110px;
    animation: loadingSvg 1.8s cubic-bezier(0.43, 0.25, 0.68, 0.8) infinite;
}

.link-with-underline.loading {
    border: none;
}

.link-with-underline {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    border-bottom: 1px dashed var(--font-color);
    cursor: pointer;
    transition: .2s ease;
}

.link-with-underline:hover {
    border-bottom: 1px dashed transparent;
}

.loader {
    width: 46px;
    height: 46px;
    transform-style: preserve-3d;
    perspective: 100px;
    transform: translateZ(100px);
}

.loader svg {
    width: 100%;
    height: 100%;
    animation: svgMainLoader 2.5s ease infinite;
}

/*Header*/

header {
    position: relative;
}

.top-header {
    padding: 20px 0;
    background: white;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    transition: box-shadow .3s ease;
}

header.show-search .top-header {
    box-shadow: none;
}

.top-header .krayt-container {
    position: relative;
    display: flex;
    align-items: center;
}

.top-header_logo {
    margin-right: 60px;
}

.top-header_logo svg {
    max-width: 164px;
    max-height: 40px;
    object-fit: contain;
}

.top-header_right {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-header_icons {
    display: flex;
    align-items: center;
}

.top-header_icons a {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s ease;
    background-color: #F4F4F4;
}

.top-header_icons a:hover {
    background: #EEEEEE;
}

.top-header_icons a:active {
    background: #E3E3E3;
}

.top-header_icons a + a {
    margin-left: 12px;
}

.basket_counter {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    top: 6px;
    right: 6px;
    background: var(--orange);
}

#burger-button{
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: .3s ease;
    background-color: #F4F4F4;
}

#burger-button:hover{
    background: #EEEEEE;
}

#burger-button:active {
    background: #E3E3E3;
}
#burger-button div {
    position: absolute;
    z-index: 2;
    left: calc(50% - 10px);
    top: calc(50% - 1px);
    width: 20px;
    height: 2px;
    border-radius: 4px;
    background: var(--black);
    transition: .4s ease;
}

#burger-button div:nth-child(1) {
    transform: translateY(-6px);
}

#burger-button div:nth-child(3) {
    transform: translateY(6px);
}

#burger-button.active div:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
}

#burger-button.active div:nth-child(1) {
    transform: rotate(-135deg);
}

#burger-button.active div:nth-child(3) {
    transform: rotate(135deg);
}

.top-header_info {
    flex-shrink: 0;
}

.top-header_phone {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    display: block;
    margin-bottom: 6px;
}

.top-header_communication {
    line-height: 17px;
    font-size: 14px;
    border-bottom: 1px dashed var(--font-color);
    transition: .3s ease;
    cursor: default;
    position: relative;
}

.top-header_communication:hover {
    border-bottom: 1px dashed transparent;
}

.communication_window-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    padding-top: 12px;
    z-index: 50;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: .3s ease;
}

.communication_window-wrap::before {
    content: '';
    position: absolute;
    top: 7px;
    right: 50px;
    width: 12px;
    height: 12px;
    border-radius: 1px;
    background: white;
    transform: rotate(45deg);
}

.top-header_communication:hover .communication_window-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.communication_window {
    background: white;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding: 12px 10px 10px;
    width: 236px;
}

.communication_window .button {
    width: 100%;
    min-width: unset;
    margin-top: 16px;
}

.communication_window-links a {
    display: flex;
    align-items: center;
    padding: 8px 18px 8px 12px;
    border-radius: 2px;
}

.communication_window-links a:hover {
    background: #f5f5f5;
}

.communication_window-links a span {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    flex-shrink: 0;
    white-space: nowrap;
}

.communication_window-links a svg {
    margin-right: 10px;
    width: 20px;
}


/*Mobile menu*/


.mobile-menu {
    position: fixed;
    z-index: 110;
    left: 0;
    top: 68px;
    width: 100%;
    height: calc(100vh - 68px);
    background: white;
    display: none;
    transition: .3s ease;
    animation: mobileMenu 0.4s ease;
}
#mobile-contacts .krayt-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}
#mobile-contacts .mobile-menu_contacts {

}
#mobile-contacts-close {
    align-self: flex-end;
    display: flex;
    align-items: center;
    margin-top: 20px;
    display: none;
}
#mobile-contacts-close span {
    font-size: 14px;
    font-weight: 400;
    margin-left: 8px;
    color: #A4A8B1;
}
.mobile-menu.hide-transition {
    opacity: 0;
    transform: translateY(10%);
}

.mobile-menu .krayt-container {
    height: 100%;
    max-width: 450px;
    padding-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.mobile-menu_auth {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid #F3F3F3;
    border-bottom: 1px solid #F3F3F3;
}

.mobile-menu_auth a {
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
}

.mobile-menu_contacts {
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu_contacts div {
    display: flex;
    align-items: center;
    margin-top: 18px;
}
.mobile-menu_contacts a {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
}
#mobile-contacts .mobile-menu_contacts a {
    font-size: 18px;
    line-height: 22px;
}
.mobile-menu_contacts svg {
    margin-right: 13px;
    width: 20px;
    height: 20px;
}

.mobile-menu_social {
    margin-top: 40px;
    display: flex;
}

.mobile-menu_social a {
    margin-right: 12px;
}

.mobile-menu_chat {
    margin-top: 30px;
}
.lang-wrp-mobile{
    display: none;
}


/*
SIDE PANEL
*/

.side-panel.side-panel-container {
    margin: 16px;
    border-radius: 8px;
    height: calc(100vh - 32px) !important;
}
.side-panel .side-panel-labels{
    top: 0!important;
}
.side-panel-content-container, .side-panel-iframe, .side-panel-loader {
    border-radius: 8px;
}

.side-panel-label{
    background-color: transparent;
    overflow: visible;
}

.side-panel-label-icon-close:before{
    display: none;
}

.side-panel-label:hover .side-panel-label-icon-close:after{
    display: none;
}

.side-panel-label-icon{
    margin-left: 0;
    margin-bottom: 18px;
    transition: 0.3s ease;
    width: 24px;
    height: 24px;
    display: inline-block;
    -webkit-mask-size: 24px 24px;
    mask-size: 24px 24px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: #fff;
    -webkit-mask-image: url(./img/close.svg);
    mask-image: url(./img/close.svg);;
}

.side-panel-label:hover .side-panel-label-icon{
    transform: rotate(180deg);
}

.side-panel-overlay{
    background-color: rgba(28, 37, 61, 0.5) !important;
}


    /*Contacts*/
.contacts_page .contacts_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 44px 0 60px 0;
}
.contacts_page h1{
    font-weight: 800;
    font-size: 36px;
    line-height: 120%;
}
.contacts_page .contact-form_info-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap: 26px;
    grid-column-gap: 85px;
}
.contacts_page .contact-form_info-contact {
    display: flex;
    align-items: center;
}
.contacts_page .contact-form_info-contact svg {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}
.contacts_page .contact-form_info-contact a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    white-space: nowrap;
}
.contacts_page .link-with-underline {
    display: inline-block;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    border-bottom: 1px dashed var(--font-color);
    cursor: pointer;
    transition: .2s ease;
}

.contacts_page .link-with-underline:hover {
    border-bottom: 1px dashed transparent;
}

.contacts_page .contacts_video{
    width: 100%;
    /*height: 500px;*/
    margin-bottom: 40px;
    border-radius: 8px;
}

.contacts_page .contacts_video video{
    border-radius: 8px;
    background: transparent;
    width: 100%;
    max-width: 1300px;
}

.contacts_page .contacts_addresses{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 85px;
    margin-bottom: 150px;
}

.contacts_page .contacts_address{
    display: flex;
    align-items: center;
}

.contacts_page .contacts_address svg{
    fill: var(--font-color);
    margin-right: 12px;
    min-width: 24px;
    height: 24px;
}

.contacts_page .contacts_address p{
    font-weight: 400;
    font-size: 15px;
    line-height: 130%;
}


@media (max-width: 1330px){
    .contacts_page .contacts_info{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .contacts_page h1{
        margin-bottom: 40px;
    }
    .contacts_page .contact-form_info-contacts{

    }
}
@media (max-width: 1080px){
    .contacts_page .contacts_addresses{
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap: 35px;
    }
    .contacts_page .contacts_addresses{
        margin-bottom: 120px;
    }
}
@media (max-width: 800px){
    .contacts_page .contact-form_info-contacts{
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 750px){
    .contacts_page .contacts_addresses{
        margin-bottom: 100px;
    }
}
@media (max-width: 700px){
    .contacts_page .contacts_info{
        padding-top: 24px;
    }
}
@media (max-width: 576px){
    .contacts_page .contacts_addresses{
        grid-template-columns: 1fr;
    }
    .contacts_page .contact-form_info-contact a{
        font-size: 14px;
        line-height: 18px;
    }
    .contacts_page .contacts_address p{
        font-size: 14px;
    }
}
@media (max-width: 450px) {
    .contacts_page .contact-form_info-contacts {
        grid-template-columns: 1fr;
    }
}

/*Footer*/

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    margin-top: auto;
    background: var(--black);
}

footer .krayt-container {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-page footer .krayt-container {
    border-top: 1px solid #293553;
}

.footer_links {
    display: flex;
}

.footer_links a {
    margin-right: 12px;
    transition: .3s ease;
    line-height: 100%;
}
.footer_by-krayt,
.footer_by-krayt span{
    font-size: 14px;
    line-height: 14px;
    color: #5C6E9A;
}
.footer_by-krayt span{
    margin-bottom: 4px;
    margin-left: 2px;
    transition: 0.3s;
}
.footer_by-krayt{
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.footer_by-krayt:hover,
.footer_by-krayt:hover span,
.footer_links a:hover{
    color: #fff;
}

/*Contacts*/

#map {
    width: 600px;
    height: 600px;
}

/*Adaptive*/
.wrp-select-lang{
    margin-left: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.current-lang{
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    display: flex;
    align-items: center;
}
.current-lang span{
    display: inline-block;
    margin-left: 4px;
}
.wrp-list-tags{
    top: 0;
    padding-top: 30px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -15px;
    transition: .3s ease;
    z-index: 2;
    transform: translateY(30px);
}
.list-lags{
    width: 60px;
    background: #FFFFFF;
    box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.15);
    border-radius: 2px;
    padding: 10px;
    position: relative;
}
.list-lags::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 25px;
    width: 12px;
    height: 12px;
    border-radius: 1px;
    background: white;
    transform: rotate(45deg);
    z-index: 2;
}
.list-lags a{

    border-radius: 2px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #01142F;
    padding: 8px;
}
.list-lags a:hover{
    background: #F5F5F5;
}
.list-lags a.selected{
    font-weight: 700;
}
.wrp-select-lang:hover .wrp-list-tags{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.footer-desc{
    color: #5C6E9A;
    font-size: 14px;
}


@media (min-width: 1081px) {
    .mob {
        display: none !important;
    }
}

@media (max-width: 1350px) {
    .krayt-container {
        max-width: 1024px;
    }

    .top-header_logo {
        margin-right: 40px;
    }

    .top-menu__item {
        margin: 6px 30px 6px 0;
    }

    .top-header_icons a + a {
        margin-left: 20px;
    }

    h1, h2 {
        font-size: 32px;
        line-height: 44px;
    }

    h3 {
        font-size: 26px;
        line-height: 40px;
    }
}

@media (max-width: 1080px) {
    h1, h2 {
        font-size: 28px;
        line-height: 40px;
    }

    .krayt-container {
        max-width: 900px;
    }

    .breadcrumbs, .hidden-search_wrapper, .top-menu, .top-header_info,
    #header-auth, #header-search, #header-basket .desk {
        display: none;
    }

    header {
        height: 70px;
    }

    .bx-no-touch .no-scroll .top-header {
        padding-right: 8px;
    }

    .top-header {
        padding: 0;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 20;
    }

    .top-header .krayt-container {
        height: 70px;
        justify-content: space-between;
    }

    .basket_counter {
        width: 10px;
        height: 10px;
        top: 2px;
    }

    .top-header_icons a {
        margin-left: 20px;
    }

    .top-header_logo{
        margin-right: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .top-header_right{
        margin-left: unset;
    }
    .top-header_icons a{
        width: 36px;
        height: 36px;
    }

    .lang-wrp-mobile{
        margin-top: auto;
        display: flex;
        column-gap: 4px;
        align-items: center;
    }
    .lang-wrp-desktop{
        display: none;
    }

    .lang-wrp-mobile .wrp-select-lang{
        margin-left: 0;
    }

    .lang-wrp-mobile .wrp-list-tags{
        top: unset;
        bottom: 90px;
    }

    .lang-wrp-mobile .wrp-select-lang:hover .wrp-list-tags{
        transform: translateY(60px);
    }

    .lang-wrp-mobile .list-lags::before{
        top: unset;
        bottom: -5px;
    }
    .b24-widget-button-position-bottom-right{
        right: 16px !important;
        bottom: 88px !important;
    }
}
@media (max-width: 950px) {
    .krayt-container {
        max-width: 800px;
    }
}
@media (max-width: 750px) {
    .krayt-container {
        width: calc(100% - 32px);
    }

    h1, h2 {
        font-size: 22px;
        line-height: 32px;
    }

    h3 {
        font-size: 20px;
        line-height: 32px;
    }

    p {
        line-height: 25px;
    }
}

@media (max-width: 700px) {
    header {
        height: 60px;
    }
    .mobile-menu {
        top: 58px;
        height: calc(100vh - 58px);
    }
    .top-header .krayt-container {
        height: 60px;
    }

    .top-header_logo svg {
        max-width: 130px;
        max-height: 32px;
    }
    #burger-button{
        width: 36px;
        height: 36px;
    }
    h1, h2 {
        font-size: 18px;
        line-height: 26px;
    }

    h3 {
        font-size: 16px;
        line-height: 26px;
    }

    p {
        font-size: 14px;
        line-height: 28px;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 16px;
        line-height: 22px;
    }

    h2 {
        font-size: 16px;
        line-height: 24px;
    }

    h3 {
        font-size: 14px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 25px;
    }

    .reviews_star {
        width: 16px;
        height: 16px;
    }

    .reviews_count {
        font-size: 14px;
        line-height: 16px;
    }

    .button {
        font-size: 12px;
    }
    footer .krayt-container{
        align-items: flex-end;
        flex-wrap: wrap;
        padding: 16px 0;
    }
    .footer_links{
        width: 100%;
        margin-bottom: 20px;
    }
    .wrp-select-lang {
        margin-left: 25px;
    }
    .footer_links{
        width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid #2A3654;
        margin-bottom: 8px;
    }
    .footer-desc{
        width: 61%;
        font-size: 12px;
        line-height: 140%;
    }
    .footer_by-krayt{
        font-size: 12px;
    }
}

@media (max-width: 499px) {
    .side-panel .side-panel-labels{
        z-index: 2;
        transform: unset;
        left: unset;
        right: 0;
        top: 15px !important;
    }
    .side-panel .side-panel-label{
        box-shadow: unset;
    }
    .side-panel.side-panel-container{
        margin: 0;
        height: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        border-radius: 0;
    }
    .side-panel-label-icon{
        /*width: 16px;*/
        /*height: 16px;*/
        /*-webkit-mask-size: 16px 16px;*/
        /*mask-size: 16px 16px;*/
        background-color: #1C253D;
    }
}