@font-face {
    font-family: 'svn-gilroy';
    src: url('../fonts/SVN-Gilroy.otf');
}

@font-face {
    font-family: 'svn-gilroy bold';
    src: url('../fonts/SVN-Gilroy-Bold.otf');
}
:root {
    /* === COLORS === */    
    --color-primary: #00afef;
    --color-second: #000084;
    --color-black: #212529;
}
/* ===========================
   COLOR UTILITY
=========================== */
.lg-hidden {
    display: none;
}
.color-primary {
    color: var(--color-primary);
}
.spacing {
    height: 12vh;
}
.empty-text {
    color: #979A9A;
    font-size: 14px;
}
.text-red {
    color: #E74C3C;
}
.btn.btn-xs {
    font-size: 11px;
    padding: 0.275rem 0.55rem;
}
.mb-2 {
    margin-bottom: 10px;
}
.alert {
    padding: 10px;
    border-radius: 5px;
}
.alert.alert-warning {
    background-color: #fff3cd;
    color: #664d03;
    border: 1px solid #ffecb5;
    background-color: #fff;
}
.form-delivery .form-group label.error {
    color: red;
    margin-bottom: 0;
}
.form-group {
    position: relative;
}
.form-group label.error {
    color: red;
    margin: 0;
    font-size: 13px;
}

.d-flex {
    display: flex;
}

.fw-bold {
    font-weight: bold;
}

.justify-content-between {
    justify-content: space-between;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'svn-gilroy', sans-serif;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background-image: url('../img/banner-header.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 50vh;
    position: relative;
}


.header-slide-none {
    height: 8vh;
}

.header__top {
    padding: 15px 0;
}
.header__top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    max-width: 80px;
    text-align: center;
}
.header__logo a img {
    width: 100%;
}
.header__user {
    display: flex;
    align-items: center;
    position: relative;
}
.header__cart {
    margin-left: 15px;
    position: relative;
}
.header__account a {
    font-size: 12px;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    font-family: 'svn-gilroy', sans-serif;
    text-transform: uppercase;
}
.header__account a:hover {
    color: var(--color-primary);
}
.header__account span {
    color: #b3b1b1;
    padding: 0 5px;
    font-weight: bold;
}
.header__cart {
    position: relative;
    color: #333333;
    text-decoration: none;
}
.header__cart:hover {
    color: #454545;
}
.header__cart .cart-content {
    transition: all 0.15s ease-in;
}
.header__cart:hover .cart-content {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
.header__cart i {
    font-size: 20px;
    font-weight: bold;
    color: var(--color-primary);
}
.header__cart span.cart-quantity {
    position: absolute;
    top: -8px;
    right: -15px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    background-color: var(--color-second);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}
.search-form {
    width: 415px;
    position: relative;
}
.search-form input {
    width: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    padding: 0 17px 0 20px;
    height: 40px;
    font-size: 13px;
    color: #252525;
}
.search-form input:focus {
    border-color: var(--color-primary);
    outline: none;
}
.search-form button {
    position: absolute;
    top: -5px;
    right: -15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
    border: none;
}
.search-form button i {
    font-size: 18px;
}
.header__middle {
    margin-top: 20px;
    margin-bottom: 20px;
}
.header__middle .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navigate-container {
    position: relative;
}
.navigate-tab {
    width: 265px;
    height: 45px;
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    padding: 0 25px;
    align-items: center;
    font-weight: bold;
    border-radius: 5px;
    font-family: 'svn-gilroy', sans-serif;
    cursor: pointer;
}
.navigate-tab i {
    margin-right: 10px;
}
.navigate {
    position: absolute;
    background-color: #fff;
    width: 100%;
    z-index: 10;
    display: none;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-sizing: border-box;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.navigate li {
    width: 100%;
    position: relative;
}
.navigate li a {
    display: block;
    width: 100%;
    padding: 8px 10px;
    color: var(--color-black);
    text-decoration: none;
    font-family: 'svn-gilroy', sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.navigate li a:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.navigate li a:hover i {
    color: #fff;
}
.navigate li a span i {
    color: var(--color-primary);
    margin-right: 5px;
}
.navigate li .dropdown {
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: #fff;
    top: 0;
    left: 285px;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
    border: 1px solid #eee;
    transition: all 0.25s ease-in;
}
.navigate li:hover .dropdown {
    left: 265px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
}
.menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu li a {
    display: inline-block;
    padding: 5px 22px;
    color: var(--color-black);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.15s;
}
.menu li a:hover,
.menu li a.active {
    border-bottom: 2px solid #fff;
    color: var(--color-primary);
}
.hotline {
    cursor: pointer;
}
.hotline span i {
    font-size: 20px;
    color: var(--color-primary);
    font-weight: bold;
}
.hotline .phone-number {
    color: var(--color-second);
    font-size: 24px;
    font-family: 'svn-gilroy', sans-serif;
    font-weight: 400;
    transition: all 0.3s;
}
.hotline .phone-number:hover {
    color: var(--color-primary);
}
.category-panel {
    position: absolute;
    bottom: -77px;
    width: 100%;
    height: 152px;
}
.category-panel .container {
    height: 100%;
}
.category-row {
    background-color: #fff;
    height: 100%;
    border: 1px solid #f1f1f1;
}
.category-box {
    border-right: 1px solid #f1f1f1;
    height: 152px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}
.category-row .owl-item img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
}
.category-box span {
    margin-top: 8px;
    font-size: 13px;
    display: block;
    font-weight: bold;
    text-align: center;
}
.category-box-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-black);
    transition: all 0.15s ease-in;
}
.category-box-link:hover {
    color: var(--color-primary);
}
.category-box-link img {
    transition: all 0.1s ease-in;
}
.category-box-link:hover img {
    transform: scale(1.1);
}
.toggle-tab {
    height: 50px;
    background-color: var(--color-primary);
    position: relative;
}
.toggle-tab .toggle-tab-button {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    font-size: 16px;
    color: #fff;
}
.form-search-xs {
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 999;
    display: none;
    border-radius: 0;
}
.form-search-xs input {
    width: 100%;
    border: none;
    padding: 15px;
    font-size: 14px;
    border-radius: 0;
}
.form-search-xs input:focus {
    outline: none;
    border: none;
}
/* ./end Header */

