/*   Prefix --header-   */

body {
    --header-background: #011638;

    --header-visual-underliner-background: #004785;
    --header-context-background: #004785;

    --header-context-extra-text-color: #004785;
    
    --header-context-head-deliner: rgba(0, 0, 0, 0.30);
    --header-context-bottom-border: rgba(0, 0, 0, 0.30);
    --header-hamburger-underlay-background: rgba(0, 0, 0, 0.5);

    --header-hamburger-clickable-hover: #337AB7;
}

body.block-scroll /* for mobile/talet navigation */ {
    touch-action: none !important;
    -webkit-overflow-scrolling: none !important;
    overflow: hidden !important;
    /* Other browsers */
    overscroll-behavior: none !important;
    scrollbar-gutter: auto; 
}

/* Sizes */

@media (max-width: 1335.98px) {
    .header-total-container .big-desktop-only {
        display: none;
    }
} 

@media (min-width: 1024px) and (max-width: 1335.98px) {
    .header-total-container .except-small-desktop {
        display: none; 
    }
} 

@media (max-width: 1023.98px) {
    .header-total-container .desktop-only {
        display: none;
    }
}

@media (min-width: 1024px) {
    .header-total-container .tablet {
        display: none;
    }
}

@media (min-width: 726px) {
    .header-total-container .mobile {
        display: none;
    }
}

/* Rule for header buttons */

.header-total-container button {
    font-family: Commissioner;
}

.header-total-container button:focus {
    outline: none !important;
}

.header-total-container button:focus-visible {
    outline: solid 1px black !important;
}

.header-total-container a, .header-total-container a:hover, .header-total-container a:focus {
    text-decoration: none;
}

/* Rule for broken FontAwesome */

header i::before {
    content: '□';
}

/* General */

.header-total-container {
    position: fixed; /* Chrome 49 (Win XP) */
    position: sticky;
    position: -webkit-sticky; /* Safari */  
    top: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: var(--header-background);
    
    height: 86px;
    width: 100%;

    z-index: 99;
    color: #FFF;
    font-family: Commissioner;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    transition: height 300ms ease-out, top 100ms ease-out !important;
    -webkit-transition: height 300ms ease-out, top 100ms ease-out !important;
    -moz-transition: height 300ms ease-out, top 100ms ease-out !important;
    -o-transition: height 300ms ease-out, top 100ms ease-out !important;
}

.header-total-container.hide-up {
    top: -86px;
}

.header-total-container:hover.hide-up {
    top: 0;
}

.header-total-container.disable-animation {
    animation-duration: 0ms !important;
}

.header-total-container.disable-animation * {
    animation-duration: 0ms !important;
}

@media (max-width: 1023.98px) {
    .header-total-container {
        height: 50px; 
    }
    .header-total-container.hide-up {
        top: 0px;
    }
}

.header-home-logo-link {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box !important;
    padding: 15px 0 15px 15px;
    max-width: 315px;
    transition: padding 300ms ease-out !important;
    -webkit-transition: padding 300ms ease-out !important;
    -moz-transition: padding 300ms ease-out !important;
    -o-transition: padding 300ms ease-out !important;
}

@media (max-width: 1023.98px) {
    .header-home-logo-link {
        padding: 13px;
    }
}

