header {
    transition:all ease-out .4s;
}
header * {
    box-sizing:border-box;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-schedule {
    display:flex;
    gap:8px;
}

.header-schedule__column {
    display:flex;
    flex-direction:column;
}

.header-schedule__time {
    color: #3F3F3F;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-schedule__days {
    color: rgba(63, 63, 63, 0.70);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.header-navigation {
    display:flex;
}

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

.header-navigation__dropdown {
    position:relative;
}

.header-navigation__submenu {
    position: absolute;
    top: calc(100% + 5px);
    left: -20px;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid #ECF1F5;
    background: #FFF;
    padding: 12px 15px;
    min-width:270px;
    gap:4px;
    visibility:hidden;
    pointer-events:none;
    opacity:0;
    transition:all ease-out .2s;
}

.header-navigation__dropdown:hover .header-navigation__submenu {
    visibility:visible;
    pointer-events:auto;
    opacity:1;
    z-index:2;
}

.header-navigation__sublink {
    border-radius: 8px;
    padding:8px 12px;
    color: #3F3F3F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition:all ease-out .2s;
}

.header-navigation__sublink:hover {
    background: #F3EBF6;
}

.header-navigation__link {
    padding:11px;
    position:relative;
    color: #999;
    font-size: 15px;
    line-height: 140%;
    transition:all ease-out .2s;
}

.header-navigation__link:hover {
    color:#654072
}

.header-navigation__dropdown .header-navigation__link {
    padding-right:31px;
}

.header-navigation__dropdown .header-navigation__link:after {
    content:'';
    position:absolute;
    top:0;
    right:10px;
    bottom:0;
    margin:auto;
    background-image:url('/templates/img/arrow.svg.svg');
    display:block;
    width:20px;
    height:20px;
    background-position: center;
}

.header-bottom {
    background: linear-gradient(90deg, #DDF7C8 0%, #FFF0B8 33.65%, #F8C7D9 63.94%, #DDF7C8 100%);
    padding:16px 0;
    height:80px;
    box-sizing: border-box;
    display: flex;
}

.header-bottom .container {
    display:flex;
    justify-content:space-between;
    align-items: center;
    width: 100%;
}

.header-btn__catalog {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.00);
    background: #654072;
    width:fit-content;
    padding:14px 12px 14px 35px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    min-width:162px;
    text-transform:uppercase;
    transition:all ease-out .2s;
}

.header-btn__catalog:hover {
    opacity:.8;
}

.header-social {
    display:flex;
    align-items:center;
    gap:12px;
}

.header-social__item {
    display:flex;
    align-items:center;
    transition:all ease-out .2s;
}

.header-social__item:hover {
    opacity:.8;
}

.header-btn__catalog-icon {
    width: 17px;
    height: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header-btn__catalog-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-btn__catalog-icon span:nth-child(2) {
    width: 65%;
    align-self: flex-end;
}

.header-btn__catalog.active .header-btn__catalog-icon span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.header-btn__catalog.active .header-btn__catalog-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.header-btn__catalog.active .header-btn__catalog-icon span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.header-location {
    display:flex;
    align-items:center;
    gap:12px;
    color: #2F2A32;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.header-contacts__title {
    color: rgba(80, 46, 82, 0.80);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.header-contacts__phone {
    color: #502E52;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    display:flex;
    align-items:center;
    gap:8px;
}

.header-contacts__square {
    border-right: 2px solid #502E52;
    border-bottom: 2px solid #502E52;
    width: 8px;
    height: 8px;
    margin-top:-4px;
    transform: rotate(45deg);
}

.header-bottom .header-right {
    display:flex;
    gap:24px;
    align-items:center;
}

.header-icons {
    display:flex;
    gap:24px;
    align-items:center;
    position:relative;
}

.header-icons .header-icons__num {
    position: absolute;
    top: -9px;
    right: -10px;
    width: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 14px;
    background: #502E52;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-icons img {
    height:28px;
}

.header-icons a {
    position:relative;
    transition:all ease-out .2s;
}

.header-location img {
    transition:all ease-out .2s;
}

.header-icons a:hover, .header-location:hover img {
    transform:scale(1.2);
}

.header-new-separator {
    height:145px;
}

.header-search {
    width:100%;
    max-width:666px;
}

.header-contacts {
    position:relative;
}

.header-contacts__widget {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #ECF1F5;
    position: absolute;
    top: -18px;
    left: -16px;
    right: -15px;
    width: 270px;
    box-sizing: border-box;
    display:none;
    z-index:2;
    max-height: 86vh;
    overflow-y: auto;
}

.header-contacts__widget .header-contacts__title {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}

.header-contacts__link {
    color: #3F3F3F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    display:block;
}

.header-contacts__widget-separator {
    height:14px;
}

.header-contacts__social {
    padding:12px 0;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.header-contacts__social-item {
    display:flex;
    gap:12px;
}

.header-contacts__social-content {
    display:flex;
    flex-direction:column;
}

.header-contacts__value {
    color: #3F3F3F;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.header-contacts:hover .header-contacts__widget {
    display:block;
}

.header-contacts__address-item {
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items: center;
}

.header-contacts__address-value {
    padding:7px 0;
    color: #3F3F3F;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.header-contacts__address-phone {
    color: #3F3F3F;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.header-contacts__address-schedule {
    color: #3F3F3F;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
}

.header-contacts__address-schedule img {
    width:11px;
}

.header-contacts__address-clm {
    dispaly:flex;
    flex-direction:column;
    gap:8px;
    padding-bottom:24px;
}

.header-contacts__button {
    border-radius: 12px;
    background: #654072;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
    padding:8px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    display:block;
    box-sizing:border-box;
    cursor:pointer;
    transition:all ease-out .2s;
}

.header-contacts__button:hover {
    opacity:.8;
}

@media (min-width:1800px) {
    .header-contacts__link {
        line-height:18px;
    }
}

.header-menu__wrapper {
    position:absolute;
    top:100%;
    left: 0;
    right: 0;
    display:none;
    padding-top:24px;
}

.header-menu__wrapper.active {
    display:block;
}

.header-desctop__menu-overlay {
    background: rgb(0 0 0 / 15%);
    position:fixed;
    z-index: 99999;
    left:0;
    right:0;
    top:0;
    bottom:0;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transition:all ease-out .2s;
}

.header-desctop__menu-overlay.active {
    pointer-events:auto;
    visibility:visible;
    opacity:1;
}

.header-menu {
    /* border-radius: 8px; */
    /* background: #FFF; */
    /* padding:24px 20px 35px; */
    /* max-height: 70vh;
    overflow-y: auto; */
    /* box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10); */
}

.header-menu__search {
    position:relative;
    display:flex;
    gap:12px;
}

.header-menu__search input {
    padding-left: 45px;
}

.header-menu__search svg {
    position:absolute;
    left: 10px;
    top: 12px;
}

.header-menu__search .default-btn {
    width: 87px;
    color: #FFF;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    height: 100%;
    margin: 0;
    padding: 16px;
    display: block;
    text-transform: inherit;
}

.header-menu__main {
    display:flex;
}

.header-menu__left {
    max-width:279px;
    width:100%;
    margin-right:12px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border-radius: 8px;
    background: #FFF;
    padding:24px;
    max-height: 80vh;
    overflow-y: auto;
}

.header-menu__main-links {
    display:flex;
    flex-direction:column;
}

.header-menu__main-item-wrapper {
    display:flex;
    align-items:center;
    gap:8px;
}

.header-menu__main-item > * {
    display:flex;
    align-items:center;
    color: #292929;
    font-size: 15px;
    font-style: normal;
    line-height: 100%;
    padding:4px 8px 4px 4px;
    border-radius: 8px;
    margin:0px 0;
    gap:4px;
    font-family: 'Roboto Light';
    font-weight: 900;
    transition:all ease-out .2s;
}

.header-menu__main-item svg {
    margin-left:auto;
}

.header-menu__main-item > *:hover {
    background: #F3EBF6;
}

.header-menu__main-item.active > * {
    background: #F3EBF6;
    margin:8px 0;
}

.header-menu__main-links .header-menu__main-item:first-child > * {
    /* margin-top:0px; */
}

.header-menu__main-links .header-menu__main-item:last-child > * {
    /* margin-bottom:0px; */
}

.header-menu__main-phone {
    margin-top:40px;
    color: #292929;
    font-size: 20.6px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition:all ease-out .2s;
}

.header-menu__main-phone:hover {
    text-decoration:underline;
}

.header-menu__catalog-title {
    color: #292929;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 150%;
    margin-bottom:8px;
    display:block;
    font-family: 'Roboto Light';
    display:flex;
    align-items:center;
    gap:8px;
    transition:all ease-out .2s;
}

.header-menu__catalog-title-tag {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.00);
    background: #F3EBF6;
    color: #654072;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    padding:4px 8px 5px;
    transition:all ease-out .2s;
}

.header-menu__catalog-title-tag:hover {
    opacity:.8;
}

a.header-menu__catalog-title:hover .header-menu__catalog-title-name {
    text-decoration:underline;
}

.header-menu__catalog-listing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(6, auto);
    grid-auto-flow: column;
    column-gap: 20px;
}

.header-menu__catalog-listing > * {
    justify-self: start;  
    max-width: 100%;      
}

.header-menu__catalog-item {
    color: #292929;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    padding:5px 0;
    transition:all ease-out .2s;
}

.header-menu__catalog-item:hover {
    color: #654072;
    text-decoration:underline;
}

.header-menu__right {
    width:100%;
    margin-right:12px;
    border-radius: 8px;
    background: #FFF;
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

.header-menu__catalog {
    display:none;
}

.header-menu__catalog.active {
    display:block;
}

.header-menu__catalogs {
    padding-bottom:48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.20);
}

.header-menu__extra {
    padding-top:25px;
    display:flex;
    gap:36px;
}

.header-menu__extra .header-menu__catalog-listing {
    grid-template-rows: repeat(1, auto);
    width: 100%;
}

.header-menu-products {
    max-width:198px;
    width:100%;
    border-radius: 8px;
    background: #FFF;
    padding:24px 12px 12px;
    max-height: 80vh;
    overflow-y: auto;
}

.header-menu-products__title {
    color: #292929;
    font-size: 15px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin-bottom:4px;
    padding:0 0 8px 0;
    font-family: 'Roboto Light';
}

.header-menu-products__row {
    display:flex;
    flex-direction:column;
    gap:24px;
}

.header-menu-products__item-image {
    border-radius: 8px;
    transition:all ease-out .2s;
}

.header-menu-products__item-image:hover {
    opacity:.8;
}

.header-menu-products__item {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
}

.header-menu-products__item-tocart {
    border-radius: 100px;
    background: #FFF;
    box-shadow: 3px 3px 31px 0 rgba(0, 0, 0, 0.10);
    padding:9px 12px;
    color: #292929;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display:flex;
    align-items:center;
    cursor:pointer;
    height:37px;
    box-sizing:border-box;
    transition:all ease-out .2s;
}

.header-menu-products__item-tocart:hover {
    opacity:.8;
}

.header-menu-products__item-tocart img {
    width:18px;
    margin-left:6px;
}

.header-mobile {
    display:none;
}

.header-mobile__menu {
    display:none;
}

.header-callback__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.00);
    background: #F8F8F8;
    width: fit-content;
    padding: 11px 20px 11px 20px;
    color: #3F3F3F;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    min-width: 116px;
    margin: 0 0 0 12px;
    text-transform:uppercase;
    transition: all ease-out .2s;
}

.header-callback__btn:hover {
    opacity:.8;
}

.header-location__content {
    display:flex;
    flex-direction:column;
}

.header-location__link {
    font-size: 14px;
    color: rgba(63, 63, 63, 0.70);
    line-height: 100%;
    font-weight: 500;
    display:none;
}

.header-location__link:hover {
    text-decoration:underline;
}

.header-icons .header-icons__num:empty {
  display: none;
}

@media (max-width:1440px) {
    .header-search {
        max-width:35vw;
    }
}

@media (max-width:1300px) {
    .header-search {
        max-width:30vw;
    }
}

@media (max-width:1100px) {
    .header-search {
        max-width:25vw;
    }
}

@media (min-width:1000px) {
    .header__fixed {
        transform: translateY(-76px);
    }
}

@media (max-width:1100px) {
    .header-navigation__link {
        font-size:12px;
    }
}

@media (max-width:1000px) {
    *[data-header-desktop] {
        display:none;
    }
    
    .header-mobile__top {
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:4px 15px;
        border-bottom: 1px solid #E6E6E6;
        background: #FFF;
    }
    
    .header-mobile__top .header-schedule__time {
        font-size:14px;
    }
    
    .header-mobile__top .header-schedule__days {
        font-size:12px;
    }
    
    .header-mobile__top-phone {
        color: #292929;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    
    .header-mobile__bottom {
        padding:14px 15px;
        display:flex;
        justify-content:space-between;
        align-items: center;
    }
    
    .header-mobile__bottom-right .header-icons {
        gap:18px;
    }
    
    .header-icons a:hover, .header-location:hover img {
        transform: scale(1);
    }
    
    header {
        top:0;
        border-bottom: 0;
        box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.10);
    }
    
    .header-new-separator {
        height: 70px;
    }
    
    .mobile-bottom-menu {
        display:none;
    }
    
    .header-mobile {
        display:block;
    }
    
    .header-mobile__menu {
        position:fixed;
        top:0;
        bottom:0;
        left:0;
        width:100%;
        max-width:312px;
        height: 100%;
        background: #fff;
        overflow-y: scroll;
        z-index: 99999999;
        padding:40px 16px;
        box-sizing:border-box;
        display:none;
    }
    
    .header-mobile__menu.active {
        display:block;
    }
    
    .header-mobile__menu-overlay {
        position:fixed;
        top:0;
        bottom:0;
        left:0;
        right:0;
        width:100%;
        height:100%;
        background:rgb(0 0 0 / 34%);
        z-index:999998;
        display:none;
    }
    
    .header-mobile__menu-overlay.active {
        display:block;
    }
    
    .header-mobile__menu-top {
        display:flex;
        align-items:center;
        justify-content:space-between;
        margin-bottom:12px;
    }
    
    .header-mobile__menu-search {
        padding-bottom:24px;
    }
    
    .header-mobile__menu-catalog {
        display:flex;
        flex-direction:column;
        gap:4px;
    }
    
    .header-mobile__menu-item a {
        padding:8.5px 0;
        display:block;
        color: #292929;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        text-decoration:none;
        border-radius: 12px;
        display:flex;
        align-items:center;
        justify-content:space-between;
    }
    
    .header-mobile__menu-item-content {
        display:flex;
        gap:4px;
        align-items:center;
    }
    
    .header-mobile__menu-catalog, .header-mobile__menu-info {
        padding-bottom:24px;
        display:flex;
        flex-direction:column;
        gap:4px;
    }
    
    .header-mobile__login {
        display:flex;
        justify-content:center;
        align-items:center;
        gap:8px;
        color: #FFF;
        text-align: center;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 120%;
        text-decoration:none;
        height:40px;
        margin-bottom:24px;
        box-sizing:border-box;
    }
    
    .header-mobile__menu-phone {
        color: #292929;
        text-align: center;
        font-size: 20.6px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: block;
        text-align: center;
        text-decoration: none;
    }
    
    .header-mobile__menu-social {
        display:flex;
        align-items:center;
        justify-content:center;
        padding-top:12px;
        gap:12px;
    }
    
    .header-mobile__inner {
        display:none;
    }
    
    .header-mobile__inner a {
        text-decoration:none;
    }
    
    .header-mobile__inner.active {
        display:block;
    }
    
    .header-mobile__inner-category {
        color: #292929;
        font-size: 15px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        border-radius: 12px;
        background: #F3EBF6;
        padding: 8px 12px;
        display:block;
        margin-bottom:16px;
    }
    
    .header-mobile__inner-item a {
        color: #292929;
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        padding:8px 12px;
        display:block;
    }
    
    .header-mobile__inner-close {
        margin-bottom:24px;
    }
    
    .header-mobile__burger {
        padding: 8px;
        border-radius: 10px;
        margin-top: -8px;
        border: 1px solid #e6e6e6;
        display: flex;
        align-items: center;
        width: 36px;
        height: 36px;
    }
    
    .header-mobile__burger svg {
        margin-bottom:-0.5px;
    }
    
    .header-mobile__inner-childs {
        display:flex;
        flex-direction:column;
        gap:4px;
    }
}

@media (max-width:768px) {
    .header-new-separator {
        height: 115px;
    }
}