.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 700;
    display: flex;
    align-items: center;
    padding: 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(182,181,211,.2);
}
.navbar.compact {
    height: 60px;
}
.navbar > .container{
    justify-content: start;
    flex-wrap: nowrap;
}
.navbar > .container > .header-logo{
    display: flex;
    width: 180px;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}
.navbar > .container > .header-logo img{
    width: 100%;
    height: auto;
}
.navbar.compact > .container > .header-logo img {
    width: 155px;
}

.header-toggle {
    border-radius: 10px;
    border: 1px solid #b6b5d3;
    background-color: #fff;
    min-width: 120px;
    min-height: 40px;
    padding: 3px 16px 3px 15px;
    text-decoration: none !important;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.1px;
    display: flex;
    align-items: center;
    margin-left: 33px;
    transition: background-color .3s;
}
.header-toggle:hover{
    background-color: #f5f4f9;
    color: var(--dark-blue);
}
.header-toggle i {
    font-size: 15px;
}
.header-search{
    margin: 0 55px;
    width: 100%;
    max-width: 580px;
    height: 40px;
    position: relative;
}

#closeSearchArea{
    opacity: 0;
    transition: opacity .3s;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100dvh;
    top: 0;
    background-color: rgba(14,10,109,.7);
    z-index: 320;
    pointer-events: none;
}
.header-search.focus #closeSearchArea{
    opacity: 1;
    pointer-events: auto;
}
.header-search form{
    position: relative;
    width: 100%;
    display: flex;
    border-radius: 8px;
    align-items: center;
    z-index: 330;
    box-shadow: 0 1px 1px rgba(14,10,109,.1);
    border: 1px solid #b6b5d3;
    padding: 2px;
    background-color: #fff;
}
.header-search form .fa-search{
    position: absolute;
    font-size: 15px;
    left: 13px;
    top: 12px;
    color: var(--dark-blue);
    pointer-events: none;
}
.header-search form input {
    flex-grow: 1;
    height: 34px;
    background-color: #fff;
    border-radius: 6px;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 400;
    outline: 0 !important;
    padding-left: 38px;
    border: none;
    padding-right: 40px;
}
#clearButton {
    position: absolute;
    font-size: 15px;
    right: 118px;
    text-decoration: none;
    color: #8b8b9e;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 8px;
    transition: opacity .3s;
    opacity: 0;
    pointer-events: none;
}
#searchCancel{
    display: none;
    color: #818181 !important;
    font-size: 15px;
    white-space: nowrap;
    padding:0 0 0 15px;
}
.header-search.clear form #clearButton {
    opacity: 1;
    pointer-events: auto;
}
#searchBTN {
    min-width: 110px;
    height: 34px;
    min-height: 34px;
    padding: 0 5px;
    border-radius: 6px;
    font-weight: 700;
}

