.header-warning-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd600;
    font-size: 14px;
    padding: 6px;
    background-color: #000000;
    min-width: 1108px;
}

.header-menu {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
}

.logo-icon {
    fill: #ffffff;
    width: 200px;
    height: 45px;
}

.header-menu-background {
    position: absolute;
    content: "";
    top:0;
    left: 0;
    background-color: #1a1a1a;
    width: 100%;
    height: 265px;
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.menu-row {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
}

.menu-list {
    margin-left: 40px;
    padding-top: 13px;
    flex-grow: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: baseline;
}

.menu-list a {
    color: #ffffff;
    text-decoration: none;
    /*margin-left: 15px;*/
    font-size: 13px;
    position: relative;
}

.menu-list a:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50% 0;
    transform-origin: 100% 50% 0;
    transition: -webkit-transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s, -webkit-transform 0.35s cubic-bezier(0.76, 0, 0.24, 1) 0s;
}

.menu-list a:hover:after {
    transform: scale(1);
    -webkit-transform: scale(1);
    -webkit-transform-origin: 0 50% 0;
    transform-origin: 0 50% 0;
}

.menu-list .hidden-menu {
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
    width: 20px;
    height: 18px;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/static/icons/header/menu_dots.svg);
    background-position: center;
}

.currency {
    padding-top: 13px;
    margin-right: 40px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency > a {
    position: relative;
    display: inline-block;
    width: 75px;
    color:#ffffff;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
    transition-delay: 0s;
    transition-duration: 0.3s;
    margin-right: 9px;
}
.currency > a:last-child {
    margin-right: 0;
}

.currency > a:not(.active):hover {
    border: 1px solid #dedede;
}

.currency > a.active {
    border: 1px solid #ffffff;
    cursor: default;
}

.currency > a > span{
    font-weight: bold;
    text-decoration: underline;
}

.locale {
    position: relative;
}

.lang-selector {
    cursor: default;
    border-radius: 18px;
    border: 1px solid #fff;
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.lang-selector > .items-list {
    position: absolute;
    list-style: none;
    top: 0;
    left: 0;
    height: 0;
    padding: 0;
    opacity: 0;
    transition-duration: 0.3s;
}

.lang-selector > .current_lang {
    color:#fff;
    font-size: 13px;
    font-weight: bold;
}

.lang-selector:hover::after {
    position: absolute;
    /*background-color: #0f5132;*/
    content: "";
    width: 38px;
    height: 60px;
    bottom: -20px;
}

.lang-selector:hover > .items-list,
.lang-selector > .items-list:hover{
    height: auto;
    top: 36px;
    opacity: 1;
    z-index: 1;
}

.lang-selector > .items-list > .item:hover {
    /*box-shadow: 0 0 8px 5px #0b2744c2;*/
    /*border: 1px solid #fff6;*/
    /*transition-duration: .3s;*/
}

.lang-selector:not(:hover) > .items-list > .item {
    width: 0;
    height: 0;
}

.lang-selector > .items-list > .item {
    display: block;
    border-radius: 23px;
    border: 1px solid #fff;
    width: 36px;
    height: 36px;
    background-color: rgba(26, 26, 26, 0.73);
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    text-align: center;
    line-height: 36px;
    transition-duration: 0.7s;
    transition-property: top;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
}


.catalog-menu-btn {
    /*position: relative;*/
    height: 43px;
    background-color: #144b98;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 20px 0 62px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition-duration: 0.2s;
}

.catalog-menu-btn.catalog-menu-open {
    background-color: #FFFFFF;
    color: #000000;

}


.catalog-menu-btn > svg {
    position: absolute;
    display: inline-block;
    top: 10px;
    left: 20px;
    height: 22px;
    width: 22px;
    fill: #ffffff;
    transition-duration: 0.2s;
}

.catalog-menu-btn.catalog-menu-open  > svg {
    fill: #000000;
}

.brands-menu-btn {
    position: relative;
    height: 43px;
    background-color: #144b98;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 20px 0 62px;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    border-left: 1px dotted #74b4d4;
    border-right: 1px dotted #74b4d4;
}
.brands-menu-btn > svg {
    position: absolute;
    display: inline-block;
    top: 10px;
    left: 20px;
    height: 22px;
    width: 22px;
    fill: #ffffff;
}

.orders-menu-btn {
    position: relative;
    height: 43px;
    background-color: #0089ce;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    line-height: 30px;
    padding: 0 15px 0 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition-duration: 0.3s;
}
.orders-menu-btn:hover {
    background-color: #006b9d;
}
.search-menu-input {
    position: relative;
    height: 43px;
    flex-grow: 1;
    box-sizing: border-box;
    outline: none;
    border: none;
}

.search-menu-input input {
    position: relative;
    height: 43px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    padding: 0 54px 0 16px;
    font-size: 14px;
    border: none;
}

.search-menu-input input.searching {
    /*background-image: url(/static/images/preloader-horizontal.gif);*/
    background-image: linear-gradient(rgba(255, 255, 255, 0.9),rgba(255, 255, 255, 0.9)) , url(/static/images/preloader-horizontal.gif);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}


.search-menu-input .search-menu-button {
    position: absolute;
    height: 22px;
    width: 22px;
    right: 16px;
    top: 11px;
    margin: 0;
    cursor: pointer;
}

.search-menu-input .search-menu-button > svg {
    fill: #b3b3b3;
}

.search-menu-input .prev-results {
    position: absolute;
    background-color: #fff;
    width: 100%;
    width: -moz-available;          /* WebKit-based browsers will ignore this. */
    width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
    width: fill-available;
    border: 1px solid #0089ce;
    z-index: 1;
    padding: 5px 20px;

}

.search-menu-input .prev-results .search-res {
    border: 1px solid transparent;
    transition-duration: 0.2s;
}

.search-menu-input .prev-results .search-res:hover,
.search-menu-input .prev-results .search-res.current {
    background-color: #f1f8ff;
    border: 1px solid #dde4eb;
}

.search-menu-input .prev-results .search-res.product {
    display: flex;
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    align-items: center;
    margin-bottom: 6px;
}

.search-menu-input .prev-results .search-res.product .image {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 2px;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.search-menu-input .prev-results .search-res.product .title {
    margin-left: 10px;
}
.search-menu-input .prev-results .search-res.product .title .price {
    font-weight: bold;
}

.search-menu-input .prev-results .category-link-title {
    color:#000000;
    font-size: 14px;
    font-weight: bold;
}

.search-menu-input .prev-results .search-res.category-link {
    text-decoration: none;
    color: #000000;
    font-size: 14px;
    line-height: 29px;
    display: block;
    margin-left: 6px;
}

.search-menu-input .prev-results .search-res.total-search {
    color:#000000;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}







.short-menu {
    height: 43px;
    background-color: #f1f6fc;
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
}

.short-menu .short-menu-icon {
    position: relative;
    margin-right: 27px;
}

.short-menu-icon > div.notification {
    position: absolute;
    top: -20px;
    left: 2px;
    background-color: #c01a04;
    width: 17px;
    height: 17px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    text-align: center;
}
.short-menu-icon > div.notification:empty {
    display: none;
}

.search-menu-input .short-menu-icon > svg,
.short-menu .short-menu-icon > svg {
    display: inline-block;
    width: 22px;
    height: 22px;
    fill: #0089ce;
    stroke-width: 0;
    transition-duration: 0.2s;
}

.search-menu-input .short-menu-icon:hover > svg,
.short-menu .short-menu-icon:hover > svg {
    fill: #02608f;
    scale: 1.1;
}

.catalog-menu-btn.catalog-menu-open .category-container {
    display: block;

    opacity: 1;
    visibility: visible;
    z-index: 5;
    /*@starting-style {*/
    /*    opacity: 0;*/
    /*}*/
}

.category-container {
    /*display: none;*/
    position: absolute;
    top: 43px;
    left: 0;
    background-color: #fff;
    padding: 10px;
    cursor: default;
    /*min-width: 1200px;*/
    max-width: 1400px;
    width: 100%;
    text-transform: none;
    box-sizing: border-box;
    column-gap: 10px;
    border: 1px solid #0089ce;

    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition-duration: 0.3s;
    /*transition-behaviur: allow-discrete;*/
}

@media (min-width: 1400px ) {
    .category-container {
        column-count: 5;
    }
}

@media (max-width: 1399px ) {
    .category-container {
        column-count: 4;
    }
}
@media (max-width: 1299px ) {
    .category-container {
        column-count: 3;
    }
}

.category-container .category-block {
    display: block;
    margin-bottom: 10px;
    break-inside: avoid;
}


.category-container .category-block a {
    color: #262626;
    text-decoration: none;
    line-height: normal;
    display: block;
}

.category-container .category-block .main {
    color: #144b98;
    font-size: 15px;
    font-weight: bold;
}

.category-container .category-block .sub {
    color: #000000;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    margin-left: 10px;
}
