* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /*cuộn mượt mà */
    font-family: Helvetica, Arial, sans-serif; /*set font chữ cho cả website , chữ không có chân*/
}

li {
    list-style-type: none; /*loại bỏ dấu chấm tròn*/
    font-weight: bold;
    display: flex;
}

a {
    text-decoration: none; /*loại bỏ gạch chân*/
    color: black; /*màu chữ*/
    width: 100%;
    height: 100%;
}

#header {
    /* right: 0;
    left: 0; */
    width: 100%;
    height: 90px;
    border-top: solid 4px #fcae18;
    z-index: 1000;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

#header .content {
    height: 100%;
    width: 100%;
    margin: 0 auto;
}

#header .content ul {
    margin: 0;
    padding: 0;
    margin-left: 70px;
}

#header .content ul li {
    border-bottom: 1px solid #eeeeee;
}


#header .content ul li:hover .text_h1 {
    cursor: pointer;
    color: #fcae18;
}

#header .content ul li .header_line_2 {
    position: absolute;
    min-width: 260px;
    margin-left: -30px;
    margin-top: 50px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
}

#header .content ul li .header_line_2 {
    display: none;
}

#header .content ul li:hover .header_line_2 {
    display: block;
    border-bottom: 1px solid #eeeeee;
}

#header .content ul li .li_hover:hover span,
#header .content ul li .li_hover:hover i {
    color: #94b83d;
}

#header .content ul li .li_hover:hover {
    cursor: pointer;
    background-color: rgba(128, 128, 128, 0.1);
}

#header .content .san-pham img{
    margin-top: 9px;
}

#header .content .san-pham .icon {
    display: inline-block;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: #94b83d;
}

.ti_number {
    float: right;
    margin-top: 3px;
}

#header .text_line_2 {
    float: left;
}

#header .content .i_right_number {
    font-size: 20px;
}

#header .content .user {
    height: 50px;
    width: 50px;
    margin-top: -14px;
    background-color: #5a191cec;
    border-radius: 50%;
    cursor: pointer;
}

#header .content .user_hover {
    display: none;
}

#header .content .user:hover .user_hover {
    display: block;
    width: 140px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    margin-top: 20px;
    margin-left: -30px;
    text-align: center;
    border-bottom: 1px solid #eeeeee;

}

#header .content .cart {
    width: 120px;
    margin-left: -25px;
    background-color: #5a191cec;
    justify-content: center;
    text-align: center;
    margin-top: -14px;
    border-radius: 30px;
    cursor: pointer;
}

.pointer {
    cursor: pointer;
}