#searchMenu{
    display: none;
    top: 37px;
    left: 3px;
    width: 581px;
    position: absolute !important;
    top: calc(100% + 15px) !important;
    left: 0 !important;
    width: 100% !important;
    height: auto !important;
    background-image: none !important;
    background-color: #fff !important;
    box-shadow: 0 3px 15px rgba(0,0,0,.2);
    padding: 19px 10px 25px 10px;
    z-index: 330;
    border-radius: 8px !important;
    max-height: calc(100dvh - 115px);
    overflow: auto;
}
#searchMenu li {
    list-style-type: none;
    list-style-image: none;
    width: 100%;
}
#searchMenu li > a {
    display: flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 5px;
    width: 100%;
    color: var(--dark-blue);
    text-decoration: none !important;
    font-size: 15px;
    letter-spacing: -.11px;
}
#searchMenu li > a:hover {
    background: #f5f4f9;
    font-weight: 400 !important;
    margin: 0 !important;
}
#searchMenu li > a i {
    color: #818181;
    margin-right: 8px;
}
#searchMenu li > a strong{
    font-weight: 700;
}
#searchMenu li.separator span{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.43;
    min-height: 32px;
    justify-content: space-between;
    color: #000;
    padding: 0 10px;
    margin: 4px 0;
    clear: both;
    width: 100%;
    font-weight: 600;
    position: relative;
}
#searchMenu li.separator > span::after{
    content: "";
    flex-grow: 1;
    height: 1px;
    margin-top: 3px;
    margin-left: 20px;
    background-color: #dfdfdf;
}
#searchMenu li.product > a .img {
    width: 55px;
    min-width: 55px;
    height: 40px;
    margin: 5px 0;
    position: relative;
    display: block;
    mix-blend-mode: multiply;
}
#searchMenu li.product > a .img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#searchMenu li.product > a > strong {
    padding: 0 15px;
}
#searchMenu li.category > a i {
    color: #ffb300;
    margin-right: 8px;
}
#searchMenu li.promo{
    position: sticky;
    bottom: -25px;
    left: 0;
    background: #fff;
    z-index: 100;
    margin-top: 20px;
    padding-top: 10px;
    margin-bottom: -25px;
    padding-bottom: 25px;
}
#searchMenu li.promo > a {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 600;
    background: var(--orange);
    border-radius: 7px;
}
#searchMenu li.promo > a:hover {
    background: var(--orange-h);
}
#searchMenu .li-load{
   width: 100%;
}
#searchMenu .li-empty{
    display: flex;
    margin-top: 6px;
}
#searchMenu .li-empty .text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    text-align: center;
    line-height: 1.2;
}
#searchMenu .li-empty .text strong{
    color: #0e0a6d;
    font-size: 22px;
}
#searchMenu .li-empty .text span{
    font-size: 16px;
    font-weight: 500;
}
#searchMenu .li-empty i{
    text-align: center;
    font-size: 72px;
    width: 100px;
    color: #0e0a6d;
}
.header-btn > ul > li + li {
    margin-left: 5px;
}

.header-btn{
    margin-left: auto;
}
.header-btn > ul{
    display: flex;
    margin: 0;
    list-style-type: none;
    padding: 1px;
    border-radius: 8px;
    border: 1px solid #b6b5d3;
    box-shadow: 0 1px 1px rgba(14,10,109,.05);
    background-color: #fff;
    position: relative;
}
.header-btn > ul > li > a {
    display: flex;
    border-radius: 7px;
    min-width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    text-decoration: none !important;
    color: var(--dark-blue);
    line-height: 1;
    position: relative;
}
.header-btn > ul > li + li > a::before {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    bottom: 10px;
    pointer-events: none;
    left: -3px;
    opacity: .5;
    background-color: #b6b5d3;
    width: 1px;
}
.header-btn > ul > li:hover > a {
    background-color: rgba(182,181,211,.1);
}
.header-btn > ul > li > a > span.span-user-ico {
    min-width: 40px;
    display: flex;
    align-items: center;
    height: 40px;
    width: 40px;
    justify-content: center;
    margin-left: -8px;
    margin-right: 4px;
    position: relative;
}
.header-btn > ul > li > a > span.span-user {
    margin-right: 4px;
    white-space: nowrap;
}
.header-btn > ul > li > a > span.span-user > strong {
    display: block;
    opacity: 1;
    color: #0e0a6d;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -.11px;
}
.header-btn > ul > li > a > span.span-user  > small {
    display: block;
    color: #8b8b9e;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 2px;
}

#header-basket small {
    position: absolute;
    background-color: #ff6638;
    display: flex;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    top: -13px;
    right: -12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -.09px;
    min-width: 20px;
    height: 20px;
    padding: 0 3.5px;
    background-image: url(/public/images/icons/notification-shape-orange.svg);
    background-position: top right;
    background-size: 14px auto;
    background-repeat: no-repeat;
    transition: background-color .3s,transform .3s,color .3s;
}
.navbar.compact #header-basket small {
    transform: translate(-14px,16px);
    background-color: transparent !important;
    color: transparent;
}

