﻿header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
}

.header-center-drop .drop-item:hover::before {
    display: block;
}

.header-center-drop .drop-item::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 0;
    width: 10px;
    height: 150px;
    display: none;
}

.header-center-drop3 {
    position: absolute;
    left: calc(100% + 10px);
    background-color: var(--color-2);
    top: 0;
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none;
    transition: 0.8s cubic-bezier(.3, 2, .4, 1);
    overflow-x: hidden;
    padding: 4px 6px;
    overflow-y: overlay;
    max-height: 315px;
    box-shadow: 0 0 10px 0 #ffffff40;
    background-image: url(../../../Design/img/home-rating-bg.png);
    background-size: cover;
    border-radius: 8px;
}

    /* width */
    .header-center-drop3::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    .header-center-drop3::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    .header-center-drop3::-webkit-scrollbar-thumb {
        background: var(--color-2);
    }




    .header-center-drop3 .drop3-item-link:hover {
        color: var(--color-1);
    }


    .header-center-drop3 .drop3-item-link {
        white-space: nowrap;
        color: #fff;
        font-size: 13px;
        padding: 8px 10px;
        transition: all .3s;
        margin: 0px 0;
        transition: all .3s;
        position: relative;
    }

        .header-center-drop3 .drop3-item-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background-color: var(--color-1);
            bottom: 0;
            opacity: .3;
            left: 50%;
            transform: translateX(-50%);
        }

    .header-center-drop3 .drop3-item:last-child .drop3-item-link::before {
        display: none;
    }

.header-help {
    height: 68px;
    width: 100%;
}

header.block {
    position: relative !important;
}

.header-right-search {
}

    .header-right-search .icon {
        color: #919EAB;
        font-size: 13px;
        padding-left: 10px;
        padding-right: 4px;
        height: 100%;
    }

    .header-right-search input {
        outline: none;
        border: none;
        background-color: transparent;
        color: rgb(105 102 101);
        font-size: 15px;
        font-family: barLIta;
        height: 100%;
        padding-right: 10px;
        flex: 1;
        line-height: 100%;
    }

header.fixed .header-help {
    position: fixed !important;
    box-shadow: 0 0 10px 0 #3333333b;
}

.header-btn-rs {
    display: none;
    margin: 0 5px;
    margin-left: 13px;
    width: 24px;
}

header.fixed .header-btn-rs .btn-rs-item {
    background-color: #fff;
}

.header-btn-rs .btn-rs-item {
    width: 24px;
    height: 3px;
    background-color: var(--color-3);
    margin: 5px 0;
    border-radius: 3px;
    transition: all ease .3s;
}

.header-btn-rs.active .btn-rs-item:nth-child(1) {
    width: 10px;
}

.header-btn-rs.active .btn-rs-item:nth-child(2) {
    width: 16px;
}

.header-btn-rs.active .btn-rs-item:nth-child(3) {
}

header .header-help::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-2);
    top: -100%;
    transition: all ease .3s;
}

header.fixed .header-help::before {
    top: 0%;
}

header.show .header-help::before {
    top: 0 !important;
}

.header-container {
    display: flex;
    align-items: center;
}

.header-wrap {
    flex: 1;
    border-left: 1px solid var(--border-primary);
    padding-left: 36px;
    margin-left: 31px;
}

.header-left {
    position: relative;
    left: 0;
    width: 0;
}

.header-right {
    position: relative;
    display: flex;
    align-items: center;
}

.header-right-item img {
}

.header-right-item {
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 55px;
    transition: all ease .2s;
    height: 32px;
    background-color: #fff;
    max-width: 205px;
    width: 100vw;
}

header.fixed .header-right-item::after {
    background-color: #333333b8;
    box-shadow: 0 0 10px 0 #fff;
}

header.show .header-right-item::after {
    background-color: #333333b8;
}

.header-right-item:hover::after {
    transform: scale(1);
}

header.block .header-right-item::after {
    background-color: #333333b8;
}

.header-right-item:hover {
    color: #fff;
}

    .header-right-item:hover img {
        transform: rotate(15deg) scale(1.05);
        transition-delay: .3s;
    }



.header-right-cart {
    position: relative;
}

    .header-right-cart:hover::before {
        background-color: #fff;
    }

