:root {
    --primary: #29433E;
    --secondary: #344b4e;
    --third: #FFB81C;
    --third-1: #FFE9B9;
    --light: #BBBCBF;
    --light-1: #A8A9AC;
    --light-2: #ECEFEF;
    --light-3: #EAEAEB;
    --dark: #344B4E;
    --black: #000000;
    --white: #ffffff;
    --gray: #999999;
    --gray-1: #969699;
    --green: #198107;
    --red: #C41B24;
    --text-black: #000000;
    --bg-brouwn: #CCBE99;
    --bg-accodion: #337BBE;
    --bg-light: #F8F1E1;
    --bg-light-1: #FBF8F0;
    --bg-light-2: #F5F5F5;
    --bg-light-3: #FFFCF5;
    --heightHD: 13rem;
}

p:last-of-type {
    margin-bottom: 0;
}

@font-face {
    font-family: 'Averta Bold';
    src: url('../fonts/averta/Averta-Bold.otf') format('otf');
}

@font-face {
    font-family: 'Averta Regular';
    src: url('../fonts/averta/Averta-Regular.otf') format('otf');
}

body {
    font-family: 'Averta Regular', sans-serif;
    overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, 
h1, h2, h3, h4, h5, h6 {
    font-family: 'Averta Regular', sans-serif;
}

a, ins {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

button, input {
    overflow: visible;
}

.gap-12 {
	gap: 12px;
}

.overlay-page {
	position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #00000080;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
    visibility: hidden;
}

.overlay-page.active {
	visibility: visible;
}

.header.sticky-top {
    transition: .5s;
    z-index: 3;
}

.text-none {
    text-transform: none !important;
}

.position-unset {
    position: unset !important;
}

.no-scroll {
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    overscroll-behavior: none;
}

.block {
    display: block;
}

.button-close button:focus {
	box-shadow: none;
}

.py-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}

@media (max-width: 991px) {
    .block {
        display: inline;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1230px;
    }
}

@media (min-width: 768px) {
	
	.px-md-12 {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
/*        max-width: 1160px;*/
    }
}

/*sniper custom*/
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }  
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% { 
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% { 
    transform: scaleY(1.0);
    -webkit-transform: scaleY(1.0);
  }
}
/*sniper custom*/

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    color: var(--white);
    background: var(--primary);
}

.back-to-top:hover {
    background: var(--dark);
}

.social-fixed {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
.social-fixed a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #CCBE99;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-fixed a.messenger {
    background: #0089B6;
}
.social-fixed a.shopee {
    background: #FFB81C;
}
.social-fixed a img {
    height: 20px;
    width: auto;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar {
    background: var(--primary);
    position: relative;
    z-index: 5;
    height: 32px;
}

.top-info {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    font-size: 12px;
    will-change: transform, padding, width;
}

.top-info p {
    margin-bottom: 0;
    white-space: nowrap;
}

.top-info a {
    color: var(--white);
    text-decoration: underline;
}

.top-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-link a.top-link-item {
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .32px;
    padding: 0 24px 4px;
    display: flex;
    align-items: center;
    width: auto;
    gap: 10px;
    white-space: nowrap;
    position: relative;
}

.top-link > a:first-child {
    padding-left: 0;
}

.top-link > a:last-child {
    padding-right: 0;
}

.top-link .cart {
    position: relative;
}

.box-cart {
    min-width: 530px;
    background: var(--white);
    padding: 44px;
    position: absolute;
    top: 50%;
    right: -170px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    z-index: 10;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.top-link .cart.show #header-cart ,
.top-link .cart:hover #header-cart {
    visibility: visible;
    opacity: 1;
    top: 100%;
    display: block;
}
#header-cart {
    background: #FFFDF9;
}

.top-link-counter {
  font-size: 12px;
  color: #fff;
  background: #f00;
  position: absolute;
  width: 20px;
  height: 20px;
  top: -2px;
  right: 0;
  text-align: center;
  border-radius: 50%;
}

.top-link .box-cart a {
    display: inline-block;
}

@media (max-width: 767px) {

    .topbar {
        z-index: 2;
    }
    
    .top-info {
        justify-content: center;
    }

    .top-info p:last-child {
        display: none;
    }
}

/*** Topbar End ***/

/*** Middle Start ***/

.middle {
	border-bottom: 1px solid var(--light);
	background: var(--white);
	position: relative;
	z-index: 1;
}

.logo {
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.logo .content {
    text-align: center;
}

.logo .content h3 {
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 30px;
}

.logo .content p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    font-weight: 600;
    color: var(--primary);
}

@media (max-width: 767px) {

    .logo {
        gap: 4px;
    }
    .logo .icon {
        width: 16px;
        height: 16px;
        display: flex;
    }

    .bottom-header .logo .icon {
        width: 22px;
        height: 22px;
    }

    .logo .content h3 {
        font-size: 12px;
        line-height: 17px;
    }

    .logo .content p {
        font-size: 6px;
        line-height: 12px;
    }
}

/*** Middle End ***/

/*** Navbar Start ***/

.header__menu {
    background: var(--white);
    padding: 12px 0;
}

.header.shadow-sm .header__menu {
	background: rgba(255, 255, 255, 0.95);
}

.header .header__menu:hover {
	background: var(--white);
}

.navbar .navbar-nav .nav-link {
    padding: 9px 20px;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    outline: none;
    transition: all .3s ease;
    border-radius: 50px;
}

.navbar .navbar-nav .nav-link:focus-visible {
	box-shadow: none;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 6 Pro";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.search-input {
    border: 1px solid var(--black);
    border-radius: 50px;
    padding: 10px 89px;
    height: 40px;
}

.search-input-group {
    display: flex;
    align-items: center;
}

.search-input input[type="text"] {
    border: none;
    font-size: 14px;
    line-height: 17px;
    color: var(--primary);
    background: transparent;
}

.search-input input[type="text"]::placeholder {
    color: var(--primary);
}

.search-input input[type="text"]:focus {
    box-shadow: none;
    outline: none;
}

.search-input-group .btn-search {
    color: var(--primary);
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
}

.search-project-frm {
    padding: 1px 10px;
    margin: 10px 0;
    width: 100%;
}

.search-project-frm input[type="text"] {
    border: 0;
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 992px) {

	.navbar .navbar-nav .nav-link:hover,
	.navbar .navbar-nav .nav-link.active {
	    background: var(--bg-light);
	}
}