#login-panel{
    position: absolute;
    top: 100%;
    right: -1px;
    display: none;
    padding-top: 5px;
}
#login-panel.is-open{
    display: block;
}
#login-panel .panel-login{
    display: flex;
    position: relative;
    width: 570px;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.13);
    border: 1px solid #b6b5d3;
    border-radius: 8px;
    z-index: 400;
}
.panel-login__sidebar{
    border-radius: 8px 0 0 8px;
    margin: -1px 0 -1px -1px;
    background-image: linear-gradient(112deg,#120d8b 0,#0e0a6d 100%);
    width: 170px;
    padding: 21px 10px 10px 10px;
    display: flex;
    flex-direction: column;
}
.panel-login__sidebar ul {
    margin: 0 0 auto 0;
    padding: 0;
    list-style-type: none;
}
.panel-login__sidebar a {
    display: flex;
    align-items: center;
    min-height: 35px;
    background-color: transparent;
    text-decoration: none !important;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    border-radius: 7px;
}
.panel-login__sidebar a:active,
.panel-login__sidebar a:focus,
.panel-login__sidebar a:hover {
    background-color: #0a0755;
    color: #fff !important;
}
.panel-login__sidebar a i{
    width: 38px;
    text-align: center;
    font-size: 14px;
    margin-bottom: -2px;
}

.panel-login__main{
    padding: 14px;
    width: calc(100% - 170px);
}
@media (min-width: 1101px) {
    .dropdown-user__main {
        max-height: calc(100dvh - 100px);
        overflow: auto;
        scrollbar-width: thin;
        -ms-overflow-style: none;
    }
}
#frm-loginForm {
    border-radius: 7px;
    padding: 15px 15px 24px;
    background-color: #f5f4f9;
}
#frm-loginForm > small {
    display: block;
    color: #0e0a6d;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 2px;
    margin-bottom: 4px;
}
#frm-loginForm > strong{
    display: block;
    color: #0e0a6d;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 16px;
}
#frm-loginForm .form-group {
    margin-bottom: 11px;
}
#frm-loginForm > a{
    display: block;
    text-align: right;
    color: #0e0a6d;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.09px;
    text-decoration: underline;
    margin-bottom: 12px;
}

#login-panel .box-points {
    border-radius: 7px;
    padding: 15px;
    margin-top: 15px;
    background-color: #f5f4f9;
}
#login-panel .box-points ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
#login-panel .box-points ul li {
    position: relative;
    color: #06042c;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -.02px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    min-height: 20px;
}
#login-panel .box-points ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(/public/images/icons/points-check.svg);
    background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: center center;
}

#panel-login-close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
    background-color: transparent;
    color: #b3c2dd;
    font-size: 16px;
    text-align: center;
    text-decoration: none !important;
    line-height: 1;
    border: none;
}
.panel-login-close-area{
    position: fixed;
    left: 0;
    width: 100%;
    height: 100dvh;
    top: 0;
    z-index: 350;
}