header.fixed .header-right-cart::before {
    background-color: var(--color-1);
}

header.fixed .header-right-cart:hover::before {
    background-color: #fff;
}

.header-right-cart::before {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--color-2);
    border-radius: 50%;
    right: 0;
    top: 0;
    opacity: 0;
    transition: all linear .2s;
}

.header-banner-item {
}

    .header-banner-item img {
        width: 100%;
    }

.header-right-cart.have::before {
    animation: forCart linear alternate infinite .5s;
    animation-delay: .5s;
    opacity: 1;
}

@keyframes forCart {
    0% {
        transform: scale(1.13);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.13);
    }
}

.header-logo {
    display: flex;
    align-items: center;
    width: 93px !important;
    height: 93px !important;
}

    .header-logo img {
        display: none !important;
    }

    .header-logo canvas {
        width: 93px;
        transition: all .3s;
    }

.header-bottom.scroll .header-logo canvas {
    width: 125px;
    transform: translateY(75px);
}

header.fixed .header-center {
    transform: translateY(35px);
}

.header-center {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}


.header-center-list {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-center-item {
    position: relative;
    transition: 0.6s cubic-bezier(.3, 2, .3, 1);
    height: 100%;
}

    .header-center-item.hav {
        position: relative;
    }


header.fixed .header-center-item {
    margin: 0 20px;
}

.header-center-item.hav::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    top: 20px;
    display: none;
}

.header-center-item.hav:hover::before {
    display: block;
}

.header-center-link {
    font-size: 14px;
    color: var(--text-primary);
    position: relative;
    display: flex;
    text-transform: uppercase;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: all linear .2s;
    font-weight: 100;
    margin: 0 calc(26px /2);
}

    .header-center-link:hover {
        color: var(--color-1);
    }

header.fixed .header-center-link {
    font-size: 17px;
}

.header-center-link:hover::before {
    width: 25px;
}

.header-center-link::after {
    content: '';
    position: absolute;
    height: 15px;
    bottom: -10px;
    width: 100%;
    display: none;
}

.header-center-link:hover::after {
    display: block;
}

.header-center-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--color-4);
    bottom: 0;
    display: none;
    transition: 0.6s cubic-bezier(.3, 2.5, .3, 1);
}

