.banner__main {
    display: none;
}

.header__language-dropdown {
    display: none;
    width: 80px;
}

.header:hover {
    background: var(--color-bg-primary-inverted);
}

.icon__user path,
.header__logout svg {
    fill: var(--color-text-primary-inverted);
}

.icon__search circle,
.icon__search path {
    stroke: var(--color-text-primary-inverted);
}

.icon__search,
.icon__user {
    max-height: 40px;
}

.icon__search circle {
    fill: none;
}

.header__search-wrapper > svg > g,
.js__header__search > g {
    fill: none;
    stroke-linejoin: round;
}

.js__header__search > g g {
    stroke-width: 1.5; 
    stroke: #fff;
}

.dp-none {
    display: none !important;
}

.header__search-wrapper > svg > g g {
    stroke-width: 1.5; 
    stroke: currentColor;
}

.header__search-wrapper > svg {
    color: black;
}

.header__top a,
.header__top button,
.section__header,
.groups__item a,
.header__name {
    color: var(--color-text-primary-inverted);
}

.mt-25 {
    margin-top: 25px;
}

.header__language-switch {
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-text-primary-inverted);
}

.header__language-btn svg {
    height: 17px;
    border: 1px solid #e3e3e3;
    margin-right: 5px;
}

.groups__item-divider {
    margin: 20px 0;
    border-bottom: 1px solid #e4e4e4;
}

@media (max-width:992px) {
    .header__language-btn svg {
        height: 20px;
    }

    .group__open-sub svg {
        display: none;
    }

    .groups__item-wrapper > button::before {
        content: "+";
        color: #000;
        font-size: 1rem;
    }

    .groups__item-wrapper.opened > button::before {
        content: "-";
        color: #000;	
        font-size: 1rem;
    }
}

.header__language-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 5px;
    flex-direction: row-reverse;
}

@media (min-width: 992px) {
    .header__language {
        position: relative;
    }

    .header__language-dropdown {
        display: flex;
        position: absolute;
        top: 26px;
        left: 0;
        padding: 5px 10px;
        flex-direction: column;
        z-index: 999;
        background: var(--color-bg-secondary);
        opacity: 0;
        transition: opacity .2s ease-in-out;
        visibility: hidden;
        border: 1px solid #e4e4e4;
    }

    .header__language:hover .header__language-dropdown {
        opacity: 1;
        visibility: visible;
    }
}

header,
.header__main {
    background: rgb(49, 64, 27, .88);
}

main {
    margin-top: 146px;
}

@media screen and (min-width: 992px) {
    main {
        margin-top: 146px;
    }
}

.header__banner {
	background: var(--color-bg-primary-inverted);
	color: var(--color-text-primary-inverted);
    font-family: 'gotham_roundedbold', serif;
    font-size: 0.875rem;
}

.header__banner {
	display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    transition: height .3s ease;
}

.header__name {
    font-size: 12px;
    margin: auto 0;
    gap: 5px;
}

.header__logout button {
    display: flex;
}

.header__banner p {
	font-size: 14px;
    text-align: center;
    color: var(--color-text-secondary-inverted);
}

.banner__heading {
    margin-bottom: 30px;
    max-width: 600px;
}

.banner__heading h1 span {
    color: var(--color-text-accent);
}

.header__top {
	height: 72px;
    display: grid;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr 1fr;
}

.header__search:not(.mobile) {
    position: absolute;
    top: 0;
    left: -25px;
    width: calc(100% + 50px);
    background: var(--color-bg-primary);
    height: 100%;
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    border-radius: 4px;
}

.header__search.opened {
    opacity: 1;
    visibility: visible;
}

.header__search-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.header__search.desktop .header__search-wrapper > svg {
    height: 50px;
    width: 35px;
}

.header__search.mobile .header__search-input {
    background: var(--color-bg-secondary);
}

.header__search.mobile {
    height: 45px;
}

.header__search-input {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 1.5rem;
    line-height: 2rem;
}

.header__search-input:focus {
    outline: none;
}

.header__top img {
    max-width: 350px;
    max-height: 100%;
    width: 100%;
}