@media (min-width: 992px) and (max-width: 1199px) {

    .top-info p {
        font-size: 9px;
    }

    .top-link a {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 10px;
    }

    .navbar .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 14px;
    }

    .search-input {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.mega-menu-wrap {
    background-color: var(--white);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    position: fixed;
    z-index: 12;
    top: calc(var(--heightHD) - 1.2rem);
    left: 0;
    width: 100%;
    transition: .6s cubic-bezier(.585,-.195,.245,1.25);
    /*box-shadow: 0 5rem 10rem rgba(50, 72, 92, .25);*/
    border-top: 0.1rem solid rgba(50, 72, 92, .25);
    pointer-events: none;
    visibility: hidden;
    overflow: hidden;
}

.header.shadow-sm .mega-menu-wrap {
	top: calc(var(--heightHD) - 9rem);
}

.mega-menu-wrap.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-inner {
  width: 100%;
  transition: .3s linear;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: .6s cubic-bezier(.585,-.195,.245,1.25);
}

.mega-menu-inner {
    transition: .25s linear;
    transition-property: transform,width,height;
    will-change: transform,width,height;
    /*padding: 5.2rem;*/
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    transform: unset;
    pointer-events: auto;
    visibility: visible;
}

.mega-menu-wrap.active .mega-menu-inner {
    opacity: 1;
}

.mega-menu-content {
    border-radius: 1.6rem;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mega-menu-panel {
    flex: 1;
    padding: 1px;
}

.mega-menu-panel .mega-menu-panel-wrap {
    display: flex;
    align-items: flex-start;
    height: 100%;
}

.mega-menu-list {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.mega-menu-item-wrap {
    /*transform: translateX(3rem);*/
    will-change: transform, opacity;
    transition: .3s cubic-bezier(.25,.46,.45,.94);
}

.mega-menu-content .content-list {
    display: flex;
    align-items: flex-start;
    column-gap: 32px
}

.mega-menu-content .content-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.title-cate__sm {
    display: flex;
    align-items: center;
}

.mega-menu-content .content-item .title-cate img {
    width: 40px;
}

.mega-menu-content .content-item .title-cate {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: .32px;
    width: 100%;
    border-bottom: 0.5px solid var(--light);
    margin-bottom: 8px;
}

.mega-menu-content .content-item ul {
    width: 100%;
    list-style: none;
    padding: 0;
}

.mega-menu-content .content-item ul a {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    color: var(--secondary);
    display: block;
    padding: 8px 12px;
    border-radius: 50px;
    transition: all .2s ease;
}

.mega-menu-content .content-item ul a:hover {
	background: var(--bg-light);
}

@media (min-width: 1200px) {
    .mega-menu-inner {
        transform: translateY(calc(-100% - 128px));
        /*min-height: 1040px;*/
        height: 352px;
    }

    .mega-menu-wrap.active .mega-menu-inner {
        transform: unset;
    }
}

@media (max-width: 991px) {

    .bottom-header {
        text-align: right;
    }

    .bottom-header .offcanvas {
        background: var(--bg-light-3);
    }

    .bottom-header .offcanvas-header {
        border-bottom: 0.5px solid var(--light);
        padding: 0 0 4px;
        margin: 20px;
    }

    .content-bottom__offcanvas {
        margin: 12px 0;
        padding: 16px;
        background: var(--white);
    }

    .content-bottom__offcanvas h3 {
        font-size: 20px;
        line-height: 26px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .content-bottom__offcanvas ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .content-bottom__offcanvas li {
        font-size: 14px;
        line-height: 20px;
    }

    .offcanvas {
        max-width: 75%;
    }

    .navbar .navbar-nav {
        width: 100%;
        gap: 12px;
    }

    .navbar .navbar-nav .nav-item {
    	width: 100%;
    }

    .navbar .navbar-nav .nav-link {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
        border-bottom: 1px solid var(--light);
        text-align: left;
        border-radius: 0;
    }

    .header__menu .navbar-brand {
    	margin-right: 0;
    }

    .mega-menu-wrap.active {
        top: calc(var(--heightHD) - 9rem);
        box-shadow: none;
        overflow-y: scroll;
    }

    .mega-menu-content .content-list,
    .mega-menu-content .content-item {
        flex-direction: column;
        column-gap: inherit;
    }

    .mega-menu-inner,
    .mega-menu-content {
        display: none;
    }

    .mega-menu-wrap.active .mega-menu-inner {
        max-width: 48.6%;
        /*width: auto;*/
        display: block;
        padding: 16px;
    }

    .mega-menu-wrap.active .mega-menu-content {
        display: flex;
    }

    .mega-menu-content .content-item .title-cate {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mega-menu-content .content-item ul {
        display: none;
    }

    .mega-menu-content .content-item.active ul {
        display: block;
    }

    .mega-menu-content .content-item ul a {
        text-align: left;
    }

    .mega-menu-panel {
        padding: 0;
    }

    .left-header .navbar-toggler {
        padding-top: 0;
        padding-bottom: 0;
    }

    .left-header .navbar-toggler:focus {
        box-shadow: none;
    }

    .search-form__sm {
        padding: 10px 0;
        background: var(--bg-light-2);
    }

    .search-form__sm .search-input-group {
        display: flex;
    }

    .search-form__sm .search-input-group input[type="text"] {
        border-color: transparent;
        border-radius: 0;
        background-color: transparent;
        font-size: 12px;
        line-height: 20px;
        color: var(--light);
    }

    .search-form__sm .search-input-group input[type="text"]::placeholder {
        color: var(--light);
    }

    .search-form__sm .search-input-group input[type="text"]:focus {
        box-shadow: none;
    }

    .search-input-group button {
        color: var(--light);
    }

    .account-wishlist {
        gap: 8px;
        justify-content: flex-end;
    }

    .account-wishlist .wishlist,
    .account-wishlist .account {
        width: 20px;
        height: 20px;
        display: flex;
        position: relative;
    }

    .account-wishlist .wishlist a,
    .account-wishlist .account a {
        display: flex;
    }

    .account-wishlist .account ul.dropdown {
	    position: absolute;
	    right: 0;
	    top: 35px;
	    width: 155px;
	    background: var(--white);
	    z-index: 99;
	    text-align: left;
	    opacity: 0;
	    visibility: hidden;
	    -webkit-transition: all 0.3s;
	    -o-transition: all 0.3s;
	    transition: all 0.3s;
	    list-style: none;
	    padding: 12px;
	    margin: 0;
	    border-bottom-left-radius: 4px;
	    border-bottom-right-radius: 4px;
    }

    .account-wishlist .account:hover ul.dropdown {
    	opacity: 1;
    	visibility: visible;
    }

    .account-wishlist .account ul.dropdown a {
    	font-size: 14px;
    	line-height: 20px;
    	text-transform: uppercase;
    	font-weight: 600;
    	color: var(--secondary);
    	padding: 8px 12px;
    }
}

@media (max-width: 767px) {

    .bottom-header .offcanvas {
        max-width: 90%;
    }

    .left-header .cart,
    .left-header .cart a {
        display: flex;
        align-items: center;
    }

    .search-input {
        padding-left: 16px;
        padding-right: 16px;
    }

    .search-input-group {
        text-align: center;
        display: flex;
        align-items: center;
    }

    .search-form__sm {
        padding: 3px 0;
    }

    .mega-menu-wrap.active .mega-menu-inner {
        max-width: 100%;
    }

    .mega-menu-wrap {
    	position: unset;
    }
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #043430B2;
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    text-align: left;
}

.carousel-content h3 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    text-transform: uppercase;
}

.carousel-content p {
    font-size: 14px;
    line-height: 20px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 20px;
    background: var(--light);
    border-radius: 50px;
    opacity: 1;
}

/*.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--secondary);
    transition: .8s;
}*/

.carousel-control-next {
    right: 20px;
    left: inherit;
}

.carousel-dark .carousel-control-next-icon, 
.carousel-dark .carousel-control-prev-icon {
    width: 16px;
    height: 16px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: var(--white);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    list-style: none;
    width: 16px;
    height: 16px;
    background: var(--light);
    /*margin: 10px;*/
    border-radius: 30px;
    opacity: 1;
    border: none;
}

#carouselId .carousel-indicators li:hover {
    background: var(--primary);
    opacity: 1;
}

#carouselId .carousel-indicators li.active {
    background: var(--primary);
    width: 70px;
    height: 16px;
}

@media (max-width: 991px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    #carouselId .carousel-indicators {
        z-index: 1;
    }

    #carouselId .carousel-indicators li.active {
        background: var(--bg-light-1);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-content h3 {
        font-size: 28px;
        line-height: 35px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/

/*** Categories Start ***/

.list-categories {
    display: flex;
    flex-wrap: wrap;
}

.item-cate {
    flex: 0 0 14.28571428571429%;
    max-width: 14.28571428571429%;
}

.item-cate a {
    display: block;
    text-align: center;
    color: var(--dark);
}

.item-cate .thumb-cate {
    width: 142px;
    height: 142px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.item-cate a:hover .thumb-cate {
    background: var(--bg-light);
}

.thumb-cate img {
    width: 142px;
}

.content-cate p {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}

@media (max-width: 991px) {

    .list-categories {
        row-gap: 12px;
        justify-content: center;
    }

    .item-cate {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .content-cate p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    /*.item-cate {
        flex: 0 0 33%;
        max-width: 33%;
    }

    .item-cate:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }*/

    .item-cate .thumb-cate {
        margin-bottom: 12px;
        width: 68px;
        height: 68px;
    }

    .thumb-cate img {
        width: 68px;
    }

    .content-cate p {
        font-size: 8.52px;
        line-height: 9.46px;
    }
}

/*** Categories End ***/

/*** Product Start ***/

.title-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.section-title {
    font-size: 14px;
}
.section-title h3 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 32px;
    line-height: 30px;
    color: var(--dark);
}

/*.title-box.sale h3,
.title-box.sale a {
    color: #C41B24;
}*/
.title-box.sale h3,
.title-box.sale a {
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-box a {
    font-size: 18px;
    line-height: 20px;
    color: var(--dark);
    font-weight: 600;
}

.product {
    border-top: 1px solid var(--light);
}

.product:last-child {
    border-bottom: 1px solid var(--light);
}

.col-item-product {
    padding: 0 9px;
}

.item-product {
    border: 0.5px solid #C5C5C5;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.itproduct__img {
    /*padding: 10px 1px 10px;*/
    overflow: hidden;
    position: relative;
    border-radius: 19px;
}
.itproduct__img:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.itproduct__img a {
    display: block;
    position: absolute;
    top: 0;
    letter-spacing: 0;
    width: 100%;
    height: 100%;
}
.itproduct__img a img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.product-labels {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    gap: 5px;
    align-items: flex-start;
}
.product-labels span {
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(246.89deg, #3A7487 33.27%, #7BA2AF 79.97%);
}
.product-labels span.best-seller {
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
}
.product-labels span.pre-order {
    background: linear-gradient(255.62deg, #223622 32.05%, #3C5E3C 80.01%);
}

.product-group-button > div {
    font-size: 0;
    line-height: 0;
    min-width: 0;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    letter-spacing: 0;
    text-align: center;
    top: 14px;
    right: 14px;
    z-index: 0;
    display: none;
    border-width: 1px;
    border-style: solid;
    border-color: var(--light);
    border-radius: 8px;
    transition: 250ms ease;
    background: var(--white);
    padding: 8px;
}

.product-group-button > .button-in:last-child {
    top: 58px;
    animation-delay: 150ms;
}

.product-group-button .button-in.active, 
.product-group-button .button-in:hover {
    background: var(--bg-brouwn);
}

.product-group-button .button-in.active img ,
.product-group-button .button-in:hover img {
    filter: brightness(0) invert(1);
}

.add-to-wishlist {
    opacity: 1;
    margin: 0;
}

.add-to-wishlist,
.wishlist-add-button {
    width: 100%;
    height: 100%;
}

.wishlist .icon {
    display: flex;
    align-items: center;
}
.wishlist .icon:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 3px;
    margin-top: -3px;
    background: url('../img/star-solid.png') no-repeat center center;
}
.wishlist.active .icon:before ,
.wishlist .icon:hover:before {
    background: url('../img/star-fill.png') no-repeat center center;   
}

.product-group-button > div a {
    display: block;
    opacity: 1;
    height: 100%;
}

.product-group-button .button-tooltip {
    background: var(--bg-brouwn);
    color: var(--white);
    padding: 9px;
    min-width: 90px;
    min-height: 38px;
    position: absolute;
    text-transform: none;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    border-radius: 8px;
    transition: 250ms ease;
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
}

.product-group-button div:not(.loop-add-to-cart) .button-tooltip {
    left: auto;
    right: 45px;
    top: 0;
    bottom: 0;
    position: absolute;
    font-weight: normal;
    /*transform: translate(-100%, -50%);*/
    transition: none;
    display: none;
}

.product-group-button .button-tooltip::after {
    content: '';
    width: 0;
    height: 0;
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-brouwn);
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    display: block;
}

.item-product:hover .product-group-button > div,
.product-group-button > div:hover a .button-tooltip {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-animation-duration: 300ms;
    -moz-animation-duration: 300ms;
    animation-duration: 300ms;
    animation-delay: 100ms;
    -webkit-animation-delay: 100ms;
    -moz-animation-delay: 100ms;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slidebottomtotop;
    -moz-animation-name: slidebottomtotop;
    animation-name: slidebottomtotop;
    -webkit-transform-origin: 0 0 0;
    -moz-transform-origin: 0 0 0;
    -ms-transform-origin: 0 0 0;
}

.itproduct__label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
}

.itproduct__label.new {
    background: linear-gradient(246.89deg, #3A7487 33.27%, #7BA2AF 79.97%);
}

.itproduct__label.order {
    background: linear-gradient(255.62deg, #223622 32.05%, #3C5E3C 80.01%);
}

.itproduct__img a {
    display: grid;
}

.itproduct__img img {
    width: 100%;
    transition: 0.5s all ease;
    height: auto;
    overflow: hidden;
}

.other_products_item {
    margin: 0;
    overflow: hidden;
}

.other_products_item ul {
    max-width: 100%;
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.other_products_item li {
    width: 22%;
    aspect-ratio: 1 / 1.02;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    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;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.other_products_item li img {
    object-fit: contain;
    max-height: 80%;
    max-width: 80%;
}

.content-product {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.content-product h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 32px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.content-product h4:hover {
/*    -webkit-line-clamp: none;*/
}

.content-product h4 a {
    color: var(--black);
    display: block;
}

.content-product h4 a:hover {
    color: var(--primary);
}

.price {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .32px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.price del {
    font-size: 12px;
    line-height: 18px;
    color: #BBBCBF;
    letter-spacing: .32px;
}
.price .sale {
    font-size: 18px;
    color: #C41B24;
}

.owl-carousel .owl-item .price img ,
.price img {
    display: inline-block;
    width: auto;
}

.price.new {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-subtotal .price {
    font-size: 16px;
}

.product-form__cart-add.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

@keyframes slidebottomtotop {
    0% {
        transform: translateY(10px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

@media (max-width: 767px) {
    
    .section-title h3 {
        font-size: 26px;
    }

    .image-product {
        margin-bottom: 12px;
    }

    .content-product {
        padding: 0 12px 12px;
    }

    .content-product h4 {
        font-size: 12px;
        line-height: 16px;
    }

    .price {
        font-size: 12px;
    }

    .price.new {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

/*** Product End ***/

/*** Collection Start ***/

.banner {
    position: relative;
    height: 490px;
    overflow: hidden;
    border-radius: 20px;
}

.img-banner {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    right: 0;
    bottom: 0;
    padding: 0;
    margin: 0;
    background: var(--collection-bg);
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

.box-banner {
    position: absolute;
    bottom: 50px;
    left: 40px;
}

.box-banner > span {
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    letter-spacing: .6px;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    display: inline-block;
}

.box-banner h4 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
}

.box-banner h4 a {
    display: block;
    color: var(--primary);
}

.item-collection a {
    display: block;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.item-collection a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: #043430B2;
    width: 100%;
    height: 100%;
}

.thumb-collection img {
    width: 100%;
}

.content-collection {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    z-index: 1;
}

.content-collection h4 {
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 0;
    color: var(--white);
}

@media (max-width: 991px) {

    .banner {
        height: 350px;
    }

    .box-banner {
        bottom: 10px;
        left: 20px;
    }

    .box-banner > span {
        margin-bottom: 8px;
        text-transform: uppercase;
    }

    .item-collection a::after {
        display: none;
    }

    .content-collection h4 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 767px) {
    .banner {
        height: 184px;
    }

    .box-banner {
        left: 10px;
    }

    .box-banner h4 {
        font-size: 18px;
        line-height: 25px;
    }

    .item-collection .banner {
        height: 112px;
    }

    .box-banner > span {
        font-size: 10px;
        line-height: 20px;
    }

    .item-collection .box-banner h4 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        color: var(--primary);
    }
}

/*** Collection End ***/


/*** About Start ***/

.about-content h2 {
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0;
}

.about-content p {
    margin: 30px 0 37px;
}

.about-content a {
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    transition: all .2s ease; 
}

.about-content a:hover {
    background: var(--primary);
    color: var(--white);
}

.about-content a img {
    width: 16px;
    height: 16px;
    object-fit: cover;
}

.about-content a:hover img {
    filter: invert(100%) sepia(100%) saturate(38%) hue-rotate(321deg) brightness(110%) contrast(110%);
}

@media (min-width: 1920px) {

    .about-content p {
        margin: 60px 0;
    }
}

@media (max-width: 767px) {
    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .about-content p {
        text-align: left;
        margin: 20px 0 12px;
    }
}

/*** About End ***/

/*** Synthetic Start ***/

.synthetic {
    background: var(--bg-light-1);
}

.utilities {
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
}

.icon-box {
    flex-flow: row wrap;
    display: flex;
    align-items: center;
}

.icon-box-img {
    width: 37px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    margin-bottom: 0;
}

.icon-box-text {
    flex: 1 1 0px;
    padding-left: 12px;
}

.icon-box-text h2 {
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--primary);
}

.item-review {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
}

.item-review::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(26, 40, 38, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
    width: 100%;
    height: 50%;
    transition: all .4s linear;
}

.content-rview {
    z-index: 1;
    position: absolute;
    bottom: 0;
    padding: 0 16px 16px;
    color: var(--white);
}

.content-rview h4 {
    font-size: 16px;
    line-height: 18px;
    color: var(--white);
    margin-bottom: 0;
}

.content-rview p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 20px;
}

.product .list-product {
    z-index: auto;
}

.review-carousel .owl-nav .owl-prev, 
.review-carousel .owl-nav .owl-next,
.list-product .owl-nav .owl-prev,
.list-product .owl-nav .owl-next,
.product-viewed_carousel .owl-nav .owl-prev,
.product-viewed_carousel .owl-nav .owl-next {
    background: var(--white);
    color: var(--dark);
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    line-height: 50px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.review-carousel .owl-nav .owl-prev,
.list-product .owl-nav .owl-prev,
.product-viewed_carousel .owl-nav .owl-prev {
    left: -5%;
    right: auto;
}

.review-carousel .owl-nav .owl-next,
.list-product .owl-nav .owl-next,
.product-viewed_carousel .owl-nav .owl-next {
    left: auto;
    right: -5%;
}

@media (min-width: 1200px) and (max-width: 1329px) {

    .review-carousel .owl-nav {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .icon-box-text h2 {
        font-size: 22px;
    }
}

@media (min-width: 1441px) {
    .icon-box-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .icon-box-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .review-carousel .owl-nav {
        display: none;
    }

    .icon-box-text h2 {
        font-size: 20px;
        line-height: 26px;
    }
}

/*** Synthetic End ***/


/*** Brand Start ***/

.list-brands {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.item-brand {
    text-align: center;
    flex: 0 0 14.28571428571429%;
    max-width: 14.28571428571429%;
}

@media (max-width: 991px) {

    .list-brands {
        row-gap: 6px;
    }

    .item-brand {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {

    .item-brand {
        flex: 0 0 33%;
        max-width: 33%;
    }
}

/*** Brand End ***/


/*** Sign Start ***/

.sign {
    background: linear-gradient(rgba(4, 52, 48, .75), rgba(4, 52, 48, .85)), url('../img/bg-sign.jpg') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sign .section-title h3 {
    font-size: 24px;
}

.frm-account {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0px 0px 20px 0px #0000001A;
}

.frm-account .form-control,
.frm-account .form-select {
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    line-height: 24px;
    color: #000000D9;
}

.frm-account .form-control:focus,
.frm-account .form-select:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.frm-account .form-select[type="number"]::-webkit-outer-spin-button,
.frm-account .form-select[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.form-main+.form-child {
    display: none;
}

.frm-box_title h4 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 12px;
}

.frm-box_title p, 
.frm-box_title a {
    font-size: 14px;
    line-height: 24px;
}

.frm-account .form-label {
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
}

.frm-account .form-label sup.red {
    color: var(--red);
}

.required {
    color: var(--red);
}

.password-toggle {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    top: 10px;
/*    transform: translateY(-50%);*/
    right: .625rem;
    left: unset;
    margin-bottom: 0;
    padding: .5rem;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    border: 0;
    background: unset;
}

.password-toggle-btn .password-toggle-check {
    position: absolute;
    left: 0;
    z-index: -1;
    width: 1rem;
    height: 1.25rem;
    opacity: 0;
}

.form-other, .form-loginIcon, .login-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-other {
    justify-content: space-between;
    gap: initial;
}

.come-back a {
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .32px;
}

.form-loginIcon p {
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    text-transform: uppercase;
    color: var(--black);
}

.login-social-icon {
    gap: 6px;
}

.login-social-icon a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border: 1px solid var(--light);
    border-radius: 50%;
}

.login-social-icon a img {
    width: 16px;
    height: 16px;
}

.btn-login-page {
/*    display: flex;*/
}

.btn-login-page {
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
}

.btn-login-page a:hover {
    background: var(--primary);
    color: var(--white);
}

.custom-dropdown a{
    color: #000;
    font-size: 14px;
}

@media (max-width: 991px) {
    
    .frm-account {
        padding: 20px;
    }

    .btn-login-page {
        padding-top: 12px;
    }

    .sign-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .sign-content h3 span {
        display: block;
    }
}

@media (max-width: 767px) {

    .form-other {
        display: block;
    }

    .btn-login-page button {
        width: 100%;
    }

    .frm-box_title h4 {
        text-transform: uppercase;
        font-size: 16px;
        line-height: 20px;
    }

    .frm-box_title p {
        font-size: 12px;
        line-height: 15px;
    }
}

/*** Sign End ***/

/*** Footer Start ***/

.footer {
    background: var(--primary);
    overflow: hidden;
}

.logo-footer {
	margin: 0 26px;
}

.social-icon {
    padding-top: 32px;
}

.social-icon ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon a {
    background: var(--white);
    display: flex;
    padding: 8px;
    border-radius: 100px;
    height: 48px;
    line-height: 48px;
}

.content-footer {
    position: relative;
    z-index: 2;
}

.content-footer h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 12px;
}

.content-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-footer li:not(:last-child) {
    margin-bottom: 16px;
}

.content-footer li {
    display: flex;
    /*align-items: flex-start;
    flex-wrap: wrap;*/
    gap: 8px;
}

.content-footer li img {
    height: 20px;
}

/*.content-footer li p {
    max-width: calc(94% - 8px);
    flex: 0 0 calc(94% - 8px);
}*/

.content-footer a {
    color: var(--white);
    font-size: 18px;
    line-height: 20px;
    letter-spacing: .36px;
}

.content-footer p {
    color: var(--white);
    font-size: 18px;
    line-height: 22px;
    letter-spacing: .36px;
}

.payment {
    padding-top: 32px;
}

.bottom-footer {
    position: absolute;
    bottom: -130px;
    right: 0;
    z-index: 1;
}

.copyright {
    color: var(--white);
    padding: 64px 0 40px;
}

@media (max-width: 991px) {
    .content-footer a,
    .content-footer p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    
    .logo-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .social-icon {
        padding-top: 0;
    }

    .logo-footer {
    	margin: 0;
    }

    .content-footer h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .bottom-footer {
        /*display: none;*/
        bottom: -160px;
        right: -105px;
    }

    .col-32 {
    	margin-top: 32px;
    }

    .copyright p {
        font-size: 14px;
        line-height: 20px;
    }

    .copyright p span {
        display: block;
    }
}

/*** Footer End ***/

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Detail Product
-----------------------*/

.breadcrumbs-single a {
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
}

.breadcrumbs-single li.active {
    color: var(--black);
    font-size: 14px;
    /*line-height: 20px;*/
}

.image-gallery {
  display: flex;
}

.swiper-thumbs {
    max-width: 157px;
    max-height: 490px;
    margin-left: 0;
}

.swiper-thumb {
    align-items: center;
    border: 1px solid #e0e5eb;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    height: auto !important;
    justify-content: center;
    transition: border-color .2s ease-in-out;
    width: auto !important;
}

.swiper-thumbs .swiper-wrapper {
    flex-direction: column;
    gap: 8px;
}

.swiper-thumb .ratio::before {
    padding-top: 100%;
}

.swiper-thumb .ratio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    /*background: #043430B2;*/
    border-radius: 4px;
    background: #00000080;
    width: 100%;
    height: 100%;
}

.swiper-thumb.swiper-slide-thumb-active .ratio::after {
    background: transparent;
}

.next-small-detail,
.prev-small-detail {
    top: unset;
    left: 43%;
    bottom: 0;
    transform: rotate(89deg);
    color: #fff;
}

.prev-small-detail {
    top: 15px;
    bottom: unset;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
}

/*.swiper-container .detail-thumb {
    position: relative;
    overflow: hidden;
}*/

.swiper-container {
    max-width: 487px;
    margin: 0;
}

.swiper-container .swiper-slide {
    width: 487px;
}

.swiper-container .detail-thumb::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.swiper-container .detail-thumb .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/*.swiper-button-prev::after, 
.swiper-button-next::after {
    content: '';
}*/

.swiper-container i {
    font-size: 16px;
}

.swiper-container a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.swiper-container a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-large-detail,
.prev-large-detail {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: #FFFFFFB2;
    color: var(--black);
    margin: 0;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.product-detail-info h1 {
    color: var(--black);
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.category-detail label {
	color: var(--white);
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 600;
	border-radius: 20px;
	padding: 8px 12px;
}
/*.category-detail label:last-child {
	background: linear-gradient(246.89deg, #3A7487 33.27%, #7BA2AF 79.97%);
}*/

.product-info .product-labels {
    position: relative;
    top: unset;
    left: unset;
    flex-direction: unset;
}

.price-sale {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    line-height: 20px;
    font-weight: 600;
}

.price-sale del {
    color: var(--gray-1);
    letter-spacing: .36px;
}

.price-sale ins {
    color: var(--red);
    font-size: 24px;
    line-height: 30px;
}

.price-sale .sale,
.price.new .sale {
    display: inline-block;
    color: var(--white);
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
    padding: 4px;
    border-radius: 4px;
}

.price-sale .sale,
.price.new .sale {
    line-height: 18px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: .6px;
}

.price.new .sale {
	display: inline-flex;
	font-size: 12px;
	line-height: 16px;
}

.price.new .sale img {
	width: 10px;
}

.price-sale .sale {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .05em;
}

.product-note {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    color: var(--red);
    letter-spacing: .8px;
    margin-bottom: 16px;
}

.swatch_item,
.size-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 12px;
}

.swatch-element {
    border: 3px solid transparent;
    display: block;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
}

.swatch-element span {
    margin: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: block;
}

.swatch-element:first-child span {
    background: #BFB38F;
}

.swatch-element:nth-child(2) span {
    background: #9A8C81;
}

.swatch-element:nth-child(3) span {
    background: #CDC5B8;
}

.swatch-element:nth-child(4) span {
    background: #D2C3B3;
}

.swatch-element:nth-child(5) span {
    background: #9AA393;
}

.swatch-element:nth-child(6) span {
    background: #D3BA82;
}

.swatch-element:nth-child(7) span {
    background: #C39E88;
}

.swatch-element:nth-child(8) span {
    background: #080503;
}
.swatch-element:nth-child(9) span {
    background: #567172;
}
.swatch-element:nth-child(10) span {
    background: #B2A69F
}
.swatch-element:nth-child(11) span {
    background: #595343
}
.swatch-element:nth-child(12) span {
    background: #998F73;
}
.swatch-element:first-child span {
    background: #CCBE99;
}

.swatch-element.active {
    border-color: var(--primary);
}

.attribute-heading h5 {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.option_custom {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    box-shadow: 0px 2px 0px 0px #00000004;
    border-radius: 20px;
    cursor: pointer;
}

.option_custom.active {
    background: var(--primary);
    color: var(--white);
}

.option_custom.disable {
    border-color: #C4CDCE;
    color: #C4CDCE;
    pointer-events: none;
    /*opacity: .65;*/
}

.button-clear {
    padding: 20px 0;
}

.button-clear button {
    color: var(--primary);
    border-bottom: 1px solid var(--primary);
    border-radius: 0;
    text-transform: uppercase;
    padding: 2px;
}

.button-clear button:hover {
    border-bottom-color: var(--primary);
}

.form_quantity .note input {
    padding: 12px 20px;
    border-radius: 20px;
    color: var(--light);
    font-size: 14px;
    line-height: 20px;
}

.note input::placeholder {
    color: var(--light);
}

.note input:focus {
    box-shadow: none;
    border-color: #dee2e6;
}

.group-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity {
    display: flex;
    width: 134px;
    height: 48px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    box-shadow: 0px 2px 0px 0px #00000004;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
}

.quantity input[type="number"] {
    border: 0;
    background-color: transparent;
    pointer-events: none;
    text-align: center;
    flex: 1;
    max-width: 40px;
    -moz-appearance: textfield;
}

.quantity input[type="number"]:focus-visible {
  outline: none;
}

.quantity input[type="number"]::-webkit-outer-spin-button,
.quantity input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.quantity__augure, 
.quantity__reduce {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 100%;
    line-height: 1em;
    color: var(--primary);
}

.addcart-view {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.addcart-view img {
    width: 16px;
    height: 16px;
}

.box-modal-product .addcart-view > div {
    width: 50%;
}

.btn-main,
.addcart-view a {
    border: 2px solid var(--primary);
    color: var(--primary);
    white-space: nowrap;
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    text-transform: uppercase;
    padding: 13px 13.5px;
    border-radius: 50px;
    box-shadow: 0px 2px 0px 0px #00000004;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.btn-main {
    padding: 0 20px;
    height: 44px;
/*    line-height: 40px;*/
}
.btn-group-custom .btn-main{
    display: inline-flex;
}
.btn-main.btn-sm {
    height: 34px;
}
.btn-main:hover,
.btn-main.active {
    color: #fff;
    background: var(--primary);
}

.buy-now a {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 15px 0;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: .6px;
    text-align: center;
}

.box-tabs-detail {
    box-shadow: 0px 0px 20px 0px #0000001A;
    padding: 40px;
    border-radius: 12px;
    height: 100%;
}

.nav-tabs {
    border: none;
}

.product-tabs ul li .nav-link {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #1D2A2C80;
    text-transform: capitalize;
    border: none;
}

.product-tabs ul li .nav-link.active {
    border: none;
    text-decoration: underline;
}

.product-tabs ul li .nav-link, 
.product-tabs ul li .nav-link:focus, 
.product-tabs ul li .nav-link:hover {
    background: transparent;
    border-color: transparent;
}

.product-tabs ul li:focus-visible,
.product-tabs ul li .nav-link:focus-visible {
    box-shadow: none;
    outline: none;
}

.product-description img {
    width: 100%;
}

.title-detail {
    padding: 24px 0;
}

.title-detail h3 {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
    color: var(--secondary);
    margin-bottom: 0;
}
.title-detail.sale h3 {
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.title-detail img {
    max-height: 33px;
}

.box-title-content h3 {
    font-size: 40px;
    line-height: 45px;
}

.title-detail h3 span {
    text-transform: initial;
    color: var(--black);
}

.title-detail h5 {
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
}

.title-detail p {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
}

.price.new del {
    font-size: 12px;
    line-height: 18px;
    color: var(--light);
    letter-spacing: .32px;
}

.price.new ins {
    color: var(--red);
}

.box-evaluate:not(:last-child) {
    border-bottom: 1px solid var(--light);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.review-comment__user-inner {
    display: flex;
    align-items: center;
    gap: 26px;
}

.review-comment__user-name {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .6px;
    margin-bottom: 12px;
}

.review-comment__user-rating i {
    line-height: 16px;
    font-size: 13px;
    color: var(--gray-1);
}

.review-comment__user-rating i.checked {
    color: var(--primary);
}

.review-comment__user-date {
    font-size: 12px;
    line-height: 16px;
    color: var(--black);
}

.review-comment__title {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--black);
    margin-bottom: 12px;
}

.review-comment__content {
    line-height: 20px;
    color: var(--black);
    margin-bottom: 12px;
}

.review-comment__images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.review-comment__image {
    width: 104px;
    height: 104px;
    border-radius: 3px;
}

.customer-reviews__pagination {
    margin-top: 40px;
}

.customer-reviews__pagination ul.pagination {
    border: none;
    gap: 8px;
}

.customer-reviews__pagination ul.pagination li.page-item.disabled .page-link {
    color: var(--gray-1);
}

.customer-reviews__pagination ul.pagination .page-link {
    background: transparent;
    border-radius: 20px;
    color: var(--black);
    padding: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customer-reviews__pagination ul.pagination a.page-link {
    border-color: transparent;
}

.customer-reviews__pagination ul.pagination li.page-item:last-child a.page-link {
    border-color: #dee2e6;
}

.customer-reviews__pagination ul.pagination li.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.modal-product-detail .modal-content {
    padding: 16px;
    border-radius: 8px;
}

@media (min-width: 1441px) {
    
    .addcart-view a {
        padding-left: 22px;
        padding-right: 22px;
    }
}

/*@media (min-width: 992px) {
	.right-content-product__details {
		padding-left: 72px;
	}
}*/

@media (min-width: 992px) and (max-width: 1199px) {
    .image-gallery {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .swiper-thumbs,
    .swiper-container {
        max-width: 100%;
    }

    .swiper-thumbs .swiper-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .swiper-thumbs .swiper-thumb {
        width: 100% !important;
        max-width: 25%;
        flex: 0 0 25%;
        margin-bottom: 0;
    }
}

@media (max-width: 991px) {

    .image-gallery {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .swiper-thumbs,
    .swiper-container {
        max-width: 100%;
    }

    .swiper-thumbs .swiper-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .swiper-thumbs .swiper-thumb {
        width: 100% !important;
        max-width: 25%;
        flex: 0 0 25%;
        margin-bottom: 0;
    }

    .quantity-wishlist {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .quantity-wishlist .quantity,
    .quantity-wishlist .wishlist {
        max-width: calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
        justify-content: space-between;
    }

    .quantity-wishlist .wishlist a {
        border: 2px solid var(--primary);
        border-radius: 50px;
        color: var(--primary);
        font-weight: 600;
        font-size: 12px;
        line-height: 16px;
        text-transform: uppercase;
        padding: 13px 16px;
        display: block;
        text-align: center;
    }

    .group-quantity {
        flex-direction: column;
        gap: 8px;
    }

    .addcart-view {
        display: block;
        text-align: center;
        width: 100%;
    }

    .addcart-view a {
        display: block;
    }

    .box-tabs-detail {
        padding: 32px;
    }

    .product-tabs ul li .nav-link {
        font-size: 20px;
        line-height: 28px;
    }

    .category-list {
        flex-wrap: wrap;
    }

    .category-list .item {
        max-width: calc(33% - 4px);
        flex: 0 0 calc(33% - 4px);
    }
}

@media (max-width: 767px) {

    .group-quantity {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .addcart-view a {
        padding-left: 16px;
        padding-right: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }

    /*.scroll-mb {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        white-space: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }*/

    .category-list {
        flex-wrap: nowrap;
    }

    .product-tabs ul li .nav-link {
    	font-size: 16px;
    	padding-left: 8px;
    	padding-right: 8px;
    }

    .category-list .item {
        max-width: 100%;
        flex: 1;
    }

    .product-tabs ul {
        flex-wrap: nowrap;
    }

    .box-tabs-detail {
        padding: 20px;
    }

    .product-description p {
        font-size: 12px;
        line-height: 20px;
    }

    .review-comment__image {
        width: 40px;
        height: 40px;
    }

    .title-detail h3 {
        font-size: 14px;
        line-height: 20px;
    }

    .price.new del {
        font-size: 8px;
        line-height: 18px;
    }

    .price.new ins {
        line-height: 20px;
    }

    .price.new .sale {
        border-radius: 2px;
    }

    .box-price-sale {
    	width: 100%;
    	display: flex;
    	justify-content: space-between;
    }
}

/*---------------------
  Seller Product
-----------------------*/

.box-filter__product-inner {
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding: 8px 0;
}

.box-filter__product-inner,
.box-filter__product-select,
.box-order__product-inner,
.box-filter__product-option,
.box-option__product-inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

.box-filter__product-inner .title,
.box-order__product-inner .title {
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
    letter-spacing: .6px;
}

.box-filter__product-select {
    justify-content: flex-end;
    flex: 1;
}

.title-filter {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.box-filter__product-select select {
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    width: 15%;
}

.box-filter__product-select select:focus {
    box-shadow: none;
}

.custom-select {
	position: relative;
}

.custom-select-selected {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .8px;
	cursor: pointer;
}

.custom-select-options {
	display: none;
	position: absolute;
	right: 0;
	background: var(--bg-light-3);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border-radius: 8px;
    z-index: 10;
    width: 237px;
    padding: 12px;
    list-style: none;
    margin: 0;
}

.custom-select-options li {
	cursor: pointer;
	padding: 10px 12px;
}

 .custom-select-options li.active,
 .custom-select-options li:hover {
	background: var(--bg-light);
}
.custom-select-options li:hover .checkmark ,
.custom-select-options li.active .checkmark {
    border-color: var(--primary);
    background: url(../img/star-radio-checked.png) no-repeat center center var(--secondary);
}

.custom-select-options img {
	border: 1px solid var(--primary);
	border-radius: 50%;
	padding: 5px 4px;
}

.custom-select-options li:hover img {
	display: none;
}

.custom-select-options img:nth-child(2) {
	display: none;
}

.custom-select-options li:hover img:nth-child(2) {
	display: inline-block;
	background: var(--primary);
}

.custom-select-options span {
	font-size: 12px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--primary);
}

.box-order__product-inner {
    justify-content: space-between;
    gap: initial;
    margin: 12px 0;
}

.sort-item .checkmark{
    border-radius: 50% !important;
}

@media (min-width: 768px) {

    .filter-frm .box-filter__product-inner .box-filter__product-select {
        justify-content: inherit;
    }
}

@media (max-width: 991px) {
    .box-filter__product-select select {
        width: auto;
    }
}

@media (max-width: 767px) {
    .box-filter__product-inner {
        white-space: nowrap;
    }

    .box-filter__product-select select {
        width: 50%;
    }

    /*.box-order__product-inner {
        flex-direction: column;
    }*/
}

/*---------------------
  Sale Product
-----------------------*/

.title-detail.sale h3 {
    background: linear-gradient(264.44deg, #8F1313 10.15%, #C75835 87.61%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-filter__product-option {
    justify-content: space-between;
    width: 100%;
}

.option-select__item {
    position: relative;
    display: block;
}

.menu-filter__item .filter-archive {
    cursor: pointer;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	gap: 12px;
	border-radius: 50px;
	padding: 10px 16px;
}

.menu-filter__item .filter-archive:hover,
.menu-filter__item .filter-archive.active {
	background: var(--bg-light);
}

.filter-name {
	font-size: 12px;
	line-height: 20px;
	font-weight: 600;
	color: var(--secondary);
	text-transform: uppercase;
	letter-spacing: .32px;
}

.option-select__inner {
    position: relative;
}

.option-select__inner input {
    display: none;
}

.option-select__inner .checkmark {
    display: inline-block;
    padding: 8px 40px;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    letter-spacing: .6px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0px 2px 0px 0px #00000004;
    cursor: pointer;
    position: relative;
    transition: all .3s;
}

.option-select__item input:checked~.checkmark:not(.checkmark-color) {
    color: #fff;
    box-shadow: 0px 2px 0px 0px #00000004;
/*    border-width: 2px;*/
    background: var(--secondary);
}

.option-select__inner .checkmark.checkmark-color{
  font-size: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  background: var(--data-color);
}

.option-select__inner input:checked + .checkmark {
/*    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(0 0 0) 0px 0px 0px 3px;*/
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}
.option-select__inner input:disabled + .checkmark {
  background: #f1f1f1;
  color: #b9b9b9;
  cursor: not-allowed;
}
.option-select__inner input:disabled + .checkmark:before {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: rotate(25deg);
    background: #121212;
}

.box-option__product-inner {
    background: #F5F5F5;
    padding: 0 8px;
    margin-top: 12px;
}

.box-option__product-inner a {
    display: inline-block;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid var(--light);
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: .32px;
    padding: 5px 9px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.box-option__product-inner a:last-child {
    border: none;
    background: transparent;
}

.filter-status {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-status a {
    text-align: center;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary);
    border-radius: 50px;
    /*max-width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);*/
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
}
.filter-status a.active{
    background-color: #ECEFEF;
}

@media (max-width: 991px) {
    .box-filter__product-option,
    .box-option__product-inner {
        flex-wrap: wrap;
    }

    .box-filter__product-option {
        column-gap: 4px;
        row-gap: 8px;
    }

    .option-select__item {
        -ms-flex: 0 0 calc(33.333% - 4px);
        flex: 0 0 calc(33.333% - 4px);
        max-width: calc(33.333% - 4px);
    }

    .option-select__item:last-child {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .option-select__inner .checkmark {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    
    .option-select__item {
        -ms-flex: 0 0 calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
    }
}

/*---------------------
  Child Sleep Product
-----------------------*/

.category-list {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 32px 0 46px;
}

.loader_ajax {
    display: none;
    max-width: 27px;
    top: -12px;
    left: 126px;
    position: absolute;
}

.category-list .loader_ajax {
    top: 50%;
    right: unset;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 40px;
}

.category-list a {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    color: var(--light);
    display: block;
    border: 1px solid var(--light);
    border-radius: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 16px;
    transition: all .3s ease;
}

.category-list .item.active a,
.category-list a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

@media (max-width: 991px) {
    
    .category-list a {
        padding-left: 8px;
        padding-right: 8px;
    }

    .box-sort .btn-order-group a,
    .left-header .btn-order-group a {
        text-align: center;
        padding: 10px 40px;
        width: 100%;
    }

    .left-header .btn-order-group a {
        padding-left: 20px;
        padding-right: 20px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .box-sort .btn-order-group a.clear,
    .left-header .btn-order-group a.clear {
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
    }

    .box-sort a,
    .box-sort .offcanvas-title,
    .cart .offcanvas-title {
        text-transform: uppercase;
        font-size: 12px;
        line-height: 16px;
        font-weight: 600;
        color: var(--secondary);
        letter-spacing: .6px;
    }
}

@media (max-width: 767px) {

    .scroll-cate {
        padding: 24px 0 8px;
    }

    .scroll-cate .category-list {
        padding: 0;
    }

    .box-sort .offcanvas,
    .cart .offcanvas {
        max-width: 90%;
    }

    .filter-archive {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .box-sort .offcanvas-body {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .shop-filter,
    .price-filter {
        border-bottom: 1px solid var(--light);
        padding-bottom: 16px;
        margin-bottom: 20px;
    }

    .price-filter {
        padding-bottom: 40px;
    }

    .name-filter {
        font-size: 12px;
        line-height: 16px;
        font-weight: 600;
        color: var(--secondary);
        letter-spacing: .6px;
        text-transform: uppercase;
    }
}

/*---------------------
  Result Products
-----------------------*/

.result-products h3 {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: var(--primary);
    margin-bottom: 0;
    padding-top: 26px;
    text-transform: initial;
}

/*---------------------
  Search Dropdown
-----------------------*/
.search-dropdown {
    width: 600px;
    max-height: 700px;
    overflow-y: auto;
    padding: 15px;
    background: #FFFCF5;
}

.search-dropdown .spinner {
    display: none;
}

.title-search {
    margin-bottom: 16px;
}

.title-search h3 {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .32px;
    color: var(--primary);
    margin-bottom: 0;
}

.keyword-trend,
.search-category {
    margin-bottom: 40px;
}

.keyword-trend ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 15px;
    column-gap: 20px;
}

.keyword-trend a {
    display: inline-block;
    padding: 8px 16px;
    color: var(--primary);
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .6px;
    border: 1px solid var(--primary);
    border-radius: 20px;
    width: 100%;
    text-align: center;
}

.keyword-trend li.active a,
.keyword-trend a:hover {
    background: var(--primary);
    color: var(--white);
}

.search-category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.search-category .categories {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 30px;
}
.search-category .item-cate {
    width: 110px;
    flex: 0 0 110px;
}
.search-category .item-cate .thumb-cate {
    width: 110px;
    height: 110px;
}
.search-category .item-cate .content-cate {
    text-transform: uppercase;
    font-size: 14px;
}

.product-search .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.product-search .item:not(:last-child) {
    margin-bottom: 16px;
    border-bottom: 1px solid var(--light);
    padding-bottom: 8px;
}

.product-search .thumb {
    width: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.product-search .content-product {
    flex: 1;
}
.product-search .content-product h4 {
    font-size: 15px;
    letter-spacing: 1px;
}

@media (max-width: 767px) {
    .keyword-trend ul {
        justify-content: space-between;
        column-gap: 4px;
        row-gap: 8px;
    }

    .keyword-trend li {
        max-width: calc(50% - 4px);
        flex: 0 0 calc(50% - 4px);
    }

    .keyword-trend li:last-child {
        max-width: 100%;
        flex: 0 0 100%;
    }
}

/*---------------------
  Wishlist
-----------------------*/

.title-wishlist {
    border-bottom: 1px solid var(--light);
}

.wishlist-content a {
    color: var(--white);
    background: var(--primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 14px 22px;
    border-radius: 50px;
    margin-top: 26px;
}

.wishlist-content a:hover {
    background: var(--dark);
    color: var(--white);
}

/*---------------------
  Cart
-----------------------*/
.checkout-page .title-detail {
    padding: 40px 0;
}

.payment-method-infomation {
    font-size: 12px;
    line-height: 15px;
    color: var(--dark);
}
.payment-method-infomation p:not(:last-child) {
    margin-bottom: 12px;
}
.payment-method-infomation h5 {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.checkout-page-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.checkout-page-top .icon-box .thumb-icon {
    border-radius: 50px;
    border: 1px solid var(--light);
    /*padding: 8px;*/
    justify-content: center;
    width: 32px;
    height: 32px;
}

.icon-box.active .thumb-icon {
    border-color: var(--primary);
    background: var(--primary);
}

.checkout-page-top .icon-box .thumb-icon img {
    width: 16px;
}

.content-icon {
    padding-left: 8px;
}

.content-icon h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: var(--light);
    margin-bottom: 0;
}

.content-icon p {
    font-size: 14px;
    line-height: 20px;
    color: var(--light);
}

.icon-box.active .content-icon h3 {
    color: var(--dark);
}

/*.checkout-page .icon-box:first-child .content-icon p {
    color: var(--light);
}*/

.checkout-page-top .line {
    background: var(--primary);
    height: 1px;
    width: 291px;
}

.table-cart {
	height: 100%;
    width: 100%;
}

.woocommerce table, .woocommerce th, .woocommerce td {
    margin: 0;
    padding: 15px;
    vertical-align: middle;
    border-collapse: collapse;
    text-align: center;
}

.woocommerce table.shop_table th {
    min-height: 64px;
    color: var(--black);
    text-transform: uppercase;
    background: var(--bg-light-1);
    white-space: nowrap;
}

.woocommerce-cart-form__cart-item:not(:last-child) {
    border-bottom: 1px solid var(--light-3);
}

.woocommerce .product-price * ,
.woocommerce .product-subtotal .price {
    letter-spacing: 1px;
}

.product-name,
.wishlist-remove {
    display: flex;
    align-items: center;
    gap: 16px;
}

.product-name p {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: .6px;
}

.option-select__all {
/*    height: 24px;*/
}

.option-select__all .checkmark {
    padding: 3px;
    border-radius: 4px;
    border-color: var(--light);
}

.woocommerce-checkout .option-select__all input + .checkmark img:last-child,
.woocommerce-checkout .option-select__all input:checked + .checkmark img:first-child {
	display: none;
}

.woocommerce-checkout .option-select__all input:checked + .checkmark img:last-child {
	display: block;
}

.cart_item {
    border-bottom: 1px solid #EAEAEB;
}
.cart_item.disabled {
/*    background: #F5F5F5;*/
}

.cart_item td:first-child {
    padding-left: 12px;
}

.cart_item td:first-child,
.product-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.product-cart {
    align-items: flex-start;
}

.cart_item:hover {
    background: #F5F5F5;
}

/*.cart_item td .option-select__all input:checked~.checkmark,*/
/*.option-select__inner input:checked~.checkmark {
    background: var(--secondary);
}*/

/*.cart_item .option-select__item {
    max-width: 8%;
    flex: 0 0 8%;
    text-align: left;
    top: -20px;
}*/

.product-cart__info {
    /*max-width: 92%;
    flex: 0 0 92%;*/
    flex: 1;
}

.product-cart .thumb {
    /*max-width: 25%;
    flex: 0 0 25%;*/
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    width: 100px;
}
.product-cart .thumb:before {
    content: "";
    display: block;
    padding-top: 100%;
}
.product-cart .thumb a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-align: left;
}

.product-cart__rating .thumb {
    border-radius: 5px;
    overflow: hidden;
}

.product-cart .thumb img,
.product-cart__rating .thumb img {
    width: 100px;
    height: 100px;
}

.product-cart .content {
    max-width: 75%;
    flex: 0 0 75%;
    padding-left: 12px;
    text-align: left;
}

.product-cart__rating {
    display: flex;
    gap: 12px;
}

.product-cart h3,
.product-cart__rating h3 {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .32px;
    font-weight: 600;
    margin-bottom: 0;
}

.product-cart h3 a,
.product-cart__rating h3 a {
    color: var(--black);
    display: block;
}

.product-cart p {
    font-weight: 600;
    color: var(--red);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .32px;
    padding: 8px 0;
}

.classify .name {
    background: #EAEAEB;
    font-size: 13px;
    line-height: 15px;
    border: none;
    color: #8C8D8F;
    width: auto;
    border-radius: 4px;
    margin-bottom: 8px;
    padding: 6px 12px;
    display: inline-flex;
    cursor: pointer;
    font-weight: normal;
}

.name-close {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.name-close .close {
    cursor: pointer;
}

.product-attr-content .close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    cursor: pointer;
}

.classify-info {
    background: var(--bg-light-1);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 20px 0px #0000001A;
    display: none;
    position: absolute;
    left: 0;
    z-index: 10;
}

.cart-item-select {
    display: flex;
    cursor: pointer;
    margin-bottom: 10px;
}
.cart-item-select .item {
    width: 100%;
}
.cart-item-select input {
/*    display: none;*/
    opacity: 0;
    visibility: hidden;
    position: absolute;
}
.cart-item-select .checkmark {
    display: block;
    width: 24px;
    height: 24px;
    border: 1px solid var(--light);
    border-radius: 5px;
    background: url('../img/star-radio.png') no-repeat center center;
}
.cart-item-select input:checked~.checkmark {
    border-color: var(--primary);
    background: url('../img/star-radio-checked.png') no-repeat center center var(--secondary);
}

@media (min-width: 992px) {

    .classify-info {
        width: 367px;
    }
}

.classify.active .classify-info {
    display: block;
}

.classify-info .swatch_item {
    gap: 5px;
}

@media (max-width: 991px) {

    .classify-info {
        width: 300px;
    }

    .product-cart .thumb img,
    .product-cart__rating .thumb img {
        height: auto;
    }

    .classify .name {
        font-size: 9px;
    }

    .btn-shops {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 4px;
    }

    .btn-shops a {
        padding: 14px 20px !important;
    }

    .cart_item td:first-child {
        padding-right: 12px;
    }

    .product-cart .content {
        max-width: 63%;
        flex: 0 0 63%;
    }
}

@media (max-width: 767px) {

    .classify-info {
        left: initial;
        right: 0;
    }

    .classify.active .classify-info {
        padding: 20px !important;
    }
}

.product-cart .note {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 8px;
}

.wishlist-remove {
    gap: 8px;
}

.wishlist-remove a {
    font-size: 12px;
    line-height: 1;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 3px;
}

.remove a:hover span {
	text-decoration: underline;
}

.product-price ins {
    font-size: 16px;
    line-height: 12px;
    font-weight: 600;
    display: block;
    color: #29433E;
    letter-spacing: .6px;
}

.product-price del {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: .32px;
    color: var(--light);
}

.number-product {
	line-height: 20px;
	color: var(--secondary);
	letter-spacing: .36px;
	font-weight: 600;
}

.product-quantity .quantity {
    width: 77px;
    height: 26px;
    border-color: var(--light);
}

.product-quantity a {
    font-size: 16px;
    line-height: 20px;
}

.product-quantity .quantity input[type="number"] {
    font-size: 12px;
    max-width: 20px;
    line-height: 1;
}

.cart_totals {
    padding-top: 20px;
}

.cart-subtotal,
.sale-price,
.order-total .order {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.order-total {
	margin-top: 16px;
	border-top: 1px solid var(--light);
}

.order-total .order {
/*    padding: 24px 0;*/
    padding-top: 24px;
}

/*.cart-subtotal p,*/
.sale-price p {
    font-size: 12px;
    line-height: 15px;
    max-width: 20%;
    flex: 0 0 20%;
}

.cart-subtotal span,
.sale-price span {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: .32px;
    color: var(--black);
    max-width: 10%;
    flex: 0 0 10%;
}
.cart-subtotal span span {
    font-size: 13px;
    color: #A4A4A4;
    font-weight: normal;
}

.cart-subtotal label {
    font-size: 12px;
    line-height: 20px;
    color: #A4A4A4;
    font-style: italic;
    letter-spacing: .32px;
}

.content-total {
    max-width: 20%;
    flex: 0 0 20%;
}

.price-total {
    max-width: 10%;
    flex: 0 0 10%;
}

.content-total {
    font-size: 12px;
    line-height: 15px;
}

.content-total span {
    color: var(--light);
}

.price-total {
    color: var(--red);
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
}

.wc-proceed-to-checkout {
    text-align: right;
}

.wc-proceed-to-checkout a {
    width: 100%;
    text-align: center;
}

.wc-proceed-to-checkout a,
.btn-comment a,
.btn-shops a {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 12px 87.5px;
    border-radius: 50px;
}

.btn-shops a {
  padding: 14px 22px;
}

.cart-collaterals {
    background: var(--bg-light-1);
    box-shadow: 2px -4px 14px 0px #002B270A;
    border-radius: 8px;
    border: 1px solid var(--light-1);
    padding: 21px 16px 16px;
}

.cart-subtotal, 
.sale-price, 
.order-total .order {
    justify-content: space-between;
}

.cart-subtotal p, 
.sale-price p,
.cart-subtotal span, 
.sale-price span,
.content-total,
.price-total {
    max-width: 100%;
    flex: 1;
}

.cart-subtotal:not(:first-child) {
    margin-top: 8px;
}
.cart-subtotal p{
    font-size: 14px;
}

.product-cart-sum-left {
    position: relative;
}
.product-cart-sum-left b{
    display: block;
    color: #0084C9;
    padding-left: 15px;
}
.product-cart-sum-left #removeCoupon {
    position: absolute;
    left: 0;
    bottom: -3px;
}

.cart-subtotal span, 
.sale-price span,
.price-total {
    text-align: right;
}

.cart-collaterals .wc-proceed-to-checkout {
    text-align: center;
}

.cart-collaterals .wc-proceed-to-checkout a {
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 991px) {

    .checkout-page-top {
        gap: 12px;
        align-items: baseline;
    }

    .checkout-page-top .icon-box {
        flex-direction: column;
        width: 33%;
    }

    .checkout-page-top .line {
        width: 100%;
    }

    .content-icon {
        padding-top: 8px;
        padding-left: 0;
    }

    .content-icon h3 {
        font-size: 12px;
        line-height: 20px;
        text-transform: uppercase;
        white-space: nowrap;
    }
    
    .content-icon p {
        display: none;
    }

    .cart-subtotal span, 
    .sale-price span,
    .price-total {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .product-name .option-select__item {
        max-width: initial;
        flex: 1;
    }
}

@media (max-width: 767px) {

    .shop_table .product-price, 
    .shop_table .product-subtotal,
    .shop_table .product-quantity {
        display: none;
    }

    .product-name p {
        font-size: 12px;
        line-height: 16px;
    }

    .product-name .option-select__item {
        max-width: 10%;
    }

    .option-select__inner.option-select__all .checkmark {
        width: 24px;
    }

    .list-cart__products .product-cart {
        align-items: flex-start;
        border-bottom: 1px solid var(--light);
        padding-bottom: 8px;
        margin-bottom: 24px;
    }

    .product-cart .thumb {
        max-width: 30%;
        flex: 0 0 30%;
    }

    .product-cart .content {
        max-width: 70%;
        flex: 0 0 70%;
    }

    .list-cart__products .product-cart .note {
        margin-bottom: 12px;
    }

    .list-cart__products .product-price ins {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .32px;
    }

    .product-price ins {
        font-size: 12px;
        line-height: 20px;
    }

    .product-price p {
        color: var(--primary);
        font-size: 12px;
        line-height: 20px;
    }

    .woocommerce-checkout .cart-empty th {
      white-space: pre-wrap !important;
      min-height: auto !important;
    }

    .price-quantity {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

/*---------------------
  Forget
-----------------------*/

.forget {
    padding: 100px 0;
}

@media (max-width: 767px) {
    
    .forget {
        padding: 48px 0;
    }
}

/*---------------------
  Ưelcome New Member
-----------------------*/

.welcome {
    background: url('../img/welcome.png') var(--secondary);
    background-position: center;
    background-repeat: no-repeat;
}

.welcome-content {
    color: var(--bg-light-1);
}

.welcome-content p {
    font-size: 14px;
    line-height: 20px;

}

.welcome-content p:first-child {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
}

.welcome-content h3 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.welcome-content a {
    display: inline-block;
    margin-top: 36px;
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .32px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 50px;
}

@media (max-width: 767px) {

    .welcome-content h3 {
        font-size: 24px;
        line-height: 30px;
    }

    .btn-maintenance {
        padding-top: 28px;
        display: inline-flex;
        flex-direction: column;
        gap: 16px;
    }

    .welcome-content .btn-maintenance a {
        margin-top: 0;
    }
}

/*---------------------
  Pay
-----------------------*/

.info-pay {
    border: 1px solid #EAEAEB;
    border-radius: 8px;
    background: #FBF8F0;
    padding: 24px;
}

.info-order__result {
	background: var(--bg-light-1);
} 

.info-pay:not(:last-child) {
    margin-bottom: 28px;
}

.title-pay h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 16px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 12px;
}

.title-pay a {
    text-decoration: underline;
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
}

.render_payment .cart-item-select{
    flex-direction: column;
}
.pay-option .option-select__inner .checkmark {
    border-radius: 20px;
}

.pay-option .option-select__inner .checkmark img:first-child,
.pay-option .option-select__item.active .checkmark img:last-child {
    display: none;
}

.pay-option .option-select__item.active .checkmark img:first-child {
    display: block;
    width: 16px;
    height: 16px;
}

.pay-option .cart-item-select {
    position: relative;
}
.option-method div.error {
    position: absolute;
    top: 10px;
    right: 10px;
}

.pay-option .cart-item-select,
.pay-option .option-select__item {
    color: #000;
    cursor: pointer;
    border: 1px solid var(--light);
    border-radius: 8px;
    padding: 12px 8px;
    max-width: 100%;
}

.cart-item-select.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pay-option .cart-item-select .checkmark {
/*    border-radius: 50%;*/
}

.option-method {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.content-method {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.content-method .content {
    display: none;
    flex: 1;
}

.note-method {
    color: #8C8D8F;
}

.note-method p {
    margin-bottom: 0;
}

.option-method .note-method {
    font-size: 14px;
    line-height: 20px;
}

.price-method {
    display: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #996E11;
    padding: 5px 13px;
    background: var(--third-1);
/*    width: 200px;*/
    white-space: nowrap;
    text-align: center;
}

label.is-checked ,
.pay-option .option-select__item.active {
    border-color: var(--primary);
    background: var(--bg-light);
}

label.is-checked .content-method .content ,
label.is-checked .content-method .price-method {
    display: block;
}

.pay-option .option-select__item.active .option-select__inner .checkmark {
    background: var(--primary);
}

.pay-option .option-select__item.active .content-method .content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.pay-option .option-select__item:not(:last-child) {
    margin-bottom: 12px;
}

.pay-option .option-select__item p {
    font-size: 14px;
    line-height: 20px;
}

.info-payment {
    margin-top: 10px;
    display: none;
}

.info-payment .content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.qr-code {
    max-width: 17%;
    flex: 0 0 17%;
    background: var(--white);
    overflow: hidden;
    border-radius: 12px;
}

.content-payment {
    max-width: 83%;
    flex: 0 0 83%;
    padding-left: 8px;
}

.is-checked .info-payment ,
.pay-option .option-select__item.active .info-payment {
    display: block;
    flex: 0 0 100%;
}

.info-pay .form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.info-pay .form-group input {
    font-size: 12px;
    line-height: 15px;
    color: var(--light-1);
    border-color: var(--primary);
    border-radius: 20px;
    padding: 12px 20px;
    max-width: 70%;
    flex: 0 0 70%;
}

.info-pay .form-group input:focus {
    box-shadow: none;
}

.info-pay .form-group button {
    max-width: 15%;
    flex: 0 0 15%;
    background: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: .6px;
    padding: 10px 22px;
    border-radius: 20px;
}

.payment-table .product-cart .thumb {
    overflow: hidden;
    border-radius: 5px;
}

.payment-table .product-cart .content {
    max-width: 70%;
    flex: 0 0 70%;
}

.payment-table .product-cart h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.payment-table .product-cart p {
    padding-top: 4px;
}

.payment-table .product-cart select {
    margin-bottom: 4px;
}

.payment-cart {
    box-shadow: none;
    border-color: transparent;
    border-radius: 5px;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.info-order__pay p {
    font-size: 12px;
    line-height: 15px;
    color: var(--light-1);
}

.box-title-pay a {
    font-size: 12px;
    line-height: 15px;
    color: #8C8D8F;
}

.order-notes textarea {
    font-size: 14px;
    line-height: 20px;
    color: #A8A9AC;
}

.option-select {
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-select__address input {
    display: none;
}

.option-select__address .checkmark {
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #996E11;
    color: #996E11;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .32px;
    font-weight: 600;
}

.option-select__address input:checked~.checkmark {
    background: #996E11;
    color: var(--white);
}

.btn-toggle {
    position: relative;
    border: 1px solid var(--light);
    border-radius: 35px;
    width: 28px;
    height: 16px;
}

.btn-toggle.active {
    background: #996E11;
    border-color: #996E11;
}

.btn-toggle > .handle {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    left: 2px;
    border-radius: 30px;
    background: var(--gray-1);
    transition: left 0.25s;
}

.btn-toggle.active > .handle {
    left: 12px;
    transition: left 0.25s;
}

.address-switch {
    display: flex;
    align-items: center;
    gap: 8px;
}

.address-default {
    font-size: 12px;
    line-height: 15px;
}

.button-modal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.add-adress {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.add-adress a {
    letter-spacing: .32px;
    color: var(--primary);
}

@media (max-width: 991px) {

    .pay-option .option-select__item p {
        font-size: 12px;
    }

    .info-pay .form-group button {
        max-width: 20%;
        flex: 0 0 20%;
    }

    .note-payment input[type="text"] {
        width: 100%;
        background: transparent;
        padding: 12px 16px;
        font-size: 14px;
        line-height: 20px;
        border: 1px solid var(--light);
        border-radius: 4px;
    }

    .note-payment input[type="text"]:focus {
        outline: none;
    }
}

@media (max-width: 767px) {
    .info-pay .form-group {
        flex-direction: column;
        gap: 10px;
    }

    .info-pay .form-group input,
    .info-pay .form-group button {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .info-pay .form-group button {
        width: 100%;
    }

    .title-pay h3 {
        font-size: 12px;
    }

    .frm-pay .woocommerce td {
        padding: 0;
    }

    .frm-pay .woocommerce .woocommerce-cart-form__cart-item,
    .info-transfer .woocommerce-cart-form__cart-item {
        border-bottom: 1px solid var(--light);
        padding-bottom: 8px;
        margin-bottom: 24px;
        display: block;
    }

    .frm-pay .woocommerce .woocommerce-cart-form__cart-item:last-child,
    .info-transfer .woocommerce-cart-form__cart-item:last-child {
        margin-bottom: 0;
    }

    .frm-pay .product-cart {
        max-width: 100%;
    }

    .info-payment .content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .qr-code,
    .content-payment {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .qr-code {
    	margin: 0 auto;
    }

    .content-payment {
        padding-left: 0;
    }

    .info-transfer {
    	background: var(--bg-light-1);
    	padding: 24px;
    	border: 1px solid var(--light);
    	border-radius: 12px;
    	margin-bottom: 24px;
    }

    .info-transfer .woocommerce-cart-form__cart-item td {
    	padding: 0;
    }
}

/*---------------------
  Pay Login
-----------------------*/

.address-content .address_type {
    background: #996E11;
    color: var(--white);
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: .32px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 4px 8px;
}

.address-content span:nth-child(2) {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
}

.address-content p,
.content-package p {
    color: var(--light-1);
}

.delivery-content,
.content-package {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.delivery-content span {
    display: none;
    background: #FFE9B9;
    color: #996E11;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
}

.content-package span {
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: .6px;
    color: #996E11;
}

.content-package .price {
    color: #996E11;
}

.pay-option .option-select__item.active .delivery-content span {
    display: block;
}

.woocommerce .pay-option .option-select__item.active {
    background: #FFF4DD;
    border-color: #996E11;
}

.payment-cart .voucher {
    flex-wrap: initial;
}

.cart-collaterals .voucher p span {
    color: #0d6efd;
    font-size: 14px;
    line-height: 15px;
    font-style: italic;
    font-weight: 400;
    text-align: initial;
}

@media (max-width: 991px) {

    .delivery-content span {
        font-size: 12px;
        line-height: 20px;
    }

    .price-method {
        font-size: 12px;
    }
}

@media (max-width: 767px) {

    .address-content span:nth-child(2) {
        font-size: 12px;
    }

    .delivery-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .pay-option .option-select__item.active .content-method .content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/*---------------------
  Order Result COD/VNPAY
-----------------------*/

.order-result h4 {
    color: var(--primary);
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
}

.order-code {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .32px;
    text-transform: uppercase;
    padding: 8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.order-result p {
    font-size: 12px;
    line-height: 15px;
}

.order-result p span.email,
.order-result p span.hotline {
    font-weight: 600;
    color: var(--dark);
}

.detail-order h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.box-content-order {
    display: flex;
    /*flex-wrap: wrap;
    align-items: center;*/
}
.box-content-order.flex-column {
    align-items: flex-start;
}

.box-content-order:not(:last-child) {
    margin-bottom: 8px;
}

.box-content-order p {
/*    max-width: 30%;*/
    flex: 0 0 100px;
    font-size: 14px;
    line-height: 20px;
    color: var(--light-1);
}

.box-content-order span {
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
}

.box-content-order.status label {
    background: var(--third);
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--dark);
    letter-spacing: .32px;
    padding: 8px;
    border-radius: 8px;
}

.box-content-order.transfer-status label{
    background: #0084C9;
    color: var(--white);
}

.box-content-order.failed label {
    background: var(--light);
}

.box-content-order.delivery label {
    background: #FFE9B9;
}

.payment-cart .btn-order-group a,
.btn-comment a {
    padding-left: 35px;
    padding-right: 35px;
}

.payment-cart .btn-order-group a.back-home,
.btn-comment a:first-child {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    transition: all .3s ease;
}

.payment-cart .btn-order-group a.back-home:hover,
.btn-comment a:first-child:hover {
    background: var(--primary);
    color: var(--white);
}

.order-result-price {
    border: none;
    border-radius: 0;
    background: var(--bg-light-1);
}

.content-transfer h5 {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
}

.content-transfer p {
    font-size: 12px;
    line-height: 15px;
    color: var(--dark);
}

.content-transfer p:not(:last-child) {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
	.bg-transfer {
		background: transparent;
	}
}

@media (max-width: 991px) {
	.title-order__result h3 {
		font-size: 20px;
		line-height: 25px;
	}
}

@media (max-width: 767px) {

	.order-result h4 {
		font-size: 18px;
		line-height: 20px;
	}

	.title-order__detail h3 {
		font-size: 18px;
		line-height: 20px;
	}

	.payment-cart .btn-order-group a,
	.btn-comment a {
		text-align: center;
		padding-left: 16px;
		padding-right: 16px;
	}

	.payment-cart {
		padding: 0;
	}

	.rw-transfer__payment {
		flex-direction: column-reverse;
	}

	.order-payment:first-child {
		order: 2;
		text-align: center;
	}

	.order-payment:nth-child(2) {
		order: 1;
	}

	.order-payment:last-child {
		order: 3;
	}

	.box-content-order p {
		max-width: 35%;
		flex: 0 0 35%;
	}

	.box-content-order span {
		max-width: 65%;
		flex: 0 0 65%;
	}
}

/*---------------------
  Canceled Order
-----------------------*/

.cancel-order .icon-box,
.cancel-order .line {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cancel-order .line {
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 3px;
    border-color: var(--red);
    border-style: solid;
}
.cancel-order .icon-box {
    left: 0;
    z-index: 9;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.cancel-order .icon-box.right {
    left: unset;
    right: 0;
    align-items: flex-end;

}

.cancel-content {
    font-size: 14px;
    line-height: 20px;
}

@media (max-width: 767px) {

    .cancel-order .line {
        top: 10px;
    }

    .cancel-order .cancel-content {
        top: -40px;
    }

    .cancel-order .icon-box.right .cancel-content {
        left: initial;
        right: 0;
    }

    .cancel-order .icon-box.right .cancel-content::before {
        left: initial;
        right: 10px;
    }
}

/*order-process-bar*/
.order-process-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}
.order-process-bar:before ,
.order-process-bar:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 1%;
    transform: translateY(-50%);
    width: 98%;
    height: 10px;
    background: #EAEAEB;
}
.order-process-bar:after {
    width: 0;
    background: #FFB81C;
}
.order-process-bar .item {
    position: relative;
    z-index: 9;
/*    width: 200px;*/
    flex: 1;
}
.order-process-bar .item:before {
    content: "";
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    display: block;
    margin: 5px 0;
    background-image: url('../img/star-checkout.png');
    background-position: center center;
    background-repeat: no-repeat;
}
.order-process-bar .item:not(:first-child):before {
    margin: 5px auto;
}
.order-process-bar .item:last-child:before {
    margin-left: auto;
    margin-right: 0;
}

.order-process-bar .item-content {
    position: absolute;
    top: 100%;
    width: 100%;
}
.order-process-bar .item-content:first-child {
    top: unset;
    bottom: 100%;
}
.order-process-bar .item:not(:first-child) .item-content {
    text-align: center;
}
.order-process-bar .item:last-child .item-content {
    right: 0;
    text-align: right;
}


.order-process-bar .item p {
    margin-bottom: 0;
}
/*.order-process-bar .item-content*/
/*order-process-bar*/

/*---------------------
  Delivery Order
-----------------------*/

.delivery-order::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: var(--light-1);
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.box-order-delivery {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.box-order-delivery .icon-box {
    position: relative;
    /*transform: translateY(15px);*/
    top: 20px;
    margin: 0 24px;
    box-sizing: content-box;
    z-index: 500;
    width: 162px;
    /*height: 100.53px;*/
    flex-flow: inherit;
    flex-direction: column;
}

.checkout-successfully .icon-box {
    top: 10px;
}

.checkout-successfully .icon-box:nth-child(2) {
    top: 20px;
}

.box-order-delivery .icon-box:first-child {
    margin-left: 0;
    align-items: flex-start;
    min-height: 90px;
    top: 10px;
    /*transform: translateY(0px);*/
}

.box-order-delivery .icon-box:last-child {
    margin-right: 0;
    align-items: flex-end;
}

.box-order-delivery .icon-box:last-child .cancel-content {
    text-align: right;
}

.note-order h5,
.note-order li {
    font-weight: 700;
    color: #8C8D8F;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.note-order li {
    font-weight: 400;
}

.line-delivery {
    background: #FFB81C;
    display: block;
    position: absolute;
    width: 100%;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.delivery-order-check .line-delivery {
    width: 35%;
}

.alert-info h5 {
    font-size: 14px;
    line-height: 15px;
    font-weight: 600;
    margin-bottom: 16px;
}

.alert-info ul,
.prepay ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.alert-info li,
.prepay li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-info li:not(:last-child),
.prepay li:not(:last-child) {
    padding-bottom: 8px;
}

.alert-info p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
}

.alert-info p span.Voucher {
    font-size: 12px;
    line-height: 15px;
    color: #0d6efd;
    font-style: italic;
}

.alert-info p.transport {
    font-size: 12px;
    line-height: 20px;
    font-style: italic;
    color: var(--light);
    letter-spacing: .32px;
}

.alert-info .total {
    border-top: 1px solid var(--light);
    margin-top: 16px;
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.alert-info .total p:last-child {
    font-weight: 600;
}

.prepay {
    border-top: 1px solid var(--light);
    margin-top: 16px;
    padding-top: 16px;
}

.prepay li span {
    font-size: 10px;
    line-height: 15px;
    color: var(--light);
    font-style: italic;
}

.order-delivery .order {
    padding-top: 0;
    padding-bottom: 8px;
}

.order-delivery .order:first-child {
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    padding-top: 10px;
    margin-top: 16px;
    margin-bottom: 10px;
}

@media (max-width: 991px) {

    .box-order-delivery .icon-box {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {

    .checkout-page-top .box-order-delivery .icon-box {
        top: 10px;
    }

    .checkout-successfully .icon-box:nth-child(2) {
        top: 10px;
    }

    .delivery-order {
        width: 90%;
        margin: 0 auto;
    }

    .box-order-delivery .icon-box:first-child {
        min-height: auto;
    }

	.box-order-delivery .icon-box {
		margin: 0;
		/*transform: translateY(5px);*/
	}

	.cancel-content {
		font-size: 11px;
        line-height: 16px;
		position: absolute;
		top: -55px;
		left: 0;
		/*width: 100%;*/
		padding: 5px;
		background: #414142;
        border-radius: 4px;
		color: var(--white);
		visibility: hidden;
	}

	.cancel-content::before {
		content: '';
	    position: absolute;
	    bottom: -0.25rem;
	    left: 10px;
	    width: 8px;
	    height: 8px;
	    rotate: 45deg;
	    z-index: -1;
	    background-color: inherit;
	}

	.icon-box.active:hover .cancel-content {
		visibility: visible;
	}

    .box-order-delivery .icon-box:nth-child(2) .cancel-content::before,
    .box-order-delivery .icon-box:nth-child(3) .cancel-content::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .box-order-delivery .icon-box:last-child .cancel-content::before {
        left: unset;
        right: 10px;
    }

	.delivery-content__sm {
		font-size: 10px;
		line-height: 18px;
	}

    .order-delivery__content {
        font-size: 10px;
        line-height: 18px;
        font-weight: 600;
        color: var(--primary);
    }
}

/*---------------------
  Account Management
-----------------------*/

.customer-dashboard-content .frm-account {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.account_infomation h5 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 16px;
}

.account_infomation p {
    line-height: 20px;
}

.add_new_child {
    text-align: right;
}

.add_new_child a {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: var(--dark);
    letter-spacing: .32px;
    text-transform: uppercase;
}

.customer-update {
    margin-top: 32px;
}

.list-address .item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.customer-address .cart-item-select {
    margin-bottom: 0;
}
.customer-address .cart-item-select:not(:last-child) .item ,
.list-address .item:not(:last-child) {
    border-bottom: var(--light) solid 1px;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.list-address .cart-item-select .checkmark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.customer-address .item-select {
    display: none;
}

.left-address {
    flex: 1;
}

.left-address p {
    margin-bottom: 5px;
    color: var(--dark);
    font-size: 14px;
    line-height: 15px;
}

.left-address p:first-child {
    font-weight: 600;
}

.left-address p:last-child {
    color: var(--dark);
}

.left-address label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .32px;
    font-weight: 600;
    padding: 4.5px 16px;
    border-radius: 20px;
    color: var(--white);
    background: #996E11;
}

.left-address label:last-child {
    background: transparent;
    border: 1px solid #996E11;
    color: #996E11;
}

.right-address {
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.right-address a {
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;
    color: var(--light-1);
    display: block;
}

@media (max-width: 767px) {

	.account_infomation h5 {
		font-size: 16px;
		line-height: 12px;
		text-transform: uppercase;
	}

	.account_infomation p,
	.left-address p {
		font-size: 12px;
		line-height: 18px;
	}

	.left-address p:first-child {
		font-size: 14px;
		line-height: 15px;
	}

    .add-address {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .add_new_child a {
        font-size: 12px;
        line-height: 20px;
        letter-spacing: .32px;
    }
}

/*---------------------
  Purchase History
-----------------------*/

.search-bar {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
/*    height: 100%;*/
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-1);
    border-radius: 50px;
    background-color: #FFFCF5;
}

.input-search {
    -ms-flex-negative: 1;
    -ms-flex-preferred-size: auto !important;
    flex: 1;
    max-height: 100%;
}

.input-search input[type="text"] {
    border: none;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .32px;
    padding: 14px 16px;
    background: unset;
}

.input-search input[type="text"]:focus {
    box-shadow: none;
}

.button-search {
    max-height: 100%;
    padding-right: 16px;
}

.button-search button {
    background: transparent;
    border: none;
}

.list-purchase .cart_item td:first-child {
    height: 100%;
    justify-content: center;
}

.table-cart td {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
/*    white-space: nowrap;*/
}
.table-cart td a {
    color: var(--primary);
}
.table-cart .alert {
    padding: 10px;
}

.purchase-content a {
    color: var(--primary);
    padding: 0;
    border: none;
    border-radius: 0;
}

.table-cart a.comment {
    color: #C4CDCE;
}

.list-purchase .box-content-order,
.list-purchase .box-content-order.status {
    display: block;
    border-radius: 4px;
}

.box-content-order.purchase-status {
    background: var(--third-1);
    white-space: nowrap;
}

/*---------------------
  Rating Order
-----------------------*/

.ask-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.ask-rating:not(:last-child) {
    padding-bottom: 16px;
}

.content-rating-ask,
.item-cont-rating {
    max-width: 50%;
    flex: 0 0 50%;
}

.content-rating-ask {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--primary);
}

.item-cont-rating a {
    color: var(--light-1);
}

.item-cont-rating a:hover {
    color: var(--secondary);
}

.product-rating {
    margin-bottom: 32px;
}

.form-comment textarea {
    line-height: 20px;
    color: var(--light);
}

.form-comment textarea::placeholder {
    color: var(--light);
}

.form-comment textarea:focus,
.order-notes textarea:focus {
    box-shadow: none;
}

.form-comment p {
    line-height: 20px;
    margin-bottom: 8px;
}

.upload-image {
    cursor: pointer;
    display: inline-block;
    border: 1px solid var(--light);
    border-radius: 4px;
    text-align: center;
    padding: 33px;
}

.upload-image span {
    font-size: 12px;
    line-height: 15px;
    display: block;
}

.btn-comment {
    margin-top: 32px;
}

@media (max-width: 767px) {

    .ask-rating {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .content-rating-ask, 
    .item-cont-rating {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .content-rating-ask {
        font-size: 14px;
        line-height: 20px;
    }

    .form-comment textarea {
        font-size: 14px;
        line-height: 18px;
    }

    .form-comment p {
        font-size: 12px;
        line-height: 18px;
    }

    .btn-comment {
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }
}

/*---------------------
  About Page
-----------------------*/

.info-about {
    background: var(--primary);
    color: var(--white);
}

.left-about__content h4 {
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    display: inline-block;
    max-width: 45%;
    margin-bottom: 32px;
}

.left-about__content p {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}

.right-about__img {
    overflow: hidden;
    border-radius: 12px;
}

@media (max-width: 767px) {

    .left-about__content h4 {
        max-width: 75%;
        font-size: 24px;
        line-height: 30px;
    }

    .left-about__content p {
        font-size: 12px;
        line-height: 18px;
    }
}

/*---------------------
  Blog Page
-----------------------*/
.blog-item {
    height: 100%;
}
.blog-item:hover {
    box-shadow: 0px 0px 20px 0px #0000001A;
    background: var(--bg-light-1);
}
.blog-item .item-img {
    position: relative;
}
.blog-item .item-img:before{
    content: "";
    display: block;
    padding-top: 70%;
}
.blog-item .item-img a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
}
.blog-item .item-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.content-blog h4 {
    font-size: 20px;
    line-height: 25px;
}

.content-blog p {
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-blog .blog-item {
    margin-top: 15px;
}

@media (max-width: 767px) {

    .title-blog h3 {
        font-size: 40px;
        line-height: 48px;
    }
    
    .content-blog h4 {
        font-size: 18px;
        line-height: 20px;
    }

    .content-blog p {
        font-size: 12px;
        line-height: 18px;
    }
}

/*---------------------
  Detail Blog Page
-----------------------*/

.featured-image {
    margin-bottom: 40px;
}

.blog-detail h1 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 24px;
}

.blog-date {
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary);
}

.blog-date p {
    letter-spacing: .32px;
}

.blog-detail h5 {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: .6px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 40px 0 24px;
}

.blog-detail p {
    line-height: 20px;
}

.image-caption p {
    background: var(--light-2);
    font-size: 14px;
    padding: 16px;
    margin: 40px 0;
}

.tag-blog {
    border-top: 1px solid var(--light);
    margin-top: 20px;
    padding-top: 16px;
}

.tag-blog a {
    border: 1px solid var(--light-1);
    border-radius: 20px;
    padding: 4px 8px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: .32px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--secondary);
    display: inline-block;
}

@media (max-width: 991px) {
    .blog-detail h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .blog-detail h5 {
        line-height: 24px;
    }

    .blog-detail p {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 767px) {

    .blog-detail h1 {
        font-size: 24px;
        line-height: 30px;
    }

    .blog-detail h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .blog-detail p {
        font-size: 12px;
        line-height: 18px;
    }
}

#priceFilter {
	width: 100%;
}

.irs {
    position: relative; 
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.irs-line {
    position: relative; display: block;
    overflow: hidden;
    outline: none !important;
}

.irs-line-left, .irs-line-mid, .irs-line-right {
    position: absolute; display: block;
    top: 0;
}

.irs-line-left {
    left: 0; width: 11%;
}

.irs-line-mid {
    left: 9%; width: 82%;
}

.irs-line-right {
    right: 0; width: 11%;
}

.irs-bar {
    position: absolute; display: block;
    left: 0; width: 0;
}

.irs-bar-edge {
    position: absolute; display: block;
    top: 0; left: 0;
}

.irs-shadow {
    position: absolute; display: none;
    left: 0; width: 0;
}

.irs-slider {
    position: absolute; display: block;
    cursor: default;
    z-index: 1;
}

.irs-slider.type_last {
    z-index: 2;
}

.irs-min {
    position: absolute; 
    display: block;
    left: 0;
    cursor: default;
}
.irs-max {
    position: absolute; 
    display: block;
    right: 0;
    cursor: default;
}

.irs-from, .irs-to, .irs-single {
    position: absolute; 
    display: block;
    bottom: 0; 
    left: 0;
    cursor: default;
    white-space: nowrap;
}

.irs-grid {
    position: absolute; 
    display: none;
    bottom: 0; left: 0;
    width: 100%; height: 20px;
}
.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-text {
    position: absolute;
    bottom: 0; left: 0;
    white-space: nowrap;
    text-align: center;
    font-size: 9px; line-height: 9px;
    padding: 0 3px;
    color: #000;
}

.irs-disable-mask {
    position: absolute; display: block;
    top: 0; left: -1%;
    width: 102%; height: 100%;
    cursor: default;
    background: rgba(0,0,0,0.0);
    z-index: 2;
}
.lt-ie9 .irs-disable-mask {
    background: #000;
    filter: alpha(opacity=0);
    cursor: not-allowed;
}

.irs-disabled {
    opacity: 0.4;
}

.irs-hidden-input {
    position: absolute !important;
    display: block !important;
    top: 0 !important;
    left: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
    z-index: -9999 !important;
    background: none !important;
    border-style: solid !important;
    border-color: transparent !important;
}


/* Ion.RangeSlider, Simple Skin
// css version 2.0.3
// Â© Denis Ineshin, 2014    https://github.com/IonDen
// Â© guybowden, 2014        https://github.com/guybowden
// ===================================================================================================================*/

/* =====================================================================================================================
// Skin details */

.irs {
    height: 55px;
}

.irs-with-grid {
    height: 75px;
}

.irs-line {
    height: 5px; 
    top: 17px;
    background: #EEE;
    background: linear-gradient(to bottom, #DDD -50%, #FFF 150%); /* W3C */
    border: 1px solid #CCC;
    border-radius: 16px;
    -moz-border-radius: 16px;
}

.irs-line-left {
    height: 8px;
}

.irs-line-mid {
    height: 8px;
}

.irs-line-right {
    height: 8px;
}

.irs-bar {
    height: 5px; 
    bottom: 33px;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    background: var(--primary); /* W3C */
}

.irs-bar-edge {
    height: 10px; 
    top: 33px;
    width: 14px;
    border: 1px solid #8c131c;
    border-right: 0;
    background: #8c131c;
    background: linear-gradient(to top, #8c131c 0%, #c1131c 100%); /* W3C */
    border-radius: 16px 0 0 16px;
    -moz-border-radius: 16px 0 0 16px;
}

.irs-shadow {
    height: 2px; top: 38px;
    background: #000;
    opacity: 0.3;
    border-radius: 5px;
    -moz-border-radius: 5px;
}

.lt-ie9 .irs-shadow {
    filter: alpha(opacity=30);
}

.irs-slider {
    top: 10px;
    width: 20px; 
    height: 20px;
    border: 1px solid var(--primary);
    background: var(--primary) url(../img/star.svg); /* W3C */
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 27px;
    -moz-border-radius: 27px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    cursor: pointer;
}

/*.irs-slider.state_hover, .irs-slider:hover {
    background: #FFF;
}*/

.irs-min, .irs-max {
    color: var(--black);
    font-size: 12px; 
    line-height: 16px;
    font-weight: 600;
    text-shadow: none;
    bottom: 0;
    border-radius: 3px;
    -moz-border-radius: 3px;
}

.lt-ie9 .irs-min, .lt-ie9 .irs-max {
    background: #ccc;
}

.irs-from, .irs-to, .irs-single {
    color: var(--black);
    font-size: 12px; 
    line-height: 16px;
    text-shadow: none;
    font-weight: 600;
}
.lt-ie9 .irs-from, .lt-ie9 .irs-to, .lt-ie9 .irs-single {
    background: #999;
}

.irs-grid {
    height: 27px;
}

.irs-grid-pol {
    opacity: 0.5;
    background: #428bca;
}

.irs-grid-pol.small {
    background: #999;
}

.irs-grid-text {
    bottom: 5px;
    color: #99a4ac;
}

/*owl-stage*/
.list-product .owl-stage {
    display: flex;
}
.list-product .owl-item {
    flex: 1 0 auto;
} 
.owl-stage .item-product {
    height: 100%;
}
/*owl-stage*/

/*mini cart*/
.mini-products-list {
    overflow-y: auto;
    max-height: 450px;
}
.widget-light .widget-list-link {
    color: rgba(255, 255, 255, .65)
}

.widget-light .widget-list-link:hover {
    color: #fff
}

.widget-light .active>.widget-list-link {
    color: #fff
}

.widget-product-title {
    margin-bottom: .25rem;
    font-size: .875rem;
    font-weight: 500;
    max-width: 90%;
}

.widget-product-title>a {
    color: #373f50
}

.widget-product-title:hover>a {
    color: var(--cz-primary)
}

.widget-product-meta {
    font-size: .875rem
}

.widget-cart-item {
    position: relative;
    max-width: 96%;
}

.widget-cart-item .btn-close {
    position: absolute;
    top: 17px;
    right: 0;
    height: auto;
    padding: 0;
    transform: translateY(-50%);
    transition: visibility .25s ease-in-out, opacity .25s ease-in-out;
    background: none;
    font-size: 1.5rem;
    font-weight: 300;
    visibility: visible;
    opacity: 1;
}

.widget-cart-item>.d-flex {
    transition: all .25s ease-in-out
}

.widget-cart-item:hover>.d-flex {
/*    transform: translateX(24px);*/
}

/*.widget-cart-item:hover .btn-close {
    visibility: visible;
    opacity: 1
}*/

.widget-cart-item .note {
    font-size: 12px;
    color: #787878;
}

.widget-cart-item .pre_order-text {
    font-size: 14px;
}

@media (min-width: 992px)
{
    .site-cart.dropdown:hover>.dropdown-menu {
        display: block;
        -webkit-animation: slide-up .25s ease-in-out;
        animation: slide-up .25s ease-in-out
    }
}
/*mini cart*/



/**/

input+.error, select+.error {
  font-size: 15px;
  color: #f00;
  margin-top: 5px;
}

form div.error,
.error-message, input+.error, select+.error {
  font-size: 13px;
  color: #f00;
  margin-top: 5px;
}
input.is-invalid+.error, select.is-invalid+.error {
    display: block !important;
}
.select2+.error {
  position: absolute;
  bottom: -22px;
}

.select2-container {
    z-index: 9999;
}
/**/

/*---------------------
  My Order
-----------------------*/

.customer-dashboard {
  padding: 30px 0;
}

.customer-menu {
  display: block;
  position: relative;
  border: 1px solid var(--bg-light);
  border-top: 3px solid var(--primary);
  border-radius: 5px;
  overflow: hidden;
}

.customer-menu .tit-menu-cus {
  color: var(--primary);
  font-weight: 700;
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid #c9d0cd;
  font-size: 17px;
  display: block;
  line-height: 20px;
}

.block_info_profile {
  padding: 15px 20px;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  align-items: center;
  gap: 10px;
}

.avata_profile {
  width: 50px;
}

.block_info_profile .name_profile {
  color: var(--primary);
}

.name_profile p {
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
}

.name_profile a {
  color: var(--dark);
  font-size: 14px;
  line-height: 24px;
}

.name_profile a:hover {
  color: var(--primary);
}

.customer-menu ul.menu_siderbar_custom_view {
  display: block;
  list-style: none;
  padding-left: 0;
}

ul.menu_siderbar_custom_view > li {
  border-bottom: 1px solid #d7d7d7;
  margin: 0;
  position: relative;
  text-transform: uppercase;
}

.customer-menu ul.menu_siderbar_custom_view li {
  padding-left: 20px;
}

ul.menu_siderbar_custom_view > li:before {
  position: absolute;
  left: 2px;
  content: '\f111';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 8px;
  top: 50%;
  color: var(--primary);
  transform: translateY(-50%);
}

.customer-menu ul.menu_siderbar_custom_view li:before {
  left: 15px;
}

ul.menu_siderbar_custom_view > li > a {
  border-left: 0;
  padding: 15px 0 15px 15px;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--secondary);
  font-size: 13px;
  letter-spacing: 1.2px;
  display: block;
}

.customer-menu ul.menu_siderbar_custom_view li a:hover,
ul.menu_siderbar_custom_view li a.active {
  text-decoration: underline;
  color: var(--primary);
}

/*.customer-dashboard-content {
  display: block;
  position: relative;
  border: 1px solid var(--bg-light);
  border-top: 3px solid var(--primary);
  border-radius: 5px;
  overflow: hidden;
}
*/
.customer-dashboard-content .page-title h2 {
  color: var(--primary);
  font-weight: 700;
  padding: 10px 10px 10px 15px;
  border-bottom: 1px solid var(--bg-light);
  font-size: 17px;
  text-transform: uppercase;
}

.customer-dashboard-content .content_profile_view_container {
  padding: 10px;
}

.my-dashboard {
  padding-bottom: 10px;
}

.my-dashboard p {
  font-size: 14px;
  line-height: 24px;
}

.row-title {
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  font-weight: 700;
  font-size: 18px;
}

.title_primary_profile {
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: 15px;
  padding-bottom: 10px;
  padding-top: 0;
  margin-top: 0;
}

.title_primary_profile a,
.profile_view_usr .item a.action {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-transform: uppercase;
}

.profile_view_usr .item {
  padding: 15px 10px;
  display: block;
}

.profile_view_usr .item span.label {
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
}

.profile_view_usr .item span.value,
.contact_title,
.address-cnt {
  color: var(--secondary);
  font-size: 14px;
  line-height: 24px;
}

.profile_view_usr .item:nth-child(2n) {
  background: #f8f8f8;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 15px auto;
}

.avatar-upload .avatar-edit {
  display: none;
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}

.avatar-upload .avatar-edit input {
  display: none;
}

.avatar-upload .avatar-edit.active {
    display: block;
}

.content_profile_view_container .card-body .form-group input, 
.content_profile_view_container .card-body .form-group select, 
.content_profile_view_container .card-body .form-group textarea {
  font-size: 14px;
  color: var(--secondary);
}

.content_profile_view_container .card-body .form-group input:focus, 
.content_profile_view_container .card-body .form-group select:focus, 
.content_profile_view_container .card-body .form-group textarea:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input + label::after {
    content: '\f304';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    color: var(--dark);
    position: absolute;
    top: 7px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.content_profile_view_container .card-body .form-group label {
  display: block;
  margin-bottom: 3px;
}

.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview {
  width: 100px;
  height: 100px;
}

.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.content_profile_view_container input[type="button"],
.content_profile_view_container input[type="submit"] {
  background: var(--primary);
  color: var(--white) !important;
}

.content_profile_view_container input[name="btn_cancel"].form-control {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--white);
}

.btn_edit_form.active,
.btn_update,
.btn_cancel {
  display: none;
}

.btn_update.active,
.btn_cancel.active {
  display: block;
}

.btn-add-old-order {
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
  border-radius: 4px;
}

.list-order .btn-add-old-order:hover,
.list-order .btn-add-old-order:active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.list-order .navbar-expand-lg .navbar-nav a {
    background: #f2f1f6;
    color: var(--black) !important;
    display: inline-block;
    padding: 5px 20px;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 15px;
    border-right: none !important;
    white-space: nowrap;
}

.list-order .navbar-nav .nav-link.active {
    font-weight: 700;
    color: var(--primary);
}

.list-order .navbar-expand-lg .navbar-nav a.active, 
.list-order .navbar-expand-lg .navbar-nav a:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/**/

/*pagination*/
.pagination {
    gap: 10px;
}
.page-link {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;
    color: var(--primary);
    line-height: 31px;
    border: 0;
    border-radius: 50%;
    background: #fff;
}
.page-item:first-child .page-link ,
.page-item:last-child .page-link{
    border-radius: 50%;
    line-height: unset;
}
.page-link:hover ,
.active>.page-link, .page-link.active {
    color: #fff;
    background-color: var(--primary);
}
.page-link:focus {
    box-shadow: unset;
}
/*pagination*/

/*cart_totals*/
.cart_totals .cart-subtotal{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    font-size: 12px;
}
.cart_totals .cart-subtotal:not(:last-child) {
    margin-bottom: 10px;
}
.cart_totals .data-total {
    font-size: 16px;
    margin-top: 16px;
    border-top: 1px solid var(--light);
    padding: 24px 0;
}
.cart_totals .data-total span {
    color: #C41B24;
}
/*cart_totals*/