#header {
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
    top: 0;
    left: 0;
    font-weight: 400;
    z-index: 10;
    transition: top .3s;
    position: sticky;
}

.header_wrap {
    display: flex;
    flex-shrink: 0;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: fit-content;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
}

#logo {
    height: 50%;
}

#logo:hover {
    filter: brightness(250%);
}

#header .header_left {
    display: flex;
}

#header .hamburger {
    height: 80px;
    width: 51px;
    padding: 0 10px 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#header .hamburger-icon {
    display: flex;
    flex-direction: column;
    position: relative;
    top: -2px;
    width: 100%;
}

#header .hamburger-icon span {
    border-bottom: 2px solid #131921;
    height: 6px;
    box-sizing: border-box;
    transition: all .3s;
}

#header .hamburger.x span.b {
    opacity: 0;
}

#header .hamburger.x span.a {
    transform: rotate(-45deg) translate(-4.5px, 6.5px);
}

#header .hamburger.x span.c {
    transform: rotate(45deg) translate(0, -6px);
}

#header .header_left a {
    font-size: 14px;
    display: inline-block;
    height: 80px;
    text-decoration: none;
    padding: 0 24px;
    border-bottom: 0;
    box-sizing: border-box;
    cursor: pointer;
    color: #131921;
    white-space: nowrap;
}

#header .header_left a:hover {
    border-bottom: 2px solid #2888ff;
}

#header .header_left a.current {
    border-bottom: 2px solid #2888ff;
}

.header_right {
    position: absolute;
    right: 6px;
    top: 0;
    display: inline-flex;
    box-sizing: border-box;
}

.header_social {
    display: inline-flex;
}

.header_social a {
    position: relative;
    padding: 0 10px;
}

.arrow_down {
    width: 10px;
    position: relative;
    top: -1px;
    margin-left: 5px;
}

.header_social img {
    position: relative;
    top: 5px;
    width: 25px;
    /* filter: brightness(0%); */
    opacity: 0.9;
    transition: all .3s;
}

.header_social .tip {
    display: none;
    position: absolute;
    z-index: 20;
    top: 60px;
    left: 4px;
    /* background-color: #131921; */
    color: white;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    width: 40px;
    text-align: center;
    border-radius: 5px;
    animation-name: tip;
    animation-duration: .2s;
    animation-fill-mode: both;
}

@keyframes tip {
    0% {
        top: 50px;
        opacity: 0;
    }
}

.header_social .tip:after {
    content: " ";
    z-index: -1;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    /* background-color: #131921; */
    position: absolute;
    top: -3px;
    left: calc(50% - 5px)
}

#header .header_social a:hover {
    border-bottom: none;
}

.header_social a:hover img {
    filter: brightness(100%);
    opacity: 1;
}

.header_social a:hover .tip {
    display: block;
}

.menu {
    text-align: left;
    background-color: white;
    display: none;
    position: absolute;
    z-index: 10;
    border-radius: 0 0 5px 0px;
    top: 81px;
    left: 0;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
    animation-name: menu;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    padding: 20px;
    line-height: 100%;
}

@keyframes menu {
    0% {
        transform: translateY(-4px);
        opacity: 0;
    }
}

.menu .flex {
    align-items: flex-start;
}

.menu-section {
    margin-right: 50px;
}

.menu-title {
    font-size: 12px;
    opacity: .5;
    margin-bottom: 10px;
}

.menu a {
    color: #131921;
    display: block;
    height: 32px;
    line-height: 36px;
    font-size: 14px;
    padding: 0;
}

.menu a:hover {
    color: #2888ff;
}

a.little-new-badge:after {
    content: "NEW";
    position: relative;
    top: -2px;
    left: 4px;
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #2888ff;
    color: white;
    font-weight: 600;
}

a.little-soon-badge:after {
    content: "SOON";
    position: relative;
    top: -2px;
    left: 4px;
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 9px;
    background-color: #b1b1b1;
    color: white;
    font-weight: 600;
}

.gift-ribbon {
    line-height: 20px;
    text-align: center;
    border-radius: 0;
    border: 0 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    display: none;
    /*!!!!!!*/
}

.timer {
    display: none;
}

.timer .box {
    display: flex;
    margin-left: 8px;
}

.timer .box .number {
    margin-right: 3px;
}

.gradientText {
    background-image: linear-gradient(90deg, orange 10%, red 30%, magenta 50%, #0066ff 110%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-size: 60%;
    background-position: center;
    font-weight: 900;
}

@media screen and (max-width: 950px) {
    #header {
        height: 100px;
        line-height: 50px;
    }
    .logo {
        height: 50px;
        left: 0;
        right: auto;
        padding: 8px 10px;
        width: 82px;
    }
    #header .hamburger {
        height: 50px;
        padding-left: 14px;
        width: 42px;
    }
    #header a,
    #header a:hover {
        border-bottom: 0;
    }
    .header_left {
        position: absolute;
        display: flex;
        justify-content: center;
        width: 100vw;
        line-height: 50px;
        top: 50px;
        border-top: 1px solid #ececec;
    }
    #header .header_left a {
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        padding: 0 10px;
    }
    .menu {
        top: 101px;
        padding-bottom: 0;
    }
    .menu .flex {
        display: block;
    }
    .menu .menu-section {
        margin-bottom: 30px;
    }
    .menu .menu-title {
        margin-bottom: 0;
    }
    .menu a {
        height: 26px;
    }
    #header .header_social a {
        height: 50px;
        padding: 0 8px;
    }
    .header_social a:hover .tip {
        display: none;
    }
    .gradientText {
        background-size: 100%;
    }
}

@media screen and (max-width: 350px) {
    .mobileHide {
        display: none !important;
    }
}