.header__searchTrigger {
    width: fit-content;
    margin: auto 0 auto auto;
}

.header__nav {
    margin: 0;
}

.header__nav .header-logo {
    display: flex!important;
}

.header__nav_top {
    display: flex;
    flex-flow: row;
    align-items: center;
    gap: 16px;
}

.header__nav_wrapper.show-menu {
    z-index: 0;
}

.header__burger {
    margin-right: 20px;
}

.header__content > .header-logo {
    display: none;

    @media(max-width: 1390px) {
        display: flex!important;
    }
}

.header__mob_line, .header__mob_blue_line {
    display: none!important;
}

@media (max-width: 1390px) {
    .header__search {
        display: none;
    }
}

.header__searchTrigger-desk {
    margin: 0;

    @media(max-width: 1390px) {
        display: none!important;
    }
}


.header__searchTrigger-mob {
    display: none;

    @media(max-width: 1390px) {
        display: flex!important;
    }
}

.header__searchTrigger-btn {
    background: transparent;
    border: none;
    width: fit-content;
    height: 20px;
    cursor: pointer;
    display: flex;
    flex-flow: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 8px;
}

.header__searchTrigger-btn .search-close {
    display: none;
}

.header__searchTrigger-btn.is-search-btn-active .search-close {
    display: block;
}

.header__searchTrigger-btn.is-search-btn-active .search-icon {
    display: none;
}

.header__searchTrigger-btn svg {
    width: 20px;
    height: 20px;
}

.header .container {
    position: relative;
}

.header__searchBar[hidden] {
    display: none !important;
}

.header__searchBar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 6;
    background: #ffffff;
    border-top: 1px solid #e8eaed;
    transition: all 0.2s linear;
}

.header__searchBar.isHidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.header__searchBar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 1392px;
    width: 100%;
    padding: 16px 36px;
    margin: 0 auto;
    justify-content: flex-end;
}

.header__searchBar-form {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 700px;
}

.header__searchBar-icon {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: #8f99a3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__searchBar-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.header__searchBar-input {
    flex: 1;
    min-width: 0;
    border: 0;
    border-bottom: 1px solid #adb4bb;
    background: transparent;
    padding: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #22303a;
    outline: none;
    height: 32px;
}

.header__searchBar-input::placeholder {
    color: #a8afb7;
}

.header__searchBar-btn {
    flex: 0 0 auto;
    min-width: 72px;
    height: 32px;
    border: 0;
    border-radius: 0;
    background: #e31e24;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    padding: 0 14px;
}

.header__searchBar-btn:hover {
    background: rgba(231, 51, 43, 0.8);
}

.header__searchBar-btn:active {
    background: #e31e24;
}

.header__searchBar-btn:focus {
    background: rgba(231, 51, 43, 0.8);
}

.header__searchBar-close {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: #616a73;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__searchBar-close svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

@media (max-width: 1023px) {
    .header__searchBar-container {
        padding: 14px 64px;
    }

    .header__searchBar-input {
        font-size: 15px;
    }

    .header__searchBar-btn {
        font-size: 13px;
        height: 30px;
        min-width: 68px;
    }
}

@media (max-width: 767px) {
    .header__searchBar-container {
        gap: 8px;
        padding: 12px 24px;
    }

    .header__searchBar-icon {
        width: 14px;
        height: 14px;
    }

    .header__searchBar-input {
        font-size: 14px;
        padding-bottom: 5px;
    }

    .header__searchBar-btn {
        font-size: 13px;
        min-width: 60px;
        height: 30px;
        padding: 0 10px;
    }

    .header__searchBar-close {
        width: 22px;
        height: 22px;
    }

    .header__searchBar-close svg {
        width: 12px;
        height: 12px;
    }
}
