:root {
    --site-max-width: 1400px;
    --site-white: #fff;
    --site-text: #0f0f0f;
    --site-accent: #d81113;
    --site-push: #9D0B0C;
    --site-muted: #929292;
    --site-soft: #f3f3f3;
    --site-black: #000000;
    --site-grey: #8C8C8C;
    --site-light-black: #232323;
    --site-dark-grey: #494949;
    --site-semi-gray: #D2EEB6;
    --site-valid: #5C8533;
    --site-font-regular: "InterTight-Regular", Inter, Arial, sans-serif;
    --site-font-medium: "InterTight-Medium", Inter, Arial, sans-serif;
    --site-font-semibold: "InterTight-SemiBold", Inter, Arial, sans-serif;
  }

html {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
}
.popup-bg{
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.shell{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
header{
    padding: 0px 10px;
    margin-bottom: 20px;
}
header.has-mobile-bottom-line{
    margin-bottom: 40px;
}
main{
    flex: 1 0 auto;
}
footer{
    padding: 0px 10px;
    flex-shrink: 0;
}
.m-full-10-md-5{
    padding: 0px 10px;
}
.m-full-10-xl-0{
    padding: 0px 10px;
}
.m-full-10-md-0{
    padding: 0px 10px;
}
main section{
    margin-bottom: 90px;
}
main section.no-mb{
    margin-bottom: 0;
}
/*************** common **************************/
.visually-hidden{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: inset(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}
.link-btn{
    font-family: var(--site-font-semibold);
    font-size: 15px;
    font-weight: 600;
    color: var(--site-black);
    text-decoration: none;
    line-height: 60px;
    display: inline-block;
    padding: 0px 58px 0 32px;
    position: relative;
    background-color: var(--site-white);
    border-radius: 30px;
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
}
.link-btn i{
    width: 32px;
    height: 32px;
    display: block;
    position: absolute;
    top: 14px;
    right: 12px;
    border-radius: 50%;
    background-color: var(--site-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-white);
}
.link-btn i svg{
    width: 10px;
    height: 7px;
}
.link-btn:hover{
    color: var(--site-black);
    background-color: var(--site-soft);
}
.link-btn:hover i{
    color: var(--site-soft);
}
.link-btn.inverse{
    background-color: var(--site-accent);
    color: var(--site-white);
}
.link-btn.inverse:hover{
    background-color: var(--site-push);
    color: var(--site-white);
}
.link-btn.inverse i{
    background-color: var(--site-white);
    color: var(--site-accent);
}
.link-btn.inverse:hover i{
    color: var(--site-push);
}
.download-btn{
    height: 68px;
    position: relative;
    background-color: var(--site-accent);
    border-radius: 18px;
    font-family: var(--site-font-semibold);
    font-size: 18px;
    font-weight: 600;
    color: var(--site-white);
    display: flex;
    align-items: center;
    padding: 0 75px 0 19px;
    text-decoration: none;
}
.download-btn:hover{
    background-color: var(--site-push);
    color: var(--site-white);
}
.download-btn i{
    width: 44px;
    height: 44px;
    display: block;
    position: absolute;
    background-color: var(--site-white);
    border-radius: 10px;
    top: 12px;
    right: 12px;
    color: var(--site-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.download-btn:hover i{
    color: var(--site-push);
}
.form-input{
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    border-radius: 8px;
    border: 1px solid #4949491A;
    height: 60px;
    background: #8080800D;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    display: block;
}
.form-input::placeholder{
    color: var(--site-black);
    opacity: 0.5;
}
.form-input:focus{
    border: 1px solid var(--site-dark-grey);
    color: var(--site-black);
}
.form-input.error{
    border: 1px solid var(--site-accent);
}
.form-input.dark-input{
    border: 1px solid #FFFFFF1A;
    background: #F2F2F20D;
    color: var(--site-white);
}
.form-input.dark-input::placeholder{
    color: var(--site-white);
    opacity: 0.5;
}
.form-input.dark-input:focus{
    border: 1px solid var(--site-white);
}
.form-input.dark-input.error{
    border: 1px solid var(--site-accent);
}
.form-select-wrap{
    position: relative;
    display: block;
    width: 100%;
}
.form-select-native{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.form-select-ui{
    position: relative;
}
.form-select-trigger{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    border-radius: 8px;
    border: 1px solid #4949491A;
    height: 60px;
    background: #8080800D;
    padding: 0 20px;
    box-sizing: border-box;
    outline: none;
    cursor: pointer;
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.form-select-value{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
}
.form-select-arrow{
    flex-shrink: 0;
    width: 10px;
    height: 6px;
    background-image: url('../img/select-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.2s;
}
.form-select-wrap.is-open .form-select-arrow{
    transform: rotate(180deg);
}
.form-select-trigger:focus,
.form-select-wrap.is-open .form-select-trigger{
    border: 1px solid var(--site-dark-grey);
    color: var(--site-black);
    box-shadow: none;
}
.form-select-wrap.error .form-select-trigger{
    border: 1px solid var(--site-accent);
}
.form-select-wrap.dark-input .form-select-trigger{
    border: 1px solid #FFFFFF1A;
    background: #F2F2F20D;
    color: var(--site-white);
}
.form-select-wrap.dark-input .form-select-trigger:focus,
.form-select-wrap.dark-input.is-open .form-select-trigger{
    border: 1px solid var(--site-white);
}
.form-select-wrap.dark-input.error .form-select-trigger{
    border: 1px solid var(--site-accent);
}
.form-select-dropdown{
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background-color: var(--site-white);
    border: 1px solid #4949491A;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    max-height: 240px;
    overflow-y: auto;
}
.form-select-option{
    padding: 5px 20px;
    font-family: var(--site-font-regular);
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    cursor: pointer;
    opacity: 0.5;
}
.form-select-option:hover{
    background-color: var(--site-soft);
    opacity: 1;
}
.form-select-option.is-selected{
    opacity: 1;
}
.form-select-option.is-disabled{
    color: var(--site-grey);
    cursor: default;
}
.form-select-option.is-disabled:hover{
    background-color: transparent;
}
.form-select-wrap.is-disabled .form-select-trigger{
    color: var(--site-grey);
    cursor: default;
}
.form-textarea{
    resize: none;
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    border-radius: 8px;
    border: 1px solid #4949491A;
    height: 120px;
    background: #8080800D;
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    display: block;
    padding: 20px;
}
.form-textarea::-webkit-scrollbar{
    border-radius: 8px;
}
.form-textarea::-webkit-scrollbar-thumb{
    background-color: var(--site-soft);
    border-radius: 8px;
}
.form-textarea::-webkit-scrollbar-track{
    background-color: var(--site-white);
    border-radius: 8px;
}
.form-cb{
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #4949491A;
    background: #8080800D;
    border-radius: 5px;
    display: inline-block;
    outline: none;
    position: relative;
    cursor: pointer;
}
.form-cb.cb-dark{
    border: 1px solid #FFFFFF1A;
    background: #F2F2F20D;
}
.form-cb:checked::before {
    content: "";
    background-color: var(--site-black);
    position: absolute;
    width: 5px;
    height: 1px;
    transform: rotate(45deg);
    left: 6px;
    top: 12px;
}
.form-cb:checked::after {
    content: "";
    background-color: var(--site-black);
    position: absolute;
    width: 8px;
    height: 1px;
    transform: rotate(-45deg);
    left: 9px;
    top: 11px;
}
.form-cb.cb-dark:checked::before {
    background-color: var(--site-white);
}
.form-cb.cb-dark:checked::after {
    background-color: var(--site-white);
}
.form-cb.error{
    border-color: var(--site-accent);
}
.form-line{
    margin-bottom: 25px;
}
.form-line.sub-mb{
    margin-bottom: 15px;
}
.form-line:last-child{
    margin-bottom: 0;
}
.form-row{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.form-col-6{
    width: calc(50% - 5px);
}
.form-line label{
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 0;
    position: relative;
    padding-left: 36px;
}
.form-line label input[type="checkbox"]{
    position: absolute;
    left: 0;
    top: 0;
}
.form-line label a{
    text-decoration: underline;
    color: var(--site-black);
}
.form-line label a:hover{
    color: var(--site-accent);
}
.modal.show .modal-dialog {
    transform: none;
    height: 100%;
    display: flex;
    align-items: center;
}
.modal-content{
    border-radius: 30px;
    padding: 30px;
    box-sizing: border-box;
}
.modal .modal-header{
    display: block;
    border: none;
    padding: 0px 0px 10px 0px;
}
.modal .modal-title{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 26px;
    margin: 0;
}
.modal .modal-body{
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-grey);
    line-height: 17px;
    padding: 0px;
    min-height: 34px;
}
.modal .modal-body p{
    margin-bottom: 20px;
}
.modal .btn-close{
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
    border: none;
    background: transparent;
    position: absolute;
    right: 14px;
    top: 16px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal .btn-close svg{
    width: 16px;
    height: 16px;
}
.horizontal-scroll-wrap{
    position: relative;
}
.horizontal-scroll-nav{
    display: none;
}
.horizontal-scroll-btn{
    width: 40px;
    height: 40px;
    border: 1px solid var(--site-soft);
    border-radius: 50%;
    background-color: var(--site-white);
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s, border-color 0.2s;
    border: 1px solid #0000001A;
    backdrop-filter: blur(14.899999618530273px);
}
.horizontal-scroll-btn:disabled{
    opacity: 0.35;
    cursor: default;
}
.horizontal-scroll-btn-prev::before,
.horizontal-scroll-btn-prev::after,
.horizontal-scroll-btn-next::before,
.horizontal-scroll-btn-next::after{
    content: '';
    background-color: var(--site-black);
    height: 7px;
    width: 1px;
    position: absolute;
    left: 50%;
    margin-left: 0px;
}
.horizontal-scroll-btn-prev::before{
    transform: rotate(45deg);
    top: 13px;
}
.horizontal-scroll-btn-prev::after{
    transform: rotate(-45deg);
    top: 18px;
}
.horizontal-scroll-btn-next::before{
    transform: rotate(-45deg);
    top: 13px;
}
.horizontal-scroll-btn-next::after{
    transform: rotate(45deg);
    top: 18px;
}
.horizontal-scroll-nav{
    display: none;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 0;
}
.no-beakpoint .horizontal-scroll-block{
    overflow-x: auto;
    flex-wrap: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    padding-bottom: 30px;
}
.no-beakpoint .horizontal-scroll-block::-webkit-scrollbar{
    display: none;
}
.no-beakpoint .scroll-item{
    flex: 0 0 auto;
    max-width: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.horizontal-scroll-block:not(.row) .scroll-item{
    width: auto;
}
.modal.lightbox .modal-dialog {
    max-width: min(95vw, 1100px);
}

.modal.lightbox .modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 90vh;
    position: relative;
    cursor: pointer;
}

.modal.lightbox .modal-body img {
    cursor: default;
}
.modal.lightbox .btn-close{
    display: none;
}
.modal.lightbox .lightbox-carousel .btn-close,
.modal.lightbox .lightbox-carousel .carousel-control-prev,
.modal.lightbox .lightbox-carousel .carousel-control-next {
    cursor: pointer;
}

.modal.lightbox .lightbox-carousel .btn-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    z-index: 5;
    margin: 0;
    background-color: var(--site-white) !important;
    color: var(--site-black) !important;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    display: inline-block;
}
.modal.lightbox .lightbox-carousel .btn-close::after{
    content: '×';
    font-size: 20px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    line-height: 25px;
    width: 25px;
    height: 25px;
    text-align: center;
    color: var(--site-black);
    display: block;
}
.modal.lightbox .lightbox-carousel .btn-close svg{
    display: none;
}

.modal.lightbox .lightbox-carousel {
    position: relative;
    flex: 0 0 auto;
    min-width: 0;
    max-width: min(95vw, 1100px);
    width: auto;
    margin: 0 auto;
}

/* стрелки поверх картинки */
.modal.lightbox .carousel-control-prev,
.modal.lightbox .carousel-control-next {
    position: absolute;
    top: calc(50% - 22px);
    width: 44px;
    height: 44px !important;
    margin: 0 !important;
    padding: 0;
    transform: none;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    opacity: 1;
    background: rgba(100, 100, 100, 0.2);
    transition: background-color 0.2s ease;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(14.9px);
}

.modal.lightbox .carousel-control-prev:hover,
.modal.lightbox .carousel-control-next:hover,
.modal.lightbox .carousel-control-prev:focus,
.modal.lightbox .carousel-control-next:focus {
    opacity: 1;
    background: rgba(200, 200, 200, 0.3);
}

.modal.lightbox .carousel-control-prev {
    left: 10px !important;
    right: auto;
}

.modal.lightbox .carousel-control-next {
    left: auto;
    right: 10px !important;
}

.modal.lightbox .carousel-control-prev-icon,
.modal.lightbox .carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
    filter: invert(1) brightness(0.25);
}

/* ratio-16x9 мешает вертикальным сертификатам */
.modal.lightbox .carousel-item .ratio {
    --bs-aspect-ratio: auto;
    height: auto;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
}

.modal.lightbox .carousel-item img {
    max-height: 85vh;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}
.lightbox .modal-content{
    border-radius: 0;
    padding: 0;
    background-color: transparent;
    border: none;
}
.lightbox .modal-content .carousel-control .visually-hidden{
    display: none;
}
.lightbox .carousel-inner{
    border-radius: 4px;
}
.section-header-block{
    position: relative;
    padding-right: 110px;
    box-sizing: border-box;
}
.section-header{
    font-size: 48px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    color: var(--site-black);
    line-height: 48px;
    margin: 0;
    letter-spacing: -0.02em;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-header a{
    text-decoration: none;
    color: var(--site-accent);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    line-height: 17px;
    text-decoration: underline;
    letter-spacing: 0;
}
.section-header a:hover{
    text-decoration: none;
    color: var(--site-push);
}
.section-header-big{
    font-size: 48px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    color: var(--site-black);
    line-height: 48px;
    margin: 0;
    letter-spacing: -0.02em;
    padding-bottom: 40px;
}
.page-header{
    font-size: 48px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    color: var(--site-black);
    line-height: 48px;
    margin: 0;
    letter-spacing: -0.02em;
    padding-bottom: 40px;
}
body .page-header.no-mb{
    padding-bottom: 0;
}
.section-header-block a{
    text-decoration: underline;
    display: inline-block;
    color: var(--site-accent);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    line-height: 17px;
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer;
}
.section-header-block a:hover{
    color: var(--site-push);
    text-decoration: none;
}
.breadcrumb{
    list-style: none;
    padding: 0 0 15px 0;
    margin: 0;
}
.breadcrumb li{
    display: inline-block;
    padding-right: 8px;
}
.breadcrumb li:after{
    content: '/';
    color: var(--site-muted);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin-left: 8px;
}
.breadcrumb li:last-child:after{
    content: '';
}
.breadcrumb li a{
    color: var(--site-black);
    text-decoration: none;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}
.breadcrumb li a span{
    color: var(--site-black);
}
.breadcrumb li a:hover span{
    color: var(--site-accent);
}
.breadcrumb li span{
    color: var(--site-muted);
    text-decoration: none;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}
.seo-text{
    max-width: 916px;
    width: 100%;
}
.category-seo-text{
    padding-left: 355px;
    box-sizing: border-box;
}
.seo-text h1, .seo-text h2, .seo-text h3, .seo-text h4, .seo-text h5, .seo-text h6{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--site-black);
}
.seo-text h1{
    font-size: 48px;
    line-height: 48px;
    margin-bottom: 25px;
}
.seo-text h2{
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 25px;
}
.seo-text h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
}
.seo-text h4{
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 20px;
}
.seo-text h5{
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 15px;
}
.seo-text p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 17px;
    color: var(--site-black);
}
.add-to-cart-btn{
    height: 60px;
    background-color: var(--site-accent);
    color: var(--site-white);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    border-radius: 15px;
    border: none;
    padding: 0 10px;
    display: inline-block;
}
a.add-to-cart-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--site-white);
    cursor: pointer;
}
.add-to-cart-btn:hover{
    background-color: var(--site-push);
}
a.add-to-cart-btn:hover{
    color: var(--site-white);
}
.add-to-cart-btn svg{
    margin-right: 10px;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}
.add-to-cart-btn.disabled{
    background-color: var(--site-grey);
    color: var(--site-white);
    cursor: not-allowed;
    display: none;
}
.radio-btn{
    appearance: none;
    margin-right: 14px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--site-white);
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
    border: 2px solid var(--site-white);
    box-sizing: border-box;
    border: 1px solid var(--site-soft);
}
.radio-btn:checked::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--site-accent);
}
.red-btn{
    height: 60px;
    background-color: var(--site-accent);
    color: var(--site-white);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    border-radius: 15px;
    border: none;
    padding: 0 10px;
    display: inline-block;
}
.red-btn:hover{
    background-color: var(--site-push);
}
a.red-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--site-white);
    cursor: pointer;
}
.fade-title{
    padding-right: 20px;
    position: relative;
    cursor: pointer;
}
.fade-title:after{
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    background-image: url('../img/select-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 7px;
    transform: rotate(0deg);
    transition: transform 0.2s;
}
.open .fade-title:after{
    transform: rotate(180deg);
}
.fade-body{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.open .fade-body{
    grid-template-rows: 1fr;
}
.fade-content{
    overflow: hidden;
    min-height: 0;
}
.black-btn{
    background-color: #1B1B1B;
    color: var(--site-white);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    text-align: center;
    border-radius: 30px;
    border: none;
    height: 60px;
    padding: 0 26px;
    display: inline-block;
    cursor: pointer;
}
.black-btn:hover{
    background-color: var(--site-push);
}
.carousel-list-item-image{
    opacity: 0;
    transition: opacity 0.35s ease;
}
.active .carousel-list-item-image{
    opacity: 1;
}
.horizontal-scroll-wrap.working .carousel-list-item-image{
    opacity: 1;
}
.mb-20-xl-0{
    margin-bottom: 20px;
}
.white-btn{
    background-color: var(--site-white);
    color: var(--site-black);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    height: 60px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.white-btn:hover{
    background-color: var(--site-soft);
    color: var(--site-black);
    text-decoration: none;
}
.grey-btn{
    background-color: var(--site-soft);
    color: var(--site-black);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    height: 60px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.grey-btn:hover{
    background-color: var(--site-white);
    color: var(--site-black);
    text-decoration: none;
}
.abs-breadcrumbs{
    position: relative;
}
.abs-breadcrumbs .breadcrumb{
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}
.abs-breadcrumbs .breadcrumb li span{
    color: var(--site-white);
}
.abs-breadcrumbs .slide-discount{
    position: relative;
    margin-bottom: 10px;
}
.tag-list-block{
    margin-bottom: 20px;
}
.cb-label{
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cookie-accept-modal-wrapper{
    position: fixed;
    bottom: 15px;
    width: 100%;
    z-index: 1000;
    display: none;
}
.cookie-accept-modal-wrapper.active{
    display: block;
}
.cookie-accept-modal{
    border-radius: 30px;
    padding: 14px 15px;
    background-color: var(--site-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 487px;
    margin: 0 auto;
    box-sizing: border-box;
}
.cookie-accept-modal-text{
    font-family: var(--site-font-regular);
    font-size: 12px;
    line-height: 16px;
    color: var(--site-black);
    opacity: 0.7;
}
.cookie-accept-modal-text a{
    color: var(--site-black);
    text-decoration: underline;
    opacity: 0.7;
}
.cookie-accept-modal-text a:hover{
    color: var(--site-push);
}
.light-grey-btn{
    height: 40px;
    border-radius: 20px;
    background-color: #ABABAB;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height:17px;
    color: var(--site-white);
    border: none;
    cursor: pointer;
    padding: 0 17px;
}
.light-grey-btn:hover{
    background-color: var(--site-push);
    color: var(--site-white);
}
.error-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-accent);
    padding-top: 3px;
    display: none;
}
.error-text.active{
    display: block;
}
/************** common end ***********************/
/************ small select **********************/
.small-select-wrap{
    position: relative;
    display: inline-block;
    max-width: 100%;
}
.small-select-native{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.small-select-ui{
    position: relative;
}
.small-select-trigger{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--site-font-medium);
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: var(--site-black);
    text-align: left;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.small-select-value{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--site-font-medium);
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: var(--site-black);
}
.small-select-arrow{
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid var(--site-black);
    border-bottom: 1.5px solid var(--site-black);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
}
.small-select-wrap.is-open .small-select-arrow{
    transform: rotate(-135deg) translateY(2px);
}
.small-select-dropdown{
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 30;
    min-width: 100%;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background-color: var(--site-white);
    border: 1px solid #0000001A;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.small-select-option{
    padding: 8px 14px;
    font-family: var(--site-font-regular);
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    cursor: pointer;
    white-space: nowrap;
}
.small-select-option:hover,
.small-select-option.is-selected{
    background-color: var(--site-soft);
}
.small-select-option.is-disabled{
    color: var(--site-grey);
    cursor: default;
}
.small-select-option.is-disabled:hover{
    background-color: transparent;
}
.small-select-wrap.is-disabled .small-select-trigger{
    color: var(--site-grey);
    cursor: default;
}
.small-select-wrap.is-disabled .small-select-arrow{
    border-color: var(--site-grey);
}
/**************************************************/
/*************** header **************************/
.header-block{
    position: relative;
    padding-top: 10px;
}
.site-logo{
    position: absolute;
    top: 51px;
    display: block;
    width: 296px;
    height: 42px;
    padding-left: 89px;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
}
.site-logo-image{
    width: 76px;
    height: 41px;
    position: absolute;
    top: 0;
    left: 0;
}
.site-logo-text{
    position: relative;
    display: block;
}
.site-logo-text > img{
    width: 207px;
    vertical-align: top;
}
.site-logo-tagline-text{
    display: block;
    width: 100%;
    margin-top: 4.64px;
    color: var(--site-accent);
    text-align: left;
    font-family: var(--site-font-regular);
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
    text-transform: uppercase;
    opacity: 1;
    position: relative;
}
.header-top-line{
    height: 22px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
}
.main-navbar{

}
.main-navbar > ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-navbar > ul > li {

}
.main-navbar > ul > li > a{
    color: var(--site-muted);
    text-align: left;
    font-family: var(--site-font-medium);
    font-size: 14px;
    line-height: normal;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    display: inline-block;
}
.main-navbar > ul > li > a:hover{
    color: var(--site-accent);
}
.main-navbar > ul > li > a:active{
    color: var(--site-push);
}
.main-navbar > ul > li > a.active{
    /*background-image: url('../img/header/star-10.svg');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 15px;
    color: var(--site-accent);*/
}
.actions-nav-item a.nav-link{
    background-image: url('../img/header/star-10.svg');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 15px;
    color: var(--site-accent);
}
.site-contacts{
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-contacts > li{

}
.site-contacts > li > a{
    text-decoration: none;
}
.site-contact-email{
    padding-right: 28px;
}
.site-contact-email > a{
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    color: var(--site-accent);
}
.site-contact-email > a > span{
    color: inherit;
    text-align: left;
    font-family: var(--site-font-semibold);
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
}
.site-contact-email:hover > a{
    color: var(--site-push);
    text-decoration: underline;
}
.site-contact-max{
    padding-right: 9px;
}
.site-contact-max > a{
    color: var(--site-accent);
}
.site-contact-max > a:hover{
    color: var(--site-push);
}
.site-contact-max > a > svg{
    width: 22px;
    height: 22px;
    display: block;
}
.site-contact-telegram{
    padding-right: 9px;
}
.site-contact-telegram > a{
    color: var(--site-accent);
}
.site-contact-telegram > a:hover{
    color: var(--site-push);
}
.site-contact-telegram > a > svg{
    width: 22px;
    height: 22px;
    display: block;
}
.site-contact-whatsapp{
    padding-right: 16px;
}
.site-contact-whatsapp > a{
    color: var(--site-accent);
}
.site-contact-whatsapp > a:hover{
    color: var(--site-push);
}
.site-contact-whatsapp > a > svg{
    width: 22px;
    height: 22px;
    display: block;
}
.site-contact-phone{

}
.site-contact-phone > a{
    text-decoration: none;
    color: #000;
    text-align: left;
    font-family: var(--site-font-semibold);
    font-size: 16px;
    line-height: normal;
    font-weight: 600;
    position: relative;
}
.site-contact-phone:hover > a{
    color: var(--site-accent);
}
.header-bottom-line{
    padding-left: 357px;
    display: flex;
    gap: 8px;
}
.catalog-btn-block{

}
.catalob-btn{
    background: var(--site-accent);
    color: #fff;
    height: 50px;
    padding: 0 17px 0 43px;
    border-radius: 26px;
    position: relative;
    border: none;
    text-align: left;
    font-family: var(--site-font-semibold);
    font-size: 14px;
    line-height: normal;
    font-weight: 600;
    width: 113px;
}
.catalob-btn::before{
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background: url('../img/header/hamburger-menu-iconly-pro0.svg') center / contain no-repeat;
    display: block;
    position: absolute;
    left: 17px;
    top: 17px;
}
.catalob-btn:hover{
    background-color: var(--site-push);
}
.search-block{
    width: calc(100% - 237px);
}
.search-block .popup-bg{
    display: none;
}
.top-serach-mobile-header{
    padding-bottom: 15px;
    position: relative;
    display: none;
}
.top-serach-mobile-header h3{
    font-size: 14px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    color: var(--site-black);
    line-height: 17px;
    margin: 0;
}
.top-search-mobile-close-btn{
    width: 16px;
    height: 16px;
    color: var(--site-black);
    font-size: 24px;
    text-align: center;
    line-height: 16px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-search-mobile-close-btn svg{
    width: 15.45px;
    height: 15.45px;
}
.top-search-form{
    width: 100%;
    position: relative;
}
.top-search-form .top-search-form{
    display: none;
}
.input_wrap{
    width: 100%;
    height: 50px;
    background-color: var(--site-soft);
    border-radius: 25px;
    border: 1px solid var(--site-soft);
    background-repeat: no-repeat;
    background-position: 18px 16px;
    position: relative;
}
.input_wrap .search-icon{
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 16px;
    top: 16px;
    color: var(--site-black);
}
.input_wrap .search-icon svg{
    width: 16px;
    height: 16px;
    opacity: 0.3;
}
.top-search-form.active .input_wrap .search-icon svg{
    opacity: 1;
}
.search-input {
    height: 50px;
    width: 100%;
    display: block;
    outline: none;
    border: none;
    background: transparent;
    padding-right: 110px;
    padding-left: 44px;
    border-radius: 25px;
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 17px;
}
.top-search-form.active .input_wrap{
    background-color: var(--site-white);
}
.search-input:hover,
.search-input:focus,
.search-input:active{
    background: transparent;
}
.top-search-form.active .search-input::placeholder{
    color: transparent;
    opacity: 0;
}
.clear-top-search-res{
    position: absolute;
    right: 18px;
    top: 14px;
    height: 21px;
    width: 21px;
    font-size: 24px;
    opacity: 0.23;
    font-weight: 300;
    color: var(--site-black);
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    display: none;
    border: none;
    background: transparent;
    padding: 0;
}
.clear-top-search-res svg{
    width: 21px;
    height: 21px;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
}
.clear-top-search-res:hover{
    opacity: 1;
    color: var(--site-black);
}
.clear-top-search-res.active{
    display: flex;
    align-items: center;
    justify-content: center;
}
#top_search_res{
    position: absolute;
    width: 100%;
    z-index: 100;
}
.top-search-res-content{
    padding: 5px 10px 20px 10px;
    margin-top: 10px;
    background-color: var(--site-white);
    border: 1px solid var(--site-soft);
    border-radius: 30px;
}
.top-search-res-content-list{
    padding: 0 10px;
    max-height: 342px;
    overflow-y: auto;
}
.top-search-res-line{
    border-bottom: 1px solid var(--site-soft);
    padding: 15px 0px;
}
.top-search-res-line:last-child{
    border: none;
}
.top-search-res-line a{
    text-decoration: none;
}
.search-category-result{

}
.search-category-desc{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}
.search-category-name{
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    opacity: 0.7;
    color: var(--site-black);
    line-height: 17px;
}
.search-category-info{
    text-decoration: none;
    font-size: 12px;
    opacity: 0.5;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-black);
    line-height: 17px;
}
.search-product-result > a{
    display: flex;
    gap: 9px;
}
.search-product-result figure{
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
}
.search-product-result figure img{
    max-height: 100%;
}
.search-product-desc{
    display: block;
    justify-content: space-between;
    width: calc(100% - 168px)
}
.search-product-name{
    font-size: 14px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
    padding-bottom: 9px;
    line-height: 17px;
}
.search-product-options{
    display: flex;
    gap: 4px;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}
.search-product-option{
    font-size: 10px;
    line-height: 14px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-grey);
    background: var(--site-soft);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.search-product-option svg{
    margin-right: 4px;
    width: 14px;
    height: 14px;
}
.o-density{

}
.o-width{

}
.o-handling{

}
.search-product-prices{
    width: 100px;
    padding-top: 6px;
    text-align: right;
}
.search-product-price{
    font-size: 14px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
    margin-bottom: 6px;
    line-height: 14px;
}
.search-product-price-per-m{
    font-size: 12px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-grey);
}
.search-more-link{
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: var(--site-soft);
    font-size: 11px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
    text-align: center;
    border-radius: 15px;
    text-decoration: none;
    cursor: pointer;
}
.search-more-link:hover{
    color: var(--site-white);
    background-color: var(--site-accent);
}
.empty-search-res{
    padding: 15px 15px 0 15px;
    line-height: 50px;
    font-size: 14px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
}
.icon{

}
.main-btns-block{

}
.main-btns-block-list{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}
.main-btns-block-list li{

}
.main-btns-block-list li > a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    border: 2px solid var(--site-soft);
    align-items: center;
    position: relative;
}
.main-btns-block-list li > a:hover{
    background-color: var(--site-soft);
}
.main-btns-block-list li > button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    border: 2px solid var(--site-soft);
    align-items: center;
    position: relative;
}
.main-btns-block-list li > button:hover{
    background-color: var(--site-soft);
}
.main-btns-block-list .mobile-search-btn > a{
    background-color: var(--site-soft);
}
.mobile-search-btn{
    display: none;
}
.time-btn{
    position: relative;
}
.lk-btn{

}
.cart-btn{
    position: relative;
}
.main-btns-block-list li.active{
    position: relative;
}
.main-btns-block-list li.active::before{
    content: '';
    width: 7px;
    height: 7px;
    background-color: #64C900;
    position: absolute;
    top: 6px;
    right: 2px;
    border-radius: 50%;
    z-index: 2;
}
.added-info{
    display: none;
    position: absolute;
    padding: 10px;
    background-color: #f2f2f2;
    width: 420px;
    box-sizing: border-box;
    right: 0;
    top: 64px;
    z-index: 110;
    border-radius: 20px;
}
.added-info.active{
    display: block;
}
.added-info.is-fixed-top{
    position: fixed;
    top: 10px;
    right: 32px;
}
.added-info .red-btn{
    width: 100%;
}
.added-info-products{
    padding-bottom: 10px;
}
.added-info-product{
    position: relative;
    padding-left: 97px;
}
.added-info-product figure{
    height: 80px;
    width: 80px;
    overflow: hidden;
    border-radius: 12px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
}
.added-info-product figure img{
    width: 100%;
    height: 100%;
}
.added-info-product-desc{
    min-height: 80px;
}
.added-info-product-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    padding-bottom: 4px;
}
.added-info-product-options{
    display: flex;
    gap: 4px;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    min-height: 54px;
}
.added-info-product-option{
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-grey);
    background: var(--site-white);
    padding: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.added-info-product-option svg{
    margin-right: 7px;
    width: 14px;
    height: 14px;
}
/*************** header end ***********************/
/************* catalog menu **********************/

