header {}

header .anoucement {
    padding: 5px 0px;
}

header .anoucement ul li img {
    height: 20px;
    margin-right: 7px;
}

header .anoucement ul li a {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

header .anoucement ul li a span {
    margin-left: 5px;
    text-decoration: underline;
}

header .header-top {
    padding: 10px 0px 30px 0px;
}

header .logo img {
    height: 75px;
    margin-right: 40px;
    position: relative;
    top: 5px;
}

header .search {
    flex: 1;
}

header .search form {
    background-color: white;
    border-radius: 40px;
    overflow: hidden;
    padding: 0px 25px;
}

header .search form input {
    width: 100%;
    height: 50px;
    font-size: 15px;
}

header .search form input::placeholder {
    font-size: 15px;
    font-weight: 500;
    color: #838f9c;
    font-family: var(--font-body-family);
    opacity: 1;
}

header .search form svg {
    height: 20px;
}

header .search form button {
    position: absolute;
    padding: 0;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: #00a65238;
    right: 5px;
    top: 50%;
    transform: translate(0%, -50%);
}

header .search form button svg path {
    fill: #00a652;
}

header .search ul {
    position: absolute;
}

header .search ul li {
    margin-right: 15px;
    margin-top: 5px;
}

header .search ul li a {
    color: white;
    font-size: 14px;
}

header .cart {
    width: 150px;
    margin-left: 30px;
}

header .cart a {
    height: 50px;
    background-color: rgb(0, 166, 82);
    border-radius: 40px;
}

header .cart a svg {
    height: 20px;
    margin-right: 8px;
}

header .cart a svg path {
    fill: white;
}

header .cart a {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

header .system {
    margin-left: 30px;
    border: solid 1px #00a652;
    border-radius: 30px;
   
    background-color: rgba(0, 132, 53, 0.22);
}
header .system .system-box{
    padding: 10px 20px;
}
header .system a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  /* border: solid 1px #095fa9; */
  border-radius: 30px;
  /* padding: 10px 20px; */
}
header .system a svg {
  height: 20px;
  margin-right: 8px;
  fill: white;
}

header .header-menu {
    background-color: #00a652;
}

header .header-menu nav ul li a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 11px 0px 6px 0px;
    border-bottom: 2px solid #00a652;
    text-transform: uppercase;
}

header .header-menu nav ul li a svg {
    height: 18px;
    -webkit-transition: -webkit-transform 0.3s ease 0.2s;
    transition: transform 0.3s ease 0.2s;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    margin-left: 7px;
}