#contact-panel{
    position: absolute;
    top: 100%;
    right: -1px;
    display: none;
    padding-top: 5px;
}
#contact-panel.is-open{
    display: block;
}
#contact-panel .panel-contact{
    display: flex;
    position: relative;
    width: 500px;
    background-color: #f5f4f9;
    box-shadow: 0 10px 20px rgba(0,0,0,.13);
    border: 1px solid #b6b5d3;
    border-radius: 8px;
    z-index: 400;
}
.panel-contact__main {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px;
    width: 100%;
}
.panel-contact__main .panel-contact__main-caption{
    padding: 15px;
    border-radius: 7px;
    background-color: #fff;
}
.panel-contact__main .panel-contact__main-caption > strong {
    display: block;
    color: #0e0a6d;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 5px;
}
.panel-contact__main .panel-contact__main-caption > small {
    display: block;
    color: #0e0a6d;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin-top: 2px;
    margin-bottom: 4px;
}
.panel-contact__main-info{
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
    background-color: #fff;
    border-radius: 7px;
    position: relative;
}
.panel-contact__main-info .info__name{
    display: block;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0;
}
.info__address{
    display: flex;
    align-items: center;
    color: var(--dark-blue);
    width: 100%;
    border-bottom: 2px solid #f5f5f5;
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.info__address .text-link > span{
    font-size: 15px;
}

.info__address > a{
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 1px 6px;
    background-color: #ff6638;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 5px;
}
.panel-contact__main-info .info__data{
    display: flex;
}
.panel-contact__main-info .info__phones{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: calc(50% - 5px);
}
.panel-contact__main-info .info__phones > a{
    font-size: 18px;
    text-decoration: none !important;
    color: var(--dark-blue);
    font-weight: 500;
}
.panel-contact__main-info .info__phones > a:hover{
    text-decoration: underline !important;
}

.info__opening-hours{
    width: calc(50% - 5px);
}
.info__opening-hours > .indicator{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0e0a6d;
}
.info__opening-hours > .indicator > span {
    display: block;
    width: 16px;
    height: 16px;
    background-color: #dddddd;
    color: #0e0a6d;
    border-radius: 50%;
    margin-right: 10px;
}
.info__opening-hours > .indicator > span.green{
    background-color: #34c759;
}
.info__opening-hours > .indicator > span.yellow{
    background-color: #ffa700;
}
.info__opening-hours > .indicator > span.red{
    background-color: #ee0d0d;
}
.info__opening-hours > .indicator > strong{
    font-size: 15px;
    font-weight: 600;
}
.info__opening-hours .time{
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    color: #0e0a6d;
    margin-top: 5px;
}

#panel-contact-close{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 38px;
    height: 38px;
    top: 15px;
    right: 15px;
    background-color: transparent;
    color: #b3c2dd;
    font-size: 16px;
    text-align: center;
    text-decoration: none !important;
    line-height: 1;
    border: none;
}
.panel-contact-close-area{
    position: fixed;
    left: 0;
    width: 100%;
    height: 100dvh;
    top: 0;
    z-index: 350;
}

@media (max-width: 1259px) {
    .navbar > .container > .header-logo{
        width: 124px;
    }
    .header-btn > ul > li > a > span.span-user {
        display: none;
    }
    .header-btn > ul > li > a > span.span-user-ico {
        margin: 0;
        width: 100%;
        height: 100%;
        min-width: 0;
    }
    .header-btn > ul > li > a {
        padding: 0;
        border-radius: 5px;
        width: 38px;
        height: 38px;
        min-width: 0;
    }
    .header-btn > ul > li + li > a::before {
        display: none;
    }
}