.catalog-popup-menu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}
.catalog-popup-menu.open{
    display: block;
}
.catalog-popup-menu-content{

}
.catalog-popup-menu-close-btn{

}
.catalog-popup-menu-content-wrapper{
    position: relative;
}
.catalog-popup-menu-content{
    position: absolute;
    top: 47px;
    left: 357px;
}
.catalog-popup-menu-content > h2{
    height: 50px;
    border-radius:25px;
    background-color: var(--site-white);
    width: 113px;
    font-size: 14px;
    line-height: 50px;
    color: #000000;
    padding: 0px 17px 0px 43px;
    box-sizing: border-box;
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.catalog-popup-menu-close-btn{
    height: 50px;
    border-radius:25px;
    background: transparent;
    border: none;
    color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    width: 113px;
    text-align: left;
    line-height: 50px;
    padding: 0px 0px 0px 17px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
.catalog-popup-menu-close-btn svg{
    width: 16px;
    height: 16px;
}
.catalog-popup-menu-list{
    width: 808px;
    border-radius: 30px;
    background-color: var(--site-white);
    margin: 10px 0 0 0;
    padding: 25px;
    list-style: none;
    position: relative;
    min-height: 366px;
}
.catalog-popup-menu-list-li{
    line-height: 17px;
    width: 265px;
    padding: 0px 0px 20px 0px;
}
.catalog-popup-menu-list-li:last-child{
    padding-bottom: 0px;
}
.catalog-popup-menu-list:after{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 290px;
    background-color: #ABABAB;
    opacity: 0.1;
    top: 0;
}
.catalog-popup-menu-list-link-wrapper{
    padding-right: 15px;
}
.catalog-popup-menu-list-li .catalog-popup-menu-list-link-wrapper > a{
    font-size: 14px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
    text-decoration: none;
    display: block;
    padding-right: 10px;
    position: relative;
}
.catalog-popup-menu-list-li.has-children .catalog-popup-menu-list-link-wrapper > a::before{
    content: '';
    width: 4px;
    height: 1px;
    position: absolute;
    transform: rotate(45deg);
    background-color: #c7c7c7;
    right: 0;
    top: 6px;
}
.catalog-popup-menu-list-li.has-children .catalog-popup-menu-list-link-wrapper > a::after{
    content: '';
    width: 4px;
    height: 1px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #c7c7c7;
    right: 0;
    top: 9px;
}
.catalog-popup-menu-list-li .catalog-popup-menu-list-link-wrapper:hover > a,
.catalog-popup-menu-list-li.open .catalog-popup-menu-list-link-wrapper > a,
.catalog-popup-menu-list-li.has-children:hover .catalog-popup-menu-list-link-wrapper > a{
    color: var(--site-accent);
}
.catalog-popup-menu-list-li.has-children .catalog-popup-menu-list-link-wrapper:hover > a::before,
.catalog-popup-menu-list-li.has-children .catalog-popup-menu-list-link-wrapper:hover > a::after,
.catalog-popup-menu-list-li.has-children.open .catalog-popup-menu-list-link-wrapper > a::before,
.catalog-popup-menu-list-li.has-children.open .catalog-popup-menu-list-link-wrapper > a::after,
.catalog-popup-menu-list-li.has-children:hover .catalog-popup-menu-list-link-wrapper > a::before,
.catalog-popup-menu-list-li.has-children:hover .catalog-popup-menu-list-link-wrapper > a::after{
    background-color: var(--site-accent);
}
.sub-menu-list{
    display: none;
    position: absolute;
    left: 290px;
    top: 25px;
    height: calc(100% - 50px);
    overflow-y: auto;
    z-index: 10;
    padding-left: 25px;
    list-style: none;
    width: calc(100% - 315px);
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
}
.catalog-popup-menu-list-li.open .sub-menu-list{
    display: flex;
}
.sub-menu-list > li{
    width: 50%;
    padding: 0px 20px 15px 0px;
    box-sizing: border-box;
}
.sub-menu-list > li > a{
    text-decoration: none;
    color: var(--site-black);
    opacity: 0.7;
    font-size: 14px;
    font-family: var(--site-font-regular);
    font-weight: 400;
}
.sub-menu-list > li > a:hover{
    color: var(--site-accent);
}
.sub-menu-list > li > a.active{
    color: var(--site-accent);
}
.mobile-bottom-menu{
    display: none;
}
.mobile-bottom-menu .main-navbar{
    display: block;
    padding-bottom: 10px;
}
.mobile-bottom-menu .main-navbar > ul{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: left;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: flex-start;
    margin-top: 5px;
    gap: 0;
}
.mobile-bottom-menu .main-navbar > ul > li {
    width: 50%;
    padding: 0px 20px 10px 0;
    box-sizing: border-box;
}
.mobile-bottom-menu .site-contacts{
    width: 100%;
    flex-wrap: wrap;
}
.mobile-bottom-menu .site-contact-email{
    display: block;
    width: 100%;
    padding-bottom: 12px;
}
.mobile-bottom-menu .site-contact-phone{
    display: block;
}
.mobile-bottom-menu .site-contact-whatsapp{
    margin-right: 9px;
}
/**************************************************/
/************* footer **********************/
footer{
    background-color: var(--site-light-black);
    border-radius: 30px 30px 0 0;
}
.footer-block{
    padding: 70px 30px 54px 30px;
    box-sizing: border-box;
}
.footer-block h4{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-white);
    opacity: 0.5;
    margin-bottom: 12px;
}
.footer-block-top{
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 50px;
}
.footer-block-bottom{
    padding-top: 50px;
    position: relative;
}
.footer-contacts{
    display: flex;
    flex-direction: row;
}
.footer-contacts-info{
    width: 50%;
}
.footer-contacts-social{
    width: 50%;
}
.footer-contacts-info-phone{
    margin-bottom: 55px;
}
.footer-phone{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    color: var(--site-white);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 26px;
}
.footer-phone:hover{
    color: var(--site-white);
}
.footer-contacts-info-email{

}
.footer-email{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    color: var(--site-white);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 26px;
}
.footer-email:hover{
    color: var(--site-white);
}
.footer-contacts-social-messangers{
    margin-bottom: 55px;
}
.footer-social-list{
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-contacts-social-soclist .footer-social-list{
    gap: 12px;
}
.footer-social-list > li{

}
.footer-social-list > li > a{
    color: var(--site-white);
    text-decoration: none;
    width: 22px;
    height: 26px;
    display: flex;
    align-items: flex-start;
}
.footer-social-list > li > a:hover{
    color: var(--site-accent);
}
.footer-social-list > li > a > svg{
    width: 22px;
    height: 22px;
    display: block;
}
.footer-menus{
    display: flex;
    flex-direction: row;
}
.footer-catalog-menu-block{
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}
.footer-pages-menu-block{
    width: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer-pages-menu-block > h4{
    width: 100%;
}
.footer-pages-menu-block ul{
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}
.footer-pages-menu-block ul:last-child{
    padding-right: 0;
}
.footer-menus ul{
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 9px;
}
.footer-menus ul li{
    margin-bottom: 4px;
}
.footer-menus ul li a{
    font-family: var(--site-font-semibold);
    font-size: 16px;
    font-weight: 600;
    color: var(--site-white);
    text-decoration: none;
    line-height: 19px;
}
.footer-menus ul li a:hover{
    text-decoration: underline;
}
.footer-logo{
    position: relative;
    display: block;
    width: 296px;
    height: 42px;
    text-decoration: none;
    padding-left: 89px;
    box-sizing: border-box;
}
.footer-logo-image{
    width: 76px;
    height: 41px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}
.footer-logo-text{

}
.footer-logo-text img{
    width: 207px;
    height: 22.36px;
    display: block;
    vertical-align: top;
}
.footer-logo-text span{
    display: block;
    margin-top: 4.64px;
    color: var(--site-accent);
    text-align: left;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
}
.footer-addr-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer-addr{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-white);
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
}
.footer-addr span{
    display: block;
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-white);
    max-width: 226px;
}
.footer-bage{
    width: 55%;
}
.footer-shedule{
    width: 170px;
}
.footer-shedule p{
    margin-bottom: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    font-family: var(--site-font-regular);
    color: var(--site-white);
}
.footer-shedule p span{
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    font-family: var(--site-font-regular);
    color: var(--site-white);
}
.footer-shedule p:last-child{
    margin-bottom: 0;
}
.footer-block-bottom-top{
    margin-bottom: 28px;
}
.footer-bottom-text-wrapper{
    position: relative;
}
.footer-bottom-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-white);
    opacity: 0.5;
    position: absolute;
    bottom: 2px;
}
.footer-bottom-links{

}
.footer-bottom-links a,
.footer-bottom-links p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    color: var(--site-white);
    opacity: 0.5;
    text-decoration: none;
    margin-right: 32px;
    display: block;
    margin-bottom: 6px;
    line-height: 17px;
}
.footer-bottom-links p:last-child{
    margin-bottom: 0;
    margin-right: 0;
}
.footer-bottom-links a:last-child{
    margin-right: 0;
}
.footer-bottom-links a:hover{
    text-decoration: underline;
}
.footer-to-top-link{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    color: var(--site-white);
    opacity: 0.5;
    text-decoration: none;
    display: block;
    position: absolute;
    top: 50px;
    right: 0;
}
.footer-to-top-link:hover{
    color: var(--site-white);
    opacity: 1;
}
.ya-rating-bage{
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}
.ya-bage-top-line{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.ya-bage-point{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    color: var(--site-white);
    font-family: var(--site-font-regular);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
}
.ya-bage-point #ya_rating{
    font-family: var(--site-font-regular);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: var(--site-white);
}
.ya-bage-point svg{
    width: 14px;
    height: 14px;
}
.ya-bage-star-list{
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.ya-bage-star{
    width: 16px;
    height: 16px;
    background-image: url('../img/footer/ya-bage-star-empty.svg');
    background-repeat: no-repeat;
    background-size: 16px 16px;
}
.ya-bage-star.full-star{
    background-image: url('../img/footer/ya-bage-star-full.svg');
}
.ya-bage-star.half-star{
    background-image: url('../img/footer/ya-bage-star-half.svg');
}
.ya-bage-text{
    font-family: var(--site-font-regular);
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    color: var(--site-white);
    opacity: 0.5;
}
/*************** footer end ***********************/
/************* main slider **********************/
.main-slider-block{
    height: 628px;
    width: 100%;
    margin: 0 0 20px 0;
}
.main-slider-block.is-loading #main_slider{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.main-slider-block #main_slider{
    transition: opacity .3s ease;
}
.main-slider{
    border-radius: 30px;
    overflow: hidden;
}
.slide-content{
    position: relative;
    height: 628px;
    width: 100%;
    overflow: hidden;
}
.slide-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slide .content{
    position: relative;
    z-index: 1;
}
.main-slider-control{
    width: 60px;
    height: 60px;
    position: absolute;
    border: none;
    border-radius: 50%;
    backdrop-filter: blur(14.9px);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    bottom: 40px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.19);
}
.main-slider-control:hover{
    background: rgba(255, 255, 255, 0.19);
}
.ms-prev{
    left: 40px;
}
.ms-prev::before {
    content: '';
    background-color: var(--site-white);
    height: 10px;
    width: 2px;
    transform: rotate(45deg);
    position: absolute;
    top: 21px;
    left: 26px;
}
.ms-prev::after{
    content: '';
    background-color: var(--site-white);
    height: 10px;
    width: 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 27px;
    left: 26px;
}
.ms-next{
    left: 110px;
}
.ms-next::before {
    content: '';
    background-color: var(--site-white);
    height: 10px;
    width: 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 21px;
    left: 28px;
}
.ms-next::after{
    content: '';
    background-color: var(--site-white);
    height: 10px;
    width: 2px;
    transform: rotate(45deg);
    position: absolute;
    top: 27px;
    left: 28px;
}
.slide-info{
    position: absolute;
    z-index: 10;
    top: 40px;
    left: 40px;
    max-width: 465px;
    padding: 51px 0 0 0;
}
.slide-discount{
    height: 29px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    backdrop-filter: blur(27.1px);
    background-color: rgba(255, 255, 255, 0.05);
    font-family: var(--site-font-semibold);
    font-size: 12px;
    font-weight: 600;
    color: var(--site-white);
    text-decoration: none;
    line-height: 29px;
    padding: 0 13px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.slide-title{
    font-family: var(--site-font-semibold);
    font-size: 64px;
    font-weight: 600;
    color: var(--site-white);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    line-height: 64px;
}
.slide-description{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-white);
    line-height: 19px;
    margin-bottom: 20px;
    max-width: 314px;
}
.slider-additional{
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 550px;
    z-index: 10;
}
.slider-additional-block{
    width: 265px;
    height: 265px;
    padding: 25px 10px 25px 25px;
    box-sizing: border-box;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}