.header-main-container {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.header-right-container {
    display: flex;
    flex-direction: column;
    margin-right: 20px;
}

/* Logo */

.header-home-logo-img {
    max-height: 56px !important;
    transition: max-height 300ms ease-out, max-width 300ms ease-out !important;
    -webkit-transition: max-height 300ms ease-out, max-width 300ms ease-out !important;
    -moz-transition: max-height 300ms ease-out, max-width 300ms ease-out !important;
    -o-transition: max-height 300ms ease-out, max-width 300ms ease-out !important;
}

.header-home-logo-naming {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
    padding: 4px 8px;  
    color: #FFF !important;
    font-family: Montserrat;
}

.header-home-logo-naming-main {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.header-home-logo-naming:has(.header-home-logo-naming-main:only-child) {
    justify-content: center;
}

@media (min-width: 1024px) {
    .header-home-logo-naming-main:only-child {
        font-size: 16px;
    }
}

.header-home-logo-naming-additional {
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

@media (max-width: 1023.98px) {
    .header-home-logo-img {
        max-height: 24px !important;
    }

    .header-home-logo-naming {
        justify-content: center;
        padding: 0px 4px; 
    }

    .header-home-logo-naming-main {
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
    }
}

/* Main */

.header-main-tuple {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.header-main-tuple:last-of-type {
    margin-right: 0;
}

/* Selecting items */

.header-main-item-pair /* If we pair two links */ {
    display: flex;
    flex-direction: row;
    flex-basis: 0;
    flex-grow: 1;
    gap: 12px;
    padding: 10px 0 3px 0;
}

/* Main link */

.header-main-item-link {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none !important;
    box-sizing: border-box !important;
    flex-basis: 0;
    flex-grow: 1;
    padding: 8px;
    margin: 10px 0 3px 0;
}


.header-main-item-link:hover {
    color: #fff;
}

.header-main-item-link:focus {
    color: #fff;
}

.header-main-item-pair .header-main-item-link {
    flex-basis: unset;
    flex-grow: unset;
    margin: 0;
}

.header-main-item-link::after {
    z-index: -1;
    content: '';
    box-sizing: border-box !important;
    display: block;
    position: absolute;
    height: 4px;
    background: var(--header-visual-underliner-background);
    border-radius: 3px;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    opacity: 0;
    width: 10%;
    height: 10%;
    
    transition: none !important; 
    -webkit-transition: none !important; 
    -moz-transition: none !important; 
    -o-transition: none !important; 
}


.header-main-item-link.btn.btn-danger::after {
    background-color: #d9534f; 
}

.header-main-item-link:hover::after {
    opacity: 1;
    height: 100%;
    width: 100%;
    transition: all 200ms ease-out 0ms !important;
    -webkit-transition: all 200ms ease-out !important;
    -moz-transition: all 200ms ease-out !important;
    -o-transition: all 200ms ease-out !important;
}

.header-main-item-link:focus {
    color: #fff;
}

.header-main-item-plug {
    min-height: 43px;
    height: 50%;

}

/* Main toggle (hover :D) */

.header-main-item-toggle {
    cursor: default;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    flex-basis: 0;
    flex-grow: 1;
}

.header-main-item-toggle.relative {
    position: relative;
}

.header-main-item-toggle-visual {
    z-index: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none !important;
    height: 100%;
    padding: 11px 8px 18px 8px; /* padding: 8px; +  padding: 3px 0 10px 0; */
}

.header-main-item-toggle-visual:hover {
    color: #fff;
}

.header-main-item-toggle-visual:focus {
    color: #fff;
}

.header-main-item-toggle-visual::after {
    z-index: -1;
    content: '';
    box-sizing: border-box !important;
    display: block;
    position: absolute;
    height: 4px;
    background: var(--header-visual-underliner-background);
    border-radius: 3px 3px 0 0;

    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;

    opacity: 0;
    width: 10%;
    height: 90%;
    
    transition: none !important; 
    -webkit-transition: none !important; 
    -moz-transition: none !important; 
    -o-transition: none !important; 
}

.header-main-item-toggle:hover .header-main-item-toggle-visual::after { 
    opacity: 1;
    height: 90%;
    width: 100%;
    transition: all 200ms ease-out 0ms !important;
    -webkit-transition: all 200ms ease-out 0ms !important;
    -moz-transition: all 200ms ease-out 0ms !important;
    -o-transition: all 200ms ease-out 0ms !important;
}

.header-item-toggle-context {
    z-index: 1;
    opacity: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--header-context-background);
    transition: opacity 100ms ease-out !important;
    -webkit-transition: opacity 100ms ease-out !important;
    -moz-transition: opacity 100ms ease-out !important;
    -o-transition: opacity 100ms ease-out !important;
}

.header-main-item-toggle.relative > .header-item-toggle-context {
    width: max-content;
    max-width: 100%;
}

.header-main-item-toggle.relative > .header-item-toggle-context.no-limit {
    max-width: unset;
}

.header-main-item-toggle:hover > .header-item-toggle-context {
    opacity: 1;
    display: flex;
    flex-direction: row;
}

.header-toggle-context-col {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.header-toggle-context-head {
    box-sizing: border-box !important;
    color: var(--base-head-color) !important;;
    padding-left: 20px;
    margin: 18px 0;
    font-weight: 500;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-toggle-context-head::after {
    position: relative;
    top: calc(100%);
    left: 0;
    display: block;
    content: '';
    width: 60%;
    height: 3px;
    background-color: var(--base-head-color);
}

.header-toggle-context-head:hover {
    color: var(--base-head-color) !important;
}

.header-toggle-context-head[href]:not([href=""]):not([href^="#"]) {
    text-decoration: underline !important;
}

.header-toggle-context-head[href]:not([href=""]):not([href^="#"]):hover {
    color: var(--base-head-color) !important;
}

.header-toggle-context-col:last-of-type > .header-toggle-context-head {
    padding-right: 20px;
}

.header-toggle-context-element {
    color: #fff;
    text-decoration: none !important;
    padding: 10px 0px 10px 25px;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-toggle-context-element:hover,
.header-toggle-context-element:focus {
    color: #fff !important;
    text-decoration: underline !important;
}

.header-toggle-context-col:last-of-type > .header-toggle-context-element {
    padding-right: 25px;
}

.header-toggle-context-head + .header-toggle-context-element,
.header-toggle-context-element:first-of-type {
    margin-top: 10px;
}

.header-toggle-context-element:last-of-type {
    margin-bottom: 10px;
}

/* Right */

.header-right-top-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    height: 50%;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 1px;
}

.header-right-bottom-block {
    display: flex;
    flex-direction: row-reverse;
    justify-content: end;
    height: 50%;
    gap: 20px;
    padding-top: 1px;
    padding-bottom: 10px;
}

.header-right-item-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #FFF;
    text-decoration: none !important;
    background-clip: text;
}

.header-right-item-link:hover, .header-right-item-link:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.header-right-item-jumper {
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-right-item-jumper:hover, .header-right-item-jumper:focus {
    background-color: transparent !important;
    color: #fff !important;
}

/* Blind toggle */

.header-blind-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    text-decoration: none !important;
}

.header-blind-toggle:hover, .header-blind-toggle:focus {
    text-decoration: none !important;
    outline: none !important;
    color: #fff !important;
}

/* Culture toggle */

.header-culture-container {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #FFF;
    text-decoration: none !important;
}

.header-culture-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-decoration: none !important;
    color: #fff;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
}

.header-culture-toggle i {
    pointer-events: none;
}

.header-culture-box {
    position: absolute;
    top: 100%;
}

.header-culture-box.hide-out {
    display: none;
}

.header-culture-quote {
    z-index: 21;
    display: block;
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff;
}

.header-culture-list {
    z-index: 20;
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: min-content;
    background-color: #fff;
    border-radius: 3px;
    box-shadow: 0 0 8px var(--base-box-shadow-color);
}

.header-culture-element {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 8px; /*3px 5px*/
    text-decoration: none !important;
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-culture-element:hover, .header-culture-element:focus {
    color: #000;
}

.header-culture-element:first-of-type {
    border-radius: 3px 3px 0 0;
}

.header-culture-element:last-of-type {
    border-radius: 0 0 3px 3px;
}

.header-culture-element:hover {
    background-color: var(--base-culture-element-background-hover);
}

/* Search toggle */

.header-search-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.header-search-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #fff;
    background-color: transparent;
    background-clip: text;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.header-search-toggle i {
    pointer-events: none;
}

.header-search-box {
    position: absolute;
    width: 100%;
    top: 100%;
}

.header-search-box.hide-out {
    display: none;
}

.header-search-quote {
    z-index: 21;
    display: block;
    position: absolute;
    top: calc(100% - 2px);
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
    width: 0; 
    height: 0; 
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #fff;
}

.header-search-field-box {
    z-index: 20;
    display: block;
    position: absolute;
    top: calc(100% + 5px);
    right: unset;
    left: -16px;
}

.header-search-field-box.left {
    right: -16px;
    left: unset;
}

.header-search-field-box.right {
    right: unset;
    left: -16px;
}

.header-search-field-enter {
    color: #000 !important;
    background-color: #fff !important;
    box-sizing: border-box !important;
    box-shadow: 0 0 8px var(--base-box-shadow-color);
    height: 23px;
    width: 190px; 
    border: 0;
    border-radius: 3px;
    padding: 6px;
    padding-right: 23px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.header-search-field-enter:focus {
    outline: 0;
}

.header-search-submit {
    cursor: pointer;
    position: absolute;
    right: 0;
    background-color: transparent;
    color: rgb(211, 211, 211);
    border: 0;
    padding: 0px;
    height: 23px;
    width: 23px;
    aspect-ratio: 1 / 1;
}

/* Hamburger */ 

.header-hamburger-container {
    z-index: 1;
    -webkit-user-select: none;
    user-select: none; 
    min-height: 100vh;
}

.header-hamburger-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    aspect-ratio: 1 / 1;
    color: #fff;
    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.header-hamburger-toggle i {
    pointer-events: none;
    font-size: 24px;
}

.header-hamburger-searchbar {
    display: flex;
    flex-direction: row;
    padding: 16px;
    width: 100%;
}

.header-hamburger-searchbar-field {
    min-width: 0;
    min-height: 28px;
    padding: 4px 8px;
    border: 0;
    border-radius: 3px 0 0 3px;
    color: #000;
    background-color: #fff;
    font-size: 16px;
}

.header-hamburger-searchbar-field:focus, 
.header-hamburger-searchbar-field:focus-within {
    outline: none;
}

.header-hamburger-searchbar-submit {
    min-height: 28px;
    min-width: 28px;
    padding: 4px;
    border-radius: 0 3px 3px 0;
    color: #000;
    background-color: #fff;
    font-size: 16px;
}

.header-hamburger-menu {
    z-index: 0;
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    height: 100vh;
    height: 100dvh;
    width: 80vw;
    width: min(80vw, 400px);
    background-color: var(--header-context-background);
    opacity: 1;
    left: 20vw;  
    left: max(100% - 80vw, 100% - 400px);  
    animation: hamburger-slide-up 200ms ease-out 0ms;
}

.header-hamburger-menu.hide-out {
    display: none;
    pointer-events: none;
    width: 0;
    opacity: 0;
    left: 100%;
    animation: hamburger-slide-out 200ms ease-out 0ms;
}

@keyframes hamburger-slide-up {
    0% {
        opacity: 1;
        left: 100%; 
        width: 80vw;
        width: min(80vw, 400px);
    }
    1% { }
    100% {
        left: 20vw;  
        left: max(100% - 80vw, 100% - 400px);
    }
}

@keyframes hamburger-slide-out {
    0% {
        display: flex;
        opacity: 1;
        left: 20vw;  
        left: max(100% - 80vw, 100% - 400px);
        width: 80vw;
        width: min(80vw, 400px);
    }
    99% {    
        opacity: 1;
        width: 80vw;
        width: min(80vw, 400px);
    }
    100% {
        display: none;
        opacity: 0;
        width: 0;
    }
}

.header-hamburger-close {
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    color: #fff; 
    border: 0;
    padding: 0;
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.header-hamburger-close i {
    pointer-events: none;
    font-size: 24px;
}

.header-hamburger-menu:not(.hide-out) + .header-hamburger-underlay {
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh; 
    height: 100dvh;
    background-color: var(--header-hamburger-underlay-background);
}

.header-hamburger-menu.hide-out + .header-hamburger-underlay {
    display: none;
}

.header-hamburger-extra {
    box-sizing: border-box !important;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
    width: 100%;
}

.header-hamburger-extra-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px; 
}

.header-hamburger-extra-link {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    background-color: #fff;
    color: var(--header-context-extra-text-color);
    padding: 8px 16px; 
    border-radius: 3px; 
}

.header-hamburger-extra-link:hover,
.header-hamburger-extra-link:focus {
    color: var(--header-context-extra-text-color) !important;
}

.header-hamburger-extra-link-text {
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
}

/* SubHamburger */

.header-hamburger-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px; 
    width: 100%;
    margin: 0px 0 16px 0; 
    overscroll-behavior-y: contain;
    overflow-y: auto;
    flex-grow: 1;
}

.header-hamburger-menu-list::-webkit-scrollbar-thumb {
    background-color: var(--base-head-color);
}

.header-hamburger-menu-link /* Link of main layer */ {
    position: relative;
    margin: 0 16px;
    padding: 8px 4px;
    text-align: start;
    color: #fff; 
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-decoration: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-hamburger-menu-link:hover { 
    /* text-decoration: underline !important; */
    color: #fff !important; 
}

.header-hamburger-menu-option {
    width: 100%;
}

.header-hamburger-menu-option-toggle /* Toggler of main layer (to next layer) */ {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    box-sizing: border-box !important;
    width: calc(100% - 32px);
    border: 0; 
    margin: 0 16px;
    padding: 8px 4px;
    text-align: start;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}

.header-hamburger-menu-option-toggle * {
    pointer-events: none;
}

.header-hamburger-menu-option-toggle i {
    margin-right: 8px;
}

.header-hamburger-menu-option-context {
    box-sizing: border-box !important;
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--header-context-background);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.header-hamburger-menu-option-context.hide-out {
    display: none;
}

.header-hamburger-menu-option-back /* Back from this 'next' layer to main layer */ {
    display: flex;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    color: #fff;
    border: 0;
    margin: 0;
    padding: 0px 16px;
    height: 50px;
    width: min-content;
    flex-shrink: 0; 
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    gap: 8px;
}

.header-hamburger-menu-option-category /* Category of this 'next' layer */ {
    box-sizing: border-box !important;
    width: 100%;
    padding: 0px 16px; 
    padding-top: 8px; 
    display: flex;
    flex-direction: row;
    align-items: center;
    color: var(--base-head-color);
    flex-shrink: 0;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}

.header-hamburger-menu-option-category::before, 
.header-hamburger-menu-option-category::after {
    display: block;
    content: '';
    background-color: var(--base-head-color);
    height: 3px;
    width: inherit;
    margin: 0 8%; 
    margin-top: 2px;
}

.header-hamburger-menu-option-block-list {
    display: flex;
    flex-direction: column;
    overscroll-behavior-y: contain;
    overflow-y: auto;
    flex-grow: 1;  
    margin: 16px 8px;
    padding: 0 8px;
    gap: 16px;
} 

.header-hamburger-menu-option-block-list::-webkit-scrollbar-thumb {
    background-color: var(--base-head-color);
}

.header-hamburger-menu-option-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-hamburger-menu-option-head /* Head of this 'next' layer's block */ {
    padding: 8px 0;
    color: var(--base-head-color) !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    text-decoration-line: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-hamburger-menu-option-head:hover {
    color: var(--base-head-color) !important;
}
.header-hamburger-menu-option-head[href]:not([href=""]):not([href^="#"]) {
    text-decoration: underline !important;
}
.header-hamburger-menu-option-head[href]:not([href=""]):not([href^="#"]):hover {
    color: var(--base-head-color) !important; 
}
 
.header-hamburger-menu-option-element /* Element of this 'next' layer's block */ {
    position: relative;
    margin-left: 16px;
    padding: 8px 4px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none !important;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-hamburger-menu-option-element:hover {
    /* text-decoration: underline !important; */
    color: #fff !important;
}

@media (max-width: 500px) {
    .header-hamburger-menu-link {
        font-size: clamp(12px, 3.5vw, 18px);
    }

    .header-hamburger-menu-option-toggle {
        font-size: clamp(12px, 3.5vw, 18px);
    }


    .header-hamburger-menu-option-category {
        font-size: clamp(14px, 4vw, 20px);
    }

    .header-hamburger-menu-option-head {
        font-size: clamp(12px, 3.5vw, 18px);
    }

    .header-hamburger-menu-option-element {
        font-size: clamp(12px, 3.5vw, 18px);
    }
}

/* Humburger hover underliners */

.header-hamburger-menu-link::after,
.header-hamburger-menu-option-toggle::after,
.header-hamburger-menu-option-element::after {
    z-index: -1;
    content: '';
    box-sizing: border-box !important;
    display: block;
    position: absolute;
    background: var(--header-hamburger-clickable-hover);
    border-radius: 3px;
    top: 0;
    left: 0;
    opacity: 0;
    width: 10%;
    height: 100%;
    transition: none !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
}

.header-hamburger-menu-link:hover::after,
.header-hamburger-menu-option-toggle:hover::after,
.header-hamburger-menu-option-element:hover::after {
    opacity: 1;
    height: 100%;
    width: 100%;
    transition: all 200ms ease-out 0ms !important;
    -webkit-transition: all 200ms ease-out !important;
    -moz-transition: all 200ms ease-out !important;
    -o-transition: all 200ms ease-out !important;
}
/*.header-hamburger-menu-list>a[href="https://abiturient.belstu.by/"]{
    background-color: #dc3545;
}*/