header {
    position: fixed;
    display: flex;
    width: 100%;
    z-index: 2;
    /* box-shadow: 0px 2px 4px rgb(0, 0, 0, 0.07); */
}

header p.logo {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.pre-header {
    background-color: #f9f9f9;
}

.pre-header-content {
    text-align: center;
    background-color: #f9f9f9;
}

.pre-header-content p {
    font-size: 12px;
    padding: 5px;
    margin: 0;
}

.pre-header-content .other-brands {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2px;
}

.pre-header-content .other-brands .link {
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    margin-right: 3px;
}

.pre-header-content .other-brands .link.active {
    font-weight: 800;
}

.pre-header-content .other-brands .link::after {
    content: "";
    position: relative;
    margin-left: 6px;
    width: 1px;
    height: 10px;
    background-color: #000;
}

.pre-header-content .other-brands .link:last-child:after {
    display: none;
}

.pre-header-content .other-brands a {
    color: #000;
    text-decoration: none;
}

.pre-header-content .other-brands img {
    width: 38px;
}

.header-offer {
    color: #FECD3F;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.pro-website a {
    font-family: 'Poppins', sans-serif;
    display: block;
    line-height: 30px;
    text-align: center;
    background-color: #fec63f;
    font-weight: 700;
    font-size: 12px;
    color: #ffffff;
    padding: 0 12px;
}

.header-menu {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 10px;
    gap: 20px;
}

.header-login {
    margin-left: auto;
    display: flex;
    gap: 35px;
    margin-right: 10px;
}

.flag-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.flag-list li {
    display: inline-block;
    padding-right: 5px;
}

.flag-list li a,
.flag-list li {
    font-size: 12px;
    color: #000;
}

.flag-list li.active a {
    text-decoration: underline;
}

.header-search {
    flex-grow: 1;
    display: flex;
}

.header-search input {
    background-color: #f9fafb;
    width: calc(100% - 200px);
    margin: auto;
    position: relative;
    border: 1px solid #e8e8e8;
    outline: none;
    border-radius: 3px;
    color: #000;
    font-family: Futura, Calibri, sans-serif;
    font-weight: 400;
    font-size: .95em;
    height: 40px;
    line-height: normal;
    text-transform: capitalize;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 40px;
}

.header-search input::placeholder {
    color: #ccc;
    font-size: 12px;
}

.header-search input {
    background: url(../img/magnifying-glass.svg) no-repeat scroll #f9fafb;
    background-position: calc(100% - 15px) 12px;
    background-size: 16px;
}

.search-result h1 {
    font-size: 14px;
}

.ui-widget-content {
    z-index: 9999;
    border: 1px solid #e8e8e8 !important;
    padding-top: 8px;
    max-height: 400px;
    overflow: auto;
}

.search-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    gap: 16px;
}

.search-result:hover {
    background-color: #e8e8e8;
}

.search-result .search-result:hover .price p {
    color: #000 !important;
}

.search-result .title h1 {
    margin-left: auto;
    font-size: 12px;
    font-weight: 400;
}

.search-result .price {
    margin-left: auto;
}

.search-result .price p {
    font-weight: 600;
    color: #000 !important;
    padding: 0;
    margin: 0;
}

.search-result .img img {
    max-width: 50px;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    padding: 2px;
}

.ui-menu .ui-menu-item-wrapper {
    padding: 0;
    font-size: 0;
}

a.cart-icon span {
    position: absolute;
    margin-left: -8px;
    margin-top: 0px;
    background-color: #3ec400;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    font-style: normal;
    color: white;
    font-size: 11px;
    text-align: center;
    line-height: 16px;
    letter-spacing: 0px;
    font-weight: 600;
    transition: transform 0.2s;
}

a.cart-icon:hover span {
    transform: translateY(-4px);
}

a.cart-icon i {
    display: inline-block;
    padding-left: 15px;
    font-style: normal;
    font-size: 12px;
    font-weight: 300;
}

a.login-icon img {
    width: 22px;
}

header img.logo {
    max-width: 300px;
}

a.logout-icon i {
    position: absolute;
    margin-left: -6px;
    margin-top: -6px;
    color: #ff0000;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
    z-index: 9;
}

a.logout-icon:hover i {
    color: #d10000;
}

.menu-mobile-bt {
    display: none;
}