.slider-guarantee{
    background-color: rgba(242, 242, 242, 0.1);
    backdrop-filter: blur(60.1px);
    border: 1px solid rgba(255, 255, 255, 0.17);
}
.slider-free-samples{
    background-color: var(--site-soft);
}
.slider-additional-block-title{
    font-family: var(--site-font-semibold);
    font-size: 20px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 24px;
    margin-bottom: 10px;
    line-height: 24px;
}
.slider-guarantee .slider-additional-block-title{
    color: var(--site-white);
}
.slider-additional-block-description{
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 20px;
    opacity: 0.4;
}
.slider-guarantee .slider-additional-block-description{
    color: var(--site-white);
    opacity: 0.5;
}
.slider-additional-block a{
    font-family: var(--site-font-semibold);
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    color: var(--site-accent);
    text-decoration: underline;
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
}
.slider-additional-block.slider-guarantee a{
    color: var(--site-white);
}
.slider-additional-block-image{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
    background-image: url('../img/home/slider-additional-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.common-info-block{

}
.common-info-block-content{
    border-radius: 24px;
    background-color: var(--site-soft);
    padding: 30px 30px 20px 30px;
    box-sizing: border-box;
    height: 207px;
    position: relative;
}
.common-info-block-content-icon{
    width: 44px;
    height: 44px;
    border-radius: 10px;
}
.common-info-block-content-bottom{
    position: absolute;
    bottom: 20px;
    left: 30px;
    right: 30px;
}
.common-info-block-content h3{
    font-family: var(--site-font-semibold);
    font-size: 18px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 22px;
    margin-bottom: 5px;
}
.common-info-block-content p{
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 0;
}
.featured-info-block{
    background-image: url('../img/home/common-info-featured.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.featured-info-block .download-btn{
    position: absolute;
    bottom: 20px;
    left: 6px;
    width: calc(100% - 12px);
}
.simple-slider .main-slider-block{
    height: 550px;
}
.simple-slider .slide-content{
    height: 550px;
}
.simple-slider .slide-info{
    border-radius: 18px;
    background-color: var(--site-white);
    padding: 25px;
    position: absolute;
    right: 40px;
    bottom: 40px;
    top: auto;
    left: auto;
}
.simple-slider .slide-title{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 26px;
    margin-bottom: 13px;
}
.simple-slider .slide-description{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 19px;
    margin-bottom: 0;
    opacity: 0.5;
}
.simple-slider .link-btn{
    background-color: var(--site-accent);
    color: var(--site-white);
    margin-top: 20px;
}
.simple-slider .link-btn:hover{
    background-color: var(--site-push);
    color: var(--site-white);
}
.simple-slider .link-btn i {
    background-color: var(--site-white);
    color: var(--site-accent);
}
.simple-slider .slide-discount{
    color: var(--site-black);
    position: relative;
    width: 100%;
    text-align: right;
    top: -5px;
    padding: 0;
}
/**************************************************/
/*************** order samples **********************/
.order-samples-block{
    background-image: url('../img/home/fabrics.png');
    background-position: -46.56px -15.27px;
    background-size: 808.46px 1205.06px;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
    overflow: hidden;
    height: 100%;
}
.order-samples-block h2{
    font-family: var(--site-font-semibold);
    font-size: 32px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.order-samples-block p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 19px;
    margin-bottom: 27px;
    max-width: 289px;
}
.recall-block{
    background-color: var(--site-light-black);
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
}
.light .recall-block{
    background-color: var(--site-white);
    border: 1px solid var(--site-soft);
}
.recall-block h2{
    font-family: var(--site-font-semibold);
    font-size: 32px;
    font-weight: 600;
    color: var(--site-white);
    line-height: 32px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.light .recall-block h2{
    color: var(--site-black);
}
.recall-block p {
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-white);
    line-height: 19px;
    margin-bottom: 44px;
    max-width: 423px;
    opacity: 0.8;
}
.light .recall-block p{
    color: var(--site-black);
}
.recall-form{

}
.recall-form-line{
    margin-bottom: 20px;
}
.recall-form-line:last-child{
    margin-bottom: 0;
}
.recall-form-row{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.recall-form-col{
    width: calc(50% - 5px);
    box-sizing: border-box;
}
.recall-form-line label{
    color: var(--site-white);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 0;
    position: relative;
    padding-left: 36px;
}
.light .recall-form-line label{
    color: var(--site-black);
}
.recall-form-line label input[type="checkbox"]{
    position: absolute;
    left: 0;
    top: 0;
}
.recall-form-line label a{
    text-decoration: underline;
    color: var(--site-white);
}
.light .recall-form-line label a{
    color: var(--site-black);
}
.recall-form-line label a:hover{
    color: var(--site-accent);
}
.light .recall-form-line label a:hover{
    color: var(--site-accent);
}
/**************************************************/
/*************** order samples modal **************/
.order-samples-modal .modal-content{
    padding: 40px;
}
.order-samples-modal .modal-header{

}
.order-samples-modal .modal-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.02em;
    line-height: 32px;
}
.order-samples-modal .modal-body p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    opacity: 0.8;
    margin-bottom: 30px;
}
/*************** vacancy select modal **************/
.vacancy-select-modal .modal-content{
    padding: 40px;
}
.vacancy-select-modal .modal-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.02em;
    line-height: 32px;
}
.vacancy-select-modal .modal-body p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    opacity: 0.8;
    margin-bottom: 24px;
}
.vacancy-select-list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 360px;
    overflow-y: auto;
}
.vacancy-select-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.vacancy-select-item:hover{
    border-color: var(--site-accent);
    background: var(--site-soft);
}
.vacancy-select-item-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--site-black);
}
.vacancy-select-item-city{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--site-black);
    opacity: 0.7;
}
.vacancies-feedback-selected{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 20px;
    font-family: var(--site-font-regular);
    font-size: 14px;
    line-height: 18px;
}
.vacancies-feedback-selected.is-empty .vacancies-feedback-selected-label,
.vacancies-feedback-selected.is-empty .vacancies-feedback-selected-name{
    display: none;
}
.vacancies-feedback-selected-label{
    opacity: 0.7;
}
.vacancies-feedback-selected-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.vacancies-feedback-select-btn{
    border: 0;
    background: none;
    padding: 0;
    color: var(--site-accent);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    cursor: pointer;
    text-decoration: underline;
}
.vacancies-feedback-select-btn:hover{
    opacity: 0.8;
}
/**************************************************/
/*************** how we work **********************/
.how-we-work-block{
    background-color: var(--site-soft);
    padding: 80px 40px 40px 40px;
    border-radius: 30px;
}
.how-we-work-title-block{
    margin-bottom: 38px;
}
.how-we-work-title-block h2{
    font-family: var(--site-font-semibold);
    font-size: 48px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-align: left;
}
.how-we-work-title-block p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 0;
    opacity: 0.8;
    text-align: left;
    max-width: 538px;
    margin: 0;
}
.how-we-work-steps-list{
    margin-bottom: 40px;
}
.how-we-work-steps-block{
    min-height: 362px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--site-soft);
    border-radius: 30px;
    box-sizing: border-box;
    position: relative;
}
.how-we-work-first-step{
    background-image: url('../img/home/how-we-work-bg-1-new.png');
}
.how-we-work-second-step{
    background-image: url('../img/home/how-we-work-bg-2-new.png');
}
.how-we-work-third-step{
    background-image: url('../img/home/how-we-work-bg-3-new.png');
}
.how-we-work-steps-block-content{
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 62px 20px 20px 20px;
    box-sizing: border-box;
    border-radius: 18px;
    background-color: var(--site-white);
    z-index: 10;
}
.how-we-work-steps-block-content span{
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background-color: var(--site-accent);
    color: var(--site-white);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.how-we-work-steps-block-content h3{
    font-family: var(--site-font-semibold);
    font-size: 20px;
    font-weight: 600;
    color: var(--site-black);
    line-height: 24px;
    margin-bottom: 10px;
}
.how-we-work-steps-block-content p{
    font-family: var(--site-font-regular);
    font-size: 14px;
    font-weight: 400;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 0;
    opacity: 0.8;
    max-width: 252px;
}
.how-we-work-own-block{
    padding: 40px;
    box-sizing: border-box;
    border-radius: 30px;
    min-height: 400px;
    padding-bottom: 204px;
    box-sizing: border-box;
    position: relative;
}
.dark-own-block{
    background-color: var(--site-light-black);
}
.red-own-block{
    background-color: var(--site-accent);
}
.how-we-work-own-block h3{
    font-family: var(--site-font-semibold);
    font-size: 32px;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 17px;
    letter-spacing: -0.02em;
    color: var(--site-white);
}
.how-we-work-own-block p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 0;
    color: var(--site-white);
    margin-bottom: 0;
}
.how-we-work-own-block-picture{
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    height: 176px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
}
.dark-own-block .how-we-work-own-block-picture{
    background-image: url('../img/home/how-we-work-own-block-picture-1.png');
}
.red-own-block .how-we-work-own-block-picture{
    background-image: url('../img/home/how-we-work-own-block-picture-2.png');
}
/**************************************************/
/*************** Your partners block **************/
.you-partner-block{
    padding: 324px 40px 40px 40px;
    box-sizing: border-box;
    border-radius: 30px;
    background-color: var(--site-soft);
    position: relative;
    margin-bottom: 20px;
}
.you-partner-block-main-picture{
    background-image: url('../img/home/your-partner-block-bg.png');
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}
.you-partner-block-about-link{
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: var(--site-font-semibold);
    font-size: 12px;
    font-weight: 600;
    color: var(--site-white);
    text-decoration: none;
    line-height: 31px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    width: 93px;
    height: 31px;
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(27.100000381469727px);
    z-index: 10;
}
.you-partner-block-about-link:hover{
    color: var(--site-white);
    background: #FFFFFF1A;
    border: 1px solid #FFFFFF33;
    text-decoration: none;
}
.you-partner-block-content{
    position: relative;
    z-index: 2;
    background-color: var(--site-white);
    border-radius: 30px;
    padding: 0;
    box-sizing: border-box;
}
.you-partner-block-content-top{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    flex-direction: row;
    padding: 40px 40px 48px 40px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.you-partner-block-content-top-col{
    width: calc(50% - 20px);
    box-sizing: border-box;
}
.you-partner-block-content-top-col > h2{
    font-family: var(--site-font-semibold);
    font-size: 48px;
    font-weight: 600;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--site-black);
}
.you-partner-block-content-top-col > p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 0;
    margin-bottom: 19px;
}
.you-partner-block-content-top-col > a {
    font-family: var(--site-font-semibold);
    font-size: 16px;
    font-weight: 600;
    color: var(--site-accent);
    text-decoration: underline;
    line-height: 19px;
    display: inline-block;
}
.you-partner-block-content-top-col >a:hover{
    color: var(--site-push);
    text-decoration: none;
}
.you-partner-block-certs-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 21px;
}
.you-partner-block-certs-list li{
    max-width: 79px;
}
.you-partner-block-certs-list li a{
    display: block;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.you-partner-block-certs-list li a:hover:before{
    content: '+';
    background: #D8111380;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-white);
    font-size: 30px;
    font-family: var(--site-font-regular);
    font-weight: 300;
    text-align: center;
    z-index: 10;
}
.you-partner-block-certs-list li a img{
    max-width: 100%;
}
.you-partner-block-content-bottom{
    padding: 40px;
}
.you-partner-block-advantages{
    padding-left: calc(50% + 20px);
    position: relative;
}
.you-partner-block-advantage-block{
    padding-bottom: 40px;
    box-sizing: border-box;
    cursor: pointer;
}
.you-partner-block-advantage-block:last-child{
    padding-bottom: 0;
}
.you-partner-block-advantage-block-image{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: calc(50% + 20px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
}
.you-partner-block-advantage-block:nth-child(1) .you-partner-block-advantage-block-image{
    background-image: url('../img/home/you-partner-bg-1.png');
}
.you-partner-block-advantage-block:nth-child(2) .you-partner-block-advantage-block-image{
    background-image: url('../img/home/you-partner-bg-2-new.jpg');
}
.you-partner-block-advantage-block:nth-child(3) .you-partner-block-advantage-block-image{
    background-image: url('../img/home/you-partner-bg-3.jpg');
}
.you-partner-block-advantage-block-image.active .you-partner-block-advantage-block{
    display: block;
}
.you-partner-block-advantage-block-info{
    position: relative;
    padding-left: 46px;
}
.you-partner-block-advantage-block-info span{
    width: 25px;
    height: 25px;
    border-radius: 5px;
    border: 1px solid #D4D4D44D;
    color: var(--site-grey);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    position: absolute;
    line-height: 25px;
    text-align: center;
    left: 0;
    top: 0;
    display: block;
}
.you-partner-block-advantage-block.active .you-partner-block-advantage-block-info span{
    background-color: var(--site-accent);
    border-color: var(--site-accent);
    color: var(--site-white);
}
.you-partner-block-advantage-block-info h3{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 15px;
}
.you-partner-block-advantage-block-info p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 0;
    opacity: 0.5;
}
/**************************************************/
/*************** category list **********************/
.category-list-block{

}
.category-list-item{
    overflow: hidden;
    background-color: var(--site-soft);
    position: relative;
    height: 203px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 25px;
}
.category-list-item.first-category-in-list{
    height: 426px;
}
.category-list-item > a{
    text-decoration: none;
    display: block;
    padding: 27px;
    width: 100%;
    height: 100%;
}
.category-list-block .category-list-item figure{
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    overflow: hidden;
}
.category-list-item.first-category-in-list figure{
    align-items: end;
}
.category-list-item img{
    width: auto;
    height: 100%;
}
.category-list-item.first-category-in-list img{
    width: 453px;
    height: 426px;
}
.category-list-item-content-wrapper{
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 34%;
    z-index: 0;
}
.category-list-item.first-category-in-list .category-list-item-content-wrapper{
    right: 20%;
}
.category-list-item-content{
    position: absolute;
    bottom: 0;
    padding: 0px 0px 24px 24px;
}
.category-list-item-name{
    font-family: var(--site-font-semibold);
    font-size: 24px;
    font-weight: 600;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 8px;
    display: block;
}
.category-list-item-text{
    display: block;
}
.category-list-item-text p{
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--site-grey);
}
.category-list-item:hover .category-list-item-name{
    color: var(--site-accent);
}
.category-list-item:hover .category-list-item-text p{
    color: var(--site-black);
}
/**************************************************/
/*********** category product list ****************/
.category-products-cnt{
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: var(--site-grey);
    margin-left: 20px;
}
.category-products-cnt span{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    display: inline-block;
    margin-left: 5px;
}
.category-products-list-block{
    display: flex;
    flex-direction: row;
    gap: 45px;
    position: relative;
}
.category-products-list-block.is-loading{
    cursor: wait;
}
.category-products-loader{
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.65);
    box-sizing: border-box;
    pointer-events: auto;
}
.category-products-loader[hidden]{
    display: none;
}
.category-products-loader-spinner{
    width: 40px;
    height: 40px;
    border: 3px solid var(--site-soft);
    border-top-color: var(--site-accent);
    border-radius: 50%;
    animation: category-products-loader-spin 0.7s linear infinite;
}
@keyframes category-products-loader-spin{
    to{
        transform: rotate(360deg);
    }
}
.category-products-list-block .category-products-filter-panel{
    width: 310px;
    flex-shrink: 0;
}
.category-products-list-block .category-products-filter{
    width: 100%;
}
.category-products-filter-bg{
    display: none;
}
.category-products-filter-mobile-header{
    display: none;
}
.category-products-filter-mobile-header > h2{
    margin: 0;
    font-size: 18px;
    line-height: 21px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
}
.category-products-filter-mobile-footer{
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.category-products-filter-mobile-footer .category-products-filter-submit-btn{
    display: none;
}
.category-products-filter-close-btn{
    appearance: none;
    -webkit-appearance: none;
    height: 21px;
    width: 21px;
    border: none;
    background: transparent;
    color: var(--site-black);
    line-height: 21px;
    font-size: 24px;
    padding: 0;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.23;
}
.category-products-filter-close-btn:hover{
    opacity: 1;
}
.category-products-filter-close-btn svg{
    width: 21px;
    height: 21px;
}
.category-products-filter-submit-btn{
    height: 40px;
    width: 100%;
    border-radius: 5px;
    background-color: var(--site-soft);
    color: var(--site-black);
    border-radius: 8px;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: var(--site-font-semibold);
    font-size: 12px;
    font-weight: 600;
    line-height: 38px;
}
.category-products-filter-submit-btn:hover{
    background-color: var(--site-white);
    color: var(--site-black);
}
.category-products-filter-clear-btn{
    height: 40px;
    width: 100%;
    border-radius: 5px;
    background-color: var(--site-white);
    color: var(--site-black);
    border-radius: 8px;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: var(--site-font-semibold);
    font-size: 12px;
    font-weight: 600;
    line-height: 38px;
    display: none;
}
.category-products-filter-clear-btn:hover{
    background-color: var(--site-soft);
    color: var(--site-black);
}
.category-products-filter-clear-btn.active{
    display: block;
}
.product-filter-block{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.filter-section{
    border-bottom: 1px solid var(--site-soft);
    padding-bottom: 15px;
}
.filter-section:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.filter-section-header{
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: var(--site-font-semibold);
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    color: var(--site-black);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-align: left;
    appearance: none;
    -webkit-appearance: none;
    transition: margin-bottom 0.3s ease;
}
.filter-section-header::after{
    content: '';
    margin-left: auto;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.filter-section.is-open .filter-section-header{
    margin-bottom: 15px;
}
.filter-section.is-open .filter-section-header::after{
    transform: rotate(-135deg);
}
.filter-section-body{
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.filter-section.is-open .filter-section-body{
    grid-template-rows: 1fr;
}
.filter-section-content{
    overflow: hidden;
    min-height: 0;
}
.range-filter-inputs{
    display: flex;
    align-items: center;
    gap: 8px;
}
.range-filter-input-wrap{
    display: block;
    align-items: center;
    margin: 0;
    flex: 1;
    min-width: 0;
    position: relative;
}
.range-filter-input-label{
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: var(--site-grey);
    position: absolute;
    left: 10px;
    top: 10px;
}
.range-filter-input{
    width: 100%;
    min-width: 0;
    height: 35px;
    padding: 0 37px 0 30px;
    border: 1px solid #D4D4D44D;
    border-radius: 5px;
    font-family: var(--site-font-regular);
    font-size: 12px;
    color: var(--site-black);
    background-color: var(--site-white);
    text-align: end;
    outline: none;
}
.range-filter-input:focus{
    border-color: var(--site-dark-grey);
}
.range-filter-suffix{
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: var(--site-grey);
    position: absolute;
    right: 10px;
    top: 10px;
}
.range-filter-input::-webkit-outer-spin-button,
.range-filter-input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.range-filter-input-separator{
    color: var(--site-grey);
    flex-shrink: 0;
}

.range-filter-slider{
    position: relative;
    height: 28px;
    margin-top: 14px;
}
.range-filter-track,
.range-filter-fill{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    border-radius: 2px;
    pointer-events: none;
}
.range-filter-track{
    left: 0;
    right: 0;
    background-color: #E8E8E8;
}
.range-filter-fill{
    background-color: var(--site-accent);
}
.range-filter-thumb{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
}
.range-filter-thumb::-webkit-slider-runnable-track{
    height: 4px;
    background: transparent;
    border: none;
}
.range-filter-thumb::-moz-range-track{
    height: 4px;
    background: transparent;
    border: none;
}
.range-filter-thumb::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    pointer-events: all;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border-radius: 50%;
    border: 2px solid var(--site-accent);
    background-color: var(--site-accent);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.range-filter-thumb::-moz-range-thumb{
    pointer-events: all;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--site-white);
    background-color: var(--site-accent);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
.range-filter-thumb-min{
    z-index: 3;
}
.range-filter-thumb-max{
    z-index: 4;
}
.range-filter-thumb-min.is-active{
    z-index: 5;
}
.range-filter-thumb-max.is-active{
    z-index: 5;
}
.checkbox-filter-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.checkbox-filter-item{
    margin: 0;
    width: 100%;
    padding-bottom: 5px;
}
.checkbox-filter[data-filter-key="color"] .checkbox-filter-item{
    width: calc(50% - 5px);
}

.checkbox-filter-label{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.checkbox-filter-input{
    flex-shrink: 0;
}
.form-cb.checkbox-filter-input{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #D4D4D44D;
    background-color: var(--site-white);
    margin-right: 6px;
}
.form-cb.checkbox-filter-input:checked::before {
    content: "";
    background-color: var(--site-black);
    position: absolute;
    width: 5px;
    height: 1px;
    transform: rotate(45deg);
    left: 4px;
    top: 10px;
}
.form-cb.checkbox-filter-input:checked::after {
    content: "";
    background-color: var(--site-black);
    position: absolute;
    width: 7px;
    height: 1px;
    transform: rotate(-45deg);
    left: 7px;
    top: 9px;
}
.checkbox-filter-swatch{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid #D4D4D44D;
    background-color: var(--site-white);
}
.checkbox-filter-swatch-img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.checkbox-filter-swatch-color{
    display: block;
    width: 100%;
    height: 100%;
}
.checkbox-filter-name{
    min-width: 0;
    text-transform: capitalize;
}
.radio-filter-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.radio-filter-item{
    margin: 0;
    width: calc(50% - 5px);
    padding-bottom: 5px;
}
.radio-filter-label{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.radio-filter-input{
    flex-shrink: 0;
}
.form-rb.radio-filter-input{
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #D4D4D44D;
    background-color: var(--site-white);
    margin-right: 6px;
    position: relative;
    cursor: pointer;
    outline: none;
}
.form-rb.radio-filter-input:checked{
    border-color: var(--site-accent);
}
.form-rb.radio-filter-input:checked::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--site-accent);
    transform: translate(-50%, -50%);
}
.radio-filter-name{
    min-width: 0;
}
.category-products-list-block .products-list-block{
    width: calc(100% - 355px);
}
/**************************************************/
/************ products list **********************/
.products-list-header{
    padding-bottom: 20px;
    position: relative;
}
.products-list-header-sorter-block{
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--site-soft);
    margin-bottom: 15px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.sorter-form{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.sorter-form label{
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    color: var(--site-grey);
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    top: 1px;
}
.sorter-form .small-select-wrap{
    display: inline-block;
    vertical-align: middle;
}
.mobile-list-view{
    display: none;
}
.mobile-list-view-btn{
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    margin: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    display: inline-block;
    vertical-align: middle;
    width: 21px;
    height: 21px;
    color: var(--site-black);
    opacity: 0.3;
}
.mobile-list-view-btn svg{
    width: 21px;
    height: 21px;
    display: inline-block;
}
.mobile-list-view-btn:hover{
    opacity: 0.7;
}
.mobile-list-view-btn.active{
    opacity: 1;
}
.products-list-header-tags-list-block{
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}
.tag-list-col{
    width: calc(100% - 268px);
}
.tag-list-wrapper{
    width: 100%;
    position: relative;
    padding-right: 30px;
}
.tag-list-wrapper .horizontal-scroll-nav{
    position: absolute;
    right: 0;
    top: 5px;
    background-color: var(--site-white);
    width: 30px;
    justify-content: flex-end;
    display: flex;
}
.tag-list-wrapper .horizontal-scroll-btn-prev{
    display: none;
}
.tag-list-wrapper .horizontal-scroll-btn{
    width: 25px;
    height: 25px;
    border: 1px solid #D4D4D44D;
    background: #F2F2F2;
    box-shadow: -20px 0 10px var(--site-white);
}
.tag-list-wrapper .horizontal-scroll-btn::before{
    top: 8px;
    height: 5px;
}
.tag-list-wrapper .horizontal-scroll-btn::after{
    height: 5px;
    top: 11px;
}
.tag-list-wrapper .horizontal-scroll-btn:disabled{
    display: none;
}

.tag-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
}
.tag-list > li{

}
.tag-list > li > a{
    display: inline-block;
    height: 35px;
    line-height: 33px;
    padding: 0 13px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-black);
    background-color: var(--site-white);
    text-align: center;
    text-decoration: none;
    border: 1px solid #D4D4D44D;
}
.tag-list > li > a span{
    color: var(--site-grey);
}
.tag-list > li > a:hover{
    background-color: var(--site-soft);
    border-color: var(--site-soft);
    color: var(--site-black);
}
.tag-list > li > a.active{
    background-color: var(--site-black);
    color: var(--site-white);
    border-color: var(--site-black);
}
.tag-list.horizontal-scroll-block{
    padding-bottom: 0;
    flex-wrap: nowrap;
}
.stickers-list-col{
    width: 256px;
}
.mobile-filter-button-block{
    display: none;
}
.sticker-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}
.sticker-list > li{

}
.sticker-list > li > a{

}
button.sticker-btn{
    cursor: pointer;
    appearance: none;
}
.sticker-btn{
    height: 35px;
    line-height: 33px;
    padding: 0 13px;
    border-radius: 17px;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: var(--site-black);
    background-color: var(--site-white);
    text-align: center;
    text-decoration: none;
    border: 1px solid #D4D4D44D;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}
.sticker-btn:not(.sticker-iconed-btn):before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--site-semi-gray);
}
.sticker-btn.active:not(.sticker-iconed-btn):before{
    background-color: var(--site-valid);
}
.sticker-btn:hover{
    background-color: var(--site-soft);
    border-color: var(--site-soft);
    color: var(--site-black);
}
.sticker-btn.active{
    background-color: #F6FCF0;
}
.sticker-btn.sticker-iconed-btn svg{
    opacity: 0.3;
}
.sticker-btn.sticker-iconed-btn.active svg{
    opacity: 1;
}
.products-list-footer{
    padding-top: 20px;
}
/**************************************************/
/************ product card **********************/
.product-card{
    height: 410px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    margin-bottom: 20px;
}
.product-card .like-btn,
.product-card .remove-deffered-btn{
    display: inline-block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #00000033;
    cursor: pointer;
    z-index: 10;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
}
.product-card .remove-deffered-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card .remove-deffered-btn::before,
.product-card .remove-deffered-btn::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: var(--site-white);
    border-radius: 1px;
}
.product-card .remove-deffered-btn::before{
    transform: translate(-50%, -50%) rotate(45deg);
}
.product-card .remove-deffered-btn::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}
.product-card .remove-deffered-btn:hover{
    background-color: #00000055;
}
.product-card .like-btn:hover{
    background-color: #00000055;
}