.header__right {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.header__center {
    letter-spacing: 1px;
    font-size: 1.3rem;
    text-align: center;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo {
    display: flex;
}

.header__center--bold {
    font-weight: 600;
    font-size: 1.2rem;
}

.header__center--red {
    color: #f72130;
    font-size: 1rem;
    font-weight: 600;
}

.header__top a,
.header__top button {
    cursor: pointer;
}

.header__cart,
.header__menu {
    color: var(--color-text-primary-inverted);
    font-family: 'gotham_roundedbold', serif;
    font-size: 0.875rem;
}

.header__cart {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__search button {
    color: var(--color-text-primary) !important;
}

.header {
    transition: background .3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header__sticky {
    background: var(--color-bg-primary-inverted);
}

.flag__logo {
    border: 1px solid transparent;
    transition: all .3s ease;
}

.flag__logo-mobile {
    height: 25px;
    border: 1px solid #e3e3e3;
}

.header__sticky .header__banner {
    height: 0px;
}

.header__sticky .header__banner p {
    display: none;
}

.icon__user path {
    fill: var(--color-text-primary);
}

.icon__search circle,
.icon__search path {
    stroke: var(--color-text-primary);
}

.header__logo--white {
    opacity: 1;
}

.section__header {
    color: #fff;
    background: rgb(49, 64, 27, 0.88);
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

.groups__subgroups {
    display: none;
}

.groups__items {
	display: flex;
    justify-content: center;
    height: 45px;
    border-top: 1px solid #e4e4e440;
    border-bottom: 1px solid #e4e4e440;
    transition: border .3s ease;
}

.groups__item {
	height: 100%;
    display: flex;
    align-items: center;
    padding: 0 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px;
}

.groups__item a {
    text-align: center;
    color: #fff;
}

.header__left a {
    font-size: 0.875rem;
    font-family: 'gotham_roundedbold', serif;
    color: #fff;
}

.header__top svg {
    height: 30px;
}

@media(max-width:480px) {
    /* .header__top svg {
        max-height: 20px;
        max-width: 100%;
    } */

    .header__top {
        grid-template-columns: 80px 1fr 80px;
    }
}

@media(max-width:992px) {
    .header__search-input { 
        font-size: 1rem;
    }

    .header__left.mobile {
        display: flex;
    }

    .header__search.mobile .header__search-input {
        background: transparent;
        color: #fff;
    }

    .header__search-wrapper svg {
        color: #fff !important;
    }

    .header__search.mobile .header__search-input::placeholder {
        color: #fff;
    }

    .group__open-sub-desktop {
        display: none;
    }

    .header__nav {
        position: fixed;
        left: 0;
        height: 100%;
        width: 100%;
        top: 104px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s ease, visibility .5s ease;
        background: var(--color-bg-secondary);
    }

    .header {
        border-bottom: 1px solid var(--color-border-primary);
    }

    .header__sticky .header__nav {
        top: 104px;
    }

    .header__nav.opened {
        opacity: 1;
        visibility: visible;
    }

    .groups__item {
        display: block;
        height: unset;
    }

    .groups__items {
        padding: 25px 25px 200px;
        background: #fff;
        height: 100%;
        display: block;
        overflow: auto;
    }

    .groups__item {
        justify-content: space-between;
        padding: 0;
    }

    .groups__item-wrapper {
        margin-bottom: 12px;
    }

    .groups__item .caption {
        font-size: 1rem;
        font-family: 'Lato', serif;
        text-transform: capitalize;
    }

    .groups__subgroups .groups__item .caption {
        font-size: .8rem;
    }

    .groups__item > div {
        display: grid;
        grid-template-columns: 1fr 50px;
    }

    .groups__item-wrapper.opened ~ .groups__subgroups {
        display: block;
    }

    .groups__item-wrapper.opened > button svg {
        transform: rotate(180deg);
    }

    .groups__subgroups.sub-1 {
        padding-left: 12px;
    }

    .groups__subgroups.sub-2 {
        padding-left: 12px;
    }

    .groups__subgroups.sub-3 {
        padding-left: 12px;
    }

    .groups__subgroups.sub-4 {
        padding-left: 12px;
    }

    .groups__subgroups.sub-5 {
        padding-left: 12px;
    }

    .groups__subgroups.sub-6 {
        padding-left: 12px;
    }

    .groups__item a {
        color: var(--color-text-primary);
        text-align: left;
        font-size: 1.5rem;
        line-height: 1.15;
        display: flex;
        height: 25px;
        width: 90%;
        align-items: center;
    }

    .groups__item-languages .caption {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .group__open-sub {
        text-align: end;
    }
}

@media(min-width:992px) {
    .groups__items {
        width: calc(100% + 80px);
        margin-left: -40px;
        flex-wrap: wrap;
        height: auto;
    }

    .groups__items > .groups__item {
        height: 45px;
    }

    .groups__item.mobile {
        display: none !important;
    }

    .section__header {
        position: relative;
    }

    .groups__item {
        position: relative;
    }

    .groups__item:hover .groups__item-subgroups {
        opacity: 1;
        visibility: visible;
    }

    .groups__item-withSub {
        transition: box-shadow 0.2s ease-in-out;
    }

    .groups__item-withSub:hover {
        box-shadow: inset 0 -3px #000;
    }

    .groups__item-subgroups {
        display: flex;
        position: absolute;
        top: 30px;
        left: 0;
        padding: 5px 10px;
        flex-direction: column;
        z-index: 999;
        background: var(--color-bg-secondary);
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
        visibility: hidden;
    }

    .groups__item-subgroups li {
        white-space: nowrap;
        height: 20px;
        display: flex;
        align-items: center;
    }

    .icon__user path {
        fill: var(--color-text-primary-inverted);
    }

    .icon__search circle,
    .icon__search path {
        stroke: var(--color-text-primary-inverted);
    }

    .header__top a,
    .header__top button,
    .groups__item a,
    .header__left a,
    .header__name {
        color: var(--color-text-primary-inverted);
    }

    .groups__items > .groups__item {
        padding: 0 14px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .group__open-sub svg {
        fill: #fff !important;
        color: #fff !important;
        height: 4px;
        transform: rotate(270deg);
    }

    .groups__items > .groups__item > .groups__item-wrapper {
        position: relative;
        display: flex;
        align-items: flex-start;
    }

    .groups__items > .groups__item > .groups__item-wrapper::before {
        content: "";
        display: block;
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 4px;
        background: #283113;
        transition: .5s ease all;
        background: #fea94e;
    }

    .groups__items > .groups__item:hover > .groups__item-wrapper::before {
        width: 100%;
    }

    .groups__items > .groups__item:hover > .groups__item-wrapper svg {
        fill: #fea94e !important;
        color: #fea94e !important;
        transform: rotate(0deg);
    }

    .groups__items > .groups__item:hover > .groups__item-wrapper > a {
        color: #fea94e;
    }

    .groups__items > .groups__item:hover {
        background: #283113;
    }

    .groups__subgroups {
        width: 175px;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;
    }

    .groups__subgroups.sub-1 {
        background: #283113;
        position: absolute;
        right: 0;
        left: 0;
        top: 100%;
        height: auto;
        z-index: 2;
    }

    .groups__subgroups.sub-2 .group__open-sub {
        display: none !important;
    }

    .groups__subgroups.sub-1 .groups__subgroups {
        background: #283113;
        position: absolute;
        left: 100%;
        top: 0;
        height: auto;
    }

    .groups__item:hover > .groups__subgroups.sub-1 {
        display: block;
    }

    .groups__subgroups .groups__item a {
        padding: 10px 0; 
        display: block;
        width: 100%;
        text-align: start;
    }

    .groups__subgroups .groups__item-wrapper {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }

    .groups__subgroups .groups__item .caption {
        font-family: microbrew_oneregular;
        font-size: 1.125rem;
        transition: all .2s cubic-bezier(0, 0, .2, 1);
    }

    .groups__item-wrapper svg {
        transition: color .2s cubic-bezier(0, 0, .2, 1);
    }

    .groups__subgroups .groups__item+.groups__item .groups__item-wrapper {
        border-top: 1px dashed #FEA94E;
    }

    .groups__subgroups .groups__item:hover > .groups__subgroups:not(.sub-3) {
        display: block;
    }

    .groups__subgroups .groups__item:hover > .groups__item-wrapper .caption, 
    .groups__subgroups .groups__item:hover > .groups__item-wrapper svg{
        fill: #fea94e !important;
        color: #fea94e !important;
    }

    .dropdown--left .sub-1 {
        left: auto;
    }

    .dropdown--left .sub-2,
    .dropdown--left .sub-3
    .dropdown--left .sub-4 { 
        right: 100% !important;
        left: auto !important;
    }

    .dropdown--left .groups__subgroups svg {
        transform: rotate(90deg);
    }

    .dropdown--left .groups__subgroups .groups__item-wrapper {
        flex-direction: row-reverse;
    }

    .dropdown--left .groups__subgroups .groups__item a {
        text-align: end;
    }
}

.groups__items .groups__item a.button--login {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 1rem 2rem;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    font-size: 1rem;
    font-family: microbrew_oneregular, serif;
    border: 0;
    text-align: center;
    height: 48px;
    white-space: nowrap;
    transition: all .3s ease;
    border-radius: 4px;
    color: #fff;
    width: auto;
}

.group__open-sub svg,
.group__open-sub,
.header__language-btn {
    fill: #000;
    color: #000;
}

.cart__loader {
    display: inline-block;
	width: 15px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 2px solid;
	border-color: #fff #fff0;
	animation: l1 1s infinite;
    margin-top: 6px;
}

.cart__loader--black {
    display: inline-block;
	width: 15px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 2px solid;
	animation: l1 1s infinite;
    margin-top: 6px;
    border-color: #000000 #fff0;
}

.cart__loader--big {
    width: 20px;
    margin-top: 10px;
}

@keyframes l1 {to{transform: rotate(.5turn)}}