@media (max-width: 1100px) {
    .navbar {
        height: 117px;
        align-items: flex-start;
        padding-top: 9px;
        transition: height .3s ease;
    }
    .navbar > .container {
        flex-wrap: wrap;
        padding: 0 !important;
    }
    .header-toggle {
        order: 1;
        min-height: 44px;
        width: 44px;
        min-width: 44px;
        margin: 0 0 0 10px;
        border: none !important;
    }
    .header-toggle > span {
        display: none;
    }
    .header-toggle i{
        margin-right: 0;
    }
    .navbar > .container > .header-logo{
        order: 2;
        margin: 0 auto;
        transform: translateX(7px);
    }
    .header-search {
        order: 5;
        transition: transform .3s,opacity .3s,height .3s;
        height: 56px;
        display: flex;
        align-items: center;
        padding: 0;
        margin: 0;
        width: 100dvw;
        max-width: 100dvw;
        z-index: 500;
    }
    .header-search.focus{
        transform: translate(0,-53px) !important;
        width: 100dvw !important;
    }
    #searchForm {
        padding: 0 15px 0 15px;
        height: 56px;
        border: none !important;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none !important;
    }
    #searchForm input {
        box-shadow: 0 1px 1px rgba(14,10,109,.1);
        border: 1px solid #b6b5d3;
        border-radius: 8px;
        height: 40px;
    }
    #searchBTN{
        display: none;
    }
    .header-search.focus #searchCancel{
        display: flex;
    }
    #searchForm .fa-search {
        left: 31px;
        top: 22px;
    }
    #closeSearchArea{
        display: none;
    }
    #searchMenu{
        width: 100% !important;
        box-shadow: none;
        top: 56px !important;
        max-height: calc(100vh - 56px) !important;
        height: calc(100vh - 56px) !important;
        overflow: auto;
        border-radius: 0 !important;
        border: none !important;
        background-color: #efeff5 !important;
        padding: 26px 15px 75px 15px !important;
        position: fixed !important;
    }
    #searchMenu li.promo {
        position: fixed;
        bottom: auto;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 10px 15px;
        border-top: 1px solid #e6e6f0;
        background-color: #efeff5;
        clear: none;
        top: calc(100dvh - 59px);
        z-index: 50;
    }
    #searchMenu li {
        display: inline-flex;
        vertical-align: top;
        width: auto;
        margin: 0 5px 5px 0;
    }
    #searchMenu li > a {
        display: flex;
        align-items: center;
        background-color: #fff;
        min-height: 42px;
        padding: 3px 10px;
        font-size: 15px;
        border: 1px solid #e6e6f0 !important;
    }
    #searchMenu li.separator {
        width: 100%;
    }
    #searchMenu li.separator span{
        margin: 0;
        padding: 0;
    }
    #searchMenu li.product{
        width: 100%;
    }
    #searchMenu .li-empty{
        flex-direction: column;
    }
    #searchMenu .li-empty .text{
        order: 1;
    }
    #searchMenu .li-empty i{
        order: 0;
        width: inherit;
        margin-bottom: 10px;
    }
    #clearButton{
        right: 86px;
        top: 16px;
        font-size: 18px;
    }

    .header-btn{
        order: 3;
        margin: 0 9px 0 0;
    }
    .header-btn > ul{
        border: none;
        box-shadow: none;
    }
    .header-btn > ul > li + li::before {
        content: "";
        display: block;
        position: absolute;
        top: 9px;
        bottom: 9px;
        left: 3px;
        width: 1px;
        background-color: #b6b5d3;
        opacity: .5;
    }
    .header-btn > ul > li + li {
        margin-left: 0;
        position: relative;
        padding-left: 7px;
    }
    #header-basket small {
        transform: translate(-14px,16px);
        background-color: transparent !important;
        color: transparent;
    }
    #header-fav{
        display: none;
    }
    .navbar.compact .header-search{
        transform: translate(-5px,-51px);
        width: calc(100dvw - 47px);
    }

   #login-panel{
        position: fixed;
        top: 0;
        left: 0;
        width: 100dvw;
        height: 100dvh;
        overflow: auto;
        scrollbar-width: thin;
        -ms-overflow-style: none;
        z-index: 510;
        padding: 0;
    }
    #login-panel .panel-login{
        border: none;
        height: 100dvh;
        border-radius: 0;
        width: 100% !important;
    }

    .panel-login__main {
        display: flex;
        flex-direction: column;
        padding: 15px;
        height: 100dvh;
        overflow: auto;
        scrollbar-width: thin;
        -ms-overflow-style: none;
    }

    #contact-panel{
        position: fixed;
        top: 0;
        left: 0;
        width: 100dvw;
        height: 100dvh;
        overflow: auto;
        scrollbar-width: thin;
        -ms-overflow-style: none;
        z-index: 510;
        padding: 0;
    }
    #contact-panel .panel-contact{
        border: none;
        height: 100dvh;
        border-radius: 0;
        width: 100% !important;
    }
}
@media (max-width: 768px){
    .panel-login__sidebar{
        display: none;
    }
    .panel-login__main{
        width: 100%;
    }
    .panel-contact__main-info{
        flex-direction: column;
    }
    .panel-contact__main-info > div{
        width: 100% !important;
        flex-wrap: wrap;
    }
}
@media (max-width: 450px){
    .panel-contact__main-info .info__data {
        justify-content: center;
        gap: 14px;
    }
    .panel-contact__main-info .info__phones {
        width: 100%;
        order: 1;
    }
    .info__opening-hours {
        width: 100%;
        order: 0;
    }
}