.product-card .like-btn.active{
    background-color: var(--site-white);
}
.product-card .like-btn.active:hover{
    background-color: var(--site-soft);
}
.product-card .like-btn > i{
    background-repeat: no-repeat;
    width: 17px;
    height: 15px;
    display: block;
    position: absolute;
    left: 7px;
    top: 8px;
}
.product-card .like-btn .like-btn-icon{
    background-image: url('../img/product-card/like-btn-icon.svg');
}
.product-card .like-btn .like-btn-active-icon{
    background-image: url('../img/product-card/like-btn-active-icon.svg');
    display: none;
    left: 8px;
    top: 9px;
}
.product-card .like-btn.active .like-btn-icon{
    display: none;
}
.product-card .like-btn.active .like-btn-active-icon{
    display: block;
}
.item-rating{
    display: none;
}
.product-card-link{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    cursor: pointer;
}
.product-card-stickers{
    position: absolute;
    left: 15px;
    top: 15px;
    right: 60px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 3;
}
.product-card-sticker{
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--site-white);
    background-color: var(--site-soft);
    text-align: center;
    font-family: var(--site-font-medium);
    text-transform: uppercase;
}
.hit-sticker{
    background-color: #EA6200;
    color: var(--site-white);
}
.hit-sticker svg{
    position: relative;
    top: -2px;
    margin-right: 7px;
}
.newbuy-sticker{
    background-color: #64C900;
    color: var(--site-white);
}
.sale-sticker{
    background-color: #CE3836;
    color: #FEFEFC;
}
.product-card-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.2s ease;
}
.img-loader-host.is-img-loading::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid var(--site-soft);
    border-top-color: var(--site-accent);
    border-radius: 50%;
    animation: products-ajax-loader-spin 0.7s linear infinite;
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
}
.product-card-link.img-loader-host.is-img-loading,
.product-card-link.img-loader-host.is-img-pending{
    background-color: #ECECEC;
}
.product-card-link.is-img-loading .product-card-image,
.product-card-link.is-img-pending .product-card-image,
.blog-item-image.is-img-loading .js-img-loader,
.blog-item-image.is-img-pending .js-img-loader,
.post-product-list-item-image.is-img-loading .js-img-loader,
.post-product-list-item-image.is-img-pending .js-img-loader,
.product-card-purchase-img.is-img-loading .js-img-loader.active,
.product-card-purchase-img.is-img-pending .js-img-loader.active,
figure.img-loader-host.is-img-loading .js-img-loader,
figure.img-loader-host.is-img-pending .js-img-loader{
    opacity: 0;
}
.product-card-purchase-img.img-loader-host.is-img-loading::after{
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border-width: 2px;
}
.post-product-list-item-image.img-loader-host,
figure.img-loader-host{
    position: relative;
    overflow: hidden;
}
.blog-item-image.img-loader-host{
    position: absolute;
    overflow: hidden;
}
.blog-item-image.img-loader-host.is-img-loading,
.blog-item-image.img-loader-host.is-img-pending,
.post-product-list-item-image.img-loader-host.is-img-loading,
.post-product-list-item-image.img-loader-host.is-img-pending,
figure.img-loader-host.is-img-loading,
figure.img-loader-host.is-img-pending{
    background-color: #ECECEC;
    min-height: 120px;
}
.product-card-info{
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    padding: 15px 15px 9px 15px;
    background-color: var(--site-white);
    border-radius: 18px;
    z-index: 3;
}
.product-card-info-options{
    display: flex;
    flex-direction: row;
    gap: 4px;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    flex-wrap: wrap;
}
.product-card:hover .product-card-info-options{
    max-height: 94px;
    padding-bottom: 11px;
}
.product-card-info-option{
    height: 25px;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 0 5px;
    border-radius: 5px;
    color: var(--site-black);
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--site-soft);
    color: var(--site-grey);
    flex-wrap: nowrap;
    white-space: nowrap;
}
.product-card-info-option svg{
    width: 14px;
    height: 14px;
}
.product-card-info-title{
    margin-bottom: 15px;
}
.product-card-info-title h3{
    margin-bottom: 5px;
}
.product-card-info-title h3 a{
    font-family: var(--site-font-semibold);
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    color: var(--site-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-decoration: none;
}
.product-card-info-title h3 a:hover{
    color: var(--site-accent);
}
.product-card:hover .product-card-info-title h3{
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}
.product-card-info-title p{
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    line-height: 15px;
    color: var(--site-grey);
}
.product-card-info-sell-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.product-card-info-sell-info .in-stock-label{
    height: 25px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border: 1px solid var(--site-semi-gray);
}
.product-card-info-sell-info .in-stock-message{
    color: var(--site-valid);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 23px;
    display: inline-block;
    text-transform: lowercase;
}
.product-card-info-sell-info .not-in-stock-message{
    font-family: var(--site-font-regular);
    font-weight: 400;
    color: var(--site-accent);
    font-size: 12px;
    line-height: 23px;
    display: inline-block;
    text-transform: lowercase;
}
.product-card-info-sell-info .product-card-price-block{
    height: 25px;
    position: relative;

}
.product-card-info-sell-info .product-card-price-block .product-card-old-price{
    font-family: var(--site-font-regular);
    font-weight: 400;
    color: var(--site-black);
    opacity: 0.2;
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    top: -19px;
    right: 0;
    text-decoration: line-through;
}
.product-card-info-sell-info .product-card-price-block .product-card-price{
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
}
.product-card-info-sell-info .product-card-price-block .product-card-price .product-card-price-value{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.product-card-info-sell-info .product-card-price-block .product-card-price .product-card-price-currency{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.product-card-info-btns{
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.product-card:hover .product-card-info-btns{
    max-height: 75px;
    padding-top: 15px;
    box-sizing: border-box;
}
.product-card-info-btns .add-to-cart-btn,
.product-card-info-btns .red-btn{
    width: 100%;
}
.products-list-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.show-more-btn{
    background: var(--site-soft);
    height: 60px;
    width: 335px;
    border-radius: 15px;
    font-size: 15px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    color: var(--site-black);
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
}
.show-more-btn:hover{
    border: 1px solid var(--site-soft);
    background-color: var(--site-white);
}
.show-more-btn.oc-loading,
.show-more-btn.loading{
    opacity: 0.6;
    pointer-events: none;
}
.pagiation{
    display: flex;
    flex-direction: row;
    gap: 9px;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pagiation > li{

}
.pagiation > li > a{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    background-color: var(--site-white);
    color: var(--site-black);
    border: 1px solid var(--site-soft);
    font-size: 15px;
    font-family: var(--site-font-semibold);
    font-weight: 600;

}
.pagiation > li > a:hover{
    background-color: var(--site-soft);
}
.pagiation > li > span{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    background-color: var(--site-white);
    color: var(--site-black);
    font-size: 15px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.pagiation > li > span.current-page{
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    background-color: var(--site-white);
    color: var(--site-black);
    border: 1px solid var(--site-black);
    font-size: 15px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
}
.product-card-purchase-select{
    display: none;
}
#product_card_purchase_select_content .product-card-purchase-select{
    display: block;
}
.product-card-purchase-select-modal .modal-dialog{
    max-width: 550px;
}
.product-card-purchase-select{
    padding-top: 10px;
}
.product-card-purchase-info{
    position: relative;
    padding-left: 72px;
    min-height: 60px;
    margin-bottom: 20px;
}
.product-card-purchase-img{
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.product-card-purchase-img img{
    display: none;
    width: 60px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
.product-card-purchase-img img.active{
    display: block;
}
.product-card-purchase-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    color: var(--site-black);
    line-height: 22px;
    margin-bottom: 10px;
    color: var(--site-black);
}
.product-card-purchase-options{
    display: flex;
    flex-direction: row;
    gap: 4px;
    box-sizing: border-box;
    padding-bottom: 0px;
    flex-wrap: wrap;
}
.product-card-purchase-option{
    height: 25px;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 0 5px;
    border-radius: 5px;
    color: var(--site-black);
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--site-soft);
    color: var(--site-grey);
    flex-wrap: nowrap;
    white-space: nowrap;
}
.product-card-purchase-option svg{
    width: 14px;
    height: 14px;
}
.product-card-purchase-current-color{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}
.product-card-purchase-color-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0px -1px 20px;
}
.product-card-purchase-sales-order{
    position: relative;
    margin-bottom: 15px;
}
.product-card-purchase-sales-order .product-order-counter{
    margin-bottom: 15px;
}
.product-card-purchase-sales-order .product-order-min{
    top: auto;
    bottom: 33px;
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border-radius: 5px;
    color: var(--site-black);
    border: 1px solid var(--site-soft);
}
.product-card-purchase-btns .add-to-cart-btn{
    width: 100%;
}
.product-card-purchase-btns .put-aside-btn{
    width: 100%;
}
.product-card-purchase-btns{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-order-total label{
    display: block;
}
/*************** product card end ******************/

/********** product **********/
.product-content{

}
.product-main-info{
    padding-left: 592px;
    position: relative;
    min-height: 465px;
    margin-bottom: 90px;
}
.product-main-info-media{
    position: absolute;
    top: 0;
    left: 0;
    width: 555px;
    height: 465px
}
.variation-gallery{
    display: none;
}
.variation-gallery.active{
    display: flex;
    flex-direction: row-reverse;
    gap: 15px;
}
.variation-gallery-show{
    width: 465px;
    height: 465px;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
}
.variation-gallery-lightbox-trigger{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
    pointer-events: none;
}
.variation-gallery-show > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.variation-gallery-stickers{
    position: absolute;
    right: 15px;
    top: 15px;
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
}
.variation-gallery-sticker{
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--site-white);
    background-color: var(--site-soft);
    text-align: center;
    font-family: var(--site-font-medium);
    text-transform: uppercase;
}
.variation-gallery-sticker.hit-sticker{
    background-color: #EA6200;
    color: var(--site-white);
}
.variation-gallery-sticker.hit-sticker svg{
    position: relative;
    top: -2px;
    margin-right: 7px;
}
.variation-gallery-sticker.newbuy-sticker{
    background-color: #64C900;
    color: var(--site-white);
}
.variation-gallery-sticker.sale-sticker{
    background-color: #CE3836;
    color: #FEFEFC;
}
.variation-gallery-img-list{
    width: 75px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.variation-gallery-img-list li{
    position: relative;
    width: 75px;
    height: 75px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
    margin-bottom: 15px;
    box-sizing: border-box;
    cursor: pointer;
}
.variation-gallery-img-list li.active{
    border: 3px solid var(--site-black);
}
.variation-gallery-img-list li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.product-main-info-top{
    padding-right: 150px;
    position: relative;
}
.product-main-info-top .breadcrumb{
    padding-bottom: 30px;
}
.product-main-info-top .page-header{
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    padding-bottom: 30px;
}
.product-main-info-top-labels{
    position: absolute;
    right: 0;
    top: 0;
}
.product-articul{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 12px;
    color: var(--site-muted);
    line-height: 24px;
}
.product-articul-value{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 12px;
    color: var(--site-black);
    line-height: 24px;
}
.product-in-stock-label{
    position: absolute;
    top: 54px;
    right: 0;
    background-color: var(--site-white);
    border: 1px solid var(--site-semi-gray);
    padding: 0 8px;
    line-height: 25px;
    border-radius: 5px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-valid);
    text-transform: lowercase;
    white-space: nowrap;
}
.product-in-stock-label.disabled{
    display: none;
}
.product-not-in-stock-label{
    position: absolute;
    top: 54px;
    right: 0;
    background-color: var(--site-white);
    border: 1px solid #727272;
    padding: 0 8px;
    line-height: 25px;
    border-radius: 5px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: #727272;
    text-transform: lowercase;
    white-space: nowrap;
}
.product-not-in-stock-label.disabled{
    display: none;
}
.product-main-info-sales-current-color{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 15px;
}
.current-color-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
    line-height: 15px;
}
.current-color{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.current-color .color-img{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    position: relative;
}
.current-color .color-img.js-bg-img-loader.is-img-loading::after,
.current-color .color-img.js-bg-img-loader.is-img-pending::after,
.product-card-purchase-color-list .color-img.js-bg-img-loader.is-img-loading::after,
.product-card-purchase-color-list .color-img.js-bg-img-loader.is-img-pending::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-top-color: var(--site-accent);
    border-radius: 50%;
    animation: products-ajax-loader-spin 0.7s linear infinite;
    z-index: 2;
    pointer-events: none;
    box-sizing: border-box;
}
.current-color .color-img.js-bg-img-loader.is-img-loading,
.current-color .color-img.js-bg-img-loader.is-img-pending,
.product-card-purchase-color-list .color-img.js-bg-img-loader.is-img-loading,
.product-card-purchase-color-list .color-img.js-bg-img-loader.is-img-pending{
    background-color: #ECECEC;
    background-image: none !important;
}
.current-color .color-img.js-bg-img-loader.is-img-loading::after,
.current-color .color-img.js-bg-img-loader.is-img-pending::after{
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-width: 1.5px;
}
.current-color .color-name{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-black);
    line-height: 15px;
}
.product-main-info-sales-color-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.color-list-option{
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
    position: relative;
    cursor: pointer;
    box-sizing: content-box;
}
.color-list-option .color-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    flex-shrink: 0;
    display: block;
}
.color-list-option .color-name{
    display: none;
}
.color-list-option.active{
    border: 1px solid var(--site-black);
}
.color-list-option.active .color-img{
    border: 2px solid var(--site-white);
    box-sizing: border-box;
}
.product-main-info-sales-order{
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: top;
    flex-wrap: wrap;
    margin-bottom: 30px;
    position: relative;
    padding-right: 180px;
}
.product-main-info-sales-order.is-hidden,
#add_to_cart_btn.is-hidden,
.product-card-purchase-select .is-hidden,
.product-card-purchase-btns .is-hidden{
    visibility: hidden;
}
.product-main-info-sales-order .is-hidden{
    display: none;
}
.product-order-min{
    position: absolute;
    top: 18px;
    right: 0;
    font-size: 12px;
    font-weight: 400;
    font-family: var(--site-font-regular);
    color: #262626;
    line-height: 25px;
}
.product-order-counter{

}
.product-order-counter label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
    line-height: 15px;
    margin-bottom: 11px;
}
.counter{
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
}
.counter button{
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #D4D4D44D;
    background-color: var(--site-white);
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
}
.counter button:hover{
    color: var(--site-black);
    background-color: var(--site-soft);
}
.counter input{
    width: 69px;
    height: 35px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #D4D4D44D;
    background-color: var(--site-white);
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
}
.product-order-cost{

}
.product-order-cost label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
    line-height: 15px;
    margin-bottom: 5px;
}
.product-order-cost-sum{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    color: var(--site-black);
    line-height: 26px;
    margin-bottom: 0;
}
.product-order-cost-sum span{

}
.product-main-info-sales-order-btns{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.product-main-info-sales-order-btns .add-to-cart-btn{
    width: 36%;
    height: 60px;
    box-sizing: border-box;
}
.sample-btn{
    height: 60px;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: var(--site-soft);
    border: 1px solid var(--site-soft);
    color: var(--site-black);
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-main-info-sales-order-btns .sample-btn{
    width: calc(32% - 10px);
}
.sample-btn svg{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.sample-btn:hover{
    background-color: var(--site-white);
}
.product-like-btn{
    height: 60px;
    box-sizing: border-box;
    height: 60px;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: var(--site-white);
    border: 1px solid var(--site-soft);
    color: var(--site-black);
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 0 10px;
}
.product-like-btn .like-btn-icon{
    background-image: url('../img/product/like-btn-icon.svg');
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.like-btn-active-icon{
    display: none;
    background-image: url('../img/product/like-btn-active-icon.svg');
    background-repeat: no-repeat;
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 10px;
}
.product-like-btn:hover{
    background-color: var(--site-soft);
}
.product-main-info-sales-order-btns .product-like-btn{
    width: calc(32% - 10px);
}
.product-like-btn.active .like-btn-icon{
    display: none;
}
.product-like-btn.active .like-btn-active-icon{
    display: inline-block;
}
.product-order-cost .product-price{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
    line-height: 15px;
    margin-bottom: 0;
}
.product-order-cost .product-price span{

}
.product-main-info-sales-variations-chars{

}
.variation-char-list{
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid var(--site-soft);
    padding-top: 15px;
}
.variation-char-list.active{
    display: flex;
}
.variation-char-list li{
    width: calc(50% - 5px);
    box-sizing: border-box;
    padding-right: 10px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
}
.variation-char-list li.line{
    width: 100%;
    height: 1px;
    background-color: var(--site-soft);
    margin: 5px 0;
}
.variation-char-name{
    font-family: var(--site-font-medium);
    font-weight: 00;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
}
.variation-char-value{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.variation-char-value .color-img{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 7px;
    flex-shrink: 0;
    display: block;
}
.variation-char-value .color-name{

}
.variation-char-value svg{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}
.variation-char-value .question-icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #D9D9D9;
    color: var(--site-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    cursor: pointer;
    font-style: normal;
    opacity: 0.3;
}
.variation-char-value .question-icon:hover{
    opacity: 1;
}
.color-char-block{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-right: 15px;
}
.other-colors-link{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-decoration: underline;
    text-decoration-style: dotted;
    color: var(--site-black);
    cursor: pointer;
}
.other-colors-link:hover{
    text-decoration: none;
    color: var(--site-push);
}
.product-secondary-info{
    padding-left: 592px;
    position: relative;
    min-height: 350px;
}
.product-texts{
    position: absolute;
    left: 0;
    top: 0;
    width: 555px;
    height: 350px;
}
.tabs-block{

}
.tabs-block .tabs{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: start;
    padding-right: 17px;
    border-bottom: 1px solid var(--site-soft);
    margin-bottom: 25px;
}
.tabs-block .tabs .tab{
    padding-bottom: 16px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.02em;
    line-height: 20px;
    opacity: 0.3;
    color: var(--site-black);
    position: relative;
    bottom: -1px;
    text-decoration: none;
    cursor: pointer;
}
.tabs-block .tabs .tab.active{
    opacity: 1;
    color: var(--site-black);
    border-bottom: 1px solid var(--site-black);
}
.tabs-contents{

}
.tab-content{
    display: none;
    max-height: 288px;
    overflow-y: auto;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
    padding-right: 10px;
}
.tab-content.active{
    display: block;
}
.tab-content p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 17px;
}
.tab-content h1{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    color: var(--site-black);
    line-height: 20px;
    margin-bottom: 17px;
}
.tab-content h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    color: var(--site-black);
    line-height: 18px;
    margin-bottom: 17px;
}
.tab-content h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 16px;
    color: var(--site-black);
    line-height: 16px;
    margin-bottom: 17px;
}
.tab-content h4{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    color: var(--site-black);
    margin-bottom: 17px;
}
.tab-content ul{
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 17px;
}
.tab-content ul li{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 10px;
}
.tab-content a{
    color: var(--site-accent);
    text-decoration: none;
}
.tab-content a:hover{
    text-decoration: none;
    color: var(--site-push);
}
.tab-content p.in-production-message{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-top: 0;
    opacity: 0.3;
    font-size: 14px;
    line-height: 17px;
}
.product-options{

}
.product-options h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--site-black);
    margin-bottom: 17px;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--site-soft);
}
.product-options ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-options ul li{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    color: var(--site-black);
    line-height: 17px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--site-soft);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: top;
    justify-content: flex-start;
}
.product-options ul li.variation-char{
    display: none;
}
.product-options ul li.variation-char.active{
    display: flex;
}
.product-option-name{
    width: calc(50% - 5px);
}
.product-option-value{
    width: calc(50% - 5px);
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.product-option-value a{
    text-decoration: underline;
    color: var(--site-accent);
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    display: inline-block;
    margin-right: 6px;
}
.product-option-value a:hover{
    text-decoration: none;
    color: var(--site-push);
}
.product-section{
    position: relative;
}
.section-header-2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    line-height: 40px;
    font-size: 36px;
    letter-spacing: -0.01em;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-header-2 a{
    text-decoration: none;
    color: var(--site-accent);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--site-font-semibold);
    line-height: 17px;
    text-decoration: underline;
}
.section-header-2 a:hover{
    text-decoration: none;
    color: var(--site-push);
}
.item-rating{
    display: none;
}
.put-aside-btn{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--site-black);
    border-radius: 15px;
    color: var(--site-white);
    border: none;
    padding: 0 20px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    cursor: pointer;
    width: 36%;
    box-sizing: border-box;
}
.put-aside-btn.disabled{
    background-color: var(--site-soft);
    color: var(--site-grey);
    cursor: not-allowed;
    display: none;
}
.put-aside-btn svg{
    width: 24px;
    height: 24px;
}
.put-aside-btn:hover{
    background-color: var(--site-push);
}
/*****************************/
/********** cart page **********/
.if-cart-has-products{
    display: none;
}
.if-cart-has-products.active{
    display: block;
}
.if-cart-empty{
    display: none;
}
.if-cart-empty.active{
    display: block;
}
.cart-content{
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}
.cart-content.active{
    display: flex;
}
.cart-empty-content{
    padding-bottom: 90px;
}
.empty-cart-message{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    text-align: left;
}
.cart-products-list-block{
    width: calc(100% - 470px);
}
.cart-order-block{
    width: 450px;
}
.cart-product-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.cart-product{
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    border: 1px solid var(--site-soft);
    padding: 10px;
    border-radius: 20px;
}
.cart-product-list li:last-child{
    margin-bottom: 0;
}
.cart-product-first-col{
    width: calc(48% - 10px);
    min-height: 80px;
    position: relative;
    padding-left: 90px;
}
.cart-product-second-col{
    width: calc(52% - 158px);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cart-product-third-col{
    width: 148px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
    justify-content: flex-end;
}
.cart-product-image{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
}
.cart-product-image > a{
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cart-product-image > a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}
.cart-product-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-bottom: 18px;
}
.cart-product-title a{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 17px;
    color: var(--site-black);
    text-decoration: none;
}
.cart-product-title a{
    color: var(--site-black);
    text-decoration: none;
}
.cart-product-options{
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cart-product-option{
    height: 25px;
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    padding: 0 5px;
    border-radius: 5px;
    color: var(--site-black);
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: var(--site-soft);
    color: var(--site-grey);
    flex-wrap: nowrap;
    white-space: nowrap;
}
.cart-product-option svg{
    width: 14px;
    height: 14px;
}
.cart-product-color-block{
    width: calc(100% - 160px);
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.cart-product-color-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
    margin-bottom: 12px;
    padding-top: 6px;
    width: 100%;
}
.cart-product-counter{
    width: 150px;
}
.cart-product-color{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    height: 20px;
}
.cart-product-color-img{
    width: 20px;
    height: 20px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    display: block;
}
.cart-product-color-name{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    color: var(--site-black);
}
.cart-product-counter label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
    margin-bottom: 14px;
    padding-top: 6px;
    width: 100%;
}
.cart-product-prices{
    padding-top: 35px;
}
.product-order-cost-sum{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.02em;
    line-height: 18px;
    color: var(--site-black);
    margin-bottom: 4px;
}
.product-price{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.product-price-old{
    text-decoration: line-through;
    margin-right: 4px;
    opacity: 0.7;
}
.product-group-discount-label,
.order-item-group-discount{
    margin-top: 4px;
    font-size: 11px;
    line-height: 14px;
    color: #CE3836;
}
.cart-product-btns{
    padding-top: 37px;
}
.delete-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 5px;
    border: 1px solid var(--site-soft);
    background-color: var(--site-white);
    color: var(--site-black);
}
.delete-btn svg{
    width: 15px;
    height: 15px;
}
.delete-btn:hover{
    background-color: var(--site-soft);
}
.cart-order-block{
    background-color: var(--site-soft);
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
}
.cart-order{

}
.cart-order-top{
    border-bottom: 1px solid rgba(183, 183, 183, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
    align-items: flex-start;
}
.cart-order-top-label{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
}
.cart-order-top-total{

}
.cart-order-top-total-price-block{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    text-align: right;
    margin-bottom: 4px;
}
.cart-order-top-total-sub-text{
    text-align: right;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.cart-order-main{

}
.cart-order-delivery-label{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin-bottom: 15px;
}
.cart-order-delivery-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.cart-order-delivery-list li{
    margin-bottom: 15px;
}
.cart-order-delivery-list li label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    display: flex;
    flex-direction: row;
    gap: 0;
    align-items: center;
    justify-content: start;
}
.cart-order-delivery-list li label span{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    display: inline-block;
    width: calc(100% - 34px);
}
.cart-order-delivery-list li label span.delivery-type-subtext{
    font-size: 10px;
    line-height: 12px;
    color: var(--site-grey);
    display: block;
}
.cart-order-btn{
    width: 100%;
    margin-bottom: 18px;
}
.order-warning{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
/********** order form **********/
.order-form{

}
.order-content{
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}
.order-content-left-col{
    width: calc(100% - 470px);
}
.order-content-right-col{
    width: 450px;
    flex-shrink: 0;
}
.order-info-block{
    border-radius: 30px;
    border: 1px solid var(--site-soft);
    padding: 40px;
    box-sizing: border-box;
    margin-bottom: 10px;
}
.order-info-block:last-child{
    margin-bottom: 0;
}
.order-block-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 25px;
}
.order-form-line{
    margin-bottom: 15px;
}
.order-form-line:last-child{
    margin-bottom: 0;
}
.order-form-line label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin-bottom: 10px;
}
.order-form-line .label-with-tight-text{
    padding-right: 200px;
    position: relative;
    display: block;
}
.order-form-line .label-with-tight-text span{
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
    font-family: var(--site-font-regular);
    font-weight: 400;
}
.order-form .condition-block{
    display: none;
}
.order-form .condition-block.active{
    display: block;
}
.delivery-info-block .order-form-line{
    margin-bottom: 0;
}
.delivery-type-option{

}
.order-form-line + .condition-block.active{
    margin-top: 15px;
}
.order-form-line + .condition-block{
    margin-top: 0;
}
.radio-option label{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: var(--site-black);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0px;
    border-radius: 8px;
    border: 1px solid #E1E1E1;
    padding: 14px 87px 14px 15px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
}
.radio-option label b{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    width: calc(100% - 30px);
}
.radio-option label b span{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
}
.radio-option label b .delivery-address-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.radio-option label .delivery-payment-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -6px;
}
.radio-option label > .label-info{
    position: absolute;
    right: 16px;
    z-index: 1;
    font-size: 12px;
    line-height: 15px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    color: var(--site-grey);
}
.radio-option.disabled label > b{
    opacity: 0.3;
    cursor: not-allowed;
}
.form-file-link-input{
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    height: 60px;
    border: 1px solid var(--site-soft);
    border-radius: 8px;
    padding: 0px 10px;
    box-sizing: border-box;
}
.form-file-link-input-tabs{
    display: flex;
    gap: 6px;
    height: 35px;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 136px;
}
.form-file-link-input-tab{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    cursor: pointer;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
    border-radius: 17px;
    background-color: var(--site-white);
}
.form-file-link-input-tab.active{
    background-color: var(--site-black);
    color: var(--site-white);
}
.form-file-link-input-contents{
    width: calc(100% - 156px);
}
.form-file-link-input-content{
    display: none;
}
.form-file-link-input-content.active{
    display: block;
}
.form-file-input-wrap{
    position: relative;
}
.form-file-input{
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
.form-file-input-dialog-btn{
    width: 100%;
    min-height: 48px;
    padding: 12px 36px 12px 16px;
    border-radius: 8px;
    border: none;
    background-color: var(--site-white);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-grey);
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.form-file-input-dialog-btn:hover{
    color: var(--site-black);
}
.form-file-input-clear-btn{
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--site-black);
    font-size: 22px;
    line-height: 22px;
    font-weight: 300;
    opacity: 0.45;
    cursor: pointer;
    display: none;
    z-index: 2;
}
.form-file-input-clear-btn:hover{
    opacity: 1;
}
.form-file-input-wrap.has-file .form-file-input-clear-btn{
    display: block;
}
.form-file-input-wrap.has-file .form-file-input-dialog-btn{
    color: var(--site-black);
}
.form-file-link-input.error{
    border: 1px solid var(--site-accent);
}
.form-file-link-input.error .form-file-input-dialog-btn{
    color: var(--site-accent);
}
.form-file-link-input-content input[type="text"]{
    height: 45px;
    border: none;
    border-radius: 8px;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    width: 100%;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    background-color: var(--site-white);
}
.form-file-link-input-content input[type="text"]::placeholder{
    color: var(--site-grey);
}
.form-file-link-input-content input[type="text"].error{
    color: var(--site-accent);
}
.mobile-scroll-block{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--site-soft);
    padding: 20px;
    box-sizing: border-box;
}
.mobile-scroll-block .cart-order-top{
    padding-bottom: 0;
    border-bottom: none;
}
.mobile-cart-scroll-btn{
    height: 52px;
    font-size: 13px;
    line-height: 16px;
    width: 100%;
}
.order-accept-block{
    border-radius: 30px;
    background-color: var(--site-soft);
    padding: 40px;
    box-sizing: border-box;
}
.order-accept-items{
    margin-bottom: 17px;
}
.order-accept-title{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.order-accept-title-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
}
.order-accept-title-info{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
}
.order-accept-items-content{

}
.order-item-list{
    padding: 10px 0 0;
}
.order-item{
    border-radius: 4px;
    padding: 15px 86px 15px 15px;
    background-color: #FBFBFB;
    border: 1px solid var(--site-soft);
    margin-bottom: 5px;
    position: relative;
}
.order-item-price{
    position: absolute;
    right: 15px;
    top: 15px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: var(--site-black);
    letter-spacing: -0.02em;
}
.order-item-info{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.order-item-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    width: 100%;
}
.order-item-color{
    display: flex;
    gap: 8px;
}
.order-item-color-img{
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid var(--site-soft);
    box-sizing: border-box;
    flex-shrink: 0;
    display: block;
}
.order-item-color-name{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.order-item-qtty{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    padding-left: 12px;
    position: relative;
}
.order-item-qtty:before{
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 8px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #858585;
}
.order-accept-delivery-cost{
    border-bottom: 1px solid rgba(183, 183, 183, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.order-cost{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: top;
    gap: 10px;
    border-bottom: 1px solid rgba(183, 183, 183, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.order-cost-label{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
}
.order-cost-total{
    text-align: right;
}
.order-cost-total-price-block{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 4px;
}
.order-cost-total-sub-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.order-agreement{
    margin-bottom: 15px;
}
.order-agreement label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    position: relative;
    padding-left: 36px;
}
.order-agreement label input[type="checkbox"]{
    position: absolute;
    left: 0;
    top: 0px;
}
.order-agreement label a{
    text-decoration: underline;
    color: var(--site-black);
}
.order-agreement label a:hover{
    color: var(--site-black);
    text-decoration: none;
}
.accept-order-btn{
    width: 100%;
}
.radio-option-subline{
    padding-top: 15px;
}
/********** order info **********/
.order-success-header{
    padding-bottom: 30px;
}
.section-sub-header{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    padding-bottom: 30px;
    color: var(--site-black);
}
.order-success-block{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}
.order-success-left-col{
    width: 454px;
    flex-shrink: 0;
}
.order-success-right-col{
    width: calc(100% - 472px);
}
.order-success-customer-info-block{
    border-radius: 30px;
    border: 1px solid var(--site-soft);
    padding: 40px;
    box-sizing: border-box;
}
.order-success-customer-info-header{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 25px;
}
.rder-success-customer-line{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin-bottom: 12px;
}
.rder-success-customer-line:last-child{
    margin-bottom: 0;
}
.order-success-main{
    border-radius: 30px;
    border: 1px solid var(--site-soft);
    padding: 40px;
    box-sizing: border-box;
}
.order-success-main-total{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.order-success-main-total-header{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 4px;
}
.order-success-main-total-sub{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.order-success-main-total-lebels{

}
.order-success-main-total-price{
    text-align: right;
}
.order-success-main-items-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.order-success-item{
    border-radius: 4px;
    border: 1px solid var(--site-soft);
    padding: 15px;
    box-sizing: border-box;
    margin-bottom: 5px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 15px;
    padding-right: 100px;
    position: relative;
    margin-bottom: 10px;
}
.order-success-item:last-child{
    margin-bottom: 0;
}
.order-success-item-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    width: 300px;
}
.order-success-item-info{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 17px;
    flex-wrap: wrap;
    width: calc(100% - 315px);
}
.order-success-item-info-color{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 8px;
}
.order-success-item-info-color-img{
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
}
.order-success-item-info-color-name{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.order-success-item-info-qtty{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.order-success-item-price{
    position: absolute;
    right: 15px;
    top: 17.5px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 14px;
    line-height: 14px;
    color: var(--site-black);
    letter-spacing: -0.02em;
}
.order-success-btns{
    width: 270px;
    margin: 0 auto;
    padding: 40px 0px 0px 0px;
}
.favourites-products-list-block{

}
.deffered-products-list-block,
.favourites-products-list-block,
.actions-products-list-block{
    position: relative;
    min-height: 220px;
}
.deffered-products-list-block.is-loading,
.favourites-products-list-block.is-loading,
.actions-products-list-block.is-loading{
    cursor: wait;
}
.products-ajax-loader{
    position: absolute;
    inset: 0;
    z-index: 20;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: rgba(255, 255, 255, 0.72);
    box-sizing: border-box;
}
.deffered-products-list-block.is-loading > .products-ajax-loader,
.favourites-products-list-block.is-loading > .products-ajax-loader,
.actions-products-list-block.is-loading > .products-ajax-loader{
    display: flex;
}
.products-ajax-loader-spinner{
    width: 40px;
    height: 40px;
    border: 3px solid var(--site-soft);
    border-top-color: var(--site-accent);
    border-radius: 50%;
    animation: products-ajax-loader-spin 0.7s linear infinite;
}
.product-card-purchase-ajax-loader{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    width: 100%;
}
@keyframes products-ajax-loader-spin{
    to{
        transform: rotate(360deg);
    }
}
#favourites_products.is-loading,
#deffered_products.is-loading{
    opacity: 0.55;
    pointer-events: none;
}
.favourites-products-list-block .tag-list-block{
    width: 100%;
    margin-bottom: 20px;
}
/************ about company ************/
#presentation_modal .modal-dialog{
    max-width: 620px;
}
#presentation_modal .modal-body p:last-child{
    margin-bottom: 0;
}
.about-us-banner{
    height: 628px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
    background-image: url('/themes/intai-new/assets/img/o-nas/banner-new.jpg');
    position: relative;
    margin-bottom: 20px;
}
.about-us-banner .breadcrumb{
    margin-bottom: 12px;
}
.about-us-banner .breadcrumb li a,
.about-us-banner .breadcrumb li a span,
.about-us-banner .breadcrumb li span,
.about-us-banner .breadcrumb li:after{
    color: var(--site-white);
}
.about-us-banner h1{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
    color: var(--site-white);
    margin-bottom: 25px;
    max-width: 824px;
    width: 100%;
    letter-spacing: -0.02em;
}
.about-us-banner-btns{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 11px;
    position: absolute;
    bottom: 40px;
    left: 40px;
    flex-wrap: wrap;
}
.about-us-advantage-block{
    border-radius: 30px;
    background-color: var(--site-soft);
    padding: 30px;
    height: 207px;
    box-sizing: border-box;
    position: relative;
}
.about-us-advantage-icon{
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--site-white);
    border-radius: 10px;
    color: var(--site-accent);
}
.about-us-advantage-text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}
.about-us-advantage-text h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-bottom: 6px;
}
.about-us-advantage-text p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin: 0;
}
.about-company-info{

    width: 100%;
}
.about-company-info h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--site-black);
    margin-bottom: 40px;
}
.about-company-info p.strong-text{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: var(--site-black);
    margin-bottom: 15px;
    opacity: 0.8;
    max-width: 530px;
}
.about-company-info p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: var(--site-black);
    margin: 0 0 60px 0;
    opacity: 0.8;
    max-width: 554px;
}
.about-company-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.about-company-info ul li{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin: 0;
    position: relative;
    padding-left: 20px;
    width: calc(50% - 8px);
    padding-bottom: 3px;
}
.about-company-info ul li:before{
    content: '';
    display: inline-block;
    background-color: #920F10;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
}
.about-company-info ul li:last-child{
    margin-bottom: 0;
}
.about-company-img{
    height: 425px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/themes/intai-new/assets/img/o-nas/about-company-new.jpg');
}
.company-history-block{
    /*padding: 331px 40px 46px 40px;
    background-image: url('/themes/intai-new/assets/img/o-nas/history-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    box-sizing: border-box;*/
}
.company-history{
    background-color: var(--site-white);
    border-radius: 30px;
    padding: 45px 0 40px 0;
    box-sizing: border-box;
}
.company-history h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -0.02em;
    color: var(--site-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0 0 34px 0;
    margin-bottom: 0;
}
.company-history-content{
    padding: 40px 40px 0 40px;
    box-sizing: border-box;
}
.company-history-list{
    padding-right: calc(50% + 20px);
    position: relative
}
.company-history-item{
    margin-bottom: 32px;
    max-width: 547px;
}
.company-history-item-info{
    position: relative;
    padding-left: 65px;
    cursor: pointer;
}
.company-history-item-info span{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    color: var(--site-white);
    display: inline-block;
    padding: 0 8px;
    height: 25px;
    background-color: #cccccc;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.company-history-item-info h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    margin-bottom: 11px;
}
.company-history-item-info p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin: 0;
    opacity: 0.5;
}
.company-history-item.active .company-history-item-info span{
    background-color: var(--site-accent);
    color: var(--site-white);
}
.company-history-item-image{
    position: absolute;
    height: 415px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    right: 0;
    top: 50%;
    left: calc(50% + 20px);
    margin-top: -207px;
}
.company-history-item:nth-child(1) .company-history-item-image{
    background-image: url('/themes/intai-new/assets/img/o-nas/history-item-1-new.jpg');
}
.company-history-item:nth-child(2) .company-history-item-image{
    background-image: url('/themes/intai-new/assets/img/o-nas/history-item-2-new.jpg');
}
.company-history-item:nth-child(3) .company-history-item-image{
    background-image: url('/themes/intai-new/assets/img/o-nas/history-item-3-new.jpg');
}
.company-history-item:nth-child(4) .company-history-item-image{
    background-image: url('/themes/intai-new/assets/img/o-nas/history-item-4-new.jpg');
}
.company-history-item:nth-child(5) .company-history-item-image{
    background-image: url('/themes/intai-new/assets/img/o-nas/history-item-5-new.jpg');
}
.our-team-block{

}
.our-team-item{
    height: 410px;
    position: relative;
    border-radius: 25px;
    margin-bottom: 20px;
}
.our-team-item-content{
    position: relative;
    height: 100%;
    width: 100%;
}
.our-team-img{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    overflow: hidden;
    border-radius: 25px;
}
.our-team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-team-item-info{
    background-color: var(--site-white);
    border-radius: 18px;
    padding: 15px;
    box-sizing: border-box;
    position: absolute;
    bottom: 7px;
    left: 6px;
    right: 6px;
}
.our-team-item-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-bottom: 4px;
}
.our-team-item-desc{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin: 0;
    opacity: 0.8;
}
.avards-list{
    display: flex;
    flex-direction: row;
    gap: 19px;
    justify-content: flex-start;
}
.avards-item-content{
    width: 264px;
    height: 367px;
    position: relative;
}
.avards-item-content a{
    width: 100%;
    height: 100%;
    position: relative;
}
.avards-item-content a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    border: 1px solid var(--site-soft);
}
.avards-list-block .horizontal-scroll-nav{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 0;
    position: absolute;
    top: -84px;
    right: 0;
}
.avards-list-block .horizontal-scroll-btn{
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    background-color: var(--site-white);
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}
.avards-list-block .horizontal-scroll-btn-prev::before,
.avards-list-block .horizontal-scroll-btn-prev::after,
.avards-list-block .horizontal-scroll-btn-next::before,
.avards-list-block .horizontal-scroll-btn-next::after{
    height: 10px;
    width: 2px;
}
.avards-list-block .horizontal-scroll-btn-next::before{
    top: 12px;
}
.avards-list-block .horizontal-scroll-btn-prev::before{
    top: 12px;
}
/********** delivery page **********/
.grey-block-wrap{
    margin-bottom: 20px;
}
.grey-block{
    padding: 40px;
    box-sizing: border-box;
    border: 1px solid var(--site-soft);
    border-radius: 30px;
    margin-bottom: 20px;
}
.grey-block:last-child{
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .grey-block-wrap > [class*="col-"]{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .grey-block-wrap .grey-block,
    .grey-block-wrap .proxy-block{
        margin-bottom: 0;
        flex: 1 1 auto;
    }
}
.proxy-block h2,
.grey-block h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    line-height: 32px;
    color: var(--site-black);
    margin-bottom: 16px;
    font-size: 32px;
    letter-spacing: -0.02em;
}
.proxy-block h2{

}
.proxy-block p,
.grey-block p{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 19px;
}
.proxy-block p:last-child{
    margin-bottom: 0;
}
.proxy-block .centered{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
}
.grey-block p:last-child{
    margin-bottom: 0;
}
.options-grids{
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}
.options-grids li{
    margin-bottom: 8px;
}
.options-grids li:last-child{
    margin-bottom: 0;
}
.options-grid-header{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin: 0 0 4px 0;
    text-align: left;
}
.options-grid-text{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin: 0;
    text-align: left;
}
.options-grid-text b{
    font-weight: 700;
}
.proxy-block{
    padding: 40px;
    box-sizing: border-box;
    background-color: #FFF0F0;
    border-radius: 30px;
}