/* ==========================================================================
   CONTENT
   ========================================================================== */
.content {
    padding-top: 20vh;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
}
.heading-title {
    font-size: 22px;
    text-transform: uppercase;
    color: #454545;
    font-weight: bold;
    font-family: 'Yeseva One', sans-serif;
}
.heading-desc {
    color: #333;
    text-align: center;
    font-family: 'Lora', sans-serif;
}
.owl-post {
    margin-top: 20px;
}
.postBox__image {
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.post-link {
    text-decoration: none;
}
.postBox__image img {
    width: 100%;
    height: 252px;
    -o-object-fit: cover;
       object-fit: cover;
}
.postBox__image .widget {
    height: 40px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #555555;
    font-size: 13px;
}
.postBox__image .widget span:first-child {
    margin-right: 15px;
}
.postBox__content {
    padding: 20px 0;
}
.postBox__content-title {
    text-decoration: none;
    color: var(--color-black);
    font-weight: bold;
    margin-bottom: 12px;
    display: block;
    transition: all 0.2s ease-in;
}
.postBox__content-title:hover {
    color: var(--color-primary);
}
.postBox__content-desc {
    font-size: 13px;
    color: #5e5d5d;
}
.product-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.product-col {
    width: 20%;
    padding: 0 7.5px 10px 7.5px;
}
.product-item {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.product-item__image {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}
.product-item__image a img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.product-item .product-item__image a img {
    transition: all 0.25s ease-out;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}
.product-item:hover .product-item__image a img {
    transform: scale(1.2);
}
.product-item__image .discount {
    position: absolute;
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color:rgba(255,212,36,.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}
.product-item__image .discount label {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
}
.product-item__image .discount .number {
    color: red;
    font-size: 13px;
    font-weight: bold;
}
.product-item__content {
    padding: 5px;
    overflow: hidden;
}
.product-item__content-name-link {
    line-height: 22px;
    font-size: 14px;
    text-decoration: none;
    font-family: 'svn-gilroy', sans-serif;
    color: var(--color-black);
    min-height: 20px;
    display: block;
    margin-bottom: 8px;
    min-height: 50px;
}
.product-sku {
    display: block;
    font-size: 13px;
    color: #454545;
    margin-bottom: 10px;
}
.product-item__content-price-price {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 17px;
    margin-right: 6px;
}
.product-item__content-price-discount {
    font-size: 14px;
    color: #797D7F;
}
.panel {
    margin-bottom: 50px;
}

.panel.cart-shopping {
    padding: 20px;
}

.owl-product .owl-nav {
    position: absolute;
    top: 40%;
    left: -10px;
    width: calc(100% + 20px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.owl-product .owl-nav button.owl-next, .owl-product .owl-nav button.owl-prev {
    font-size: 30px;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.banner {
    height: 380px;
    overflow: hidden;
    margin: 50px 0;
}
.banner a img {
    width: 100%;
}
.banner a img {
    transition: all 0.25s ease-in;
}
.banner:hover a img {
    transform: scale(1.1);
}
.btn-view-product {
    display: block;
    margin: 0 auto;
    width: 250px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 35px;
    margin-top: 20px;
    padding: 10px 0;
}
.btn-view-product:hover {
    color: #fff;
    background-color: #15659b;
}
.breadcrumb__wrap {
    min-height: 350px;
    background-image: url('../img/banner-header.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.breadcrumb-inner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}
.breadcrumb-inner .container {
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.breadcrumb-tab {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb-tab li a {
    color: #fff;
    text-decoration: none;
}
.breadcrumb-tab li a:hover {
    color: #4daff0;
}
.breadcrumb-tab li {
    padding: 0 3px;
    color: #FFF;
    font-size: 14px;
}
.breadcrumb-tab li i {
    font-size: 12px;
}
.breadcrumb-tab li.active {
    color: #4daff0;
}
.article-wrap {
    padding:  35px 0;
}
.article-title {
    font-size: 28px;
    color: #fff;
    line-height: 50px;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}
.post__title {
    font-size: 24px;
    color: #252525;
    font-weight: 700;
    padding: 0;
    margin-bottom: 25px;
}
.dateBox {
    font-size: 14px;
    margin-bottom: 25px;
}
.dateBox span {
    color: #7d7d7d;
}
.dateBox span i {
    margin-right: 3px;
}
.dateBox span:nth-child(2) {
    padding: 0 3px;
}
.shared {
    padding: 10px 0;
    border-top: 1px solid #ebebeb;
}
.sharedBox__content {
    font-size: 14px;
    color: #6b6b6b;
}
.sharedBox__content label {
    margin-right: 5px;
}
.review-form {
    margin-top: 20px;
}
.review-form label {
    font-size: 15px;
    color: #555555;
}
.post-wrap {
    display: flex;
    flex-wrap: wrap;
}
.post__item {
    width: 33.33%;
    padding: 0 7.5px;
    margin-bottom: 15px;
}
.product-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-swiper {
    width: 100%;
}
.main-swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    cursor: pointer;
}
.main-swiper .swiper-wrapper .swiper-slide a img {
    width: 100%;
}
.sub-swiper {
    margin-top: 15px;
}
.sub-swiper .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.sub-swiper .swiper-wrapper .swiper-slide {
    padding: 0 7.5px;
    cursor: pointer;
}
.sub-swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
}
.cardProduct__head h3 {
    font-family: 'svn-gilroy', sans-serif;
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: normal;
}
.product-desc {
    font-size: 14px;
    color: #444444;
}
.product-detail-top {
    margin-bottom: 15px;
}
.product-detail-top span {
    font-size: 14px;
    color: var(--color-second);
    font-weight: bold;
}
.product-detail-top span strong {
    font-weight: normal;
    color: #444444;
}
.product-detail-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.add-to-cart {
    padding: 15.5px 10px;
    background-color: rgba(20, 79, 173, 0.8);
    font-size: 18px;
    font-family: 'svn-gilroy', sans-serif;
    font-weight: bold;
    color: #fff;
    min-width: 300px;
}
.add-to-cart:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.add-to-cart i {
    margin-right: 5px;
}
.btn-quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80px;
    height: 60px;
    background-color: #fff;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.btn-quantity input {
    width: 50px;
    border-right: 1px solid #ccc;
    border-top: none;
    border-left: none;
    border-bottom: none;
    height: 100%;
    text-align: center;
    border-radius: none;
}
.btn-quantity input:focus {
    outline: none;
}
.qty-control {
    display: flex;
    flex-direction: column;
}
.qty-control span {
    cursor: pointer;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(80px - 50px);
    height: 30px;
    color: #444444;
}
.product-detail-center {
    display: flex;
    justify-content: flex-start;
    justify-items: flex-end;
    font-family: 'svn-gilroy', sans-serif;
    padding: 15px 0;
}
.price-discount {
    color: #999999;
    font-size: 16px;
    margin-right: 1rem;
    text-decoration: line-through;
}
.price-larg {
    font-size: 25px;
    color: #0A0A0A;
    margin-right: 1rem;
    font-weight: bold;
}
.discount-percent {
    color: #E74C3C;
    font-size: 14px;
}
.product.nav-tabs {
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #dfdfdf;
}
.product.tab-content {
    padding: 10px 0;
    background-color: #fff;
}
.transpot-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.product.nav-tabs .nav-item.show .nav-link, 
.product.nav-tabs .nav-link {
    font-size: 16px;
    color: #444444;
}
.product.nav-tabs .nav-link:hover {
    border-color: transparent;
}
.product.nav-tabs .nav-item.show .nav-link, 
.product.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--color-primary);
    background-color: transparent;
    border-top: none;
    border-left: none;
    border-right: none;
    font-weight: bold;
    color: #444444;
}
.relatedProduct {
    margin-top: 30px;
}
.product-detail-title {
    font-size: 20px;
    margin-bottom: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.productContainer.p-colunm {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
.productContainer.p-colunm .product-item {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: all 0.35s;
}
.productContainer.p-colunm .product-item:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.productContainer.p-colunm .product-item .product-item__image {
    width: 100px;
}
.productContainer.p-colunm .product-item .product-item__image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.productContainer.p-colunm .product-item .discount {
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 13px;
    font-weight: bold;
}
.productContainer.p-colunm .product-item .product-item__content-price-price {
    font-size: 16px;
}
.productContainer.p-colunm .product-item .product-item__content-name-link {
    font-size: 15px;
}
.productContainer.p-colunm .product-item .product-item__content {
    width: calc(100% - 100px);
}
.empty-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 8vh 0;
}
.empty-cart__image {
    max-width: 520px;
}
.empty-cart__image img {
    width: 100%;
}
.empty-cart__text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 15px;
}
.empty-cart__text h3 {
    font-weight: bold;
}
.empty-cart__text p {
    text-align: center;
}
.btn-buy {
    width: 280px;
    background: #fff;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    margin-top: 25px;
    padding: 8px 0;
    border-radius: 30px;
    margin-bottom: 6vh;
}
.btn-buy:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.cart__title {
    font-size: 20px;
    margin-bottom: 15px;
}
.cart-box {
    background-color: #fff;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    padding: 10px;
}
.cart-box .cart-item {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    display: flex;
}
.cart-box .cart-item .cart-item-image {
    min-width: 100px;
    position: relative;
}
.cart-box .cart-item .cart-item-image .qty {
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #fff;
}
.cart-item .cart-item-detail {
    padding-right: 15px;
    position: relative;
}
.cart-item .cart-item-detail .remove {
    position: absolute;
    top: -5px;
    right: 3px;
    font-size: 13px;
    font-weight: lighter;
    color: #808B96;
    cursor: pointer;
}
.cart-item .cart-item-detail .product-name {
    font-size: 14px;
    font-weight: normal;
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.cart-total span:last-child {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
}
.policy-product {
    padding: 20px 15px;
    border: 3px solid var(--color-primary);
    border-radius: 5px;
}
.policy-product-item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10PX;
}
.policy-productitem-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}
.policy-product-item-icon img {
    width: 20px;
    height: 20px;
}
.policy-product-item-text {
    width: calc(100% - 50px);
    padding-left: 10px;
}
.policy-product-item-text h3 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.policy-product-item-text p {
    font-size: 13px;
}
.btn-group-chat {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}
.btn-group-chat .btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}
.btn-group-chat .btn img {
    max-width: 20px;
    margin-right: 5px;
}
.btn-group-chat .btn.btn-phone {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.btn-group-chat .btn.btn-phone:hover {
    background-color: var(--color-primary);
    color: #fff;
}
.btn-group-chat .btn.btn-chat-zalo {
    background-color: #017CC1;
    border: 2px solid #017CC1;
    color: #fff;
}
.btn-group-chat .btn.btn-chat-zalo:hover {
    background-color: #04659c;
}
.btn-group-chat .btn.btn-chat-facebook {
    background-color: #4365A2;
    border: 2px solid #4365A2;
    color: #fff;
}
.btn-group-chat .btn.btn-chat-facebook:hover {
    background-color: #2a4983;
}
.product-status {
    font-size: 15px;
    margin-top: 20px;
    color: #454545;
}
.sidebar-left {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
}
.sidebar-heading {
    font-size: 15px;
    text-transform: uppercase;
    padding: 12px 15px;
    margin-bottom: 5px;
    background-color: var(--color-primary);
    color: #fff;
}
.navigate-left {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.navigate-left li {
    position: relative;
}
.navigate-left li .dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: absolute;
    left: 280px;
    top: -5px;
    background-color: #fff;
    width: 300px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    transition: all 0.3s ease-in-out;
}
.navigate-left li:hover .dropdown {
    left: 325px;
    opacity: 1;
    visibility: visible;
    z-index: 999;
    border: 1px solid #eee;
}
.navigate-left li a {
    padding: 10px 20px 10px 23px;
    font-size: 14px;
    color: #454545;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    font-family: 'svn-gilroy', sans-serif;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
.navigate-left li a:hover {
    color: #fff;
    background-color: var(--color-primary);
}
.navigate-left li .dropdown li a:hover {
    background-color: #f1f1f1;
    color: #f06a6a;
}
.heading-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.category-name {
    font-size: 20px;
    font-family: 'svn-gilroy', sans-serif;
}
.category-name span:first-child {
    color: #444444;
}
.category-name span:last-child {
    color: #999999;
}
.heading-category .dropdown .btn-sort {
    padding: 7px 7px 7px 15px;
    background-color: #fff;
    width: 160px;
    border: 1px solid #eee;
    border-radius: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    color: #454545;
}
.heading-category .dropdown .btn-sort i {
    margin-left: 3px;
}
.heading-category .dropdown .dropdown-menu li a {
    font-size: 14px;
}
.pagination {
    margin: 15px 0;
}
.pagination .page-item {
    font-size: 14px;
}
.paginate-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-item .page-link {
    color: var(--color-primary);
}
.pagination .page-item.active .page-link {
    background-color: var(--color-primary);
    color: #fff;
}
.product-item.no-shadow {
    box-shadow: none;
}
.product-item.border {
    border: 1px solid #eee;
}
.product-item.fuild {
    width: 25%;
}
.cart-content {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 295px;
    height: auto;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    padding: 15px;
}
.cart-header {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}
.cart-body {
    max-height: 350px;
    overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}
.scrollbar::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 3px;
}
.cart-item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 5px;
    padding: 15px ;
    border-bottom: 1px solid #eee;
    position: relative;
}
.cart-item .cart-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
}
.cart-item .cart-image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.cart-info {
    padding-left: 10px;
    width: calc(100% - 60px);
}
.cart-info h4 {
    font-size: 13px;
    font-weight: normal;
    font-weight: bold;
}
.product-price {
    font-size: 13px;
}
.product-price .price {
    font-weight: bold;
    font-size: 15px;
    margin-right: 3px;
}
.product-price .discount {
    color: #7d7d7d;
    font-size: 13px;
}
.product-price .discount-percent {
    display: block;
    width: 100%;
    font-size: 12px;
}
.cart-item .remove {
    position: absolute;
    top: 0;
    right: 10px;
    cursor: pointer;
    z-index: 9999999;
}
.cart-item .remove i {
    font-size: 13px;
    color: #666666;
    transition: all 0.15s ease-in;
}
.cart-item .remove i:hover {
    color: #E74C3C;
}
.cart-total {
    padding: 20px 0;
}
.cart-total span:first-child {
    font-weight: bold;
}
.btn-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 0;
    font-size: 15px;
    border-radius: 8px;
}
.btn-cart img {
    width: 20px;
    margin-right: 10px;
}
.btn-cart:hover {
    background-color: #15659b;
    color: #fff;
}

/* ==========================================================================
   FOOOTER
   ========================================================================== */
.footer__top {
    background-color: var(--color-primary);
}
.policy-box {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 31px 0;
}
.policy-box img {
    max-width: 58px;
    margin-right: 15PX;
}
.policy-box .policy-text h4 {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    font-weight: bold;
}
.policy-box .policy-text p {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 3px;
    color: #fff;
}
.footer__bottom {
    padding: 30px 0;
}
.footer__contact-companyName {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.footer__contact-desc {
    display: flex;
    flex-direction: column;
}
.footer__contact-desc span {
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-black);
}
.footer-navigate {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.footer-navigate li a {
    font-size: 14px;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}
.footer-navigate li a:hover {
    padding-left: 20px;
    border-color: var(--color-primary);
}


/* ==========================================================================
    COPYRIGHT
   ========================================================================== */
.copyright {
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
    color: #fff;
    font-size: 14px;
}
.copyright span.div {
    padding: 0 5px;
}
.author-name {
    color: var(--color-primary);
    text-decoration: none;
}
.author-name:hover {
    color: var(--color-primary);
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.bg-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    transition: all 0.15s ease-in;
}
.bg-overlay.active {
    visibility: visible;
    opacity: 1;
    z-index: 999;
}
.sidebar-panel {
    position: fixed;
    top: 0;
    left: -70%;
    width: 70%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    transition: all 0.28s ease;
}
.sidebar-panel.open {
    left: 0;
}
.sidebar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-bottom: 1px solid #eee;
}
.sidebar-top a img {
    max-width: 80px;
}
.sidebar-bottom {
    height: 500px;
    overflow: scroll;
}
.sidebar-navigate {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.sidebar-navigate li a {
    display: block;
    padding: 10px 12px;
    color: var(--color-black);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sidebar-navigate li .dropdown {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    display: none;
}
.sidebar-navigate li .dropdown li a {
    font-weight: normal;
    padding: 8px 20px;
}
.sidebar-navigate li .dropdown .dropdown {
    padding-left: 20px;
}

/* ==========================================================================
   SHOPPING CART PAGE
   ========================================================================== */
.cart-container {
    background-color: #f8f8f8;
    padding: 40px 0;
}
.panel {
    background-color: #fff;
    border-radius: 5px;
    /* padding: 20px; */
}
.cart-shopping .cart-total {
    padding-top: 0;
    padding-bottom: 10px;
}
.cart-shopping .cart-total label {
    font-size: 14px;
}
.cart-shopping .cart-total span {
    font-size: 18px;
}
.btn-payment {
    display: block;
    width: 100%;
    background-color: var(--color-primary);
    margin: 0 0 10px;
    padding: 15px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-payment:hover {
    color: #ffff;
    opacity: 0.75;
    background-color: #076da7;
}
.txt-note {
    font-size: 14px;
}
.cart-page-container .title {
    padding: 0 30px;
    background-color: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-page-container .title .heading-text {
    font-size: 16px;
    font-weight: bold;
}
.cart-page-container .title .heading-text .text-grey {
    font-weight: normal;
    color: #808B96;
}
.btn-buy-continue {
    padding: 8px 20px 8px 12px;
    margin: 10px 0;
    display: block;
    background-color: #b6e8fa;
    font-size: 14px;
    color: #0087b8;
}
.btn-buy-continue i {
    margin-left: 15px;
}
.btn-buy-continue:hover {
    color: #0087b8;
    background: #65d1f8;
}
.cart {
    display: flex;
    flex-direction: column;
}
.cart__header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px 30px;
    border-top: 1px #dde1ef solid;
    border-bottom: 1px #dde1ef solid;
    font-family: 'svn-gilroy bold';
    font-size: 14px;
    font-weight: 600;
    color: #000;
}
.cart__col:nth-child(1) {
    width: 50%;
}
.cart__col:nth-child(2),
.cart__col:nth-child(3),
.cart__col:nth-child(4) {
    width: 16.6%;
    display: flex;
    justify-content: center;
}
.cart__body {
    display: flex;
    flex-direction: column;
    padding: 15px 30px;
    background-color: #FFF;
}
.cart__body .cart__row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}
.cart__body .cart__row:last-child {
    margin-bottom: 8px;
}
.cart__item {
    position: relative;
}
.cart__item .product__info {
    display: flex;
    justify-content: flex-start;
}
.cart__item .product__info .product__image {
    max-width: 100px;
    max-height: 120px;
    overflow: hidden;
    border-radius: 5px;
}
.cart__item .product__info .product__image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.cart__item .product__info .product__name .product__link {
    padding-left: 15px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: #454545;
}
.cart__item .product__info .product__name .product__link:hover {
    color: var(--color-primary);
}
.cart__item .cart__remove {
    position: absolute;
    bottom: 0;
    left: calc(97px + 15px);
    color: #DD011B;
    cursor: pointer;
    height: 30px;
    background-image: url('../img/icons/remove_cart.svg');
    background-repeat: no-repeat;
}
.cart__item .cart__remove span {
    padding-left: 25px;
    font-size: 14px;
}
.cart__item .cart__remove span:hover {
    opacity: 0.6;
}
.product__price {
    font-size: 14px;
    font-family: 'svn-gilroy bold', sans-serif;
    font-size: 16px;
    color: var(--color-primary);
}
.product__quantity {
    width: 95px;
    display: flex;
    border: 1px solid #7a7a9d;
    border-radius: 30px;
    overflow: hidden;
    font-size: 13px;
}
.product__quantity span {
    display: block;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.product__quantity span:first-child,
.product__quantity span:last-child {
    cursor: pointer;
}
.product__quantity span:first-child {
    border-right: 1px solid #7a7a9d;
}
.product__quantity span:last-child {
    border-left: 1px solid #7a7a9d;
}
.product__quantity span:first-child:hover,
.product__quantity span:last-child:hover {
    background-color: #ccc;
}
.product__quantity input {
    width: 40%;
    height: 27px;
    border: none;
    text-align: center;
}
.product__quantity input:focus {
    outline: none;
}
.cart__item .cart__remove-xs {
    position: absolute;
    top: 55px;
    left: calc(97px + 15px);
    color: #7a7a9d;
    text-decoration: underline;
    cursor: pointer;
}
.cart__item .cart__remove-xs span {
    font-size: 14px;
}

/* ==========================================================================
   PAYMENT PAGE
   ========================================================================== */
.payment-wrap {
    display: flex;
    flex: 1 0 auto;
    flex-direction: row;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 95em;
    background-color: #fff;
    font-family: sans-serif;
    font-size: 14px;
    min-height: 100vh;
    background-color: #1A5276;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.payment-wrap .main {
    width: 65%;
    padding: 2em 2em 0 2em;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.payment-wrap .sidebar {
    width: 35%;
    background-color: #fafafa;
    position: relative;
    border-left: 1px solid #ccc;
    background-color: #F9F9F9;
}
.payment-wrap .sidebar .sidebar__header {
    padding: 20px 20px 20px 28px;
    font-size: 18px;
    margin: 0;
    border-bottom: 1px solid #CCC;
}
.payment-wrap .sidebar .sidebar__content {
    padding: 0 15px 0 2em;
}
.payment-wrap .sidebar .sidebar__content .btn-redirect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}
.payment-wrap .sidebar .sidebar__content .btn-redirect a {
    text-decoration: none;
    color: #454545;
    font-weight: bold;
}
.payment-wrap .sidebar .sidebar__content .btn-redirect .btn-payment {
    max-width: 120px;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #454545;
    border-radius: 5px;
    margin-bottom: 0;
}
.payment-wrap .main .main__header {
    max-width: 60px;
    margin-bottom: 20px;
}
.payment-wrap .main .main__header img {
    max-width: 100%;
}
.payment-wrap .main .main__content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 1.5em;
}
.payment-wrap .main .main__content .col {
    width: 50%;
    padding-right: 30px;
}
.payment-wrap .main .main__content .col .title {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
.login-text {
    font-size: 14px;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: normal;
}
.login-text:hover {
    opacity: 0.8;
}
.login-text i {
    margin-right: 5px;
    font-size: 17px;
}
.form-delivery {
    margin-top: 25px;
}
.form-delivery .form-group {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.form-delivery .form-group label {
    margin-top: 5px;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    color: #EEE;
}
.form-delivery .form-group .form-control {
   border-radius: 5px;
   padding: 10px 15px;
   font-size: 14px;
   transition: all 0.3s ease-in;
   border: 1px solid #D0D3D4;
   color: #566573;
}
.form-delivery .form-group .form-control:focus {
    outline: none;
    border: 1px solid var(--color-primary);
}
.form-delivery .form-group  .form-control.textarea-input {
    height: 50px;
}
.payment-wrap .main .main__footer {
    border-top: 1px solid #0e3c5a;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 20px;
}
.payment-wrap .main .main__footer span {
    text-align: right;
    margin-bottom: 5px;
}
.payment-wrap .main .main__footer span .policy-link {
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    color: #f9f9f9;
}
.payment-wrap .main .main__footer span:first-child {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
}
.payment-wrap .main .main__footer span:last-child {
    font-size: 15px;
    color: #eee;
}
.main__content .title {
    color: #f9f9f9;
}
.alert.mtop {
    margin-top: 50px;
}
.provisional {
    border-top: 1px solid #eee;
    padding: 10px 0;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}
.provisional .provisional__row {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.provisional .provisional__row span:first-child {
    font-weight: bold;
    font-size: 16px;
}
.provisional .provisional__row span:last-child {
    font-weight: bold;
    font-size: 18px;
}
.cart-product {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.cart-product__item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.cart-product__image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
}
.cart-product__image img {
    max-width: 100%;
}
.cart-product__info {
    width: calc(100% - 60px);
    padding-left: 12px;
}
.cart-product__info .product-name {
    font-size: 15px;
    font-weight: 500;
}
.cart-price {
    margin-top: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn.btn-payment {
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

/* ==========================================================================
   SIGNIN PAGE
   ========================================================================== */
.login-wrap {
    padding: 8vh 0;
    background: #f1f1f1;
}
.login-wrap .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.account-wrap {
    min-width: 500px;
    max-width: 1000px;
    background-color: #fff;
    background-image: url('../img/bg-form.png');
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    padding: 30px 12px;
}
.account__title,
.account__desc {
    color: #454545;
    text-align: center;
}
.account__title {
    margin-bottom: 15px;
}
.accountForm .form-group {
    display: flex;
    flex-direction: column;
}
.accountForm .form-group label {
    margin-bottom: 5px;
    margin-top: 12px;
}
.accountForm .form-group input {
    height: 40px;
    border: 1px solid #eee;
    background-color: #fff;
    border-radius: 3px;
    padding: 0 10px;
    color: #273746;
}
.accountForm .form-group input:focus {
    outline: none;
}
.btn-form {
    margin-top: 15px;
    height: 60px;
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}
.btn-form:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btn-form.btn-login {
    border: 1px solid #D4AC0D;
    background: rgb(253,187,45);
    background: linear-gradient(0deg, rgba(253,187,45,1) 0%, rgba(255,255,255,1) 100%);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.3s ease-in;
}
.btn-form.btn-login:hover {
    background: rgb(241,171,22);
    background: linear-gradient(0deg, rgba(241,171,22,1) 0%, rgba(255,255,255,1) 100%);
}
.user-link {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.user-link a {
    margin-left: 8px;
    text-decoration: none;
    color: #3498DB;
}
.user-link a:hover {
    color: rgb(53, 151, 216);
    text-decoration: underline;
}
.user-wrap {
    background-color: #f9f9f9;
}
.user-sidebar {
    background-color: #fff;
    min-height: 30vh;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.user-avatar {
    display: flex;
    align-items: center;
    padding: 12px 10px;
}
.user-avatar__image {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.user-avatar__image img {
    max-width: 100%;
}
.user-avatar__info {
    padding-left: 8px;
}
.user-avatar__info h2 { 
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 0;
    padding: 0;
}
.user-avatar__info p {
    margin-bottom: 0;
}
.user-taskbar {
    list-style-type: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    margin-top: 15px;
}
.user-taskbar li a {
    padding: 8px 12px;
    display: block;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #454545;
    transition: all 0.25s ease-in;
}
.user-taskbar li a:hover,
.user-taskbar li a.active {
    background-color: #85C1E9;
}
.user-taskbar li i {
    margin-right: 5px;
}
.clientPanel {
    margin-top: 40px;
    margin-bottom: 20px;
}
.hello-text {
    display: flex;
    position: relative;
}
.hello-text a {
    color:rgb(53, 151, 216);
    text-decoration: none;
    margin-left: 5px;
}
.user__dropdown {
    position: absolute;
    top: 40px;
    right: 30px;
    min-width: 250px;
    background-color: #fff;
    padding: 10px 12px;
    list-style: none;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.15s ease-in;
}
.user__dropdown li,
.user__dropdown li a {
    width: 100%;
}
.user__dropdown li a {
    display: inline-block;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    margin-left: 0;
    color: #454545;
}
.user__dropdown li a:hover {
    text-decoration: underline;
}
.user__dropdown li a i {
    margin-right: 5px;
    color: rgb(53, 151, 216);
}
.hello-text:hover .user__dropdown {
    top: 30px;
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.user__dropdown::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #fff;
    z-index: 9999;
    top: -5px;
    right: 20px;
    transform: rotate(45deg);
}

/* ==========================================================================
   INVOICE PAGE
   ========================================================================== */
.invoice__item {
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.invoice__item-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}
.invoice__item-head .title {
    font-size: 15px;
    font-weight: bold;
}
.invoice__item-head-body {
    padding: 10px 0;
}
.product_link {
    text-decoration: none;
}
.productItem {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
    padding-top: 5px;
    border-bottom: 1px solid #eee;
    transition: all 0.25s ease-in;
}
.productItem:hover {
    background-color: #F8F9F9;
}
.productItem__info-image {
    max-width: 100px;
}
.productItem__info-image img {
    width: 100%;
} 
.productItem__info {
    display: flex;
}
.productItem__info-label {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    color: #454545;
}
.productItem__info-label span:first-child:hover {
    text-decoration: underline;
}
.invoice__item-head-footer {
    display: flex;
    justify-content: space-between;
}
.invoice__item-head-footer .datetime {
    font-size: 12px;
    color: #ABB2B9;
}
.invoice__item-head-footer .total {
    font-size: 18px;
    font-weight: bold;
}
.productItem__price span {
    color: #2C3E50;
}
.productItem__price span:first-child {
    color: #ABB2B9;
    font-size: 15px;
    margin-right: 5px;
}
.status {
    font-size: 12px;
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
}
.status.status-success {
    background-color: #EAFAF1;
    color: #229954;
}
.address-form .form-group {
    margin-bottom: 10px;
}
.addressBox {
    margin-top: 20px;
    margin-bottom: 20px;
}
.addressBox__item {
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 30px 12px;
    margin-top: 12px;
    position: relative;
}
.addressBox__item-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 5px 0;
}
.addressBox__item-row .title {
    width: 30%;
}
.addressBox__item-row .content {
    width: 70%;
}
.label-group {
    position: absolute;
    top: 10px;
    right: 10px;
}
.label-address {
    position: absolute;
    bottom: 36px;
    left: 70px;
    font-size: 11px;
    padding: 3px 12px;
    background-color: #E8F8F5;
    color: #2ECC71;
    border-radius: 6px;
}

/* ==========================================================================
   CUSTOM SWEETALERT2
   ========================================================================== */
.swal2-container {
    z-index: 9999999!important;
}

.swal2-modal {
    min-width: 45rem;
}

.swal2-title {
    font-size: 18px!important;
}

.swal2-html-container {
    font-size: 15px!important;
}

.swal2-html-container .error-text {
    display: block;
    margin: 5px 0;
}

button.swal2-confirm,
button.swal2-cancel,
button.swal2-deny {
    padding: 6px 12px!important;
    font-size: 14px!important;
}

/* ==========================================================================
   PRINT PREVIEW LOADING
   ========================================================================== */
.print-preview-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    z-index: 9999999;
}

.print-preview-loading .loading-img {
    width: 50px;
}

.print-preview-loading .loading-img img {
    max-width: 100%;
}

.print-preview-loading .loading-text {
    font-size: 16px;
    font-weight: bold;
    color: #f9f9f9;
    margin-right: 5px;
}

/* ==========================================================================
   CUSTOMIZE MODAL
   ========================================================================== */
.modal-dialog.modal-radius {
    border-radius: 6px!important;
    overflow: hidden;
}

/* ==========================================================================
   CUSTOMIZE SELECT2
   ========================================================================== */
.select2-dropdown {
    z-index: 9999999!important;
}

.select2-container .select2-selection--single {
    height: 40px!important;
    display: flex!important;
    align-items: center!important;
    justify-content: flex-start!important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ccc!important;
    border-radius: 5px;
    margin-bottom: 12px!important;
}

.fb-share-button.block {
    display: inline-block;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 740px) {
    .xs-hidden {
        display: none;
    }
    .lg-hidden {
        display: block;
    }

    /* Content */
    .content {
        padding-top: 0;
    }

    /*  Header */
    .header {
        background-image: none;
        background-color: #fff;
        height: auto;
        min-height: auto!important;
    }

    .header-slide-none {
        height: auto;
    }

    .header__top {
        padding: 30px 0;
    }

    .header__top .container {
        flex-direction: column;
    }

    .header__logo {
        margin-bottom: 10px;
    }

    .header .container {
        padding-left: 0;
        padding-right: 0;
    }

    .heading-title {
        font-size: 18px;
    }
    .heading-desc {
        font-size: 14px;
    }
    .product-col {
        width: 50%!important;
        margin-bottom: 5px;
    }
    .banner {
        height: auto;
    }

    /* Category Panel */
    .category-panel {
        position: relative!important;
        top: 0;
        left: 0;
        bottom: 0;
    }
    .category-row {
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        overflow: hidden;
    }
    .footer__top {
        padding: 10px 0;
    }
    .policy-box {
        flex-direction: column;
        padding: 15px 0;
    }
    .policy-box img {
        max-width: 40px;
        margin-right: 0;
    }
    .policy-text {
        margin-top: 10px;
    }
    .policy-text h4,
    .policy-text p {
        text-align: center;
    }
    .footer__contact-companyName {
        margin-top: 15px;
    }
    .breadcrumb-inner .container  {
        padding: 10px 20px;
    }
    .article-title {
        font-size: 25px;
        line-height: normal;
        text-align: center;
    }
    .post__title {
        font-size: 20px;
    }
    .post__item {
        width: 100%;
    }
    .product-item.fuild {
        width: 50%;
    }
    .cart__body {
        padding: 15px;
    }
    .cart__body .cart__row {
        flex-wrap: wrap;
        position: relative;
    }
    .cart__col:nth-child(1) {
        width: 100%;
    }
    .cart__col:nth-child(2) {
        position: absolute;
        top: 30px;
        left: calc(97px + 15px);
    }
    .cart__col:nth-child(3) {
        width: 35%;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .product__quantity {
        width: 120px;
    }
    .cardProduct__head {
        margin-top: 15px;
    }
    .policy-product {
        margin-top: 15px;
    }

    /* HomePage Panel */
    .panel {
        padding: 0;
        margin-top: 8vh
    }

    .panel.cart-shopping {
        padding: 0 15px 15px;
    }

    .product-wrap,
    .relatedProduct {
        margin-bottom: 15px;
    }
    .product-item .product-item__image {
        max-height: 250px;
    }
    .product-item .product-item__image a img {
        min-height: 200px;
        height: 180px;
    }
    .user__dropdown {
        right: -75px;
    }
    .user__dropdown::after {
        right: 120px;
    }
    .productItem__info-image {
        max-width: 50px;
    }
    .productItem__info-label span:first-child {
        font-size: 14px;
    }
    .label-address {
        left: 10px;
        bottom: 40px;
    }
    .breadcrumb__wrap,
    .breadcrumb-inner .container {
        min-height: 220px;
        height: 220px;
    }
    .payment-wrap {
        flex-direction: column;
    }
    .payment-wrap .main,
    .payment-wrap .sidebar {
        width: 100%;
    }
    .payment-wrap .sidebar .sidebar__content .btn-redirect {
        padding-bottom: 20px;
    }
    .payment-wrap .main .main__content {
        flex-direction: column;
    }
    .payment-wrap .main .main__content .col {
        width: 100%;
        padding-right: 0;
    }
    .alert.mtop {
        margin-top: 10px;
    }
    .payment-wrap .main .main__footer {
        padding-bottom: 15px;
    }

    /* Search Form */
    .form-search-xs {
        box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
        border-bottom: 1px solid #eee;
    }

    /* Login Page */
    .account-wrap {
        max-width: 100%;
        min-width: auto;
    }
}

@media (min-width: 1400px){
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1403px;
    }
}