.header-center-item:hover .header-center-drop {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.header-center-drop {
    position: absolute;
    background-color: #fff;
    box-shadow: 0 0 10px 0 #33333326;
    padding: 4px 6px;
    top: 112%;
    z-index: 2;
    pointer-events: none;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.8s cubic-bezier(.3, 2, .4, 1);
    border-radius: 8px;
    background-image: url(../../../Design/img/home-about-bg.png);
    background-size: cover;
}

    /* width */
    .header-center-drop::-webkit-scrollbar {
        width: 6px;
    }

    /* Track */
    .header-center-drop::-webkit-scrollbar-track {
        background: transparent;
    }

    /* Handle */
    .header-center-drop::-webkit-scrollbar-thumb {
        background: var(--color-2);
        border-radius: 5px;
    }


    .header-center-drop .drop-item {
        position: relative;
    }


        .header-center-drop .drop-item:hover .header-center-drop3 {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

            .header-center-drop .drop-item:hover .header-center-drop3::Be {
                display: block;
            }

    .header-center-drop .drop-item-link {
        white-space: nowrap;
        padding: 8px 10px;
        color: #444;
        font-size: 13px;
        transition: all .3s;
        margin: 0px 0;
        position: relative;
    }

        .header-center-drop .drop-item-link::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background-color: var(--color-1);
            bottom: 0;
            opacity: .3;
            left: 50%;
            transform: translateX(-50%);
        }

    .header-center-drop .drop-item:last-child .drop-item-link::before {
        display: none;
    }

    .header-center-drop .drop-item-link:hover {
        color: var(--color-1);
    }

.header-banner {
    position: relative;
}

    .header-banner::before {
        content: '';
        position: absolute;
        background: linear-gradient( 358deg, #005559 0%, rgba(6, 31, 44, 0.24) 73%, rgba(255, 255, 255, 0) 100%);
        z-index: 2;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: .5;
    }

header.dt-pro {
    position: fixed !important;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 39px;
    position: relative;
}

    .header-top::before {
        content: '';
        position: absolute;
        width: 100vw;
        height: 1px;
        bottom: 0;
        left: -36px;
        background-color: var(--border-primary);
    }

.header .grid.wide {
    box-shadow: 0px -1px 8.5px rgba(190, 187, 187, 0.48);
}

.header-top-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-top-info {
    display: flex;
    align-items: center;
    width: 100%;
}

.header-top-left {
    display: none;
}

.header-top-search {
    display: flex;
    align-items: center;
    padding: 5px;
    background-color: var(--color-2);
    border: 1px solid #C5C5C5;
    border-radius: 55px;
    height: 40px;
    max-width: 298px;
    width: 100%;
}

    .header-top-search .btn {
        background-color: var(--color-3);
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }

.header-top-card img {
    margin-right: 7px;
}

.header-top-card span {
    line-height: 150%;
    font-family: robotoM;
    font-size: 15px;
    color: #fff;
}

.header-top-card {
    display: flex;
    align-items: center;
    background-color: var(--color-3);
    border-radius: 55px;
    height: 40px;
    padding: 0 12px;
    margin-left: 17px;
    margin-right: 5px;
    transition: all .3s;
}

    .header-top-card:hover {
        color: var(--color-3);
        background-color: var(--color-7);
    }

.header-top-search input {
    outline: none;
    background-color: transparent;
    border: 0;
    height: 100%;
    color: var(--color-4);
    padding-left: 15px;
    font-size: 14px;
    flex: 1;
    padding-right: 25px;
}

.header-top-info p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 9px;
    margin: 0 12px;
}

.info-item-top {
    display: flex;
    align-items: center;
    line-height: 100%;
}

    .info-item-top a {
        font-family: 'pathRe';
        font-size: 15px;
        color: var(--color-4);
        max-width: 275px;
        line-height: 128%;
        display: inline-block;
    }

    .info-item-top label {
    }

.header-top-info .info-item {
    display: flex;
    font-size: 13px;
    position: relative;
    color: var(--text-primary);
    line-height: 150%;
    padding: 0 15px;
}

    .header-top-info .info-item:last-child::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 22px;
        background-color: rgb(142 142 142 / 60%);
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }



    .header-top-info .info-item img {
        display: inline-block;
        padding-right: 5px;
    }

    .header-top-info .info-item span {
        display: flex;
        align-items: center;
    }

        .header-top-info .info-item span a:last-child {
            margin-right: 0;
        }

        .header-top-info .info-item span a {
            white-space: nowrap;
            margin: 0 6px;
        }

        .header-top-info .info-item span strong {
            font-family: pathMe;
            font-weight: 100;
            color: var(--color-2);
            font-size: 16px;
            line-height: 159.5%;
        }

    .header-top-info .info-item p {
    }

.header-top-hotline {
    display: flex;
    align-items: center;
    background-color: var(--color-2);
    border-radius: 55px;
    padding: 2px 0;
    padding-left: 2px;
    padding-right: 10px;
    opacity: 0;
}

    .header-top-hotline .icon {
        width: 18px;
        height: 18px;
        background-color: #fff;
        border-radius: 50%;
        margin-right: 5px;
    }

    .header-top-hotline .list {
        display: flex;
        align-items: center;
    }

        .header-top-hotline .list a:first-child {
            margin-left: 0;
        }

        .header-top-hotline .list a:last-child {
            margin-right: 0;
        }

        .header-top-hotline .list a:first-child::before {
            content: '-';
            position: absolute;
            font-family: 'barM';
            color: #fff;
            right: -8px;
        }

        .header-top-hotline .list a:hover {
            color: var(--color-1);
        }

        .header-top-hotline .list a {
            font-family: barM;
            position: relative;
            color: #fff;
            font-weight: 100;
            font-size: 13px;
            display: block;
            margin: 0 6px;
            transition: all .3s;
        }

    .header-top-hotline .icon img {
    }

.header-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}


.header-bottom {
    height: 68px;
}

.header-top-info .info-item-bottom {
    display: flex;
    align-items: center;
    color: var(--color-4);
}

    .header-top-info .info-item-bottom a {
        margin: 0 5px;
        transition: all .3s;
    }


        .header-top-info .info-item-bottom a:hover {
            color: var(--color-1);
        }

        .header-top-info .info-item-bottom a:last-child {
            margin-right: 0;
        }