.proxy-block h2 .warning-icon{
    width: 26px;
    height: 26px;
    display: block;
    margin-right: 17px;
    position: relative;
    color: var(--site-accent);
    top: -2px;
    margin-bottom: 8px;
}
.proxy-block h2 .warning-icon svg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.proxy-block p{
    max-width: 497px;
}
.proxy-link{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    text-decoration: none;
    color: var(--site-black);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    background-color: var(--site-white);
    height: 70px;
    padding: 0px 55px 0 18px;
    position: relative;
    border-radius: 18px;
}
.proxy-link:hover{
    color: var(--site-black);
}
.proxy-link-icon{
    width: 35px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--site-soft);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--site-black);
}
.proxy-link-icon svg{
    width: 15px;
    height: 15px;
}
.proxy-link-size{
    position: absolute;
    right: 28px;
    top: 27px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    color: var(--site-black);
    opacity: 0.3;
}
.faq-block{
    padding-left: 490px;
    position: relative;
    min-height: 290px;
}
.faq-block .section-header{
    margin-bottom: 26px;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 415px;
}
.faq-phone-block{
    position: absolute;
    top: 182px;
    left: 0;
}
.faq-subheader{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--site-black);
    opacity: 0.8;
    position: absolute;
    top: 122px;
    left: 0;
    max-width: 354px;
}
.faq-phone{
    padding-right: 10px;
}
.faq-phone a{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: var(--site-black);
    text-decoration: none;
}
.faq-phone a:hover{
    color: var(--site-accent);
}
.faq-phone-block{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.faq-icon{
    color: var(--site-black);
}
.faq-icon a{
    text-decoration: none;
    color: var(--site-black);
}
.faq-icon a:hover{
    color: var(--site-accent);

}
.faq-icon svg{
    width: 22px;
    height: 22px;
}
.faq-list{
    list-style: none;
    padding: 0;
    margin: 0;
}
.faq-list li{
    margin-bottom: 10px;
}
.faq-list li:last-child{
    margin-bottom: 0;
}
.faq-list-item{
    background-color: var(--site-soft);
    padding: 22px 20px 23px 20px;
    border-radius: 18px;
    cursor: pointer;
    border: 1px solid transparent;
}
.faq-question{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    padding-right: 40px;
    color: var(--site-black);
    position: relative;
    margin: 0;
}
.faq-question::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 25px;
    height: 25px;
    background-color: var(--site-accent);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-question::after{
    content: '';
    background-image: url('../img/faq-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 5px;
    right: 5px;
    transition: transform 0.3s ease;
}
.faq-answer{
    padding-right: 40px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}
.faq-answer-content {
    overflow: hidden;
    min-height: 0;
}
.faq-answer-content p{
    font-family: var(--site-font-regular);
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    padding-top: 10px;
    margin-bottom: 0;
}
.faq-list-item.is-open{
    background-color: var(--site-white);
    border: 1px solid var(--site-soft);
}
.faq-list-item.is-open .faq-answer{
    grid-template-rows: 1fr;
}
.faq-list-item.is-open .faq-question::after{
    transform: rotate(180deg);
}
/********** price list **********/
.price-list-content{
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-weight: 400;
    max-width: 892px;
}
.price-list-content p{
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 19px;
    font-family: var(--site-font-regular);
    font-weight: 400;
}
.price-list-content p:last-child{
    margin-bottom: 0;
}
.price-list-btns{
    margin-bottom: 40px;
}
.price-list-btns .download-btn{
    width: 323px
}
.price-list-banner{
    height: 560px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/themes/intai-new/assets/img/prays/banner.jpg');
}
/********** 404 page **********/
.block-404{
    height: 653px;
    padding-top: 63px;
    border-radius: 30px;
    background-image: url('/themes/intai-new/assets/img/404/404-bg.jpg');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    box-sizing: border-box;
    background-color: #fdfffc;
    position: relative;
    overflow: hidden;
}
.block-404::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
}
.block-404 .page-header{
    max-width: 719px;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 25px;
}
.text-404{
    max-width: 719px;
    text-align: center;
    margin: 0 auto 25px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 20px;
    line-height: 20px;
    color: var(--site-black);
}
.btns-404{
    max-width: 719px;
    text-align: center;
    margin: 0 auto;
}
/********** blog **********/
.blog-item{
    height: 410px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--site-soft);
}
.blog-item-stickers{
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap;
}
.blog-item-sticker{
    display: inline-block;
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--site-white);
    background-color: #00000042;
    backdrop-filter: blur(12.100000381469727px);
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 12px;
    line-height: 25px;
}
.blog-item-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.blog-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-item-info{
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 17px;
    background-color: var(--site-white);
    border-radius: 18px;
    z-index: 3;
}
.blog-item-info h4{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-bottom: 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.blog-item-text,
.blog-item-info p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin-bottom: 0;
    height: 34px;
    overflow: hidden;
}
.blog-item-date-wrapper{
    display: flex;
    align-items: end;
    justify-content: flex-start;
    height: 0;
    transition: height 0.3s ease;
    overflow: hidden;
}
.blog-item-date{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 25px;
    color: var(--site-grey);
    height: 25px;
    display: block;
    border: 1px solid #D4D4D44D;
    border-radius: 5px;
    padding: 0 8px;
}
.blog-item:hover .blog-item-date-wrapper{
    height: 45px;
}
/********** contacts **********/
.contacts-main-info-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-muted);
    margin-bottom: 15px;
    text-transform: uppercase;
}
.contacts-main-info-text,
.contacts-main-info-text a{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: var(--site-black);
    text-decoration: none;
}
.contacts-main-info-text a:hover{
    color: var(--site-accent);
}
.contacts-social-list{
    display: flex;
    flex-direction: row;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.contacts-social-list li{

}
.contacts-social-list li a{
    text-decoration: none;
    color: var(--site-accent);
}
.contacts-social-list li a:hover{
    color: var(--site-push);
}
.contacts-social-list li a svg{
    width: 22px;
    height: 22px;
    display: inline-block;
}
.section-header-3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    line-height: 32px;
    font-size: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--site-black);
}
.office-item{
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.office-left-col{
    display: flex;
    flex-direction: column;
    width: 450px;
    min-height: 272px;
}
.office-right-col{
    display: flex;
    flex-direction: column;
    width: calc(100% - 474px);
    position: relative;
    min-height: 272px;
}
.office-info-wrap{
    flex: 1;

}
.office-map{
    flex: 1;
    min-height: 272px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
}
.office-info-wrap h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    line-height: 20px;
    color: var(--site-black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-size: 20px;
}
.office-info{
    padding: 0;
    margin: 0;
    list-style: none;
}
.office-info li{
    margin-bottom: 24px;
}
.office-info li:last-child{
    margin-bottom: 0;
}
.office-info-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    justify-content: flex-start;
}
.office-info-label svg{
    width: 16px;
    height: 16px;
}
.office-info-text,
.office-info-text a{
    font-family: var(--site-font-medium);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    text-decoration: none;
}
.office-info-text{
    padding-left: 23px;
}
.office-info-text a:hover{
    color: var(--site-accent);
}
.requisites-block{

}
.requisites-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
}
.requisites-block > .row > .col-12{
    margin-bottom: 25px;
}
.requisites-block > .row > .col-12:last-child{
    margin-bottom: 0;
}
.requisites-text p{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 0;
}
.charts-container{
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    align-items: start;
    justify-content: flex-start;
}
.chart-card{
    display: flex;
    flex-direction: column;
    width: calc(50% - 5px);
    max-width: 100%;
    border-radius: 8px;
    background-color: rgba(243, 243, 243, 0.5);
    padding: 15px;
}
.chart-card h3{
    flex-shrink: 0;
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 31px;
}
.chart-wrapper{
    position: relative;
    flex: 0 0 150px;
    height: 150px;
    max-height: 150px;
    max-width: 100%;
    overflow-x: auto;
}
.chart-wrapper canvas{
    display: block;
    box-sizing: border-box;
    height: 150px !important;
    max-height: 150px;
}
/********** blog post **********/
.post-content-block{
    position: relative;
}
.post-info{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: end;
    position: absolute;
    top: 20px;
    right: 20px;
}
.post-date{
    font-family: var(--site-font-regular);
    border-radius: 5px;
    padding: 0 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    border: 1px solid #D4D4D44D;
    background: var(--site-white);
    color: var(--site-grey);
    height: 25px;
    line-height: 25px;
}
.post-type{
    font-family: var(--site-font-regular);
    border-radius: 5px;
    padding: 0 8px;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    border: 1px solid #D4D4D44D;
    background: var(--site-white);
    color: var(--site-black);
    height: 25px;
    line-height: 25px;
}
.post-image{
    width: 100%;
    height: 560px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 60px;
}
.post-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.post-content{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    max-width: 1060px;
}
.post-content section{
    margin-bottom: 60px;
}
.post-content .grey-text{
    color: var(--site-black);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    padding: 25px 17px;
    background-color: var(--site-soft);
    border-radius: 5px;
}
.post-content p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
}
.post-content h1{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 40px;
    line-height: 44px;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}
