.app-header {
    padding: 0.75rem 10px;
    position: sticky;
    top: 0;
    z-index: 10;
    transition: background-color 250ms ease-in-out;
}
.app-header > div {
    max-width: 1920px;
}
.app-header__hamburger {
    width: 36px;
    height: 18px;
}
.app-header__hamburger-line {
    height: 3px;
}
.app-header__hamburger-line:nth-of-type(1) {
    width: 80%;
}
.app-header__hamburger-line:nth-of-type(3) {
    width: 50%;
}
.app-header__logo {
    width: 139px;
    height: 50px;
}
.app-header__logo img {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
}
.app-header__logo img.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 250ms ease-in, visibility 0ms ease-in 0ms;
}
.app-header__list .app-header__list-link {
    font-size: 18px;
    transition: color ease-in-out 250ms;
}
.app-header__list .app-header__list-link:hover,
.app-header__list .app-header__list-link:focus {
    color: #f37021;
    outline: 0;
}
.app-header__list .app-header__list-item {
    margin: 20px 0;
}
.app-header__list .app-header__list-item:first-of-type {
    margin-block-start: 0;
}
.app-header__list .app-header__list-item:last-of-type {
    margin-block-end: 0;
}
.app-header__shopping-badge {
    width: 20px;
    height: 20px;
    top: -10px;
    right: -10px;
    font-size: 12px;
}
.app-header__shopping-icon {
    width: 28px;
    height: 28px;
}
.app-header__call {
    padding: 0.7rem 1rem;
    font-size: 16px;
}
.app-header__call-icon {
    width: 20px;
    height: 20px;
}
.app-header__login {
    padding: 0.7rem 1rem;
    font-size: 16px;
}
.app-header__login:hover {
    color: #fafdfe;
}
.app-header__login-icon {
    width: 28px;
    height: 28px;
}
.app-header__social-icon {
    width: 24px;
    height: 24px;
}
.app-header__social-icon * {
    filter: grayscale(100%) sepia(58%) brightness(31%) hue-rotate(142deg)
        saturate(853%) contrast(30%);
    -webkit-filter: grayscale(100%) sepia(58%) brightness(31%)
        hue-rotate(142deg) saturate(853%) contrast(30%);
    -moz-filter: grayscale(100%) sepia(58%) brightness(31%) hue-rotate(142deg)
        saturate(853%) contrast(30%);
}

@media only screen and (min-width: 768px) {
    .app-header__list .app-header__list-link {
        font-size: 12px;
    }
    .app-header__list .app-header__list-item {
        margin: 0 8px;
    }
    .app-header__list .app-header__list-item:first-of-type {
        margin-inline-start: 0;
    }
    .app-header__list .app-header__list-item:last-of-type {
        margin-inline-end: 0;
    }
}
@media only screen and (min-width: 880px) {
    .app-header__list .app-header__list-link {
        font-size: 14px;
    }
    .app-header__list .app-header__list-item {
        margin: 0 10px;
    }
    .app-header__list .app-header__list-item:first-of-type {
        margin-inline-start: 0;
    }
    .app-header__list .app-header__list-item:last-of-type {
        margin-inline-end: 0;
    }
}
@media only screen and (min-width: 992px) {
    .app-header {
        padding: 0.75rem 15px;
    }
    .app-header__shopping-badge {
        width: 18px;
        height: 18px;
        top: -9px;
        right: -9px;
        font-size: 12px;
    }
    .app-header__shopping-icon {
        width: 24px;
        height: 24px;
    }
    .app-header__login-icon {
        width: 24px;
        height: 24px;
    }
    .app-header__list .app-header__list-item:first-of-type {
        margin-inline-start: 0;
    }
    .app-header__list .app-header__list-item:last-of-type {
        margin-inline-end: 0;
    }
}
@media only screen and (min-width: 1200px) {
    .app-header {
        padding: 0.75rem 20px;
    }
    .app-header__list .app-header__list-item:first-of-type {
        margin-inline-start: 0;
    }
    .app-header__list .app-header__list-item:last-of-type {
        margin-inline-end: 0;
    }
}
@media only screen and (min-width: 1400px) {
    .app-header {
        padding: 0.75rem 30px;
    }
    .app-header__list .app-header__list-link {
        font-size: 16px;
    }
    .app-header__list .app-header__list-item {
        margin: 0 14px;
    }
    .app-header__list .app-header__list-item:first-of-type {
        margin-inline-start: 0;
    }
    .app-header__list .app-header__list-item:last-of-type {
        margin-inline-end: 0;
    }
}
.app-header__sidebar {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    transition: transform 250ms ease-in-out;
    padding: 32px;
}
.app-header__sidebar.app-header__sidebar--open {
    transform: translateX(0%);
}
.app-header__sidebar-close-icon {
    width: 28px;
    height: 28px;
}
.app-search-overlay {
    z-index: 10;
    visibility: hidden;
    opacity: 0;
    transition: opacity 250ms ease-in, visibility 0ms ease-in 250ms;
}
.app-search-overlay.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 250ms ease-in, visibility 0ms ease-in 0ms;
}
.app-search-overlay__form {
    margin-block-start: 5rem;
}
.app-search-overlay__input {
    border: 1px solid #02015f;
    padding: 0.5rem;
    max-width: 640px;
}
.app-search-overlay__input:focus {
    outline: none;
}
.app-search-overlay__input::-webkit-search-decoration,
.app-search-overlay__input::-webkit-search-cancel-button,
.app-search-overlay__input::-webkit-search-results-button,
.app-search-overlay__input::-webkit-search-results-decoration {
    display: none;
}
.app-search-overlay__action {
    border: 1px solid #02015f;
    padding: 0.5rem 1.2rem;
    border-radius: 6px 0 0 6px;
}
.app-search-overlay__close {
    border: 1px solid #dc3545;
    padding: 0.1rem 0.9rem;
    font-size: 1.5rem;
    border-radius: 0 6px 6px 0;
}
