header {
    box-shadow: var(--box-shadow-popup-bottom);
    position: fixed;
    left: 0;
    right: 0;
    z-index: 410;
    background-color: #fff;
}

.header-outer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    /*padding: 24px 0;*/
    max-height: 72px;
    height: 72px;
}

.header-col {
    display: flex;
    gap: 10px;
}

.header-logo {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.header-logo a {
    display: inline-block;
    margin-right: 12px;
}

.header-outer .header-col:last-child {
    /*margin-left: auto;*/
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.header-actions {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    gap: 16px;
    width: 100%;
}

#header-search {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    width: 24px;
    margin-left: auto;
    flex: none;
}

.header-logo__subtitle {
    white-space: nowrap;
}

.header-col.header-col-search {
    margin-left: auto;
}

.header-col.header-col-calendar {
    margin-left: 0;
}

.header-col-action-item {
    display: flex;
    width: 44px;
    height: 44px;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.header-col-action-item a {
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}

.header-search-desktop-input{
    padding-left: 35px;
    margin-left: 10px !important;
    max-width: 320px;
    width: 100% !important;
    border: solid gray 0;
    border-radius: 5px;
    background: url('/local/templates/lamoda-academy/images/icons/search-light.svg') no-repeat 10px center #F5F5F5;
    color: #888888;
}

#mobile-search-nv.show, #mobile-search-global.show, #mobile-calendar.show {
    opacity: 1;
    transition: all .5s;
}

#mobile-search-nv, #mobile-search-global, #mobile-calendar {
    opacity: 0;
}

#mobile-search-nv, #mobile-search-global {
    width: 18px;
    height: 18px;
    background-image: url("/local/templates/lamoda-academy/images/icons/search-square.svg");
}

#mobile-calendar {
    width: 20px;
    height: 20px;
    background-image: url("/local/templates/lamoda-academy/images/icons/calendar-square.svg");
}

@media (min-width: 320px) {
    .container-fluid.header-desktop {
        display: none;
    }

    .container-fluid.header-mobile {
        display: block;
    }
}

@media (min-width: 410px) {
    header {
        max-height:  var(--header-height);
    }
}

@media (min-width: 640px) {

}

@media (min-width: 1024px) {
    .container-fluid.header-desktop {
        display: block;
    }

    .container-fluid.header-mobile {
        display: none;
    }
    .header-col.only-desktop-col {
        display: none;
    }
    header {
        max-height: inherit;
    }
}

@media (min-width: 1280px) {
    header {
        max-height:  var(--header-height);
    }
    .header-col.only-desktop-col {
        display: block;
    }
    .header-only-mobile-col {
        display: none;
    }
}

@media (min-width: 1440px) {

}