.post-content h2{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
}
.post-content h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}
.post-content h4{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}
.post-content h5{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}
.post-content h6{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: -0.01em;
    margin-bottom: 15px;
}
.post-content ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.post-content ul li{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}
.post-content ul li:before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    background-color: #920F10;
    top: 6px;
    left: 0;
}
.post-content ol{
    padding: 0 0 0 20px;
    margin: 0;
}
.post-content ol li{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
    position: relative;
}
.post-content a{

}
.post-content img{
    display: block;
    height: 476px;
    border-radius: 24px;
    margin-bottom: 25px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.post-content table{
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.post-content table td{
    padding: 15px 25px;
    border-bottom: 1px solid var(--site-soft);
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
}
.post-content table th{
    padding: 15px 25px;
    background-color: var(--site-soft);
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    border-right: 2px solid #fff;
}
.post-content table th:last-child{
    border-right: none;
}
.post-content a{
    color: var(--site-black);
    text-decoration: none;
}
.post-content a:hover{
    color: var(--site-accent);
}
.post-product-list-item{
    height: 410px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    padding: 10px;
    box-sizing: border-box;
}
.post-product-list-item a{
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: block;
}
.post-product-list-item-image{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.post-product-list-item .post-product-list-item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.post-product-list-item-info{
    background-color:  var(--site-white);
    border-radius: 18px;
    padding: 25px;
    position: relative;
    z-index: 1;
}
.post-product-list-item-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 13px;
    color: var(--site-black);
}
.post-product-list-item-description{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    opacity: 0.5;
}
.post-social-share-block{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-radius: 8px;
    background-color: var(--site-soft);
    height: 56px;
    max-width: 1060px;
}
.post-social-share-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;

}
.post-social-share-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}
.post-social-share-list li{

}
.post-social-share-list li a{
    color: var(--site-grey);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 28px;
}
.post-social-share-list li a:hover{
    color: var(--site-black);
}
.subscription-block{
    background-color: var(--site-light-black);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    align-items: top;
    justify-content: start;
    gap: 20px;
}
.subscription-block-left-col{
    width: calc(59% - 10px);
}
.subscription-block-right-col{
    width: calc(41% - 10px);
}
.subscription-block-left-col h2{
    line-height: 32px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 32px;
    letter-spacing: -0.02em;
    color: var(--site-white);
    margin-bottom: 12px;
}
.subscription-block-left-col p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-white);
    opacity: 0.8;
}
.subscription-form{
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
}
.subscription-form-email{
    width: 60%;
    order: 1;
}
.subscription-form-terms{
    width: 100%;
    order: 3;
}
.subscription-form-btn{
    width: calc(40% - 10px);
    order: 2;
}
.subscription-form-btn .white-btn{
    width: 100%;
}
.subscription-form-terms label{
    color: var(--site-white);
    font-family: var(--site-font-regular);
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    margin-bottom: 0;
    position: relative;
    padding-left: 36px;
    display: flex;
    min-height: 20px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12px;
}
.subscription-form-terms label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
}
.subscription-form-terms label a {
    text-decoration: underline;
    color: var(--site-white);
}
/********** vacancies **********/
.vacancies-block{

}
.vacancies-filter{
    display: flex;
    gap: 120px;
    margin-bottom: 20px;
}
.vacancies-filter-block{

}
.vacancies-filter-block ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    gap: 15px;
}
.vacancies-filter-block ul li{

}
.vacancies-direction-filter ul{
    gap: 4px;
}
.vacancies-direction-filter ul li{

}
.vacancies-direction-filter ul li label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 35px;
    color: var(--site-black);
    background-color: var(--site-white);
    height: 35px;
    box-sizing: border-box;
    border: 1px solid var(--site-soft);
    border-radius: 17px;
    padding: 0 13px;
    cursor: pointer;
}
.vacancies-direction-filter ul li label:hover{
    background-color: var(--site-soft);
}
.vacancies-direction-filter ul li.active label{
    color: var(--site-white);
    background-color: var(--site-black);
    border: 1px solid var(--site-black);
}
.vacancies-direction-filter ul li label input[type="checkbox"]{
    display: none;
}
.vacancies-filter-cnt{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 35px;
    color: var(--site-grey);
    display: inline-block;
}
.vacancies-city-filter{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 12px;
}
.vacancies-filter-block-title{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-black);
    opacity: 0.3;
}
.vacancies-filter-cb{
    width: 20px;
    height: 20px;
    background-color: var(--site-white);
}
.vacancies-filter-cb:checked::before{
    width: 4px;
    left: 6px;
    top: 10px;
}
.vacancies-filter-cb:checked::after{
    width: 6px;
    left: 8px;
    top: 9px;
}
.vacancies-city-filter ul{
    gap: 20px;
}
.vacancies-city-filter ul li label{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.vacancies-list-item{
    border-radius: 30px;
    background-color: var(--site-soft);
    padding: 30px;
    position: relative;
    margin-bottom: 20px;
    border: 1px solid transparent;
}
.vacancies-list-item:hover{
    border: 1px solid var(--site-accent);
}
.vacancies-list-item-title{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: var(--site-black);
    letter-spacing: -0.02em;
    margin-bottom: 11px;
    padding-right: 90px;
}
.vacancies-list-item-date{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    opacity: 0.3;
    margin-bottom: 15px;
}
.vacancies-list-item-city{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    height: 35px;
    line-height: 35px;
    background-color: var(--site-white);
    border-radius: 17px;
    padding: 0 13px;
    box-sizing: border-box;
    position: absolute;
    right: 30px;
    top: 23px;
}
.vacancies-list-item-salary{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 7px;

}
.vacancies-list-item-short-desc{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 24px;
}
.vacancies-list-item-short-desc p{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    margin-bottom: 0px;
}
.vacancies-list-item-btns{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.vacancies-list-item-btns .red-btn{
    width: 217px;
}
.vacancies-list-item-btns .white-btn{
    width: 217px;
    border-radius: 15px;
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 14px;
}
.vacancies-list-item-btns .white-btn:hover{
    border: 1px solid var(--site-white);
}
.vacancies-list-footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.team-part-block{

}
.team-part-block .section-header-2{
    margin-bottom: 40px;
}
.team-part-item{
    position: relative;
    background-color: var(--site-soft);
    padding: 25px 30px;
    border-radius: 24px;
    height: 270px;
}
.team-part-item h3{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
}
.team-part-item p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    bottom: 25px;
    left: 30px;
    right: 30px;
    color: var(--site-black);
}
.work-place-gallery{

}
.work-place-gallery-list-block{

}
.work-place-gallery-list{
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
}
.work-place-gallery .work-place-gallery-list .work-place-slide{
    width: 453px;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
}
.work-place-gallery-list .work-place-slide a{
    display: block;
    width: 100%;
    height: 100%;
}
.work-place-gallery-list .work-place-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.work-place-gallery .horizontal-scroll-nav {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 0;
    position: absolute;
    top: -78px;
    right: 0;
}
.work-place-gallery .horizontal-scroll-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 0;
    background-color: var(--site-white);
    cursor: pointer;
    position: relative;
    padding: 0;
    flex-shrink: 0;
}
.vacancies-feedback{

}
.vacancies-feedback-info{
    border-radius: 30px;
    background-image: url('/themes/intai-new/assets/img/vacancies/vacancies-feedback-bg-2.png');
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    padding: 40px 30px 30px 30px;
    height: 100%;
    width: 100%;
    position: relative;
    background-color: var(--site-soft);
}
.vacancies-feedback-header{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: var(--site-black);
    margin-bottom: 12px;
}
.vacancies-feedback-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--site-black);
    opacity: 0.8;
    margin-bottom: 30px;
}
.vacancies-feedback-info ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.vacancies-feedback-info ul li{
    margin-bottom: 26px;
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
}
.cb-icon{
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--site-accent);
    border-radius: 5px;
    margin-right: 12px;
    vertical-align: middle;
    position: relative;
}
.cb-icon::before{
    content: "";
    background-color: var(--site-white);
    position: absolute;
    height: 1px;
    transform: rotate(45deg);
    width: 4px;
    left: 6px;
    top: 10px;
}
.cb-icon::after{
    content: "";
    background-color: var(--site-white);
    position: absolute;
    height: 1px;
    transform: rotate(-45deg);
    width: 6px;
    left: 8px;
    top: 9px;
}
.vacancies-feedback-form-block{
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--site-soft);
}
.vacancies-feedback-form-line{
    margin-bottom: 15px;
}
.vacancies-feedback-form-line:last-child{
    margin-bottom: 0;
}
.vacancies-feedback-form-row{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.vacancies-feedback-form-col{
    width: calc(50% - 5px);
}
.vacancies-feedback-form-line .label-with-tight-text {
    padding-right: 260px;
    position: relative;
    display: block;
}
.vacancies-feedback-form-line label {
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: var(--site-black);
    margin-bottom: 10px;
}
.vacancies-feedback-form-line .label-with-tight-text span {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
    font-family: var(--site-font-regular);
    font-weight: 400;
}
.vacancies-feedback-form-line label.cb-label {
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
    position: relative;
    padding-left: 36px;
}
.vacancies-feedback-form-line label.cb-label input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0px;
}
.vacancies-feedback-form-line label.cb-label a{
    text-decoration: underline;
    color: var(--site-black);
}
/********** vacancy **********/
.vacancy-info-block{
    position: relative;
    padding-right: 240px;
    margin-bottom: 20px;
}
.vacancy-data{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: absolute;
    top: 0;
    right: 0;
}
.vacancy-info-date{
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border: 1px solid #D4D4D44D;
    border-radius: 5px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-grey);
    box-sizing: border-box;
}
.vacancy-info-city{
    height: 25px;
    line-height: 25px;
    padding: 0 8px;
    border: 1px solid #D4D4D44D;
    border-radius: 5px;
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    color: var(--site-black);
    box-sizing: border-box;
}
.vacancy-info{
    font-family: var(--site-font-medium);
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    color: var(--site-black);
}
.vacancy-description{
    min-height: 100%;
    background-color: var(--site-soft);
    padding: 40px;
    border-radius: 30px;
}
.vacancy-description-header{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 14px;
}
.vacancy-description-text{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--site-black);
}
.vacancy-description-text ul{
    padding-left: 25px;
    margin-bottom: 20px;
}
.vacancy-description-text ul li{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--site-black);
    margin: 0;
}
.vacancy-description-text p{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--site-black);
    margin-bottom: 20px;
}
.vacancy-description-text a{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--site-black);
    text-decoration: underline;
}
.vacancy-description-text a:hover{
    text-decoration: none;
}
.vacancy-related-list{
    position: relative;
}
/********** search page ***************/
.search-page-form-block{
    margin-bottom: 40px;
}
.search-page-form .input_wrap{
    position: relative;
}
.search-btn{
    position: absolute;
    top: 0;
    right: 0;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    border: none;
    border-radius: 0 25px 25px 0;
    background-color: var(--site-grey);
    color: var(--site-white);
    font-size: 16px;
    font-weight: 600;
}
.search-btn:hover{
    background-color: var(--site-black);
}
/********** deffered product **********/
.deffered-product-info{
    position: relative;
    padding-left: 73px;
    min-height: 60px;
    margin-bottom: 20px;
}
.deffered-product-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
}
.deffered-product-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.deffered-product-name{
    font-family: var(--site-font-semibold);
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: var(--site-black);
    margin-bottom: 10px;
}
.deffered-product-color{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}
.deffered-product-color-label{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-grey);
}
.deffered-product-color-icon{
    width: 20px;
    height: 20px;
    border-radius: 3px;
    overflow: hidden;
}
.deffered-product-color-name{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--site-black);
}
.dpf-cb-label span{
    font-family: var(--site-font-regular);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--site-black);
}
.deffered-product-form .form-line{
    margin-bottom: 10px;
}
.deffered-product-form .form-line:last-child{
    margin-bottom: 0;
}
.deffered-product-form-hidden-lines{
    margin-bottom: 10px;
    display: none;
}
.deffered-product-form-hidden-lines.active{
    display: block;
}
.deffered-products-modal .modal-body{
    margin-bottom: 0;
}
#add_to_deffered_products_btn{
    width: 100%;
}
/********** garantii **********/
.page-header.garantii-header{
    padding-bottom: 30px;
}
/*********************************/

