/* ============================= HEADER ============================= */
.header {
    background-color: #fff;
    box-shadow: rgba(33, 35, 38, 0.3) 0px 10px 10px -10px;
}
.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}
.logo-header  {
    width: 380px;
}
.contact {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    flex-wrap: wrap;
    width: 100vh;
}
.contact__item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.contact__item:last-child {
    margin-left: 15px;
}
.contact__item-icon {
    width: 40px;
    height: 40px;
}
.contact__item-text {
    padding-left: 10px;
    display: flex;
    justify-content: flex-start;
    justify-items: flex-start;
    flex-direction: column;
}
.contact__item-text label {
    font-size: 13px;
    color: #454545;
}
.contact__item-text span {
    font-size: 12px;
    color: #333333;
    font-weight: bold;
}

.header__bottom {
    padding: 0 30px;
    border-top: 1px solid #E6E7EB;
}
.menu-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
}
.menu-header__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
}
.menu-header__link {
    padding: 0 15px;
    font-size: 15px;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s;
}
.menu-header__link:hover {
    color: var(--color-primary);
}
.home-title {
    font-size: 15px;
    padding-right: 15px;
    border-right: 1px solid #E6E7EB;
    margin: 0;
    text-decoration: none;
}
.home-title a {
    text-decoration: none;
    color: #333333;
    transition: all 0.3s;
}
.home-title a:hover {
    color: var(--color-primary);
}
.search-form {
    flex-grow: 1;
    width: 100%;
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    border-radius: 80px;
    overflow: hidden;
}
.search-form input {
    flex-grow: 1;
    height: 100%;
    border: none;
    padding-left: 20px;
    font-size: 14px;
    color: #333;
}
.search-form input:focus {
    border: none;
    outline: none;
}
.search-form button {
    width: 150px;
    background-color: var(--color-primary);
    color: #fff;
    height: 100%;
    border: none;
    transition: all 0.3s;
}
.search-form button img {
    margin-right: 5px;
}
.search-form button:hover {
    background-color: var(--color-primary-hover);
}
.sidebarLeft {
    position: fixed;
    width: 85%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 999999;
    top: 0;
    left: -85%;
    transition: all 0.45s;
}
.sidebarLeft.open {
    left: 0;
}
.btn-close-sidebar {
    position: absolute;
    right: 12px;
    top: 12px;
}
.siderbar__logo {
    width: 160px;
    margin-top: 20px;
    margin-left: 20px;
}
.sidebar__list {
    margin-top: 50px;
    margin-bottom: 0;
    padding: 0;
    border-top: 1px solid #0a771d;
}
.sidebar__link {
    display: block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #0a771d;
    transition: all 0.3s;
}
.sidebar__link:hover {
    color: #fff;
    background-color: var(--color-primary-hover);
}
.sidebar__link i {
    margin-right: 5px;
}
.owl-customer-review .owl-nav {
    position: absolute;
    top: 40%;
    left: 10px;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.owl-customer-review:hover .owl-nav {
    left: -15px;
    width: calc(100% + 30px);
    visibility: visible;
    opacity: 1;
}
.owl-customer-review .owl-nav button.owl-next,
.owl-customer-review .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s;
}
.owl-customer-review .owl-nav button.owl-next:hover,
.owl-customer-review .owl-nav button.owl-prev:hover {
    background-color: var(--color-primary-hover);
}
/* ============================= ./end HEADER ============================= */