.header-top-language {
    display: flex;
    align-items: center;
}

    .header-top-language .language-item:hover {
        color: var(--color-1);
    }

    .header-top-language .language-item {
        display: flex;
        align-items: center;
        text-transform: uppercase;
        color: var(--color-3);
        font-size: 13px;
        letter-spacing: 1px;
        margin-right: 18px;
        transition: all .3s;
    }

        .header-top-language .language-item.active {
            color: var(--color-1);
        }

        .header-top-language .language-item img {
            width: 12px;
        }

        .header-top-language .language-item span {
            display: block;
            margin-left: 5px;
            font-family: workSanRe;
        }

.header-options {
    display: flex;
    align-items: center;
}

.header-options-item {
}

    .header-options-item.search {
        position: relative;
    }

        .header-options-item.search:hover .drop {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

    .header-options-item .icon {
    }

        .header-options-item .icon img {
        }

    .header-options-item .drop {
        pointer-events: none;
        position: absolute;
        top: 100%;
        background-color: #fff;
        box-shadow: 0 0 10px 0 #3333332b;
        border-radius: 55px;
        display: flex;
        align-items: center;
        overflow: hidden;
        height: 32px;
        opacity: 0;
        right: 0;
        transition: 0.6s cubic-bezier(.3,2,.3,1);
        transform: translateY(12px);
    }

    .header-options-item input {
        outline: none;
        border: none;
        background-color: transparent;
        height: 100%;
        font-size: 13px;
        padding: 0 15px;
        max-width: 177px;
        color: var(--text-primary);
    }

    .header-options-item a {
        background-color: var(--color-2);
        color: #fff;
        font-size: 13px;
        padding: 10px;
    }

    .header-options-item.link {
        text-transform: uppercase;
        background-color: var(--color-1);
        border-radius: 55px;
        font-family: avertaSB;
        color: #fff;
        padding: 6px 18px;
        margin-left: 14px;
        transition: all .3s;
    }

        .header-options-item.link:hover {
            background-color: var(--color-2);
            color: var(--color-1);
        }
/* RS */
@media(max-width:1023px) {
    .header-btn-rs {
        display: block;
    }

    .header-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-options-item .drop {
        left: 0;
        right: unset;
    }

    .header-top-info .info-item {
        /* display: none; */
    }

        .header-top-info .info-item:nth-child(5) {
            display: flex;
        }

    .header-top-info p {
        display: none;
    }

    .header-top-container {
        padding-right: 20px;
        padding-left: 443px;
    }

    .header-right {
        position: absolute;
        right: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        top: 0;
    }

    header {
        position: relative;
        box-shadow: 0 0 10px 0 #33333321;
    }

        header.scroll {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
        }

    .header-center-list {
        display: none;
    }
}

@media(min-width:740px) and (max-width:1023px) {
    .header-top-card span {
        white-space: nowrap;
    }

    .header-top-info .info-item:last-child {
        /* display: none; */
    }
}

@media(max-width:739px) {
    .header-logo img {
        width: 130px;
    }

    .header-container {
    }

    .header-top-container {
        padding: 0 8px;
    }

    .header-logo {
        
		        transform: translateY(0);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-right-search {
        display: none;
    }

    .header-logo canvas {
        width: 60px;
    }

    .header-bottom.scroll .header-logo canvas {
        width: 80px;
        transform: translateY(19px);
    }

    .header-top-search {
        max-width: 189px;
    }

    .header-top-info .info-item:last-child {
        display: none;
    }

    .header-top-search input {
        font-size: 10px;
        width: 100%;
        padding: 0 10px;
    }

    .header-top-card span {
        font-size: 11px;
    }

    .header-top-info {
        justify-content: space-between;
        display: none;
    }

    .header-top {
        height: auto;
        padding: 6px 0;
    }

    .header-top-card {
        height: 34px;
    }

    .header-bottom.scroll {
        height: 56px;
    }

    .header-wrap {
        padding-left: 10px;
        margin-left: 10px;
    }

    .header-top::before {
        left: -10px;
    }
}