/********** media start **********/
@media (max-width: 1479px) {
    /************* catalog menu **********************/
    .catalog-popup-menu-content{
        left: 367px;
    }
    /**********************************/
}
@media (max-width: 1420px) {
    .category-list-item img{
        position: relative;
        right: -26px;
    }
}
@media (max-width: 1350px) {
    .cart-products-list-block{
        width: calc(100% - 420px);
    }
    .cart-order-block{
        width: 400px;
    }
    .radio-option label b span{
        display: block;
    }
    .common-info-block-content{
        height: 240px;
    }
}
@media (max-width: 1300px) {
    .category-list-item{
        height: 157px;
        border-radius: 10px;
        margin-bottom: 20px;
    }
    .category-list-item > a{
        padding: 15px;
    }
    .category-list-item.first-category-in-list {
        height: 335px;
    }
    .category-list-item-content-wrapper{

    }
    .category-list-item.first-category-in-list .category-list-item-content-wrapper{

    }
    .category-list-item-content{
        padding: 0px 0px 15px 15px;
    }
    .category-list-item-name{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .category-list-item-text{
        font-size: 12px;
        line-height: 15px;
    }
    .cart-product{
        border-radius: 15px;
    }
    .cart-product-second-col{
        flex-direction: column;
        width: calc(52% - 97px);
    }
    .cart-product-color-block{
        width: 100%;
        margin-bottom: 14px;
        align-items: center;
    }
    .cart-product-color-label{
        width: 80px;
        margin-bottom: 0px;
        font-size: 10px;
    }
    .cart-product-color{
        width: calc(100% - 90px);
    }
    .cart-product-counter{
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }
    .cart-product-counter label{
        width: 80px;
        margin-bottom: 0px;
        display: block;
        font-size: 10px;
    }
    .cart-product-third-col{
        width: 97px;
        position: relative;
        padding-top: 48px;
    }
    .cart-product-title{
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 9px;
    }
    .cart-product-title a{
        font-size: 16px;
        line-height: 19px;
    }
    .cart-product-option{
        height: 24px;
    }
    .cart-product-prices{
        padding-top: 0px;
    }
    .cart-product-btns{
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
    }
    .cart-product-btns .delete-btn{
        position: relative;
        top: -10px;
        right: -10px;
        border: none;
        border-radius: 15px;
    }
    .cart-product-btns .delete-btn:hover{
        background-color: var(--site-white);
    }
    .product-order-cost-sum{
        font-size: 16px;
        line-height: 16px;
    }
    .product-price{
        font-size: 10px;
        line-height: 12px;
    }
    .cart-order-block{
        width: 350px;
    }
    .cart-products-list-block{
        width: calc(100% - 350px);
    }
    .cart-order-block{
        border-radius: 15px;
    }
    .category-list-item img{
        position: relative;
        right: 0px;
    }

}
@media (max-width: 1210px) {
    /************* catalog menu **********************/
    .catalog-popup-menu-content{
        width: calc(100% - 367px);
    }
    .catalog-popup-menu-list{
        width: calc(100% - 20px);
    }
    .featured-info-block .download-btn{
        font-size: 12px;
    }
    /*********************************/
}
@media (max-width: 1200px) {
    .category-list-item{
        margin-bottom: 0;
    }
    .category-list-item.first-category-in-list {
        height: 325px;
    }
    .category-list-item.first-category-in-list img{
        position: relative;
        top: 30px;
    }
    /*********** category product list ****************/
    .category-products-list-block{
        display: block;
    }
    .category-products-filter-panel{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
    }
    .category-products-filter-panel.open{
        display: block;
    }
    .category-products-filter-panel .category-products-filter-bg{
        display: block;
    }
    .category-products-list-block .category-products-filter-panel{
        width: auto;
        flex-shrink: initial;
    }
    .category-products-list-block .category-products-filter{
        width: 90%;
        max-width: 340px;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        background-color: var(--site-white);
        padding: 20px 15px 30px;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        transition: margin 1s ease;
        margin-right: -340px;
    }
    .category-products-filter-panel.open .category-products-filter{
        margin-right: 0;
    }
    .category-products-filter-mobile-header{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 20px;
        padding-right: 5px;
    }
    .category-products-filter-mobile-footer .category-products-filter-submit-btn{
        display: block;
    }
    .category-products-list-block .products-list-block{
        width: 100%;
    }
    .products-list-header-sorter-block{
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        position: absolute;
        top: 5px;
        right: 0;
    }
    .products-list-header-tags-list-block{
        flex-direction: column-reverse;
        gap: 14px;
    }
    .tag-list-col{
        width: 100%;
    }
    .stickers-list-col{
        width: 100%;
    }
    .sticker-list{
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .products-list-header-sorter-block .small-select-dropdown{
        left: auto;
        right: 0;
    }
    .mobile-filter-button-block{
        display: block;
    }
    .filter-btn{
        height: 35px;
        line-height: 33px;
        padding: 0 13px;
        border-radius: 17px;
        font-size: 12px;
        font-weight: 600;
        font-family: var(--site-font-semibold);
        color: var(--site-black);
        background-color: var(--site-white);
        text-align: center;
        text-decoration: none;
        border: 1px solid #D4D4D44D;
        display: inline-block;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .product-card{
        margin-bottom: 0px;
    }
    .product-section-list .horizontal-scroll-nav{
        display: flex;
    }
    .product-section-list .horizontal-scroll-block{
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding-bottom: 30px;
    }
    .product-section-list .horizontal-scroll-block::-webkit-scrollbar{
        display: none;
    }
    .product-section-list .horizontal-scroll-block .scroll-item{
        width: 335px;
    }
    .category-seo-text{
        padding-left: 0;
    }
    /**************************************************/
    /************** product page **************/
    .product-main-info{
        padding-left: 535px;
    }
    .product-main-info-media{
        width: 510px;
    }
    .variation-gallery-show{
        width: 430px;
        height: 430px;
    }
    .product-main-info-sales-order{
        gap: 20px;
        padding-right: 170px;
    }
    .product-main-info-sales-order-btns .add-to-cart-btn{
        width: 40%;
    }
    .put-aside-btn{
        width: 40%;
    }
    .product-main-info-sales-order-btns .sample-btn{
        width: calc(30% - 10px);
    }
    .product-main-info-sales-order-btns .product-like-btn{
        width: calc(30% - 10px);
    }
    .product-secondary-info{
        padding-left: 535px;
    }
    .product-texts{
        width: 510px;
    }
    /*********************************/
    /********** order **********/
    .order-content-right-col{
        width: 340px;
    }
    .order-content-left-col{
        width: calc(100% - 360px);
    }
    /********** order info **********/
    .order-success-left-col{
        width: 350px;
    }
    .order-success-right-col{
        width: calc(100% - 368px);
    }
    .order-success-customer-info-header{
        font-size: 20px;
        line-height: 20px;
    }
    .order-success-main-total-header{
        font-size: 20px;
        line-height: 20px;
    }
    .order-success-customer-info-block{
        border-radius: 15px;
        padding: 15px;
    }
    .order-success-main{
        border-radius: 15px;
        padding: 15px;
    }
    /********** delivery page **********/

    /******** 1200 end **********/
}

@media (max-width: 1060px) {
    header.has-mobile-bottom-line{
        border-bottom: 1px solid var(--site-soft);
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    footer{
        border-radius: 0;
    }
    main section{
        margin-bottom: 60px;
    }
    main section.no-mb{
        margin-bottom: 0px;
    }
    .m-full-10-xl-0{
        padding: 0px;
    }
    .container-xxl.m-xl-0{
        padding: 0px;
    }
    .mb-20-xl-0{
        margin-bottom: 0;
    }
    /******** common **********/
    .link-btn{
        height: 52px;
        padding: 0 57px 0 25px;
        line-height: 52px;
        font-size: 14px;
    }
    .link-btn i{
        top: 10px;
    }
    .grey-btn{
        height: 50px;
        font-size: 12px;
        line-height: 15px;
    }
    .form-input{
        height: 50px;
        font-size: 12px;
    }
    .form-select-trigger{
        height: 50px;
        font-size: 12px;
    }
    .form-cb{
        height: 20px;
        width: 20px;
    }
    .form-cb:checked::before{
        left: 4px;
        top: 9px;
    }
    .form-cb:checked::after{
        width: 7px;
        left: 7px;
        top: 8px;
    }
    .form-line label{
        font-size: 8px;
        line-height: 10px;
    }
    .form-line{
        margin-bottom: 15px;
    }
    .form-row{
        flex-direction: column;
    }
    .form-col-6{
        width: 100%;
    }
    .form-line label input[type="checkbox"]{
        top: 0;
    }
    .horizontal-scroll-nav{
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 0;
    }
    .horizontal-scroll-block{
        overflow-x: auto;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
        scrollbar-width: none;
        padding-bottom: 30px;
    }
    .horizontal-scroll-block::-webkit-scrollbar{
        display: none;
    }
    .scroll-item{
        flex: 0 0 auto;
        max-width: none;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    .section-header-block{
        padding-right: 100px;
    }
    .section-header{
        font-size: 35px;
        line-height: 35px;
        padding-bottom: 30px;
    }
    .page-header{
        font-size: 40px;
        line-height: 40px;
        padding-bottom: 30px;
    }
    .section-header-big{
        font-size: 40px;
        line-height: 40px;
        padding-bottom: 30px;
    }
    .cart-main-header{
        padding-bottom: 40px;
    }
    .section-header-block a{
        font-size: 12px;
        line-height: 15px;
        top: 10px;
    }
    .seo-text h1{
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    .seo-text h2{
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    .seo-text h3{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .seo-text h4{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    .seo-text h5{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .seo-text p{
        font-family: var(--site-font-regular);
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
        color: var(--site-black);
    }
    .form-textarea{
        font-size: 12px;
        padding: 15px;
    }
    .black-btn{
        height: 52px;
        font-size: 14px;
        line-height: 17px;
    }
    .download-btn {
        height: 60px;
        font-size: 14px;
        line-height: 17px;
    }
    .download-btn i{
        width: 39px;
        height: 39px;
    }
    .download-btn i svg{
        width: 21px;
        height: 21px;
    }
    .white-btn{
        height: 50px;
        font-size: 13px;
        line-height: 16px;
    }
    .pagination-block{

    }
    .pagiation{

    }
    .pagiation > li > span.current-page,
    .pagiation > li > a{
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 15px;
        border-radius: 8px;
    }
    .show-more-btn{
        height: 40px;
        border-radius: 8px;
        font-size: 12px;
        width: 150px;
        line-height: 40px;
    }
    /*****************************/
    /******* header **********/
    .header-block{
        padding-top: 5px;
    }
    .header-top-line{
        height: 52px;
        justify-content: end;
        padding-left: 240px;
    }
    .site-logo{
        width: 211px;
        height: 30px;
        top: 15px;
        padding-left: 64px;
    }
    .site-logo-image{
        width: 54.18px;
        height: 28.96px;
    }
    .site-logo-text {
        top: -2px;
    }
    .site-logo-text > img{
        width: 148px;
    }
    .site-logo-tagline-text{
        font-size: 8.55px;
        margin-top: 0;
    }
    .main-navbar{
        display: none;
    }
    .header-bottom-line{
        padding-left: 0;
        justify-content: space-between;
    }
    /*********************/
    /************* catalog menu **********************/
    .catalog-popup-menu-content{
        left: 10px;
        width: 100%;
        top: 72px;
    }
    /***********************************/
    /************* footer **********************/
    .footer-block{
        padding: 35px 0;
    }
    .footer-contacts-info{
        width: 60%;
    }
    .footer-contacts-social{
        width: 40%;
    }
    .footer-block h4{
        font-size: 12px;
    }
    .footer-phone{
        font-size: 20px;
    }
    .footer-email{
        font-size: 20px;
    }
    .footer-menus ul li a{
        font-size: 14px;
    }
    .footer-social-list,
    .footer-contacts-social-soclist .footer-social-list{
        gap: 8px;
    }
    .footer-bottom-text{
        font-size: 12px;
        line-height: 15px;
    }
    .footer-contacts-info-phone{
        margin-bottom: 34px;
    }
    .footer-contacts-social-messangers{
        margin-bottom: 38px;
    }
    .footer-menus ul{
        padding-top: 0;
    }
    .footer-block-bottom-top {
        margin-bottom: 11px;
    }
    .footer-block-bottom{
        padding-top: 28px;
    }
    .footer-addr-info{
        flex-direction: column;
        gap: 11px;
    }
    .footer-bage{
        order: 2;
    }
    .footer-shedule{
        width: 150px;
    }
    .footer-shedule p span{
        font-size: 12px;
        line-height: 15px;
    }
    .footer-bage {
        width: 100%;
    }
    .ya-bage-point svg{
        width: 12px;
        height: 12px;
    }
    .ya-bage-point #ya_rating{
        font-size: 12px;
        line-height: 15px;
    }
    .ya-bage-top-line{
        gap: 4px;
        margin-bottom: 2px;
    }
    .ya-bage-star-list{
        gap: 4px;
    }
    .ya-bage-star{
        width: 12px;
        height: 12px;
        background-size: 12px 12px;
    }
    .ya-bage-text{
        font-size: 12px;
        line-height: 15px;
    }
    .footer-addr{
        font-size: 12px;
        width: 100%;
    }
    .footer-addr span{
        font-size: 12px;
    }
    .footer-bottom-links a,
    .footer-bottom-links p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 8px;
        display: block;
    }
    .footer-to-top-link{
        font-size: 12px;
        top: 30px;
    }
    /***********************************/
    /********* slider **********/
    .main-slider-block{
        padding: 0;
    }
    .main-slider{
        border-radius: 0px;
    }
    .simple-slider .main-slider{
        border-radius: 15px;
    }
    .slide-info{
        top: 24px;
        left: 21px;
        padding-top: 37px;
    }
    .simple-slider .slide-info{
        bottom: 20px;
        right: 20px;
        border-radius: 18px;
    }
    .slide-title{
        font-size: 48px;
        letter-spacing: -0.01em;
        line-height: 53px;
        margin-bottom: 9px;
    }
    .slide-description{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 24px;
    }
    .main-slider-control{
        width: 40px;
        height: 40px;
        bottom: 20px;
    }
    .ms-prev{
        left: 22px;
    }
    .ms-prev::before{
        height: 8px;
        top: 13px;
        left: 17px;
    }
    .ms-prev::after{
        height: 8px;
        top: 18px;
        left: 17px;
    }
    .ms-next{
        left: 72px;
    }
    .ms-next::before{
        height: 8px;
        top: 13px;
        left: 17px;
    }
    .ms-next::after{
        height: 8px;
        top: 18px;
        left: 17px;
    }
    .slider-additional{
        width: 345px;
        gap: 10px;
        bottom: 20px;
        right: 20px;
    }
    .slider-additional-block{
        width: 168px;
        height: 166px;
        padding: 10px;
        box-sizing: border-box;
        border-radius: 10px;
    }
    .slider-additional-block-title{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 5px;
    }
    .slider-additional-block-description{
        font-size: 10px;
        line-height: 12px;
    }
    .slider-additional-block a{
        font-size: 10px;
        line-height: 12px;
    }
    .slider-additional-block-iso{
        font-size: 10px;
        line-height: 12px;
        bottom: 10px;
        left: 10px;
        height: 22px;
        padding: 0 10px;
    }
    .slider-additional-block-image{
        height: 87px;
        bottom: -8px;
    }
    .common-info-block-content{
        height: 136px;
        padding: 10px;
        border-radius: 10px;
    }
    .common-info-block-content-icon{
        width: 30px;
        height: 30px;
    }
    .common-info-block-content-icon svg{
        width: 30px;
        height: 30px;
    }
    .common-info-block-content-bottom{
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    .common-info-block-content h3{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 3px;
    }
    .common-info-block-content p{
        font-size: 10px;
        line-height: 12px;
    }
    .featured-info-block .download-btn{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        z-index: 10;
        display: flex;
        align-items: end;
        padding: 10px;
        box-sizing: border-box;
    }
    .featured-info-block .download-btn i{
        top: 10px;
        left: 10px;
        width: 30px;
        height: 30px;
    }
    .featured-info-block .download-btn i svg{
        width: 14px;
        height: 14px;
    }
    .simple-slider .slide-title{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 13px;
    }
    .simple-slider .slide-description{
        font-size: 12px;
        line-height: 15px;
    }
    /***********************************/
    /********* order samples **********/
    .order-samples-block{
        padding: 20px;
        border-radius: 10px;
    }
    .order-samples-block h2{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .order-samples-block p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 20px;
    }
    .recall-block{
        padding: 20px;
        border-radius: 10px;
    }
    .recall-block h2{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .recall-block p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 20px;
    }
    .recall-form-line label{
        font-size: 8px;
        line-height: 10px;
    }
    .recall-form-row{
        flex-direction: column;
    }
    .recall-form-col{
        width: 100%;
    }
    .recall-form-line label input[type="checkbox"]{
        top: 0;
    }
    /***********************************/
    /********** order samples modal **********/
    .order-samples-modal .modal-content{
        padding: 20px;
        border-radius: 15px;
    }
    .order-samples-modal .modal-title{
        font-size: 20px;
        line-height: 20px;
    }
    .order-samples-modal .modal-body p{
        font-size: 12px;
        line-height: 19px;
        margin-bottom: 20px;
    }
    /***********************************/
    /*************** how we work **********************/
    .how-we-work-block{
        padding: 60px 20px 20px 20px;
        border-radius: 0px;
    }
    .how-we-work-title-block{
        margin-bottom: 30px;
    }
    .how-we-work-title-block h2{
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 15px;
        text-align: left;
    }
    .how-we-work-title-block p{
        font-size: 12px;
        line-height: 17px;
        max-width: 572px;
        margin: 0;
        text-align: left;
    }
    .how-we-work-steps-block{
        width: 338px;
        border-radius: 10px;
    }
    .how-we-work-steps-block-content{
        left: 10px;
        right: 10px;
        bottom: 10px;
        border-radius: 10px;
        padding: 74px 15px 15px 15px;
    }
    .how-we-work-steps-block-content span{
        font-size: 12px;
    }
    .how-we-work-steps-block-content h3{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 9px;
    }
    .how-we-work-steps-block-content p{
        font-size: 12px;
        line-height: 17px;
    }
    .how-we-work-own-block{
        padding: 20px;
        border-radius: 10px;
        min-height: 330px;
    }
    .how-we-work-own-block h3{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .how-we-work-own-block p{
        font-size: 12px;
        line-height: 15px;
    }
    .how-we-work-steps-list{
        margin-bottom: 60px;
    }
    .how-we-work-steps-list .scroll-item{
        flex: 0 0 auto;
        width: auto;
    }
    /***********************************************/
    /*************** you partner **********************/
    .you-partner-block{
        padding: 20px;
        border-radius: 0;
        background-color: var(--site-white);
    }
    .you-partner-block-main-picture{
        height: 302px;
        position: relative;
        border-radius: 10px;
    }
    .you-partner-block-content{

    }
    .you-partner-block-content-top{
        padding: 30px 0 0 0;
        flex-direction: column;
        gap: 20px;
        border-bottom: none;
        margin-bottom: 60px;
    }
    .you-partner-block-content-top-col{
        width: 100%;
    }
    .you-partner-block-content-top-col > h2{
        max-width: 380px;
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 0px;
    }
    .you-partner-block-content-top-col > p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 20px;
    }
    .you-partner-block-content-top-col > a {
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 0px;
    }
    .you-partner-block-content-bottom{
        padding: 0;
    }
    .you-partner-block-advantages{
        padding: 0px 0px 30px 0px;
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .horizontal-scroll-block:not(.row) .scroll-item.you-partner-block-advantage-block,
    .you-partner-block-advantage-block{
        width: 335px;
        padding-bottom: 0;
    }
    .you-partner-block-advantage-block-image{
        position: relative;
        left: 0;
        top: 0;
        bottom: auto;
        right: auto;
        width: 100%;
        border-radius: 10px;
        display: block;
        height: 235px;
        width: 100%;
        margin-bottom: 30px;
    }
    .you-partner-block-advantage-block-info{
        padding-left: 0;
    }
    .you-partner-block-advantage-block-info span{
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    .you-partner-block-advantage-block-info h3{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 12px;
    }
    .you-partner-block-advantage-block-info p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 0;
        opacity: 0.5;
    }
    /***********************************************/
    /*********** category product list ****************/
    .tag-list.horizontal-scroll-block{
        padding-bottom: 0px;
    }
    /**************************************************/
    /************** product page **************/
    .product-main-info{
        padding-left: 0;
        margin-bottom: 47px;
    }
    .product-main-info-top .breadcrumb{
        padding-bottom: 15px;
    }
    .product-main-info-top .page-header{
        padding-bottom: 25px;
        font-size: 30px;
        line-height: 33px;
        letter-spacing: 0em;
    }
    .product-in-stock-label,
    .product-not-in-stock-label{
        top: 40px;
    }
    .product-main-info-media{
        width: 100%;
        height: auto;
        position: relative;
        margin-bottom: 30px;
    }
    .variation-gallery.active{
        flex-direction: row;
    }
    .variation-gallery-show{
        width: calc(100% - 90px);
        aspect-ratio: 1 / 1;
        height: auto;
    }
    .product-main-info-sales-current-color{
        margin-bottom: 20px;
    }
    .product-main-info-sales-color-list{
        margin-bottom: 35px;
    }
    .color-list-option{
        width: 34px;
        height: 34px;
    }
    .variation-char-list{
        border-bottom: 1px solid var(--site-soft);
        padding-bottom: 15px;
    }
    .variation-char-name{
        font-size: 12px;
        line-height: 15px;
    }
    .variation-char-value{
        font-size: 12px;
        line-height: 15px;
    }
    .product-secondary-info{
        padding-left: 0;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .product-texts{
        width: 100%;
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 0;
        height: auto;
        max-height: 350px;
        order: 2;
    }
    .tabs-block .tabs{
        justify-content: start;
        gap: 20px;
    }
    .tabs-block .tabs .tab{
        font-size: 16px;
        line-height: 20px;
    }
    .tab-content{
        font-size: 12px;
        line-height: 15px;
    }
    .tab-content p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .tab-content h1{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 15px;
    }
    .tab-content h2{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .tab-content h3{
        font-size: 14px;
        line-height: 14px;
        margin-bottom: 15px;
    }
    .tab-content h4{
        font-size: 13px;
        line-height: 13px;
        margin-bottom: 15px;
    }
    .tab-content ul{
        margin-bottom: 15px;
    }
    .tab-content ul li{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 10px;
    }
    .product-options{
        order: 1;
        margin-bottom: 30px;
    }
    .product-options h2{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .product-options ul li{
        font-size: 12px;
        line-height: 15px;
    }
    .product-option-name{
        width: auto;
    }
    .product-option-value{
        width: auto;
    }
    .product-option-value a{
        font-size: 12px;
        line-height: 15px;
    }
    .section-header-2{
        font-size: 33px;
        line-height: 36px;
        margin-bottom: 30px;
    }
    .section-header-2 a{
        font-size: 12px;
        line-height: 15px;
    }
    .product-options ul li.mobile-vertical{
        flex-direction: column;
        gap: 10px;
    }
    /******************************************/
    /************* cart **************/
    .cart-content{
        flex-direction: column;
        gap: 27px;
    }
    .cart-products-list-block{
        width: 100%;
    }
    .cart-order-block{
        width: 100%;
        padding: 15px;
    }
    .cart-order-top-label{
        font-size: 20px;
        line-height: 20px;
    }
    .cart-order-top-total-price-block{
        font-size: 20px;
        line-height: 20px;
    }
    .cart-order-top-total-sub-text{
        font-size: 10px;
        line-height: 12px;
    }
    .cart-order-delivery-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 16px;
    }
    .cart-order-delivery-list li{
        display: inline-block;
        margin-bottom: 0px;
    }
    .cart-order-btn{
        height: 52px;
        font-size: 13px;
        line-height: 16px;
    }
    .order-warning{
        font-size: 12px;
        line-height: 15px;
    }
    /***********************************/
    /********** order **********/
    .order-content-right-col{
        width: 100%;
    }
    .order-content-left-col{
        width: 100%;
    }
    .order-info-block{
        padding: 15px;
        border-radius: 15px;
    }
    .order-block-title{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .order-form-line label{
        font-size: 12px;
        line-height: 15px;
    }
    .radio-option label{
        font-size: 12px;
    }
    .form-file-input-dialog-btn{
        font-size: 12px;
        line-height: 15px;
    }
    .order-form-line .label-with-tight-text span{
        font-size: 11px;
        line-height: 14px;
    }
    .form-file-link-input-content input[type="text"]{
        font-size: 12px;
        line-height: 15px;
    }
    .order-accept-block{
        border-radius: 15px;
        padding: 20px 15px 17px 15px;
    }
    .order-accept-title-text{
        font-size: 12px;
        line-height: 15px;
    }
    .order-accept-title-info{
        font-size: 12px;
        line-height: 15px;
    }
    .order-cost-label{
        font-size: 20px;
        line-height: 20px;
    }
    .order-cost-total-price-block{
        font-size: 20px;
        line-height: 20px;
    }
    .order-cost-total-sub-text{
        font-size: 10px;
        line-height: 12px;
    }
    .order-cost{
        border-bottom: none;
    }
    .order-agreement{
        margin-bottom: 27px;
    }
    .order-agreement label{
        font-size: 8px;
        line-height: 13px;
    }
    .order-agreement label input[type="checkbox"]{

    }
    /********** order info **********/
    .order-success-block{
        flex-direction: column;
        gap: 10px;
    }
    .order-success-left-col{
        width: 100%;
    }
    .order-success-right-col{
        width: 100%;
    }
    .section-sub-header{
        display: none;
    }
    .order-success-main-total-sub{
        font-size: 10px;
        line-height: 12px;
    }
    .order-success-main-total{
        margin-bottom: 15px;
    }
    /************ about us ************/
    .about-us-banner{
        border-radius: 0;
        padding: 20px;
        margin-bottom: 30px;
    }
    .about-us-banner .breadcrumb{
        margin-bottom: 20px;
        padding-bottom: 0;
    }
    .about-us-banner h1{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -0.01em;
        max-width: 548px;
    }
    .about-us-banner-btns{
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .about-us-advantage-block{
        padding: 10px;
        border-radius: 10px;
        height: 120px;
    }
    .about-us-advantage-icon{
        width: 30px;
        height: 30px;
        border-radius: 7px;
    }
    .about-us-advantage-icon svg{
        width: 16px;
        height: 16px;
    }
    .about-us-advantage-text{
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    .about-us-advantage-block h3{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 3px;
    }
    .about-us-advantage-block p{
        font-size: 10px;
        line-height: 12px;
    }
    .company-history-block{
        padding: 0;
        background-image: none;
        border-radius: 0;
    }
    .company-history{
        border-radius: 0;
        padding: 0;
    }
    .company-history h2{
        font-size: 35px;
        line-height: 35px;
        padding: 0 0 24px 0;
        margin: 0 0 24px 0;
    }
    .company-history-content{
        padding: 0;
    }
    .company-history-list{
        padding-right: 0;
        display: flex;
        flex-direction: row;
        gap: 10px;
        flex-wrap: nowrap;
    }
    .company-history-content .company-history-list .company-history-item{
        width: 335px;
        position: relative;
        padding-bottom: 235px;
        margin-bottom: 0;
    }
    .company-history-item-image{
        position: absolute;
        height: 235px;
        border-radius: 10px;
        margin: 0;
        padding: 0;
        left: 0;
        top: auto;
        bottom: 0;
        right: 0;
    }
    .company-history-item-info{
        padding-left: 0;
    }
    .company-history-item-info span{
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    .company-history-item-info h3{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 9px;
    }
    .company-history-item-info p{
        font-size: 12px;
        line-height: 15px;
        padding-bottom: 30px;
    }
    .our-team-item{
        height: 410px;
        width: 335px;
        margin-bottom: 0;
    }
    .avards-list-block .horizontal-scroll-nav{
        display: flex;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 0;
        position: relative;
        top: auto;
        right: auto;
    }
    .avards-list-block .horizontal-scroll-btn{
        width: 40px;
        height: 40px;
        border: 1px solid var(--site-soft);
        border-radius: 50%;
        background-color: var(--site-white);
    }
    .avards-list-block .horizontal-scroll-btn-prev::before,
    .avards-list-block .horizontal-scroll-btn-prev::after,
    .avards-list-block .horizontal-scroll-btn-next::before,
    .avards-list-block .horizontal-scroll-btn-next::after{
        height: 7px;
        width: 1px;
    }
    .avards-list-block .horizontal-scroll-btn-next::before{
        top: 13px;
    }
    .avards-list-block .horizontal-scroll-btn-prev::before{
        top: 13px;
    }
    /********** delivery page **********/
    .grey-block-wrap{
        margin-bottom: 10px;
    }
    .grey-block{
        border-radius: 15px;
        padding: 16px;
    }
    .proxy-block h2, .grey-block h2{
        font-size: 22px;
        line-height: 22px;
        margin-bottom: 8px;
    }
    .grey-block p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 14px;
    }
    .grey-block p.m-mb-8{
        margin-bottom: 8px;
    }
    .grey-block p:last-child{
        margin-bottom: 0;
    }
    .options-grids{
        flex-direction: column;
        gap: 10px;
        margin-bottom: 8px;
    }
    .options-grids li{
        display: block;
        margin-bottom: 4px;
    }
    .options-grids li:last-child{
        margin-bottom: 0;
    }
    .options-grid-header{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 2px;
    }
    .options-grid-text{
        font-size: 12px;
        line-height: 15px;
        position: relative;
        top: 0;
        left: 0;
    }
    .proxy-block p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .proxy-block p:last-child{
        margin-bottom: 0;
    }
    .proxy-block h2 .warning-icon{
        display: block;
        width: 100%;
        margin-bottom: 8px;
        width: 26px;
        height: 23px;
    }
    .proxy-block h2 .warning-icon svg{
        width: 26px;
        height: 23px;
    }
    .proxy-link-list{
        margin-top: 0;
    }
    .faq-block .section-header{
        margin-bottom: 22px;
    }
    .faq-subheader{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 16px;
        top: 90px;
    }
    .faq-phone-block{
        top: 140px;
    }
    .faq-phone a{
        font-size: 20px;
        line-height: 24px;
    }
    .faq-question{
        font-size: 14px;
        line-height: 17px;
    }
    .faq-answer-content p{
        font-size: 12px;
        line-height: 15px;
    }
    .faq-list-item{
        padding: 18px 15px 18px 15px;
        border-radius: 10px;
    }
    .faq-question::before{
        top: -3px;
    }
    .faq-question::after{
        top: 3px;
    }
    .options-grids:last-child{
        margin-bottom: 0;
    }
    .proxy-block{
        border-radius: 15px;
        padding: 16px;
    }
    .proxy-link{
        height: 50px;
        font-size: 12px;
        line-height: 15px;
        padding: 0 30px 0 10px;
        border-radius: 8px;
        font-weight: 500;
        font-family: var(--site-font-medium);
    }
    .proxy-link-icon{
        width: 30px;
        height: 30px;
        border-radius: 7px;
        position: relative;
        top: 0;
        left: 0;
    }
    .proxy-link-icon svg{
        width: 14px;
        height: 14px;
    }
    .proxy-link-size{
        font-size: 10px;
        line-height: 12px;
        top: 20px;
    }
    /********** price list **********/
    .price-list-block .page-header{
        padding-bottom: 25px;
    }
    .price-list-content p{
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 16px;
    }
    .price-list-content{
        margin-bottom: 17px;
    }
    .price-list-content p:last-child{
        margin-bottom: 0;
    }
    .price-list-btns .download-btn{
        width: 256px;
    }
    .price-list-btns{
        margin-bottom: 35px;
    }
    .price-list-banner{
        height: 441px;
    }
    /********** 404 page **********/
    .block-404{
        border-radius: 0;
        padding-top: 58px;
        background-size: cover;
        background-position: center bottom -100px;
    }
    .block-404 .page-header{
        font-size: 36px;
        padding-bottom: 25px;
        line-height: 40px;
        max-width: 619px;
        letter-spacing: -0.01em;
    }
    .text-404{
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 25px;
        max-width: 529px;
    }
    /******** contact page **********/
    section.lined{
        margin-bottom: 35px;
    }
    .contacts-social-list{
        gap: 8px;
    }
    .contacts-main-info-block{
        border-bottom: 1px solid var(--site-soft);
        padding-bottom: 20px;
    }
    .contacts-main-info-label{
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 14px;
    }
    .contacts-main-info-text,
    .contacts-main-info-text a{
        font-size: 16px;
        line-height: 19px;
    }
    .section-header-3{
        font-size: 28px;
        line-height: 31px;
        margin-bottom: 27px;
    }
    .office-left-col{
        width: 323px;
        min-height: 220px;
    }
    .office-right-col{
        width: calc(100% - 347px);
        min-height: 220px;
    }
    .office-item{
        padding: 16px;
        border-radius: 16px;
    }
    .office-info-wrap{

    }
    .office-map{
        border-radius: 16px;
        min-height: 220px;
    }
    .office-info-wrap h3{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 16px;
    }
    .office-info li{
        margin-bottom: 16px;
    }
    .office-info-label{
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 5px;
    }
    .office-info-text,
    .office-info-text a{
        font-size: 14px;
        line-height: 17px;
    }
    .requisites-label{
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 4px;
    }
    .requisites-text p{
        font-size: 14px;
        line-height: 17px;
    }
    .chart-card h3{
        font-size: 16px;
        line-height: 19px;
    }
    /********** blog post **********/
    .post-info{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin-bottom: 25px;
        justify-content: start;
    }
    .post-image{
        height: 371px;
        border-radius: 24px;
        margin-bottom: 60px;
    }
    .post-content h1{
        font-size: 36px;
        line-height: 40px;
        padding-bottom: 26px;
    }
    .post-content h2{
        font-size: 35px;
        line-height: 39px;
        margin-bottom: 21px;
    }
    .post-content h3{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .post-content h4{
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .post-content h5{
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .post-content h6{
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .post-content p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .post-content ul{
        margin-bottom: 15px;
    }
    .post-content ul li{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .post-content .grey-text{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 5px;
    }
    .post-content ol{
        margin-bottom: 15px;
    }
    .post-content ol li{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .post-content img{
        height: 371px;
        border-radius: 15px;
        margin-bottom: 30px;
    }
    .post-content table th{
        font-size: 12px;
        line-height: 15px;
    }
    .post-content table td{
        font-size: 12px;
        line-height: 15px;
    }
    .post-product-list-item-info{
        padding: 20px;
    }
    .post-product-list-item-title{
        font-size: 20px;
        line-height: 22px;
    }
    .post-product-list-item-description{
        font-size: 12px;
        line-height: 15px;
    }
    .post-social-share-block{
        border-radius: 8px;
        height: 52px;
    }
    .post-social-share-title{
        font-size: 20px;
        line-height: 22px;
    }
    /********** subscription form **********/
    .subscription-block{
        flex-direction: column;
        border-radius: 10px;
        padding: 20px;
        gap: 10px;
    }
    .subscription-block-left-col{
        width: 100%;
    }
    .subscription-block-right-col{
        width: 100%;
    }
    .subscription-block-left-col h2{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 11px;
    }
    .subscription-block-left-col p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 10px;
    }
    .subscription-form-email{
        width: calc(50% - 5px);
    }
    .subscription-form-btn{
        width: calc(50% - 5px);
    }
    .subscription-form-terms label{
        font-size: 8px;
        line-height: 10px;
        padding-left: 30px;
        margin-top: 8px;
    }
    .subscription-form-terms label input[type="checkbox"]{

    }
    /******** vacancies **********/
    .vacancies-filter{
        flex-direction: column;
        gap: 20px;
    }
    .vacancies-list-item{
        border-radius: 15px;
        padding: 15px;
    }
    .vacancies-list-item-title{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 11px;
    }
    .vacancies-list-item-city{
        font-size: 10px;
        height: 32px;
        line-height: 32px;
        right: 15px;
        top: 15px;
    }
    .vacancies-list-item-date{
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 16px;
    }
    .vacancies-list-item-salary{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 5px;
    }
    .vacancies-list-item-short-desc{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 16px;
    }
    .vacancies-list-item-btns .red-btn,
    .vacancies-list-item-btns .white-btn{
        height: 40px;
        width: calc(50% - 5px);
        font-size: 12px;
        line-height: 15px;
        padding: 0 20px 0 20px;
        box-sizing: border-box;
        border-radius: 8px;
    }
    .team-part-block .section-header-2{
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 20px;
    }
    .team-part-item{
        border-radius: 15px;
        padding: 15px;
        height: 100%;
    }
    .team-part-item h3{
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 9px;
    }
    .team-part-item p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 0;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        max-width: 279px;
    }
    .work-place-gallery .section-header-2{
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 20px;
    }
    .work-place-gallery .work-place-gallery-list .work-place-slide{
        width: 314px;
        height: 222px;
        border-radius: 15px;
    }
    .work-place-gallery .horizontal-scroll-nav{
        top: -54px;
    }
    .vacancies-feedback-info{
        border-radius: 10px;
        padding: 20px;
    }
    .vacancies-feedback-header{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .vacancies-feedback-text{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .vacancies-feedback-form-block{
        border-radius: 10px;
        padding: 20px;
    }
    .vacancies-feedback-info ul li{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 13px;
    }
    .vacancies-feedback-form-row{
        flex-direction: column;
        padding-bottom: 5px;
    }
    .vacancies-feedback-form-col{
        width: 100%;
    }
    .vacancies-feedback-form-line{
        margin-bottom: 10px;
    }
    .vacancies-feedback-form-line label{
        font-size: 12px;
        line-height: 15px;
    }
    .vacancies-feedback-form-line label.cb-label a{
        font-size: 8px;
        line-height: 10px;
    }
    .vacancies-feedback-form-line label.cb-label{
        font-size: 8px;
        line-height: 10px;
    }
    /********** vacancy **********/
    .vacancy-info{
        font-size: 14px;
    }
    .vacancy-description{
        padding: 15px 18px;
        border-radius: 15px;
    }
    .vacancy-description-header{
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 13px;
    }
    .vacancy-description-text{
        font-size: 12px;
        line-height: 17px;
    }
    .vacancy-description-text ul li{
        font-size: 12px;
        line-height: 17px;
    }
    .vacancy-description-text a{
        font-size: 12px;
        line-height: 17px;
    }
    /************* catalog menu **********************/
    .catalog-popup-menu-content{
        right: 0;
        top: 0;
        left: auto;
        bottom: 0;
        width: 340px;
        overflow-x: hidden;
        margin-right: 0;
    }
    .catalog-popup-menu-list{
        width: 100%;
    }
    .catalog-popup-menu-content-wrapper{
        position: inherit;
    }
    .catalog-popup-menu-content{
        background-color: var(--site-white);
        padding: 30px 0 30px 15px;
        box-sizing: border-box;
    }
    .catalog-popup-menu-content > h2{
        height: auto;
        border-radius: 0;
        width: 100%;
        font-size: 18px;
        color: #000000;
        padding: 0px 0px 30px 0px;
        line-height: 21px;
        box-sizing: border-box;
        margin: 0;
    }
    .catalog-popup-menu-close-btn{
        height: 21px;
        width: 21px;
        border-radius:25px;
        background: transparent;
        border: none;
        color: #000000;
        position: absolute;
        top: 30px;
        left: auto;
        right: 15px;
        text-align: center;
        line-height: 21px;
        font-size: 24px;
        padding: 0;
        opacity: 0.5;
        font-weight: 300;
    }
    .catalog-popup-menu-list {
        width: 100%;
        border-radius: 0;
        background-color: var(--site-white);
        margin: 0;
        padding: 0;
        list-style: none;
        position: relative;
        min-height: auto;
        max-height: calc(100% - 51px);
        overflow-y: auto;
    }
    .catalog-popup-menu-list-li {
        width: auto;
        padding-right: 15px;
    }
    .catalog-popup-menu-list:after{
        display: none;
    }
    .catalog-popup-menu-list-link-wrapper{
        padding-right: 0;
    }
    .sub-menu-list{
        position: relative;
        left: 0;
        top: 0;
        padding: 15px 0 0;
        width: 100%;
    }
    .catalog-popup-menu-list-li.open .sub-menu-list{
        display: block;
    }
    .catalog-popup-menu-list-li.has-children.open .catalog-popup-menu-list-link-wrapper > a::before{
        right: 2px;
        top: 9px;
    }
    .catalog-popup-menu-list-li.has-children.open .catalog-popup-menu-list-link-wrapper > a::after{

    }
    .sub-menu-list > li:last-child{
        padding-bottom: 0px;
    }
    .sub-menu-list > li{
        width: 100%;
    }
    .mobile-bottom-menu{
        display: block;
    }
    /********** garantii **********/
    .page-header.garantii-header{
        padding-bottom: 25px;
    }
    /******** 1060 end **********/
}

@media (max-width: 991px) {
    /********** about company **********/

    .about-us-advantage-block{
        height: 100px;
    }
    .about-company-info h2{
        font-size: 35px;
        line-height: 35px;
        margin-bottom: 15px;
    }
    .about-company-info p.strong-text{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .about-company-info p{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 30px;
    }
    .about-company-info ul{
        gap: 7px;
        margin-bottom: 30px;
    }
    .about-company-info ul li{
        font-size: 14px;
        line-height: 17px;
    }
    /********** delivery page **********/
    .proxy-link-list{
        padding: 15px 0 0 0;
    }
    .faq-block{
        padding-left: 0;
    }
    .faq-block .section-header{
        position: relative;
        top: auto;
        left: auto;
    }
    .faq-subheader{
        position: relative;
        top: auto;
        left: auto;
    }
    .faq-phone-block{
        position: relative;
        top: auto;
        left: auto;
    }
    .faq-list{
        margin-bottom: 15px;
    }
    /******** contact page **********/
    .office-item{
        flex-direction: column;
        gap: 16px;
    }
    .office-map{
        min-height: 230px;
    }
    .office-left-col{
        width: 100%;
        min-height: auto;
    }
    .office-right-col{
        width: 100%;
    }
    .row.light {
        flex-direction: column-reverse;
    }
    /******** vacancies **********/
    .vacancies-feedback .row .col-12:first-child{
        order: 2;
    }
    .vacancies-feedback .row .col-12:last-child{
        order: 1;
    }
    .vacancies-feedback-info{
        height: 450px;
    }
    /******** delivery page **********/
    .proxy-block .centered{
        display: block;
    }
    /******** 991 end **********/
}

@media (max-width: 860px) {
    .product-card-info .add-to-cart-btn{
        padding: 0;
        font-size: 12px;
        line-height: 20px;
    }
}

@media (max-width: 768px) {
    .shell{
        padding: 0;
    }
    header{
        padding: 0 5px;
    }
    header.has-mobile-bottom-line{
        padding-bottom: 17px;
        margin-bottom: 15px;
    }
    footer{
        padding: 0 5px;
    }
    .m-full-10-md-5{
        padding: 0px 5px;
    }
    .m-full-10-md-0{
        padding: 0px;
    }
    .section-header-block{
        padding-bottom: 30px;
        padding-right: 0px;
    }
    .section-header{
        font-size: 30px;
        line-height: 30px;
    }
    .section-header-block .section-header{
        padding-bottom: 20px;
    }
    .section-header-big{
        font-size: 36px;
        line-height: 36px;
        padding-bottom: 26px;
    }
    .section-header-block a{
        position: relative;
        top: auto;
        right: auto;
    }
    .seo-text h1{
        font-size: 36px;
        line-height: 36px;
    }
    .seo-text h2{
        font-size: 24px;
        line-height: 24px;
    }
    .seo-text h3{
        font-size: 18px;
        line-height: 18px;
    }
    .seo-text h4{
        font-size: 16px;
        line-height: 16px;
    }
    .seo-text h5{
        font-size: 14px;
        line-height: 14px;
    }
    .page-header{
        font-size: 36px;
        line-height: 36px;
        padding-bottom: 26px;
    }
    /******* header ***********/
    .search-block{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 100;
    }
    .search-block.active{
        display: block;
    }
    .search-block .popup-bg{
        display: block;
    }
    .top-search-form{
        display: block;
    }
    .top-search-form form{
        width: 100%;
        background-color: var(--site-white);
        padding: 15px;
        box-sizing: border-box;
    }
    .top-serach-mobile-header{
        display: block;
    }
    #top_search_res{
        left: 0;
        top: 112px;
    }
    .top-search-res-content{
        border-radius: 0;
        border-width: 1px 0px 1px 0px;
        margin-top: 0;
    }
    .top-search-res-content-list{

    }
    .site-contact-email,
    .site-contact-phone{
        display: none;
    }
    .site-contact-telegram{
        padding-right: 9px;
    }
    .site-contact-whatsapp{
        padding-right: 0;
    }
    .header-bottom-line{
        gap: 6px;
    }
    .main-btns-block-list{
        gap: 6px;
    }
    .mobile-search-btn{
        display: block;
    }
    /*****************/

    /************* footer **********************/
    .footer-block{
        padding: 35px 0;
    }
    .footer-contacts{
        margin-bottom: 54px;
    }
    .footer-block-top{
        padding-bottom: 38px;
    }
    .footer-block-bottom{
        padding-top: 25px;
    }
    .footer-block-bottom-top .row {
        flex-direction: column-reverse;
    }
    .footer-addr-info{
        margin-bottom: 25px;
    }
    .footer-bottom-text{

    }
    .footer-to-top-link{
        top: 25px;
    }
    .footer-contacts-info{
        width: 50%;
    }
    .footer-contacts-social{
        width: 50%;
    }
    /***********************************/
    /********* slider **********/
    .slide-info{
        top: 25px;
        left: 15px;
        right: 15px;
        padding-top: 37px;
    }
    .slide-title{
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 9px;
    }
    .slide-description{
        font-size: 12px;
    }
    .main-slider-control{
        bottom: 290px;
    }
    .ms-prev{
        left: 15px;
    }
    .ms-next{
        left: 65px;
    }
    .slider-additional{
        left: 15px;
        right: 15px;
        width: auto;
        justify-content: end;
    }
    .simple-slider .main-slider-block{
        height: auto;
    }
    .simple-slider .main-slider{
        border-radius: 0px;
        padding-bottom: 60px;
    }
    .simple-slider .slide-content{
        height: auto;
    }
    .simple-slider .main-slider-control{
        bottom: 0px;
    }
    .simple-slider .slide-img{
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center;
        margin-bottom: 17px;
        border-radius: 15px;
    }
    .simple-slider .slide-info{
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: 100%;
        padding: 0;
        border-radius: 0;
        background-color: var(--site-white);
    }
    .simple-slider .main-slider-control{
        border: 1px solid #0000001A;
        color: var(--site-black);
        background-color: var(--site-white);
    }
    .simple-slider .main-slider-control:hover{
        background-color: var(--site-soft);
    }
    .simple-slider .main-slider-control::before,
    .simple-slider .main-slider-control::after{
        background-color: var(--site-black);
    }
    .simple-slider .ms-prev{
        left: 0px;
    }
    .simple-slider .ms-next{
        left: 50px;
    }
    .simple-slider .slide-discount{
        text-align: left;
        top: 0;
    }
    /***********************************/
    /********* order samples **********/
    .order-samples-block{
        min-height: 270px;
    }
    .order-samples-block{
        background-size: 768px 1144.76px;
    }
    /***********************************/
    /*************** how we work **********************/
    .how-we-work-block{
        padding: 60px 15px 15px 15px;
        border-radius: 0px;
    }
    .how-we-work-title-block{
        margin-bottom: 30px;
    }
    .how-we-work-title-block h2{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 15px;
        text-align: left;
    }
    .how-we-work-title-block p{
        font-size: 12px;
        line-height: 14px;
        max-width: auto;
        margin: 0;
        text-align: left;
    }
    .how-we-work-own-block{
        padding: 20px;
        border-radius: 10px;
        min-height: 330px;
    }
    .how-we-work-own-block h3{
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .how-we-work-own-block p{
        font-size: 12px;
        line-height: 15px;
    }
    .how-we-work-steps-list{
        margin-bottom: 60px;
    }
    .how-we-work-own-block-picture{
        border-radius: 8px;
    }
    /***********************************************/
    /*************** you partner **********************/
    .you-partner-block{
        padding: 0 15px;
    }
    .you-partner-block-main-picture{

    }
    .you-partner-block-content-top{
        gap: 15px;
    }
    .you-partner-block-content-top-col > h2{
        font-size: 30px;
        line-height: 30px;
    }
    .you-partner-block-advantage-block{
        width: 256px;
    }
    /***********************************************/
    /************ category 768 *****************/
    .product-card-purchase-select-modal .modal-dialog{
        max-width: 545px;
    }
    .product-card-purchase-select-modal .modal-content{
        padding: 20px;
    }
    .product-card-purchase-select-modal .modal-content .modal-title{
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 10px;
    }
    .product-card-purchase-name{
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 10px;
    }

    /************ category end 768 *****************/
    /************ category product list ************/
    .products-list-header{
        padding-bottom: 55px;
    }
    .products-list-header-sorter-block{
        bottom: 15px;
        right: auto;
        left: 0;
        top: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    /***********************************************/
    .section-header-2{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 20px;
    }
    .section-header-2 a{
        position: absolute;
        bottom: 14px;
        left: 120px;
        z-index: 100;
    }
    /************* cart **************/
    .cart-product{
        flex-direction: column;
        gap: 15px;
        padding: 10px;
    }
    .cart-product-first-col{
        width: 100%;
    }
    .cart-product-second-col{
        width: 100%;
    }
    .cart-product-title a{

    }
    .cart-product-color-block{
        margin-bottom: 5px;
    }
    .cart-product-third-col{
        width: 100%;
        padding: 0 0 0 90px;
        min-height: 35px;
        display: block;
    }
    .cart-product-btns{
        position: absolute;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0;
    }
    .cart-product-btns .delete-btn{
        top: 0;
        right: 0;
        border: 1px solid var(--site-soft);
        border-radius: 5px;
    }
    .cart-order-delivery-list{
        display: block;
    }
    .cart-order-delivery-list li{
        display: block;
        margin-top: 15px;
    }
    /********** order info **********/
    .order-success-customer-info-header{
        margin-bottom: 15px;
    }
    .rder-success-customer-line{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 5px;
    }
    .order-success-item{
        flex-direction: column;
        gap: 8px;
    }
    .order-success-item-name{
        width: 100%;
        font-size: 12px;
        line-height: 15px;
    }
    .order-success-item-info{
        width: 100%;
    }
    .order-success-item-price{
        font-size: 12px;
        line-height: 15px;
        top: 15px;
    }
    .order-success-item-info{
        gap: 8px
    }
    /********** about company **********/
    .about-us-banner{
        padding-top: 35px;
    }
    .about-us-banner .breadcrumb{
        margin-bottom: 17px;
    }
    .about-us-banner h1{
        font-size: 36px;
        line-height: 39px;
        letter-spacing: -0.01em;
    }
    .about-company-info h2{
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 19px;
    }
    .about-company-info p.strong-text{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 19px;
    }
    .about-company-info p{
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 11px;
    }
    .about-company-info ul{

    }
    .company-history h2{
        font-size: 30px;
        line-height: 30px;
    }
    .company-history-content .company-history-list .company-history-item{
        width: 289px;
        padding-bottom: 197px;
    }
    .company-history-item-image{
        height: 197px;
    }
    .company-history-item-info p{
        padding-bottom: 20px;
    }

    /********** delivery page **********/
    .proxy-link-size{
        display: none;
    }
    /********** price list **********/
    .price-list-block .page-header{
        padding-bottom: 12px;
    }
    .price-list-content p{
        font-size: 12px;
        line-height: 15px;
        margin-bottom: 15px;
    }
    .price-list-content{
        margin-bottom: 19px;
    }
    .price-list-btns .download-btn{
        width: 256px;
    }
    .price-list-btns{
        margin-bottom: 40px;
    }
    .price-list-banner{
        height: 216px;
    }
    /********** 404 page **********/
    .block-404{
        padding-top: 40px;
    }
    .block-404 .page-header{
        max-width: 205px;
    }
    .text-404{
        max-width: 289px;
    }
    /******** contact page **********/
    .section-header-3{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 22px;
    }
    .charts-container{
        flex-direction: column;
        gap: 10px;
    }
    .chart-card{
        width: 100%;
    }
    /********** blog post **********/
    .post-image{
        height: 216px;
        border-radius: 15px;
        margin-bottom: 40px;
    }
    .post-content h1{
        font-size: 36px;
        line-height: 36px;
        padding-bottom: 26px;
    }
    .post-content h2{
        font-size: 30px;
        line-height: 33px;
        margin-bottom: 20px;
    }
    .post-content h3{
        font-size: 20px;
        line-height: 22px;
        margin-bottom: 10px;
    }
    .post-content h4{
        font-size: 18px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .post-content h5{
        font-size: 16px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .post-content h6{
        font-size: 14px;
        line-height: 16px;
        margin-bottom: 10px;
    }
    .post-content p{
        font-size: 12px;
        line-height: 15px;
    }
    .post-content img{
        height: 216px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    .post-content table{
        display: block;
        width: max-content;
        min-width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    .post-social-share-block{
        flex-direction: column;
        gap: 20px;
        height: auto;
        padding: 15px;
    }
    .subscription-form{
        flex-direction: column;
        gap: 10px;
    }
    .subscription-form-email{
        width: 100%;
        order: 1;
    }
    .subscription-form-btn{
        width: 100%;
        order: 3;
    }
    .subscription-form-terms{
        width: 100%;
        order: 2;
    }
    .subscription-form-terms label{
        margin-bottom: 8px;
    }
    /********** vacancies **********/
    .vacancies-city-filter{
        flex-direction: column;
        gap: 6px;
        justify-content: start;
        text-align: left;
        align-items: start;
    }
    .team-part-block .section-header-2{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    .work-place-gallery .section-header-2{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 28px;
    }
    .work-place-gallery .horizontal-scroll-nav {
        top: auto;
        position: relative;
    }
    .work-place-gallery .horizontal-scroll-btn{
        border-radius: 50%;
        border: 1px solid #0000001A;
    }
    /********** vacancy **********/
    .vacancy-info-block{
        padding-right: 0;
    }
    .vacancy-data{
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
    }
    .vacancy-info{
        line-height: 17px;
        margin-bottom: 30px;
    }
    .vacancy-related-list{
        padding-bottom: 35px;
    }
    .vacancy-related-list .section-header-2{
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .vacancy-related-list .section-header-2 a{
        bottom: 0;
        left: 0;
    }
    .products-count{
        display: none;
    }
    /*** 768 end ***/
}
@media (max-width: 767px) {
    .grey-block-wrap .col-12:first-child{
        margin-bottom: 10px;
    }
    .footer-bottom-text{
        margin-bottom: 6px;
        position: relative;
        bottom: auto;
    }
    .mobile-two-in-row .product-card{
        border-radius: 0;
        height: auto;
        padding-top: 216px;
        position: relative;
        padding-bottom: 25px;
        min-height: 100%;
    }
    .mobile-two-in-row .product-card-link{
        display: block;
        z-index: 9;
    }
    .mobile-two-in-row .product-card-link img{
        height: 206px;
        width: 100%;
        border-radius: 15px;
        object-fit: cover;
        object-position: center;
    }
    .mobile-two-in-row .product-card-info{
        position: initial;
        left: 0;
        bottom: auto;
        top: 0;
        padding: 0;
    }
    .mobile-two-in-row .product-card-info-title h3{
        font-size: 14px;
        line-height: 22px;
    }
    .mobile-two-in-row .product-card-info-title p{
        font-size: 10px;
    }
    .mobile-two-in-row .product-card-info-sell-info .product-card-price-block .product-card-price .product-card-price-value{
        font-size: 14px;
    }
    .mobile-two-in-row .product-card-info-sell-info .product-card-price-block .product-card-old-price{
        font-size: 12px;
        top: -15px;
    }
    .mobile-two-in-row .product-card-info-sell-info .product-card-price-block .product-card-price{
        font-size: 10px;
    }
    .mobile-two-in-row .product-card-info-sell-info .product-card-price-block .product-card-price .product-card-price-currency{
        font-size: 14px;
    }
    .mobile-two-in-row .product-card-info-sell-info .in-stock-message{
        font-size: 10px;
    }
    .mobile-two-in-row .product-card-info-options{
        display: none;
    }
    .mobile-two-in-row .product-card-info-btns{
        display: none;
    }
    .mobile-two-in-row .product-card-info-sell-info{
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }
    .category-list-item.first-category-in-list img{
        max-width: 575px;
        top: 20px;
    }
    /************** product page **************/
    .category-products-cnt{
        display: none;
    }
    .product-main-info-top .page-header{
        font-size: 24px;
        line-height: 26px;
        padding-bottom: 15px;
    }
    .product-main-info-top{
        padding-right: 0;
    }
    .product-main-info-top-labels{
        position: relative;
        right: auto;
        margin-bottom: 15px;
        display: flex;
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        padding-right: 0;
    }
    .product-in-stock-label,
    .product-not-in-stock-label{
        position: relative;
        right: auto;
        top: auto;

    }
    .product-main-info-media{
        margin-bottom: 15px;
    }
    .variation-gallery.active{
        gap: 8px
    }
    .variation-gallery-img-list{
        width: 47px;
    }
    .variation-gallery-img-list li{
        width: 47px;
        height: 47px;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .variation-gallery-show{
        width: calc(100% - 55px);
        border-radius: 5px;
    }
    .variation-gallery-stickers{
        top: auto;
        bottom: 15px;
        left: 15px;
        right: auto;
    }
    .product-main-info-sales-order{
        padding-right: 0;
        margin-bottom: 20px;
    }
    .product-order-min{
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        padding-top: 10px;
    }
    .product-card-purchase-sales-order .product-order-min{
        bottom: auto;
        width: fit-content;
        padding-top: 0;
        margin-top: 12px;
    }
    .product-main-info-sales-order-btns .add-to-cart-btn{
        width: 100%;
        margin-bottom: 10px;
    }
    .put-aside-btn{
        width: 100%;
        margin-bottom: 10px;
    }
    .product-main-info-sales-order-btns .sample-btn{
        width: calc(50% - 5px);
    }
    .product-main-info-sales-order-btns .product-like-btn{
        width: calc(50% - 5px);
    }
    .product-main-info-sales-order-btns .product-like-btn.full-width{
        width: 100%;
    }
    .variation-char-list.active{
        display: block;
    }
    .variation-char-list li{
        width: 100%;
        padding-right: 0;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--site-soft);
    }
    .variation-char-list li.line{
        display: none;
    }
    .variation-char-list li:last-child{
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    .product-main-info{
        margin-bottom: 40px;
    }
    .tabs-block .tabs{
        align-items: end;
        padding-right: 0;
        gap: 10px;
    }

    .tab-content{
        font-size: 10px;
        line-height: 13px;
    }
    .tab-content p{
        font-size: 10px;
    }
    .product-texts{
        margin-bottom: 40px;
    }
    /********** about company **********/
    .about-us-advantage-block{
        height: 120px;
    }
    .about-company-info ul{
        flex-direction: column;
        margin-bottom: 20px;
    }
    .about-company-info ul li{
        width: 100%;
    }
    .form-file-input-clear-btn{
        right: -5px;
    }
    .added-info{
        position: fixed;
        top: 10px;
        right: 22px;
        max-width: calc(100vw - 44px);
    }
    .added-info-product-name{
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 6px;
    }
    .added-info-product-options{
        min-height: 52px;
    }
    .added-info-product-option{
        font-size: 10px;
        line-height: 12px;
        padding: 3px;
        height: 24px;
    }
    /************** 575 end *******************/
}

@media (max-width: 450px) {
    /******* header **********/
    .header-top-line{
        margin-bottom: 10px;
    }
    .header-bottom-line{
        height: 35px;
    }
    .catalob-btn{
        height: 35px;
        padding: 0 14px 0 34px;
        font-size: 12px;
        width: 94px;
    }
    .catalob-btn::before{
        left: 13px;
        top: 10px;
        width: 14px;
        height: 14px;
    }
    .main-btns-block-list li > a{
        width: 35px;
        height: 35px;
    }
    .main-btns-block-list li > a > img{
        width: 16px;
        height: 16px;
    }
    .main-btns-block-list li > a > svg{
        width: 14px;
        height: 14px;
    }
    .main-btns-block-list li > button{
        width: 35px;
        height: 35px;
    }
    .main-btns-block-list li.active::before{
        top: 4px;
        right: 1px;
    }
    /*********************/
    .category-list-item-content-wrapper{
        right: 30%;
    }
    .category-list-item-text p{
        line-height: 14px;
    }
    .tabs-block .tabs .tab{
        font-size: 12px;
        line-height: 15px;
    }
    .common-info-block-content{
        height: 156px;
    }
    .added-info.is-fixed-top{
        /*top: 10px;
        right: 22px;
        max-width: calc(100vw - 44px);*/
    }
    .vacancies-feedback-form-line .label-with-tight-text{
        padding-right: 0;
    }
    .vacancies-feedback-form-line .label-with-tight-text span{
        position: relative;
    }
    .order-form-line .label-with-tight-text{
        padding-right: 0;
    }
    .order-form-line .label-with-tight-text span{
        position: relative;
    }
    .form-file-link-input{
        gap: 10px;
    }
    .form-file-link-input-contents{
        width: calc(100% - 116px);
    }
    .form-file-input-dialog-btn{
        padding-left: 0px;
    }
    .form-file-link-input-tab{
        padding: 0 10px;
    }
    .category-list-item.first-category-in-list img{
        max-width: 500px;
        top: 15px;
    }
    .category-list-item img{
        position: relative;
        left: 30px;
    }
    .product-card-purchase-select-modal .modal-content .modal-title{
        margin-bottom: 8px;
    }
    /********** deffered product **********/
    .deffered-products-modal .modal-title{
        font-size: 20px;
        line-height: 20px;
        letter-spacing: -0.02em;
    }
    .deffered-products-modal .modal-body p{
        margin-bottom: 11px;
        font-size: 12px;
        line-height: 18px;
    }
    .dpf-cb-label span{
        line-height: 20px;
    }
    /********** 450 end ***********/
}
@media (max-width: 380px) {
    .footer-phone {
        font-size: 15px;
    }
    .slider-additional-block{
        width: calc(50% - 5px);
    }
    .how-we-work-steps-block{
        width: 290px;
    }
    .form-file-input-clear-btn{
        right: 5px;
    }
}
@media (max-width: 364px) {
    .grey-block-wrap{
        padding-bottom: 185px;
    }
}
@media (max-width: 360px) {
    .catalog-popup-menu-content{
        width: calc(100% - 20px);
    }
    .footer-contacts-social-soclist .footer-social-list{
        gap: 9px;
    }
    .footer-block h4 {
        font-size: 10px;
    }
    .product-section-list .horizontal-scroll-block .scroll-item{
        width: 290px;
    }
}
