﻿header {
    box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.3);
    width: 100%;
    z-index: 10;
    background: #fff;
}

.header-content-top {
    background: #f03f5e;
    height: 30px;
    width: 100%;
}

    .header-content-top .content {
        align-items: center;
        display: flex;
        height: 30px;
        justify-content: flex-end;
        margin: 0 auto;
        max-width: 1300px;
        width: 100%;
    }

        .header-content-top .content span {
            color: #fff;
            font-size: 12px;
            margin: 0 15px;
        }

            .header-content-top .content span .fas {
                margin-right: 5px;
            }

.header_container {
    align-items: center;
    display: flex;
    height: 70px;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1300px;
    padding: 0 15px;
    position: relative;
    width: 100%;
    background: #000;
}

    .header_container .logo {
        color: #f03f5e;
        font-size: 40px;
        line-height: 20px;
        padding-right: 15px;
    }

    .header_container .open-search {
        border-radius: 3px;
        flex: auto;
        margin: 0 15px;
        overflow: hidden;
        position: relative;
    }

@media (max-width: 991px) {
    .header_container .open-search {
        margin: 0;
        position: static;
        text-align: right;
    }
}

.header_container .open-search .fa-search {
    display: none;
}

@media (max-width: 991px) {
    .header_container .open-search .fa-search {
        display: block;
    }
}

.header_container .open-search .input-open-search {
    display: none;
}

    .header_container .open-search .input-open-search:checked ~ .search {
        display: block;
    }

@media (max-width: 991px) {
    .header_container .search {
        display: none;
        position: absolute;
        left: 0;
        top: 70px;
        width: 100%;
        z-index: 999;
    }
}

.header_container .search .input-search {
    border-radius: 3px;
    border: 1px solid #e1e1e1;
    height: 40px;
    padding: 0 70px 0 15px;
    width: 100%;
}

    .header_container .search .input-search:focus {
        background-size: 100% 2px, 100% 1px;
        outline: none;
    }

.header_container .search .button-search {
    background: #f03f5e;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 13px 20px;
    position: absolute;
    right: 0px;
    top: 0px;
}

    .header_container .search .button-search .fa-search {
        display: block;
    }

.header_container .nav-content .nav-content-list {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

    .header_container .nav-content .nav-content-list .nav-content-item {
        align-items: center;
        display: flex;
        height: 40px;
        margin: 0 5px;
        position: relative;
        transition: 100ms all linear 0s;
    }

@media (max-width: 991px) {
    .header_container .nav-content .nav-content-list .nav-content-item {
        padding: 0 5px;
    }
}

.header_container .nav-content .nav-content-list .nav-content-item .item-arrow {
    margin-left: 5px;
    position: relative;
    top: -3px;
}

@media (max-width: 768px) {
    .header_container .nav-content .nav-content-list .nav-content-item .item-arrow {
        display: none;
    }
}

.header_container .nav-content .nav-content-list .nav-content-item .open-menu-login-account {
    align-items: center;
    cursor: pointer;
    display: flex;
    position: relative;
}

.header_container .nav-content .nav-content-list .nav-content-item .input-menu {
    display: none;
}

    .header_container .nav-content .nav-content-list .nav-content-item .input-menu:checked ~ .login-list {
        display: block;
    }

.header_container .nav-content .nav-content-list .nav-content-item .login-list {
    background: #fff;
    border-bottom: 3px solid #f03f5e;
    border-radius: 3px;
    box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.3);
    display: none;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 32px;
    transition: 100ms all linear 0s;
    width: 200px;
    z-index: 10;
}

    .header_container .nav-content .nav-content-list .nav-content-item .login-list .login-list-item {
        padding: 8px 20px;
    }
    .header_container .nav-content .nav-content-list .nav-content-item .login-list .login-list-item a {
            color: #232121;
    }
        .header_container .nav-content .nav-content-list .nav-content-item .login-list .login-list-item:hover {
            background: #f03f5e;
        }

            .header_container .nav-content .nav-content-list .nav-content-item .login-list .login-list-item:hover a {
                color: #fff;
            }

.header_container .nav-content .nav-content-list .nav-content-item:nth-child(2):hover .fas {
    color: #e74c3c;
}

.header_container .nav-content .nav-content-list .nav-content-item:hover .fas {
    color: #f03f5e;
}

.header_container .nav-content .nav-content-list .account-login .login-text {
    align-items: end;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    margin-left: 5px;
    line-height: 14px;
}

@media (max-width: 991px) {
    .header_container .nav-content .nav-content-list .account-login .login-text {
        display: none;
    }
}

.header_container .nav-content .nav-content-list .account-login .login-text strong {
    display: block;
}