/* ============================= CONTENT ============================= */
.heading {
    padding: 15px 0;
}
.heading__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.heading__title {
    margin-right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #666666;
    margin-bottom: 0;
    padding: 0;
    text-transform: uppercase;
}
.heading__line {
    border: 3px solid #DCDEE3;
    border-radius: 3px;
    overflow: hidden;
    flex-grow: 1;
}
.heading__desc {
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    margin-top: 12px;
}
.postBox__image {
    height: 180px;
    overflow: hidden;
    border: 1px solid #eee;
}
.postBox__content {
    padding: 40px 10px 10px 10px;
    position: relative;
}
.postBox__content-title {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    transition: all 0.3s;
    padding-top: 28px;
    display: block;
    width: 100%;
}
.postBox__content-title:hover {
    color: var(--color-primary-hover);
}
.postBox__content-desc {
    margin-top: 8px;
    color: #666666CC;
    font-size: 13px;
    text-align: justify;
}
.postBox__bottom {
    position: relative;
}
.postBox__bottom-time {
    font-size: 13px;
    position: absolute;
    left: 10px;
    top: 10px;
    color: var(--color-grey-note);
}
.customerReviews {
    margin-bottom: 5vh;
}
.owl-partner .owl-item {
    display: flex !important;
    align-items: center !important;
}
.partnerBox {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.partnerBox img {
    width: 100%;
    display: block;
    object-fit: cover;
}
.staff-section {
    padding-top: 50px;
    padding-bottom: 30px;
}
.card.staff {
    padding-top: 20px;
    position: relative;
    border-color: transparent;
    border-radius: 0;
    cursor: pointer;
}
.staff__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    right: 15px;
    top: 15px;
    overflow: hidden;
}
.staff__avatar img {
    width: 100%;
}
.btn-call-to-stafff {
    position: absolute;
    right: 20px;
    top: 30px;
    width: 45px;
    height: 45px;
    background: #29B6F6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 22px;
}
.btn-call-to-stafff:hover {
    color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.staff__body {
    padding: 15px;
}
.staffName {
    font-size: 16px;
    font-weight: bold;
    color: #2C3350;
    padding: 0;
    margin-bottom: 3px;
    color: #454545;
}
.positionName {
    font-size: 15px;
}
.staff_desc {
    font-size: 14px;
    text-align: center;
    color: var(--color-grey-note);
    height: 80px;
}
.product-grid {
    padding: 30px 0;
}
.product__row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.product__col {
    width: 16.66%;
    padding-right: 12px;
    margin-bottom: 12px;
}
.product__item {
    border: 1px solid #eee;
    transition: all 0.3s;
}
.product__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}
.product__item:hover {
    box-shadow: 0 8px 17px 0 rgb(0 0 0 / 15%)
}
.product__content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px;
}
.product__name {
    font-size: 13px;
    color: #333333;
    text-decoration: none;
    height: 60px;
}
.product__name:hover {
    text-decoration: underline;
    color: #333333;
}
.btn-product-view {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    background-color: var(--color-primary);
    color: #fff;
    width: 100%;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-product-view:hover {
    color: #fff;
    background-color: var(--color-primary-hover);
}
.productGroup {
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.productGroup__image {
    width: 320px;
    height: 300px;
    overflow: hidden;
}
.productGroup__grid {
    background-color: #fff;
    width: calc(100% - 320px);
    height: 300px;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}
.productGroup__grid .line-thougth {
    position: absolute;
    left: 0;
    top: 150px;
    width: 100%;
    height: 1px;
    background-color: #eee;
}
.productGroup__grid-item {
    width: 33.33%;
    border-right: 1px solid #eee;
    height: 150px;
    overflow: hidden;
    padding: 10px;
    position: relative;
}
.productGroup__grid-item .price-box {
    position: absolute;
    top: 60px;
    left: 15px;
    display: flex;
    flex-direction: column;
}
.productGroup__grid-item .price-box .price {
    color: #1E8449;
    font-weight: bold;
    font-size: 16px;
}
.productGroup__grid-item .price-box .discount {
    font-size: 14px;
    margin-top: 5px;
    text-decoration: line-through;
    color: #566573;
}
.product-name {
    font-size: 15px;
    font-weight: bold;
    color: #454545;
}
.product-name a {
    color: #454545;
    text-decoration: none;
}
.product-name a:hover {
    color: #454545;
    text-decoration: underline;
}
.product-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    right: 10px;
    bottom: 0;
}
.slide-wrapper {
    background-image: url('../img/bg-natural.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slideBox {
    width: 1322px;
    margin: 30px 0;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: flex;
    align-items: flex-start;
    padding: 20px;
}
.slideBox .navigate {
    width: 320px;
    min-height: 410px;
    margin-right: 15px;
}
.navigate {
    padding-right: 10px;
}
.navigate i {
    display: none;
}
.navigate__title {
    font-size: 16px;
    font-weight: bold;
    color: #454545;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}
.navigate__list {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    max-height: 400px;
    overflow-y: scroll;
}
.navigate__list-item {
    padding: 5px 0;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 5px;
    cursor: pointer;
    transition: all 0.2s;
}
.navigate__list-item:hover {
    color: var(--color-primary);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.navigate__list-link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
.navigate__list-image {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #eee;
    background-color: rgba(0, 0, 0, 0.05);
}
.navigate__list-name {
    margin-bottom: 0;
    padding-left: 10px;
    font-size: 14px;
    height: auto;
    color: #333;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}
.navigate__list-name:hover {
    color: var(--color-primary);
}
.slideBox .slide-container {
    width: calc(1322px - 320px);
    overflow: hidden;
}
.btn-toggle {
    display: none;
}
.breadcrumb__wrap {
    background-color: #f9f9f9;
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid rgb(231, 231, 231);
}
.breadcrumb {
    margin-bottom: 0;
}
.breadcrumb-item a {
    color: #454545;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
}
.breadcrumb-item a:hover,
.breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: bold;
}
.article-wrap {
    padding: 30px 0;
}
.article-content {
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 3px solid var(--color-primary-hover);
    padding: 15px;
}
.article__title {
    font-size: 22px;
    color: #454545;
    padding: 10px 0;
    margin: 0;
}
.article__widget {
    font-size: 14px;
    color: #969696;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.article__widget span {
    margin-right: 10px;
}
.article__widget span i {
    color: var(--color-primary);
    margin-right: 5px;
}
.sidebar {
    background-color: #fff;
    padding: 12px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 3px solid var(--color-primary-hover);
}
.sidebar__item-title {
    font-size: 18px;
    color: #454545;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.sidebar__item-list {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar__item-list li {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    color: #5c5b5b;
    font-size: 15px;
}
.sidebar__item-list li a {
    color: #5c5b5b;
    text-decoration: none;
    transition: all 0.3s;
}
.sidebar__item-list li a:hover {
    color: var(--color-primary);
}
.sidebar__item-list li a i {
    width: 15px;
}
.news {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.news__item {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}
.news__item a {
    display: flex;
    text-decoration: none;
}
.news__item-image {
    max-width: 80px;
    overflow: hidden;
}
.news__item-content {
    padding-left: 8px;
}
.news__item-content-title {
    font-size: 15px;
    color: #5a5a5a;
    margin-bottom: 5px;
    padding: 0;
}
.news__item-content-title:hover {
    text-decoration: underline;
}
.news__item-content-time {
    font-size: 12px;
    color: #666666;
}
.articleList {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px;
    background-color: #fff;
    margin-top: 15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 3px solid var(--color-primary-hover);
}
.postBox__content {
    padding: 10px;
}
.postBox {
    width: 25%;
    margin-bottom: 12px;
    background: #fff;
    padding: 8px;
}
.btn-view-post {
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: bold;
}
.postBox__content-title.color-black {
   color: #454545;
}
.articleImg {
    margin-bottom: 10px;
    height: 200px;
    overflow: hidden;
}
.postBox.full-width {
    width: 100%;
}
.nav {
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 3px solid var(--color-primary-hover);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 15px;
}
.display {
    display: flex;
    justify-content: center;
    align-items: center;
}
.option-panel {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}
.show-text,
.option-show {
    margin-right: 20px;
    font-size: 15px;
    color: #555555;
}
.show-text {
    margin-bottom: 0;
}
.option-show select {
    width: 120px;
    text-align: center;
    border: none;
    border-bottom: 2px solid #eee;
    padding: 5px 0;
}
.nav-pills .nav-link {
    border-radius: 0;
}
.nav-link {
    padding: 0;
    width: 35px;
    height: 35px;
    background-color: var(--color-primary);
    font-size: 15px;
    color: #555555;
}
.nav-link:hover {
    color: var(--color-primary);
}
.nav-pills
.nav-link.active,
.nav-pills .show > .nav-link {
    padding: 0;
    width: 35px;
    height: 35px;
    background-color: var(--color-primary);
    font-size: 15px;
}
.product-vertical {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    padding: 10px 0 10px 10px;
}
.product-vertical .productBox {
    width: 20%;
    padding-right: 10px;
    margin-bottom: 12px;
    cursor: pointer;
}
.product-vertical .productBox__image {
    height: 156px;
    overflow: hidden;
}
.product-vertical .productBox__content-name-link {
    font-size: 13px;
    text-decoration: none;
    margin-top: 10px;
    color: #454545;
    display: block;
    height: 70px;
    overflow: hidden;
}
.product-vertical .productBox__content-name-link:hover {
    color: var(--color-primary-hover);
}
.product-vertical .productBox__content-price-price {
    color: #1E8449;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}
.product-horizal .productBox {
    width: 100%;
    background-color: #fff;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
}
.product-horizal .productBox .productBox__image {
    width: 25%;
}
.product-horizal .productBox .productBox__content {
    width: 75%;
    padding-left: 12px;
    flex-grow: 1;
}
.product-horizal .productBox .productBox__content .productBox__content-name-link {
    font-size: 15px;
    color: #454545;
    text-decoration: none;
    transition: all 0.3s;
}
.product-horizal .productBox .productBox__content .productBox__content-name-link:hover {
    color: var(--color-primary);
}
.product-horizal .productBox .productBox__content .productBox__content-price-price {
    color: var(--color-primary-hover);
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}
.productBox__content-price-discount {
    font-size: 13px;
    text-decoration: line-through;
    color: #566573;
}
.cardProduct__head {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top: 3px solid var(--color-primary-hover);
    background-color: #fff;
    margin-top: 30px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.cardProduct__head h3 {
    font-size: 18px;
    color: #454545;
    margin-bottom: 0;
    padding: 0;
}
.productContent__head-wishlist {
    font-weight: bold;
    font-size: 24px;
    color: var(--color-primary);
    cursor: pointer;
}
.productContent__detail {
    background-color: #fff;
    padding: 20px;
}
.product-detail-top {
    font-size: 15px;
}
.productInfo {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 30px;
}
.product-desc {
    margin: 20px 0;
    padding: 15px 10px;
    border: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    border-radius: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 5;
    height: 145px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.btn-contact {
    background-color: var(--color-primary);
    width: 250px;
    padding: 15px 0;
    color: #fff;
}
.btn-contact:hover {
    background-color: var(--color-primary-hover);
    color: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.btn-view-detail {
    color: var(--color-primary);
    padding: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.btn-view-detail:hover {
    color: var(--color-primary-hover);
}
.policyBox {
    border: 1px solid #eee;
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.policyBox__title {
    font-size: 16px;
    padding: 12px;
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
}
.policyBox li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
}
.policyBox__icon {
    width: 40px;
    height: 40px;
    color: #FFF;
    border-radius: 50%;
    background-color: var(--color-primary-hover);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.policyBox li span {
    font-size: 14px;
    padding-right: 5px;
    padding-left: 10px;
    font-weight: bold;
    color: #666666;
}
.featured {
    background-color: #fff;
    padding: 12px;
}
.featured .productBox .productBox__image {
    height: 240px;
}
.featured .productBox .productBox__content .productBox__content-name-link {
    margin-top: 10px;
    color: #454545;
    text-decoration: none;
    font-size: 14px;
    display: block;
    height: 65px;
    margin-bottom: 15px;
}
.featured .productBox .productBox__content .productBox__content-price {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 15px;
}
.featured .owl-nav {
    position: absolute;
    top: 40%;
    left: 10px;
    width: calc(100% - 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.featured:hover .owl-nav {
    opacity: 1;
    visibility: visible;
    left: -10px;
    width: calc(100% + 20px);
    cursor: pointer;
}
.featured .owl-nav button.owl-next,
.featured .owl-nav button.owl-prev {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s;
}
.featured .owl-nav button.owl-next:hover,
.featured .owl-nav button.owl-prev:hover {
    background-color: var(--color-primary-hover);
}
.sub-swiper {
    margin-top: 10px;
}
.sub-swiper .swiper-slide {
    border: 1px solid #ccc;
    width: 60px;
    height: 60px;
    overflow: hidden;
    cursor: pointer;
}
.main-swiper .swiper-slide {
    border: 1px solid #ccc;
    width: 400px;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
}
.sellingProducts {
    margin-bottom: 10vh;
}
.video {
    padding: 12vh 0;
    background-color: #fff;
}
.video__content-title {
    font-size: 20px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.video__content-desc {
    font-size: 15px;
    color: #454545;
    text-align: justify;
}
.video__image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.image-box {
    width: 500px;
    height: 280px;
    border: 8px solid var(--color-primary);
    position: relative;
}
.image__inner {
    position: absolute;
    left: -25px;
    bottom: -20px;
    width: 480px;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s;
}
.image__inner:hover {
    left: -40px;
    bottom: -40px;
}
/* ============================= ./end CONTENT ============================= */

/* ============================= FOOTER ============================= */
.footer {
    background-color: var(--color-blue-bold);
}
.partner {
    padding-top: 30px;
    background: #fff;
}
.subscribe {
    padding-top: 50px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.subcribe__title {
    color: #ffff;
    font-size: 15px;
    width: 100%;
    text-align: center;
}
.subcribe__content {
    max-width: 430px;
}
.subscribe__form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.subscribe__form input,
.subscribe__form button {
    padding: 10px;
    outline: none;
}
.subscribe__form input {
    width: 300px;
    height: 40px;
    background: var(--color-black-light);
    margin-right: 8px;
    font-size: 15px;
    border: 1px solid #dae2ed;
    color: #Fff;
    font-weight: 400;
}
.subscribe__form input:focus {
    border-color: #fff;
}
.subscribe__form button {
    padding: 0 20px;
    height: 40px;
    background: transparent;
    font-weight: 400;
    border: 1px solid #dae2ed;
    color: #fff;
    border-radius: 2px;
}
.subscribe__note {
    font-size: 12px;
    margin-top: 3px;
    color: var(--color-grey-note);
}
.footer__content {
    padding-top: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #313D52;
}
.footerList__title {
    font-size: 18px;
    font-weight: bold;
    color: #ffff;
}
.footerList__desc {
    color: #fff;
}
.footerList__desc p {
    font-size: 13px;
}
.footerList__desc p.companyName {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}
.footerList__desc p {
    margin-bottom: 3px;
}
.footerList__wrap {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-top: 15px;
}
.footerList__wrap li {
    color: #fff;
    font-size: 13px;
    margin-bottom: 5px;
}
.footerList__wrap li a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}
.footerList__wrap li a:hover {
    color: var(--color-primary);
}
.footerList__wrap li a.phone-bold {
    font-weight: bold;
    font-size: 14px;
    color: var(--color-primary);
}
.footerSocial__list {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 26px;
    display: flex;
    margin-right: 5px;
}
.footerSocial__list li a {
    color: #A7A7A7;
    transition: all 0.3s;
    margin-right: 10px;
}
.footerSocial__list li a:hover {
    color: #fff;
}
.QRCode {
    padding: 20px 0;
    cursor: pointer;
}
.QRCode img {
    max-width: 60px;
}
.copyright {
    padding: 15px 0;
    background: #333;
}
.copyright p {
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin: 0;
    padding: 0;
    color: #fff;
}
.copyright p a {
    color: #fff;
    text-decoration: none;
}
.popup-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-overlay.open {
    visibility: visible;
    opacity: 1;
}
.popup {
    margin-top: -30px;
    width: 1200px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.open .popup {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}
.popup__image {
    width: 55%;
}
.popup__form {
    width: 45%;
    padding: 15px;
}
.popup__form {
    position: relative;
}
.close-popup {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 35px;
    cursor: pointer;
}
.popup__form-head {
    margin-bottom: 15px;
}
.popup__form-body {
    width: 100%;
    height: 100%;
}
.popup__form-head-title {
    font-size: 24px;
    color: var(--color-primary-hover);
    text-transform: uppercase;
    padding-top: 20px;
    font-weight: bold;
}
.popup__form-head-desc {
    font-size: 14px;
    color: #5a5a5a;
}
.form__quote {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.form__quote input,
.form__quote textarea,
.form__quote button {
    width: 100%;
}
.form__quote input,
.form__quote textarea {
    border-top: none;
    border-left: none;
    border-right: none;
    padding: 8px 0;
    font-size: 14px;
    margin-bottom: 5px;
    transition: all 0.3s;
    color: #454545;
    border-color: #eee;
}
.form__quote input:hover,
.form__quote textarea:hover,
.form__quote input:focus,
.form__quote textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.form__quote button {
    padding: 10px 0;
    margin-top: 8px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s;
}
.form__quote button:hover {
    background-color: var(--color-primary-hover);
}
.form__quote button i {
    margin-right: 5px;
}
.reload {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.45);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.loadding {
    width: 50px;
    height: 50px;
    border: 6px solid #c2c2c2;
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}
.reload.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    bottom: 80px;
    right: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
    border-radius: 5px;
}
.back-to-top.active {
    bottom: 100px;
    right: 40px;
    visibility: visible;
    opacity: 1;
}
.back-to-top:hover {
    background-color: var(--color-primary-hover);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.back-to-top img {
    width: 20px;;
}
/* ============================= ./end FOOTER ============================= */
.price-box .price {
    font-size: 25px;
    color: #454545;
    font-weight: bold;
    color: #2d953e;
    margin-right: 8px;
}
.price-box .discount {
    font-size: 18px;
    text-decoration: line-through;
    color: #566573;
}

/* ========= Shopping Cart ========= */
.shopping-cart-panel {
    width: 380px;
    height: 100vh;
    max-height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -380px;
    z-index: 999999;
    box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in;
    padding: 30px 15px 50px 15px;
}
.shopping-cart-panel.open {
    right: 0;
    visibility: visible;
    opacity: 1;
}
.shopping-cart-panel .shopping-cart__heading span {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: bold;
    color: #222;
}

.shopping-cart-panel .btn-close {
    font-weight: normal;
    font-size: 18px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}
.shopping-cart__list {
    min-height: 250px;
    max-height: 520px;
    overflow-y: scroll;
    margin-top: 25px;
    padding-right: 12px;
    padding-top: 12px;
}
.shopping-cart__buttons {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 20px;
    right: 15px;
    width: calc(100% - 30px);
}
.btn-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.shopping-cart__buttons .btn {
    width: calc(50% - 4px);
    height: 45px;
    border-radius: 8px;
    font-weight: 600;
}
.btn-buy-continue {
    border: 2px solid #283747;
    color: #283747;
    transition: all 0.25s ease-in;
}
.btn-buy-continue:hover {
    background-color: #f9f9f9;
}
.btn-checkout {
    background-color: var(--color-primary);
    color: #fff;
    transition: all 0.25s ease-in;
}
.btn-checkout:hover {
    color: #fff;
    background-color: #0e7c20;
}

.btn-checkout .amount {
    position: absolute;
    top: -40px;
    right: 15px;
    color: #000;
    font-size: 20px;
}

.shoping-cart__item {
    display: flex;
    position: relative;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid #eee;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 10px;
    min-height: 150px;
}

.shoping-cart__item .btn-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    z-index: 999;
    cursor: pointer;
    transition: all 0.25s ease-in;
}

.shoping-cart__item .btn-remove:hover {
    background-color: #eee;
}

.shoping-cart__item .btn-remove img {
    max-width: 60%;
}

.shoping-cart__item .shoping-cart__item-image {
    width: 80px;
}
.shoping-cart__item .shoping-cart__item-image img {
    width: 70px;
    max-width: 80px;
}
.shopping-cart__item-info-heading h2 {
    font-size: 15px;
    color: #333;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 20px;
    -webkit-line-clamp: 1;
    height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}
.shopping-cart__item-info {
    padding-left: 15px;
}
.shopping-cart__item-info-heading p {
    color: #424949;
    font-size: 14px;
}
.shopping-cart__item-info-heading p span:last-child {
    font-weight: 600;
}
.shopping-cart__item-info-bottom {
    display: flex;
    align-items: center;
}
.shopping-cart__item-info-bottom .discount {
    margin-right: 12px;
    font-size: 14px;
    color: #616A6B;
    text-decoration: line-through;
}
.shopping-cart__item-info-bottom .price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 17px;
}
.shopping-cart-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
}
.shopping-cart-controls .minus,
.shopping-cart-controls .plus,
.shopping-cart .quantity .minus,
.shopping-cart .quantity .plus {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 22px;
    transition: all 0.15s ease-in;
    cursor: pointer;
}
.shopping-cart-controls .minus:hover,
.shopping-cart-controls .plus:hover,
.shopping-cart .quantity .minus:hover,
.shopping-cart .quantity .plus:hover  {
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.shopping-cart-controls input,
.shopping-cart .quantity input {
    width: 35px;
    border: none;
    text-align: center;
    color: #566573;
}
.shopping-cart-controls input:focus,
.shopping-cart .quantity input:focus {
    outline: none;
}

.shopping-cart {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.shopping-cart .quantity {
    display: flex;
}
.btn.add-to-cart {
    margin-left: 30px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    min-width: 260px;
    border-radius: 6px;
}
.btn.add-to-cart i {
    margin-right: 8px;
}
.btn.add-to-cart:hover {
    background-color: #0e7c20;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.btn-shopping-cart {
    width: 55px;
    height: 55px;
    background-color: rgb(186, 140, 99);
    position: fixed;
    bottom: 180px;
    right: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.5s ease-in;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    z-index: 100;
}

.btn-shopping-cart:hover {
    background-color: rgb(153, 117, 90);
}

.btn-shopping-cart span.count {
    position: absolute;
    top: -5px;
    left: -10px;
    width: 25px;
    height: 25px;
    background-color: #0e7c20;
    border-radius: 50%;
    color: #fff;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.btn-shopping-cart img {
    max-width: 60%;
}

.shopping-cart-panel .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    transition: all 0.25 ease;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.shopping-cart-panel .overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
/* ========= ./end Shopping Cart ========= */

/* ========= Checkout ========= */
.card-payment {
    border-radius: 0;
    border-top: 5px solid #0e7c20;
    border-left: none;
    border-right: none;
    border-bottom: none;
}

.shopping-cart-detail__heading {
    font-size: 20px;
    text-transform: uppercase;
    color: #454545;
    font-weight: bold;
}
/* ========= ./end Checkout ========= */

/* ========= Form ========= */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    margin-bottom: 5px;
    font-size: 15px;
    position: relative;
}

.form-group label.required::after {
    content: '*';
    font-weight: bold;
    font-size: 18px;
    color: #e74c3c; 
    position: absolute;
    right: -12px;
    top: 0;
}

.form-control {
    font-size: 15px;
    border-radius: 0;
}

.form-group {
    position: relative;
}

.form-group label.error {
    position: absolute;
    bottom: -28px;
    left: 0;
    font-size: 14px;
    color: red;
}

.form-group .valid {
    border: 1px solid #0e7c20;
}

.form-control:focus {
    box-shadow: none;
    border: 1px solid #3f3f3f;
}
/* ========= ./end Form ========= */

/* ========= Checkout Cart ========= */
.checkout-cart-heading {
    border-bottom: 2px solid #e6e6e6;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.checkout-cart-box {
    display: flex;
    flex-direction: column;
}

.checkout-cart-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e6e6e6;
}

.checkout-cart-item-img {
    max-width: 80px;
    max-height: 80px;
    overflow: hidden;
}

.checkout-cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.checkout-cart-item-detail {
    padding-left: 12px;
    display: flex;
    flex-direction: column;
}

.checkout-cart-item-detail .name {
    font-size: 15px;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 25px;
    -webkit-line-clamp: 2;
    height: 50px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.checkout-cart-item-detail .price {
    font-weight: bold;
    color: #0a771d;
    font-size: 15px;
}

.checkout-cart-item-detail .price span {
    font-weight: normal;
    color: #000;
    font-size: 15px;
}

.checkout-cart-total {
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #222;
}

.checkout-cart-total span:last-child {
    color: #0e7c20;
}

.button-88 {
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  padding: 0.7em 1.4em 0.7em 1.1em;
  color: white;
  background: #ad5389;
  background: linear-gradient(0deg, rgba(20,167,62,1) 0%, rgba(102,247,113,1) 100%);
  border: none;
  box-shadow: 0 0.7em 1.5em -0.5em #14a73e98;
  letter-spacing: 0.05em;
  border-radius: 20em;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-88:hover {
  box-shadow: 0 0.5em 1.5em -0.5em #14a73e98;
}

.button-88:active {
  box-shadow: 0 0.3em 1em -0.5em #14a73e98;
}

.btn-checkout {
    height: 50px;
    margin: 0 auto;
}
/* ========= ./end Checkout Cart ========= */

/* Distribution system */
.distribution-system {
    position: relative;
    margin: 15px 0;
}

.distribution-system-popup {
    position: absolute;
    width: 320px;
    top: -150px;
    right: -40px;
    z-index: 10;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in;
    padding: 15px;
}

.distribution-system-popup::after {
    position: absolute;
    content: '';
    width: 18px;
    height: 18px;
    background-color: #fff;
    left: -10px;
    top: 38%;
    transform: rotate(-45deg);
    border-left: 1px solid #eee;
    border-top: 1px solid #eee;
}

.distribution-system-popup.show {
    right: -20px;
    opacity: 1;
    visibility: visible;
}

.distribution-system-link {
    font-size: 16px;
    font-weight: bold;
    color: #2471a3;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.distribution-system-link:hover {
    text-decoration: underline;
    color: #2471a3;
}

.distribution-system-link img {
    max-width: 24px;
    margin-right: 10px;
}

.distribution-system-popup-heading {
    font-size: 20px;
    color: #333;
    font-weight: normal;
}

.distribution-system-popup-filter .form-group {
    margin-bottom: 8px;
}

.distribution-system-popup-filter .form-control {
    font-size: 14px;
    border-radius: 15px;
    color: #7b7d7d;
}

.distribution-system-popup-filter .form-control:focus {
    border: 1px solid#2471a3;
}

.distribution-system-popup-filter .form-control:focus {
    border: 1px solid#2471a3;
}

.distribution-system-popup-filter .btn-filter {
    font-size: 14px;
    background-color: #2e86c1;
    border-radius: 15px;
    width: 100%;
    border: 1px solid#2471a3;
}

.distribution-system-popup-filter .btn-filter:hover {
    background-color: #1f618d;
}

.distribution-system-popup-filter .btn-filter span {
    margin-right: 3px;
}

.distribution-system-popup-filter .btn-filter i {
    font-size: 17px;
}

.distribution-system-popup-data {
    margin-top: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow-y: scroll;
    max-height: 250px;
}

.distribution-system-popup-data::-webkit-scrollbar {
    width: 5px;
}

.distribution-system-popup-data::-webkit-scrollbar-track {
    background: #ecf0f1;
}

.distribution-system-popup-data::-webkit-scrollbar-thumb {
    background: #4491c4;
}

.distribution-system-popup-data-item {
    padding: 6px;
    border-bottom: 1px solid #eee;
}

.distribution-system-popup-data-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 5px;
}

.distribution-system-popup-data-item p {
    color: #909497;
    font-size: 13px;
}

.distribution-system-popup-data-item:hover {
    background: #eee;
}

.distribution-system-popup .loading {
    position: absolute;
    top: 0;
    left:0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 100%;
    transition: all 0.2s ease-in;
}

.distribution-system-popup .loading.on {
    z-index: 99;
    visibility: visible;
    opacity: 1;
}
/* ./end Distribution system */

/* Voucher code */
.voucher-code {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 12px;
}

.voucher-code label,
.voucher-input {
    width: 100%;
}

.voucher-input {
    display: flex;
    border: 2px solid #0e7c20;
    margin-top: 5px;
}

.voucher-input input {
    border: none;
}

.voucher-input input:focus {
    border: none;
}

.voucher-input button {
    border: none;
    width: 50px;
    background: #0e7c20;
    color: #f9f9f9;
}