header .header-menu nav ul li:hover a svg {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

header .header-menu nav ul li a svg path {
    fill: rgb(101, 115, 132);
}

header .header-menu nav ul li:hover a {
    color: #ffa539;
    border-bottom: 2px solid #f7931c;
}

header .header-menu .submenu {
    position: absolute;
    left: 0;
    top: 100%;
    border-radius: 0px 0px 16px 16px;
    box-shadow: rgba(0, 0, 0, 0.13) 0px 16px 15px;
    background-color: white;
    width: 280px;
    padding: 15px;
    display: none;
    -webkit-transition: -webkit-transform 0.3s ease 0.2s;
    transition: display 0.3s ease 0.2s;
}

header .header-menu nav ul li .submenu li a {
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 500;
    padding: 9px 15px;
    border: 0px;
}

header .header-menu .submenu li:hover a {
    background-color: #edf0f3;
    border-radius: 5px;
    color: #020b27;
}

header .header-menu .submenu li a img {
    width: 24px;
    margin-right: 5px;
}

header .header-menu .submenu li:not(:first-child) a {
    border-top: 1px solid #edf0f3;
}

header .header-menu nav ul li:hover .submenu {
    display: block;
}
 header .header-top-body .btn-menu-mobile{
    display: none;
}
.count-label{
    display: flex;
    position: absolute;
    top: -9px;
    right: -1px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #de2c27;
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    justify-content: center;
    align-items: center; 
}
@media (max-width: 1200px) {
    header .anoucement {
        background-color: rgb(0, 166, 82);
    }

    header .header-top-body {
        flex-wrap: wrap;
    }

    header .search {
        width: 100%;
        flex: unset;
    }

    header .search ul {
        display: none !important;
    }

    header .header-menu {
        display: none;
    }

    header .header-top-body .btn-menu-mobile {
        order: 1;
        flex: 1;
    }

    header .header-top-body .logo {
        order: 2;
    }
    header .header-top-body .header-rht{
        order: 3;
        flex: 1;
        justify-content: right;
    }
    header .header-top-body .cart{
        margin-left: 0px;
        display: flex;
        justify-content: right;
        width: unset;
    }

    header .header-top-body .cart span {
        display: none;
    }
    header .header-top-body .cart .count-label{
        display: flex;
    }
    header .header-top-body .system {
        margin-right: 10px;
        margin-left: 0px;
        padding: 0px;
        border: 0px;
        background-color: transparent;
    }
    header .system .system-box {
        padding: 0px;
      }
    header .header-top-body .system a{
        height: 35px;
        width: 35px;
        background-color: #00a652;
        border-radius: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    header .header-top-body .system .nav-login  a{
        height: unset;
    width: unset;
    background-color: #fff;
    }
    header .system a svg {
        height: 21px;
        margin-right: 0px;
    }
    header .system a span{
        display: none;
    }
    header .header-top-body .search {
        order: 4;
        margin-top: 10px;
    }
    header .header-top-body .btn-menu-mobile{
        display: block;
    }
    header .header-top-body .btn-menu-mobile svg {
        height: 30px;
        width: 28px;
    }

    header .header-top-body .btn-menu-mobile svg path {
        fill: white;

    }

    header .cart a {
        height: 40px;
        background-color: rgb(0, 166, 82);
        border-radius: 100%;
        width: 40px;
    }

    header .cart a svg {
        margin-right: 0px;
    }

    header .header-top {
        padding: 15px 0px 15px 0px;
    }

    header .search form input {
        height: 40px;
    }

    header .search form input::placeholder {
        font-size: 13px;
    }

    header .search form button {
        height: 30px;
        width: 30px;
        right: 5px;
    }

    header .search form svg {
        height: 18px;
    }

    header .logo img {
        margin-right: 0px;
    }
}

@media (max-width: 786px) {
    .anoucement ul:last-child {
        display: none;
    }

    header .logo img {
        height: 58px;
    }

    header .search form {
        padding: 0px 15px;
    }

    header .search form input {
        height: 37px;
    }

    header .search form button {
        right: 4px;
    }

    header .cart a svg {
        height: 18px;
    }

    header .cart a {
        height: 35px;
        width: 35px;
    }
}


.menu_fix_mobile {
    position: fixed;
    z-index: 999999;
    height: 100%;
    width: 320px;
    top: 0;
    right: 0;
    background: #fff;
    transition: all 200ms linear 0s;
    transform: translateX(100%);
    padding: 20px;
}

.menu_fix_mobile.main-menu-show {
    transform: translateX(0%);
}

.menu_fix_mobile .close-menu {
    overflow: hidden;
    border-bottom: 1px solid #fff;
    /*! position: relative; */
}

.close-menu {
    padding-bottom: 5px;
}

.menu_fix_mobile .close-menu>a {
    float: right;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close-menu a svg {
    color: #222;
    height: 16px;
}

.close-menu span {
    font-size: 14px;
    color: #222;
    font-weight: 600;
}

.menu_fix_mobile ul {
    margin: 0;
    list-style: none;
}

.menu_fix_mobile ul li {
    float: left;
    position: relative;
    margin: 0;
    transition: 0.4s;
    width: 100%;
    /* border-bottom: 1px solid #cdcdcd9c; */
}

.menu-mobile-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-c2-mobile ul li {
    border-bottom: 1px solid #cdcdcd9c;
    padding-left: 10px;
}

.menu_fix_mobile ul li a {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 0px;
    color: #222;
    display: inline-block;
    width: 100%;
    /* border-bottom: 1px solid #cdcdcd9c; */
    line-height: normal;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    text-transform: uppercase;
}

.menu-c2-mobile {
    display: none;
}

.menu-c2-mobile.active-2 {
    display: block;
}

.list-bar--mobile {
    display: none;
}