.header_container .nav-content .nav-content-list .nav-content-link {
    border-radius: 3px;
    font-size: 19px;
    padding: 10px 15px;
    transition: 100ms all linear 0s;
}
.header_container .nav-content .nav-content-list .nav-content-link i {
    color: #353131;
}

@media (max-width: 991px) {
    .header_container .nav-content .nav-content-list .nav-content-link {
        padding: 0;
    }
}

/*.nav-container {
    align-items: center;
    display: flex;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
}*/

    .nav-container .nav-row {
        align-items: center;
        display: flex;
        height: 40px;
        justify-content: space-between;
        margin: 0;
        padding: 0;
    }

@media (max-width: 991px) {
    .nav-container .nav-row {
        display: none;
    }
}

.nav-container .nav-row .nav-row-list {
    flex: auto;
}

    .nav-container .nav-row .nav-row-list .nav-row-list-link {
        color: #232121;
        align-items: center;
        display: flex;
        height: 40px;
        justify-content: center;
        transition: 100ms all linear 0s;
    }

        .nav-container .nav-row .nav-row-list .nav-row-list-link:hover {
            background: #e1e1e1;
            width: 100%;
        }

.nav-container .featured-category {
    flex: auto;
    margin: 0 15px 0 0;
}

@media (max-width: 991px) {
    .nav-container .featured-category {
        display: none;
    }
}

.nav-container .all-navigator {
    align-items: center;
    background: #f03f5e;
    color: #fff;
    display: flex;
    height: 40px;
    padding: 0 25px;
    width: 100%;
}

@media (max-width: 991px) {
    .nav-container .all-navigator {
        margin-right: 0;
    }
}

.nav-container .all-navigator .fa-angle-up,
.nav-container .all-navigator .fa-angle-down {
    position: absolute;
    right: 25px;
}

.nav-container .all-navigator .fa-angle-up {
    display: none;
}

.nav-container .all-navigator .fas {
    font-size: 16px;
    margin-right: 0;
}

.nav-container .all-navigator span {
    margin-left: 15px;
}

.nav-container .all-category-nav {
    cursor: pointer;
    max-width: 300px;
    position: relative;
    width: 100%;
}

@media (max-width: 991px) {
    .nav-container .all-category-nav {
        max-width: 100%;
    }
}

.nav-container .all-category-nav .open-menu-all {
    align-items: center;
    cursor: pointer;
    display: flex;
    position: relative;
}

.nav-container .all-category-nav .input-menu-all {
    display: none;
}

    .nav-container .all-category-nav .input-menu-all:checked ~ .all-category-list {
        display: block;
    }

    .nav-container .all-category-nav .input-menu-all:checked + .all-navigator .fa-angle-down {
        display: none;
    }

    .nav-container .all-category-nav .input-menu-all:checked + .all-navigator .fa-angle-up {
        display: block;
    }

.nav-container .all-category-list {
    background: #fff;
    border-bottom: 3px solid #f03f5e;
    box-shadow: 2px 9px 49px -17px rgba(0, 0, 0, 0.3);
    display: none;
    height: auto;
    min-height: 300px;
    padding: 0;
    position: absolute;
    top: 40px;
    width: 300px;
    z-index: 90;
}

@media (max-width: 991px) {
    .nav-container .all-category-list {
        min-width: 100%;
    }
}

.nav-container .all-category-list-item:hover {
    display: block;
    background: #f03f5e;
}

    .nav-container .all-category-list-item:hover .category-second-list {
        left: 100%;
        opacity: 1;
        visibility: visible;
    }

    .nav-container .all-category-list-item:hover .all-category-list-link {
        color: #fff;
    }

.nav-container .all-category-list-link {
    color: #232121;
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    transition: 100ms all linear 0s;
}

.nav-container .category-second-list {
    background: #fff;
    border-bottom: 3px solid #f03f5e;
    box-shadow: inset 44px -1px 88px -59px rgba(0, 0, 0, 0.37);
    display: flex;
    height: 322px;
    left: 80%;
    min-height: 297px;
    min-width: 400px;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: 100ms all linear 0s;
    visibility: hidden;
    width: auto;
}

@media (max-width: 991px) {
    .nav-container .category-second-list {
        display: none;
    }
}

.nav-container .category-second-list .img-product-menu img {
    max-width: 180px;
}

.nav-container .category-second-list-ul {
    display: flex;
    flex-direction: column;
    min-width: 400px;
    padding: 0 15px;
}

.nav-container .category-second-item a {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    color: #232121;
}

.nav-container .category-second-item:hover {
    background: #f03f5e;
}

    .nav-container .category-second-item:hover a {
        color: #fff;
    }

.fa-bars {
    font-size: 28px;
}
