/*------------------------------------------------------------------
[Table of contents]

Variables
Utilities
Layout
Page
General
Responsive
-------------------------------------------------------------------*/
/* variables */
/* Utilities */
/* ***********************************************************************************************
    MIXIN
************************************************************************************************ */
/* input-button */
/****/

/* General */
hr {
	margin-top: 20px;
	margin-bottom: 20px;
	border-top: 1px solid #e1e1e1;
}

a {
	color: var(--color-text);
	text-decoration: none;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

a:hover {
	color: var(--color-highlight);
}

a:hover img.svg-hover {
	filter: var(--svg-hover);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 400;
}

h1,
.h1 {
	font-size: 24px;
}

h2,
.h2 {
	font-size: 20px;
}

h3,
.h3 {
	font-size: 18px;
}

h4,
.h4 {
	font-size: 16px;
}

h5,
.h5 {
	font-size: 13px;
}

h6,
.h6 {
	font-size: 11px;
}

html, body {
    overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--color-text);
	background: #F8F8F8;
}

body::after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	z-index: 1020;
}

:focus {
	-webkit-box-shadow: none !important;
	outline: -webkit-focus-ring-color auto 0px !important;
}

.dark-overlay::after {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

span.required {
	color: var(--red);
}

.mw-40 {
	max-width: 40% !important;
}

.mw-60 {
	max-width: 60% !important;
}

.image-60 {
	max-width: 60px;
	width: 100%;
}

.bg-main {
	background: var(--color-main) !important;
}

.bg-black {
	background: var(--black) !important;
}

.color-main {
	color: var(--color-main) !important;
}

.color-red {
	color: var(--red) !important;
}

.color-text {
	color: #7B7B7B !important;
}

.color-text-prd {
	color: var(--color-text-prd) !important;
}

.rounded {
	border-radius: 5px !important;
}

.font-danger {
	color: var(--red);
}

.font-success {
	color: #390;
}

.font-primary {
	color: #5867dd;
}

.font-secondary {
	color: #e1e1ef;
}

.font-info {
	color: #5578eb;
}

.font-warning {
	color: #ffb822;
}

.font-light {
	color: var(--light);
}

.font-dark {
	color: #343a40;
}

.font-muted {
	color: #74788d;
}

.font-medium {
	font-weight: 500;
}

.font-semiblod {
	font-weight: 600;
}

.font-large {
	font-size: 16px;
}

.font-extra-large {
	font-size: 18px;
}

.bg-breadcrums {
	background-color: var(--white);
}

.bg-light {
	background-color: #ebebeb !important;
}

.separation-dash {
	border-bottom: 1px dashed #707070;
}

label {
	font-weight: 600;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
	width: 100%;
	max-width: 100%;
	padding: 0 15px;
	vertical-align: middle;
	height: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

textarea {
	padding: 10px 15px;
	min-height: 80px;
	border-radius: 0.25rem;
    border: 1px solid #ced4da;
}

.btn-light {
	background-color: var(--light);
	border-color: var(--light);
}

.btn-normal {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	padding: 0 25px;
	line-height: 40px;
	height: 40px;
}

.btn-dark {
	background-color: var(--black);
	border-color: var(--black);
}

.btn-dark.focus,
.btn-dark:focus,
.btn-dark:hover {
	background-color: var(--color-highlight);
	border-color: var(--color-highlight);
}

.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
    /* Chrome all / Safari all */
	-moz-user-select: none;
    /* Firefox all */
	-ms-user-select: none;
    /* IE 10+ */
	user-select: none;
}

.inner-checkbox {
	padding-left: 30px;
	margin-bottom: 0;
	position: relative;
	cursor: pointer;
	padding-top: 2px;
	font-weight: 400;
}

.inner-checkbox > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.inner-checkbox > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.inner-checkbox > input:checked ~ span::after {
	display: block;
}

.inner-checkbox > input:disabled ~ span {
	opacity: 0.6;
	filter: alpha(opacity=60);
	pointer-events: none;
}

.inner-checkbox > span {
	border-radius: 3px;
	position: absolute;
	top: 4px;
	left: 0;
	height: 18px;
	width: 18px;
	border: 1px solid var(--color-highlight);
}

.inner-checkbox > span::after {
	content: "";
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -2px;
	margin-top: -6px;
	width: 5px;
	height: 10px;
	border-width: 0 2px 2px 0 !important;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border: solid var(--color-highlight);
}

.inner-checkbox:hover > input::not([disabled]):checked ~ span,
.inner-checkbox > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.entire-radio-inline .inner-radio {
	display: inline-block;
	margin-right: 15px;
	margin-bottom: 0px;
}

.inner-radio > span {
	border: 1px solid var(--color-highlight);
}

.inner-radio > span:after {
	border: solid var(--color-highlight);
	background: var(--color-highlight);
}

.inner-radio {
	display: inline-block;
	position: relative;
	padding-left: 18px;
	text-align: left;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	height: 18px;
}

.inner-radio.inner-radio--disabled {
	opacity: 0.8;
	cursor: not-allowed;
}

.inner-radio > input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.inner-radio > span {
	background: none;
	position: absolute;
	top: 4px;
	left: 0;
	height: 18px;
	width: 18px;
	border-radius: 50% !important;
}

.inner-radio > span:after {
	content: "";
	position: absolute;
	display: none;
	top: 50%;
	left: 50%;
	margin-left: -3px;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	border-radius: 100% !important;
}

.inner-radio > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background: none;
}

.inner-radio > input:checked ~ span:after {
	display: block;
}

.inner-radio:hover > input:not([disabled]):checked ~ span,
.inner-radio > input:checked ~ span {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.inner-radio > input:disabled ~ span {
	opacity: 0.6;
	pointer-events: none;
}

.color-white {
	color: var(--white);
}

.color-hover {
	color: #FFBF00 !important;
}

.color-black {
	color: #222;
}

.bg-toolbar {
	background-color: var(--light);
}

.opacity-0 {
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.is-mobile {
	margin-bottom: 50px;
}

.is-mobile .nh-row > .container {
	max-width: 768px;
}

.disable-scroll {
	overflow: hidden;
	height: 100%;
}

.container-full {
	padding: 0;
}

.container-full > .row {
	margin-right: 0;
	margin-left: 0;
}

.container-full > .row > .col,
.container-full > .row > [class*="col-"] {
	padding-right: 0;
	padding-left: 0;
}

.select2-container {
	height: 40px;
}

.select2-container .select2-selection--single {
	height: 40px;
	outline: none;
	background-color: var(--light);
	border: 2px solid #dee2e6;
	border-radius: 0;
}

.select2-container .select2-selection--single .select2-selection__arrow {
	right: 10px;
	height: 38px;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container .select2-selection--single .select2-selection__arrow::after {
	content: "\e92d";
	display: block;
	font-family: "iconsax";
	font-weight: 900;
	font-style: normal;
	line-height: 38px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
	color: var(--color-text);
	line-height: 36px;
	padding-left: 15px;
}

.select2-dropdown {
	border: 2px solid #dee2e6;
	border-top: none;
}

.select2-dropdown .select2-results__option {
	padding: 6px 15px;
	outline: none;
}

.select2-dropdown .select2-results__option.select2-results__option--highlighted[aria-selected],
.select2-dropdown .select2-results__option.select2-results__option--highlighted[data-selected] {
	background-color: var(--gray);
}

.select2-dropdown .select2-search--dropdown {
	padding: 10px 15px;
	background-color: var(--light);
	border-bottom: 1px solid #dee2e6;
}

.select2-dropdown .select2-search--dropdown .select2-search__field {
	background-color: var(--white);
}

.select2-dropdown .select2-results__options::-webkit-scrollbar {
	width: 6px;
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-track {
	border-radius: 8px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.align-row-center > .container > .row > div {
	margin-bottom: auto !important;
	margin-top: auto !important;
}

.btn-submit {
	background: var(--color-main);
	color: var(--white);
	text-align: center;
	border-radius: 5px;
	padding: 0 25px !important;
	height: 36px;
	line-height: 36px !important;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background-color: var(--color-highlight);
	color: var(--white);
}

.bootstrap-select > .dropdown-toggle {
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem !important;
}

.owl-carousel::before,
.owl-carousel::after {
	content: "";
	display: block;
	width: 80px;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: -1;
}

.owl-carousel::before {
	left: -80px;
}

.owl-carousel::after {
	right: -80px;
}

.owl-carousel:hover .owl-nav i {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.owl-carousel:hover .owl-nav .owl-prev {
	left: -55px;
}

.owl-carousel:hover .owl-nav .owl-next {
	right: -55px;
}

.owl-nav > div {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	-o-transform: translateY(50%);
	transform: translateY(50%);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.owl-nav > div.disabled i {
	color: rgba(0, 0, 0, 0.1);
}

.owl-nav .owl-prev {
	left: -75px;
}

.owl-nav .owl-next {
	right: -75px;
}

.owl-nav i {
	color: var(--black);
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	height: 40px;
	width: 40px;
	line-height: 40px;
	font-size: 24px;
	text-align: center;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.owl-nav i:hover {
	color: var(--color-highlight);
}

.owl-dots button:focus {
	outline: none;
}

.product-left.product-da-xem .title-section {
	margin-bottom: 30px !important;
	font-size: 30px;
}

.title-section {
	font-size: 42px;
	color: var(--color-main);
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.1;
}

.title-section-1 {
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
	color: var(--black);
	font-size: 14px;
}

.title-section-2 {
	font-weight: 600;
	color: var(--color-main);
	font-size: 16px;
	text-transform: uppercase;
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3e3e3;
}

.title-section-2 span {
	position: relative;
	font-weight: 700;
}

.title-section-2 span::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: -14px;
	background-color: var(--color-main);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

[nh-owl-slick] {
	visibility: hidden;
}

.slick-initialized[nh-owl-slick] {
	visibility: visible;
}

.events-none {
	pointer-events: none;
}

.error-page {
	font-size: 18px;
}

.error-page i {
	font-size: 80px;
}

.error-page a {
	color: #390;
}

.font-size-extra-large {
	font-size: 18px;
}

.border-top {
	border-top: 1px solid #e3e3e3;
}

.shadow-modal {
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
	padding: 5px 10px;
	border: solid 5px #797979;
}

.page-404-content {
	position: relative;
	max-width: 460px;
	margin: 80px auto 70px;
}

.page-404-content a {
	font-weight: 700;
}

.page-404-content a:hover {
	color: var(--color-highlight);
}

.responsive-table {
	width: 100%;
	margin-bottom: 1.5em;
	border-spacing: 0;
}

.responsive-table .btn-action {
	font-size: 18px;
}

@media (min-width: 48em) {
	.responsive-table {
		font-size: 0.9em;
	}
}

@media (min-width: 62em) {
	.responsive-table {
		font-size: 1em;
	}
}

.responsive-table thead {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

@media (min-width: 48em) {
	.responsive-table thead {
		position: relative;
		clip: auto;
		height: auto;
		width: auto;
		overflow: auto;
	}
}

.responsive-table thead th {
	background-color: var(--color-main);
	border: 1px solid var(--color-main);
	font-weight: normal;
	color: white;
	text-align: center;
}

.responsive-table thead th:first-of-type {
	text-align: left;
}

.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
	display: block;
	padding: 0;
	text-align: left;
	white-space: normal;
}

@media (min-width: 48em) {
	.responsive-table tr {
		display: table-row;
	}
}

.responsive-table [scope="disable"] {
	display: none;
}

@media (min-width: 48em) {
	.responsive-table [scope="disable"] {
		display: table-cell;
	}
}

.responsive-table th,
.responsive-table td {
	padding: 0.7em 0.5em;
	vertical-align: middle;
}

@media (min-width: 48em) {
	.responsive-table th,
    .responsive-table td {
		display: table-cell;
	}
}

.responsive-table caption {
	margin-bottom: 1em;
	font-size: 1em;
	font-weight: bold;
	text-align: center;
}

@media (min-width: 48em) {
	.responsive-table caption {
		font-size: 1.5em;
	}
}

.responsive-table tfoot {
	font-size: 0.8em;
	color: var(--color-main);
	border-top: 1px solid #e3e3e3;
}

@media (min-width: 62em) {
	.responsive-table tfoot {
		font-size: 0.9em;
		border-top: 0;
	}
}

.responsive-table tfoot th[scope="col"] {
	position: absolute;
	clip: rect(1px 1px 1px 1px);
	padding: 0;
	border: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

@media (min-width: 62em) {
	.responsive-table tfoot th[scope="col"] {
		position: relative;
		clip: auto;
		height: auto;
		width: auto;
		overflow: auto;
	}
}

.responsive-table tfoot td[data-title]:before {
	content: attr(data-title);
	float: left;
	font-weight: bold;
}

@media (min-width: 30em) {
	.responsive-table tfoot td[data-title]:before {
		font-size: 0.9em;
	}
}

@media (min-width: 48em) {
	.responsive-table tfoot td[data-title]:before {
		content: none;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody {
		display: table-row-group;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody tr {
		display: table-row;
		border-width: 1px;
	}
}

.responsive-table tbody tr:last-of-type {
	margin-bottom: 0;
}

.responsive-table tbody tr:nth-of-type(even) {
	background-color: #f1f1f1;
}

@media (min-width: 48em) {
	.responsive-table tbody tr:nth-of-type(even) {
		background-color: #f1f1f1;
	}
}

@media (min-width: 30em) {
	.responsive-table tbody th[scope="row"] {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody th[scope="row"] {
		background-color: transparent;
		color: var(--color-main);
		text-align: left;
	}
}

.responsive-table tbody td {
	text-align: right;
}

@media (min-width: 48em) {
	.responsive-table tbody td {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
		text-align: center;
	}

	.responsive-table tfoot td {
		border-left: 1px solid #ced4da;
		border-bottom: 1px solid #ced4da;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td.btn-setdafault {
		text-align: center;
	}
}

.responsive-table tbody td.btn-setdafault .inner-radio {
	margin-bottom: 0;
}

@media (min-width: 48em) {
	.responsive-table tbody td.text-center-table {
		text-align: center;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td:last-of-type,
    .responsive-table tfoot td:last-of-type {
		border-right: 1px solid #ced4da;
	}
}

.responsive-table tbody td[data-type="currency"] {
	text-align: right;
}

.responsive-table tbody td[data-title]:before {
	content: attr(data-title);
	float: left;
}

@media (min-width: 30em) {
	.responsive-table tbody td[data-title]:before {
		font-size: 0.9em;
	}
}

@media (min-width: 48em) {
	.responsive-table tbody td[data-title]:before {
		content: none;
	}
}

/* Layout */
.topbar-header {
	border-bottom: 1px solid #e3e3e3;
}

.entry-topbar {
	display: flex;
	justify-content: space-between;
}

.entry-topbar .left-topbar {
	display: flex;
}

.entry-topbar .dropdown-topbar {
	display: flex;
}

.language-section,
.currency-section {
	position: relative;
	font-size: 12px;
}

.language-section ul,
.currency-section ul {
	position: absolute;
	background: var(--white);
    min-width: 100px;
    top: 100%;
    right: 0;
    text-align: left;
	z-index: 1000;
	border-top: 1px solid #e3e3e3;
	margin-bottom: 0;
	-webkit-animation: nav_menu_anim_close 0.3s both;
	-o-animation: nav_menu_anim_close 0.3s both;
	animation: nav_menu_anim_close 0.3s both;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
}

.language-section ul a,
.currency-section ul a {
	padding: 0 10px;
	line-height: 30px;
	height: 30px;
	display: block;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.language-section ul a:hover,
.currency-section ul a:hover {
	background: #f4f4f4;
}

.language-section:hover ul,
.currency-section:hover ul {
	-webkit-animation: nav_menu_anim_open 0.3s both;
	-o-animation: nav_menu_anim_open 0.3s both;
	animation: nav_menu_anim_open 0.3s both;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	pointer-events: unset;
}

.currency-section::after {
	content: "";
	background: #a6a6a6;
	height: 10px;
	width: 1px;
	right: 0px;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

a.language-picker,
a.currency-picker {
	text-transform: uppercase;
	font-weight: 600;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	padding: 0 10px;
	color: #666;
}

a.language-picker {
    display: inline-flex;
    align-items: center;
}

a.language-picker img {
    width: 26px;
    height: auto;
}

a.language-picker::after,
a.currency-picker::after {
	/*content: "\e92d";*/
	margin-left: 2px;
	font-family: "iconsax";
	vertical-align: bottom;
	font-weight: 600;
	color: var(--color-text-hightlight);
}

a.language-picker:hover,
a.currency-picker:hover {
	color: #666;
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.social-section ul {
	padding-left: 5px;
	margin-bottom: 0;
}

.social-section ul li {
	display: inline-block;
	line-height: 40px;
	height: 40px;
}

.social-section ul li a {
	display: inline-block;
	width: 24px;
	font-size: 16px;
	text-align: center;
	color: var(--color-text);
}

.social-section ul li a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.entire-action-header .btn-action-header {
	color: var(--color-highlight);
}

body.is-mobile  .btn-action-header {
	height: 50px;
	line-height: 50px;
}

body.is-mobile .logo-section img {
	height: 60px;
}

.entire-action-header .btn-action-header:hover {
	color: #bbbbbb;
}

.user-section .dropdown-menu {
	min-width: 180px;
}

.btn-action-header {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	padding: 0 12px;
}

.btn-action-header i {
	text-align: center;
	font-size: 24px;
	vertical-align: middle;
}

.user-section .dropdown-item img {
	width: 23px;
}

.entire-action-header {
	position: relative;
}

.show-form-search .input-group input {
	border-radius: 7px;
}

.entire-action-header .form-dropdown {
	position: absolute;
	padding: 10px;
	background-color: var(--white);
	width: 350px;
	top: 100%;
	left: auto;
	right: 0;
	z-index: 1000;
	margin-bottom: 0;
	-webkit-animation: nav_menu_anim_close 0.3s both;
	-o-animation: nav_menu_anim_close 0.3s both;
	animation: nav_menu_anim_close 0.3s both;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.15);
}

.entire-action-header:hover .form-dropdown {
	-webkit-animation: nav_menu_anim_open 0.3s both;
	-o-animation: nav_menu_anim_open 0.3s both;
	animation: nav_menu_anim_open 0.3s both;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	pointer-events: unset;
}

.search-section .btn-submit {
	padding: 0 0.75rem !important;
	font-size: 13px;
}

.form-search .wrap-suggestion,
.box-suggest .wrap-suggestion {
	position: absolute;
	z-index: 1;
	background-color: #fff;
	width: 100%;
	padding: 10px;
}

.wrap-suggestion ul:last-child {
	margin-bottom: 0;
}

.wrap-suggestion ul li {
	margin-bottom: 10px;
}

.wrap-suggestion ul li:last-child {
	margin-bottom: 0;
}

.wrap-suggestion ul li:hover,
.wrap-suggestion ul li.active {
	background-color: #e6e6e6;
}

.wrap-suggestion .suggest-name {
	margin-bottom: 0px;
}

.wrap-suggestion .price-amount {
	font-size: 13px;
}

.wrap-suggestion .price-amount.old-price {
	margin-left: 5px;
}

.box-suggest .wrap-suggestion {
	border: 1px solid #e6e6e6;
	border-top: 0;
	padding: 10px;
}

.user-section .form-title {
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e6e6e6;
}

.user-section .form-title span {
	float: left;
	text-transform: uppercase;
	font-weight: 600;
}

.user-section .form-title a {
	float: right;
	font-size: 14px;
	color: var(--color-highlight);
}

.user-section label {
	color: var(--color-main);
}

.user-section .btn-user {
	width: 100%;
}

.user-section .login-form-footer a {
	color: var(--color-highlight);
}

.btn-mini-cart {
	position: relative;
}

.items-number {
	color: var(--color-main);
	font-size: 12px;
	font-weight: 700;
	background: var(--color-highlight);
	width: 16px;
	height: 16px;
	display: inline-block;
	position: absolute;
	line-height: normal;
	text-align: center;
	border-radius: 100%;
	top: 4px;
	left: 25px;
}

.btn-mini-wishlist {
	position: relative;
}

.slider-bg {
	background-color: #f1f1f1;
}

.slider-section {
	color: var(--color-main);
}

.slider-section .slick-next,
.slider-section .slick-prev {
	background-color: rgba(255, 255, 255, 0.75);
	color: var(--color-main);
    border-radius: 100%;
}

.slider-section .slick-next:hover,
.slider-section .slick-prev:hover {
	background-color: var(--color-main);
}

.slider-section .slick-next {
	right: 40px !important;
}

.slider-section .slick-prev {
	left: 40px !important;
}

.slider-section .slick-slider::before,
.slider-section .slick-slider::after {
	content: none;
}

.slider-section .slick-list {
	margin: 0;
}

.slider-section .slick-list .slick-slide {
	margin: 0;
}

.slider-section .item img,.slider-section .item {
	object-fit: cover;
	width: 100%;
	height: 29vw;
}

.slider-section .inner-title {
	font-size: 24px;
	position: relative;
	padding-bottom: 5px;
	margin-bottom: 30px;
}

.slider-section .inner-title::after {
	content: "";
	height: 1px;
	width: 93px;
	background-color: var(--color-main);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.slider-section .inner-description {
	font-size: 85px;
	line-height: 90px;
	margin-bottom: 30px;
}

.slider-section .inner-content {
	font-size: 16px;
	color: var(--color-text);
	line-height: 26px;
	margin-bottom: 50px;
	margin-top: 30px;
}

.slider-section .btn-submit {
	line-height: 44px;
	padding: 0 20px;
}

.brand-section .owl-stage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
}

.brand-section .brand-item img {
	height: auto;
	width: auto;
	margin: 0 auto;
	padding: 0 10px;
}

.breadcrumbs-section {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: wrap;
	align-items: center;
	font-size: 13px;
	line-height: 24px;
}

.breadcrumbs-section a {
	margin-right: 6px;
	line-height: 24px;
	color: var(--color-text);
	display: contents;
}

.breadcrumbs-section a::after {
	content: "\e936";
	font-family: "iconsax";
	margin-left: 5px;
	font-size: 12px;
	font-weight: 900;
}

.breadcrumbs-section a:hover {
	color: var(--color-main);
}

.breadcrumbs-section h1 {
	margin-bottom: 0;
	font-size: 13px;
	line-height: 24px;
}

.breadcrumbs-section h1 a::after {
	content: none;
}

.breadcrumbs-section span {
	font-weight: 600;
	color: var(--color-main);
}

.categories-section {
	margin-bottom: 50px;
}

.categories-section li {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 6px;
	flex-direction: row;
}

.categories-section li:last-child {
	margin-bottom: 0;
}

.categories-section a {
	padding: 6px 0 6px 0px;
	display: block;
	width: 100%;
}

.categories-section a:hover {
	color: var(--color-main);
}

.categories-section a.active {
	color: var(--color-highlight);
	font-weight: 700;
}

.categories-section a.active > .has-child > a {
	color: var(--color-highlight);
	font-weight: 700;
}

.categories-section .list-child {
	flex: 1 1 100%;
	max-width: 100%;
	border-top: 1px solid #e3e3e3;
	display: none;
}

.categories-section .list-child li {
	position: relative;
}

.categories-section > li.has-child > ul {
	padding-left: 15px;
}

.categories-section > li.has-child > .list-child {
	border-top: 0;
	background-color: #f5f5f5;
}

.categories-section > li.has-child > .list-child > li.has-child > .list-child {
	padding-left: 15px;
}

.categories-section > li.has-child > .list-child > li.has-child > .list-child > li.has-child > .list-child {
	padding-left: 15px;
}

.categories-section .dropdown-toggle {
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	width: 30px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	z-index: 1;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.categories-section .dropdown-toggle.open {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.tags-title {
	margin-right: 15px;
}

.tags li {
	display: inline-block;
}

.tags li a {
	line-height: 1.2;
	padding: 6px 8px;
	margin: 0 2px 5px 0;
	border: 1px solid #e3e3e3;
	display: block;
}

.tags li a:hover {
	color: var(--black);
	border-color: #f1f1f1;
	background-color: #f1f1f1;
}

.entire-map {
	position: relative;
	padding-top: 36.45%;
}

.entire-map iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.title-address {
	font-weight: 600;
	color: var(--color-main);
}

.entire-address {
	padding: 50px 0;
}

.entire-address address {
	line-height: 30px;
}

.form-contact .title-section {
	padding-top: 80px;
}

.filter-member .btn-submit {
	padding: 0 9px;
}

.table-member th i {
	font-size: 18px;
}

.datepicker {
	width: 265px;
	padding: 10px;
}

.datepicker.datepicker-orient-top {
	margin-top: 8px;
}

.datepicker table {
	width: 100%;
}

.datepicker td,
.datepicker th {
	font-weight: regular;
	width: 35px;
	height: 35px;
	border-radius: 3px;
}

.datepicker thead th {
	color: #74788d;
}

.datepicker thead th.prev,
.datepicker thead th.datepicker-switch,
.datepicker thead th.next {
	font-weight: 500;
	color: #74788d;
}

.datepicker thead th.prev:hover,
.datepicker thead th.datepicker-switch:hover,
.datepicker thead th.next:hover {
	background: #f7f8fa !important;
}

.datepicker thead th.prev i,
.datepicker thead th.datepicker-switch i,
.datepicker thead th.next i {
	font-size: 1.2rem;
	color: #74788d;
}

.datepicker thead th.prev i::before,
.datepicker thead th.datepicker-switch i::before,
.datepicker thead th.next i::before {
	line-height: 0;
	vertical-align: middle;
}

.datepicker thead th.dow {
	color: #595d6e;
	font-weight: 500;
}

.datepicker tbody tr > td.day {
	color: #595d6e;
}

.datepicker tbody tr > td.day:hover {
	background: #ebedf2;
	color: #595d6e;
}

.datepicker tbody tr > td.day.old {
	color: #74788d;
}

.datepicker tbody tr > td.day.new {
	color: #595d6e;
}

.datepicker tbody tr > td.day.selected,
.datepicker tbody tr > td.day.selected:hover,
.datepicker tbody tr > td.day.active,
.datepicker tbody tr > td.day.active:hover {
	background: #5867dd;
	color: #ffffff;
}

.datepicker tbody tr > td.day.today {
	position: relative;
	background: rgba(93, 120, 255, 0.7) !important;
	color: #ffffff !important;
}

.datepicker tbody tr > td.day.today:before {
	content: "";
	display: inline-block;
	border: solid transparent;
	border-width: 0 0 7px 7px;
	border-bottom-color: #ffffff;
	border-top-color: #ebedf2;
	position: absolute;
	bottom: 4px;
	right: 4px;
}

.datepicker tbody tr > td.day.range {
	background: #f7f8fa;
}

.datepicker tbody tr > td span.year,
.datepicker tbody tr > td span.hour,
.datepicker tbody tr > td span.minute,
.datepicker tbody tr > td span.month {
	color: #595d6e;
}

.datepicker tbody tr > td span.year:hover,
.datepicker tbody tr > td span.hour:hover,
.datepicker tbody tr > td span.minute:hover,
.datepicker tbody tr > td span.month:hover {
	background: #f7f8fa;
}

.datepicker tbody tr > td span.year.focused,
.datepicker tbody tr > td span.year.focused:hover,
.datepicker tbody tr > td span.year.active:hover,
.datepicker tbody tr > td span.year.active.focused:hover,
.datepicker tbody tr > td span.year.active,
.datepicker tbody tr > td span.hour.focused,
.datepicker tbody tr > td span.hour.focused:hover,
.datepicker tbody tr > td span.hour.active:hover,
.datepicker tbody tr > td span.hour.active.focused:hover,
.datepicker tbody tr > td span.hour.active,
.datepicker tbody tr > td span.minute.focused,
.datepicker tbody tr > td span.minute.focused:hover,
.datepicker tbody tr > td span.minute.active:hover,
.datepicker tbody tr > td span.minute.active.focused:hover,
.datepicker tbody tr > td span.minute.active,
.datepicker tbody tr > td span.month.focused,
.datepicker tbody tr > td span.month.focused:hover,
.datepicker tbody tr > td span.month.active:hover,
.datepicker tbody tr > td span.month.active.focused:hover,
.datepicker tbody tr > td span.month.active {
	background: #5867dd;
	color: #ffffff;
}

.datepicker tfoot tr > th.today,
.datepicker tfoot tr > th.clear {
	border-radius: 3px;
	font-weight: 500;
}

.datepicker tfoot tr > th.today:hover,
.datepicker tfoot tr > th.clear:hover {
	background: #ebedf2;
}

.datepicker.datepicker-inline {
	border: 1px solid #ebedf2;
}

.entire-file {
	margin-top: 10px;
}

.entire-file a {
	display: inline-block;
	margin: 3px;
}

.remove-item {
	font-size: 16px;
	cursor: pointer;
}

.remove-item:hover i {
	color: var(--color-highlight);
}

.slogan-topbar {
	color: var(--color-text);
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
	font-size: 12px;
}

.qc-section-1 {
	background-color: var(--color-main);
	padding: 3px 0 4px;
	color: var(--white);
}

.hight-light .entry-content {
	display: flex;
	align-items: center;
}

.hight-light .inner-icon {
	margin-right: 10px;
}

.hight-light .inner-icon i {
	font-size: 38px;
	color: var(--color-main);
}

.hight-light .inner-content h4 {
	margin-bottom: 0;
	color: var(--color-main);
	font-weight: 600;
}

.hight-light .inner-content p {
	margin-bottom: 0;
}

.deal-section {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.entire-deal {
	padding: 85px 0;
}

.entire-deal .slogan-deal {
	color: var(--color-main);
	font-size: 18px;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 40px;
	text-transform: capitalize;
}

.entire-deal .slogan-deal::after {
	content: "";
	background-color: var(--color-main);
	width: 90px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.entire-deal .title-deal {
	color: var(--color-main);
	font-size: 48px;
	text-transform: capitalize;
	margin-bottom: 30px;
	font-weight: 600;
}

.entire-deal .price {
	margin-bottom: 55px;
}

.entire-deal .price .price-amount {
	font-size: 24px;
	color: var(--color-highlight);
}

.entire-deal .price .price-amount:not(.old-price) {
	font-weight: 700;
}

.entire-deal .price .price-amount.old-price {
	margin-left: 15px;
	color: var(--color-text);
	text-decoration: line-through;
}

.entire-deal .countdown-wrapper {
	margin-bottom: 55px;
}

.entire-deal .countdown-timer > div {
	font-size: 24px;
	height: 70px;
	width: 70px;
	background-color: var(--white);
	line-height: 28px;
	padding-top: 5px;
}

.entire-deal .countdown-timer > div span {
	font-size: 16px;
}

.entire-deal .description-deal {
	color: #7a7a7a;
	margin-bottom: 55px;
}

.entire-deal .button-deal a {
	font-weight: 700;
	padding: 12px 28px;
	display: inline-block;
}

.entire-deal .button-deal a i {
	margin-left: 5px;
}

.entire-video-banner {
	position: relative;
	padding-top: 26.04%;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.entire-video-banner .entire-content {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	color: var(--color-main);
	text-transform: capitalize;
	z-index: 4;
}

.entire-video-banner .entire-content .inner-category {
	font-size: 24px;
	margin-bottom: 10px;
}

.entire-video-banner .entire-content .inner-descript {
	font-size: 72px;
	line-height: 80px;
	font-weight: 600;
}

.entire-video-banner .btn-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	height: 100px;
	width: 100px;
	line-height: 100px;
	text-align: center;
	font-size: 70px;
	color: var(--color-highlight);
	cursor: pointer;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	border: 1px solid var(--color-highlight);
	z-index: 5;
}

.entire-video-banner #entire-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
}

.entire-video-banner::after {
	content: "";
	background-color: rgba(0, 0, 0, 0.01);
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

.entire-video-banner .wrp-video-banner::after {
	content: "";
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAQAAAD8IX00AAAADklEQVR42mP4/58BAwAAJu4B/7J4cV8AAAAASUVORK5CYII=");
	background-size: 3px 3px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.page-title-section.page-categories {
	padding: 80px 0;
}

.page-title-section .product-categories li {
	display: inline-block;
}

.page-title-section .product-categories li img {
	margin-bottom: 10px;
	width: 50px;
	height: 50px;
	object-fit: cover;
}

.page-title-section .product-categories li span.category-name {
	font-weight: 700;
	color: #000;
	display: inline-block;
}

.page-title-section .product-categories li .category-summary {
	display: block;
}

.page-title-section .product-categories li span.category-products-count {
	font-size: 12px;
	color: #000;
	display: block;
}

.page-title-section .product-categories li a {
	display: block;
	padding: 10px 25px;
}

.video-banner-section .title-section {
	margin-bottom: 50px;
}

.banner-product-category {
	background-size: cover !important;
	margin-bottom: 40px;
	position: relative;
}

.banner-product-category::after {
	content: "";
	background: rgba(0, 0, 0, 0.01);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-product-category .inner-content {
	text-align: right;
	padding: 50px 60px 50px 60px;
	z-index: 1;
	position: relative;
}

.banner-product-category .inner-content h3 {
	font-size: 32px;
	line-height: 38px;
	color: var(--color-main);
	font-weight: 600;
}

.banner-product-category .inner-content h3 span {
	font-weight: 600;
	color: var(--red);
}

.footer-menu-section ul {
	margin-bottom: 0;
}

.footer-menu-section ul li {
	margin-bottom: 10px;
}

.footer-menu-section ul li a {
	color: var(--black);
}

.footer-menu-section ul li:last-child {
	margin-bottom: 0;
}

.setting-menu {
	position: relative;
	background: var(--black);
}

.setting-menu > .container > .row > div {
	position: static;
}

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

.marker-image {
	height: 16px;
	width: 16px;
	object-fit: cover;
	margin-right: 5px;
}

.menu-section .menu-top {
	display: none;
}

.menu-section .menu-top .menu-header {
	font-weight: bold;
	font-size: 20px;
}

.menu-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}

.menu-section ul li a:hover {
	color: var(--color-highlight);
	cursor: pointer;
}

.menu-section .grower {
	display: none;
}

.menu-section .entry-menu {
	top: 100%;
	z-index: 12;
	padding: 20px 25px;
	position: absolute;
	background-color: var(--white);
	border-top: 1px solid #e3e3e3;
	margin-top: -1px;
}

.menu-section .entry-menu::before {
	content: "";
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	height: calc(15px + 1px);
}

.menu-section .entry-menu li {
	position: relative;
}

.menu-section .entry-menu.multil-column {
	min-width: 730px;
}

.menu-section .entry-menu.full-width {
	width: 100%;
	left: 0;
}

.menu-section .entry-menu.full-width .menu-link {
	display: inline-block;
}

.menu-section .entry-menu.full-width .container-menu {
	width: 1170px;
}

.menu-section .entry-menu.tabs-menu {
	width: 1170px;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0;
}

.menu-section .entry-menu.tabs-menu .tabs-item {
	width: 100%;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
	width: 25%;
	float: left;
	padding: 15px;
	position: relative;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link > .child-indicator {
	right: 15px;
}

.menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
	padding: 20px;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	width: 75%;
	float: left;
	position: absolute;
	left: 25%;
	top: 0;
	min-height: 100%;
	border-left: 1px solid #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
	background-color: #e3e3e3;
}

.menu-section .entry-menu.tabs-menu .container-menu {
	position: relative;
}

.menu-section .entry-menu.dropdown {
	min-width: 250px;
	left: 0;
	padding: 10px 15px;
}

.menu-section > ul > li > .entry-menu {
	border-radius: 5px;
	background: var(--white);
}

.menu-section > ul > li > .entry-menu > li >a {
	border-bottom: 1px solid #f5f5f5;
}

.menu-section .entry-menu.dropdown ul >li {
	border-bottom: 1px solid #f5f5f5;
}

.menu-section .entry-menu.dropdown ul {
	position: absolute;
	top: calc(-50% + 8px);
	left: calc(100% + 15px);
	min-width: 250px;
	background-color: var(--white);
	margin-top: -1px;
	padding: 10px 15px;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
	border-radius: 5px;
}

.menu-section .entry-menu.dropdown li:hover > ul {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section .entry-menu.dropdown li:hover > a {
	color: var(--color-highlight);
}

.menu-section .entry-menu.dropdown li:hover > ul {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section .entry-menu.dropdown .has-child > ul::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 25px;
	left: -25px;
}

.menu-section .container-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.menu-section .row-menu {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-right: -10px;
	margin-left: -10px;
}

.menu-section .column-2 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 10px;
}

.menu-section .column-3 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 33.333333%;
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding: 0 10px;
}

.menu-section .column-4 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 10px;
}

.menu-section .column-5 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
	padding: 0 10px;
}

.menu-section .menu-title {
	font-weight: 600;
	margin-bottom: 5px;
	display: inline-block;
	color: var(--color-main);
}

.menu-section .menu-title + .sub-menu {
	padding-top: 5px;
	padding-bottom: 5px;
}

.menu-section .menu-link {
	color: var(--color-text);
	padding: 7px 15px 7px 0px;
	display: block;
}

.menu-container nav.menu-section > ul {
	display: flex;
	flex-wrap: wrap;
}

.menu-section .active {
	color: var(--color-highlight) !important;
}

.menu-section .child-indicator {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.menu-section .menu-image.right {
	margin: -20px -35px -15px -5px;
}

.menu-section .menu-image.left {
	margin: -20px 0px -20px -35px;
}

.menu-section > ul > li {
	display: inline-block;
	flex: auto;
	text-align: center;
}

.menu-section > ul > li:hover > a {
	color: var(--color-highlight);
}

.menu-section > ul > li:hover > .entry-menu {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.menu-section > ul > li:hover > .entry-menu .tabs-item.active > .sub-menu {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.menu-section > ul > li > .entry-menu {
	position: absolute;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
	-webkit-transition: opacity 0.05s ease;
	transition: opacity 0.05s ease;
	-webkit-transform: translateY(20px);
	-ms-transform: translateY(20px);
	-o-transform: translateY(20px);
	transform: translateY(20px);
}

.menu-section > ul > li > .entry-menu li {
	text-align: left;
}

.menu-section > ul > li:last-child {
	margin-right: 0px;
}

.menu-section > ul > li > a {
	line-height: 80px;
	height: 80px;
	color: var(--color-text-hightlight);
	text-align: center;
	font-size: 16px;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.menu-section > ul > li > a span {
	display: none;
}

.menu-section > ul > li.has-child > a {
	display: inline-block;
}

.menu-section > ul > li.has-child > a span {
	display: inline-block;
	font-size: 12px;
	margin-left: 3px;
}

@media (min-width:1200px) {
	.menu-section > ul > li > a:before {
		position: absolute;
		content: '';
		height: 3px;
		width: 0;
		background: var(--color-highlight);
		bottom: 15px;
		transform: translateX(-50%);
		left: 45%;
		opacity: 0;
		transition: 1.1s;
	}

	.menu-section > ul > li > a:hover:before, .menu-section > ul > li > a.active:before {
		transition-duration: 400ms;
		transition-property: all;
		opacity: 1;
		width: 70%;
	}
}

footer {
	background-color: #d3d3d3;
}

.entire-info-website .logo-section {
	margin-bottom: 15px;
}

.entire-info-website .descript-website-section {
	margin-bottom: 44px;
}

.entire-info-website address p {
	margin-bottom: 10px;
}

.entire-info-website address p i {
	font-size: 20px;
	width: 30px;
	color: var(--color-main);
}

.entire-info-website .title-social-footer {
	color: var(--color-main);
	margin-bottom: 30px;
}

.social-footer-section {
	margin-bottom: 30px;
}

.social-footer-section ul {
	margin: 0;
}

.social-footer-section ul li {
	margin-right: 7px;
	display: inline-block;
}

.social-footer-section ul li a {
	display: block;
	font-size: 18px;
	text-align: center;
	line-height: 1;
}

.social-footer-section ul li a:hover {
	color: var(--color-main);
}

.title-footer {
	color: var(--black);
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 10px;
    font-size: 16px;
}

.work-time .inner-time p {
	margin-bottom: 7px;
}

.work-time span {
	margin-bottom: 7px;
	display: inline-block;
}

.coppyright-payment .coppyright {
	margin-bottom: 0;
}

.toolbar-section {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 5px 5px 2px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white);
	z-index: 1120;
	box-shadow: 0px 0px 4px 0px rgb(0 0 0 / 25%);
}

.toolbar-section .toolbar-item {
	flex: 0 0 20%;
	position: relative;
}

.toolbar-section .toolbar-item a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: inherit;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
}

.toolbar-section .toolbar-item a i {
	font-size: 22px;
	color: #9B9B9B;
}

.toolbar-section .toolbar-item a span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 0;
	text-align: center;
	font-size: 10px;
}

/* Page */
.article-item .inner-image .featured-media {
	position: absolute;
	top: 9px;
	right: 10px;
	z-index: 1;
}

.article-item .inner-image .featured-media span {
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 20px;
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--color-main);
	margin: 0px 2px;
	display: inline-block;
}

.article-item .article-info .article-category {
	display: inline-block;
	margin-right: 15px;
}

.article-item .article-info .article-category a {
	color: var(--color-highlight);
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.article-item .article-info .article-category a:last-child .comma-item {
	display: none;
}

.article-item .article-info .article-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.article-item .article-info .post-date,
.article-item .article-info .post-author {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 26px;
	padding-left: 15px;
	margin-right: 15px;
}

.article-item .article-info .post-date::before,
.article-item .article-info .post-author::before {
	content: "";
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: var(--color-text);
	height: 5px;
	width: 5px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.article-item .article-info .post-author:hover {
	color: var(--color-text);
	text-decoration: underline;
}

.article-item .article-title {
	line-height: 24px;
	font-weight: 600;
}

.product-padding-right .article-item .article-title a {
	color: var(--color-main);
}

.article-item .article-title a:hover {
	text-decoration: underline;
}

.article-item .article-description {
	margin-bottom: 10px;
}

.article-entry-info {
	font-size: 12px;
	margin-bottom: 9px;
}

.article-entry-info > span {
	margin-right: 6px;
}

.article-entry-info .article-category {
	margin-right: 15px;
}

.article-entry-info .article-category a {
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.article-entry-info .article-category a:last-child .comma-item {
	display: none;
}

.article-entry-info .article-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.album-item .inner-image {
	margin-bottom: 21px;
}

.album-item .album-info .album-category {
	display: inline-block;
	margin-right: 15px;
}

.album-item .album-info .album-category a {
	color: var(--color-highlight);
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.album-item .album-info .album-category a:last-child .comma-item {
	display: none;
}

.album-item .album-info .album-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.album-item .album-info .post-date,
.album-item .album-info .post-author {
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 26px;
	padding-left: 15px;
	margin-right: 15px;
}

.album-item .album-info .post-date::before,
.album-item .album-info .post-author::before {
	content: "";
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	background-color: var(--color-text);
	height: 5px;
	width: 5px;
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.album-item .album-info .post-author:hover {
	color: var(--color-text);
	text-decoration: underline;
}

.album-item .album-title {
	line-height: 24px;
	font-weight: 600;
}

.album-item .album-title a {
	color: var(--color-main);
}

.album-item .album-title a:hover {
	text-decoration: underline;
}

.album-item .album-description {
	margin-bottom: 20px;
}

.album-entry-info {
	font-size: 12px;
	margin-bottom: 9px;
}

.album-entry-info > span {
	margin-right: 6px;
}

.album-entry-info .album-category {
	margin-right: 15px;
}

.album-entry-info .album-category a {
	font-weight: 600;
	line-height: 26px;
	text-transform: uppercase;
}

.album-entry-info .album-category a:last-child .comma-item {
	display: none;
}

.album-entry-info .album-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.read-more {
	font-weight: 700;
	color: var(--color-main);
	text-transform: uppercase;
	font-size: 12px;
}

.view-small .article-item {
	margin-bottom: 10px;
}

.view-small .article-item .inner-content .article-title {
	height: auto;
}

.view-small .article-item .inner-image {
	float: left;
}

.view-small .article-item .inner-image img {
	width: 100px;
	height: 90px;
	position: static;
	object-fit: cover;
}

.view-small .article-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.view-small .article-item .article-title {
	margin-bottom: 5px;
}

.view-small .article-item .article-title a {
	line-height: 1.3;
	display: block;
	font-size: 14px;
}

.view-small .article-item .article-title a:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.view-small .article-entry-info {
	margin-bottom: 0;
}

.article-content iframe,
.article-content video,
.article-content img,
.article-content table {
	max-width: 100%;
}

.article-title-detail {
	color: var(--color-main);
	font-weight: 700;
	font-size: 30px;
	line-height: 1.2;
}

.article-content img,
.article-content iframe,
.article-content video {
	max-width: 100%;
	height: auto;
}

.product-additional-action {
	position: absolute;
	bottom: 15px;
	left: 35px;
}

.product-additional-action .btn-addition-action {
	display: block;
	height: 45px;
	width: 45px;
	margin-top: 10px;
	position: relative;
	background-color: var(--white);
	cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
}

.product-additional-action .btn-addition-action::before {
	content: "";
	height: 28px;
	width: 28px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.product-additional-action .btn-addition-action.btn-video::before {
	background: url("../img/video-player.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-video.youtube-video::before {
	background: url("../img/youtube-logo.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-360-view::before {
	background: url("../img/3d.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action.btn-expand::before {
	background: url("../img/full-screen.svg") no-repeat top left;
	background-size: contain;
}

.product-additional-action .btn-addition-action:hover {
	filter: invert(1);
	-webkit-filter: invert(1);
}

.product-attribute-switch {
	margin: 0 -5px;
}

.filter-section li {
	padding: 0 4px 8px 4px;
}

.product-attribute-switch.image-switch .inner-product-attribute {
	height: 34px;
	width: 34px;
	line-height: 40px;
	margin: 0px 7px;
}

.product-attribute-switch.text-switch .inner-product-attribute {
	height: 36px;
	width: auto;
	padding: 0px 8px;
	margin: 0 5px;
	border-radius: 5px !important;
	display: block;
	line-height: 36px;
	font-size: 13px;
}

.product-attribute-switch li.active a.inner-product-attribute::before {
	content: "";
	position: absolute;
	display: block;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 12px 12px;
	border-color: transparent transparent var(--color-main);
}

.product-attribute-switch li.active a.inner-product-attribute::after {
	content: "\ec32";
	position: absolute;
	display: block;
	font-family: "iconsax";
	font-weight: 900;
	font-size: 6px;
	line-height: 1;
	color: var(--white);
	bottom: 0;
	right: 1px;
}

.product-attribute-switch .inner-product-attribute {
	position: relative;
	margin: 4px;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-clip: padding-box;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	background: var(--light);
}

.product-attribute-switch .inner-product-attribute:hover {
	border-color: var(--color-main);
}

.product-attribute-switch .inner-product-attribute.active {
	background-color: var(--color-main);
	color: var(--white);
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before,
.product-content-detail .entire-attribute .list-attribute .reset-attribute:after {
	display: none;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute {
	border: 0;
	font-weight: normal;
}

.product-attribute-switch.image-switch .inner-product-attribute.active {
	border: 1px solid var(--black);
}

.product-attribute-switch.image-switch .inner-product-attribute.active::before {
	display: none;
}

.product-attribute-switch .inner-product-attribute.disable {
	opacity: 0.3;
	cursor: not-allowed;
}

.reset-attribute {
	color: var(--color-main);
	font-weight: 700;
	position: relative;
	margin-top: 5px !important;
	display: inline-block;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before {
    /*content: '\f00d';
    font-family: "Line Awesome Free";*/
	font-size: 15px;
	position: absolute;
	right: -20px;
	top: 0;
	color: var(--color-main);
}

.reset-attribute:hover {
	color: var(--color-main);
}

.product-tab.nav {
	margin-bottom: 40px;
	position: relative;
}

.product-tab.nav .nav-item .nav-link {
	line-height: 27px;
	color: #656565;
	white-space: nowrap;
}

.product-tab.nav .nav-item .nav-link.active {
	color: var(--color-main);
	font-weight: 700;
}

.tab-content {
	position: relative;
}

.tab-content img,
.tab-content iframe,
.tab-content video {
	max-width: 100%;
}

.countdown-timer {
	display: flex;
	justify-content: flex-start;
	margin: 0 -4px 5px;
}

.countdown-timer > div {
	height: 50px;
	width: 50px;
	text-align: center;
	border: 1px solid #e6e6e6;
	border-radius: 4px;
	margin-left: 4px;
	margin-right: 4px;
	font-weight: 600;
	color: var(--color-main);
}

.countdown-timer > div span {
	display: block;
	font-weight: 400;
}

.product-status {
	position: absolute;
	top: 7px;
	left: 0;
	z-index: 11;
	pointer-events: none;
	width: 100%;
}

.out-stock,
.onsale,
.featured {
	display: block;
    text-align: center;
    color: var(--white);
    line-height: 26px;
    margin-bottom: 5px;
    height: 26px;
    width: 60px;
    border-radius: 5px;
    background-color: var(--color-main);
    font-size: 10px;
    font-weight: 600;
}

.out-stock {
	background-color: var(--black);
}

.product-status .onsale {
	left: 7px;
	position: absolute;
	z-index: 1;
	top: 0;
}

.featured {
	background-color: var(--color-highlight);
	right: 7px;
	position: absolute;
	top: 0;
}

.product-category-section > div {
	height: 530px;
}

.product-category-section .inner-product-cat {
	display: block;
	position: relative;
	height: 100%;
}

.product-category-section .inner-product-cat span.inner-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transform-origin: right bottom;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.product-category-section .inner-product-cat.half-height {
	height: calc(100% / 2 - 15px);
}

.product-category-section .inner-product-cat.half-height:first-child {
	margin-bottom: 30px;
}

.product-category-section .inner-product-cat .inner-content {
	pointer-events: none;
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	bottom: 30px;
	right: 25px;
}

.product-category-section .inner-product-cat .inner-content .category-title {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-main);
}

@media (max-width: 991px) {
	.product-category-section .inner-product-cat .inner-content .category-title {
		font-size: 26px;
		line-height: 30px;
	}
}

.product-category-section .inner-product-cat .inner-content .category-count {
	color: var(--color-text);
}

.currency-symbol {
	margin-left: 3px;
}

.product-action {
	position: absolute;
	bottom: 20px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 20;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.product-action .btn-product-action:hover {
	background-color: var(--color-main);
	color: var(--white);
}

.product-action .btn-product-action {
	margin-right: 4px;
	margin-left: 4px;
	display: inline-block;
	position: relative;
	height: 40px;
	width: 40px;
	line-height: 40px;
	border-radius: 0.25rem;
	text-align: center;
	font-size: 18px;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	-webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
	-moz-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
	background-color: var(--white);
}

.product-item {
	background: var(--white);
	box-shadow: 0 3px 6px 0 rgb(0 0 0 / 16%);
	padding: 10px;
	border-radius: 5px;
	overflow: hidden;
	height: 100%;
}

.product-item .inner-image {
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
	background: var(--white);
	border-radius: 5px;
}

.product-item .inner-content .product-category {
    height: auto;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.product-item .inner-content .product-category a {
	font-size: 10px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--color-main);
}

.product-item .inner-content .product-category a:last-child .comma-item {
	display: none;
}

.product-item .inner-content .product-category a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.product-item .inner-content .product-title {
	margin-bottom: 5px;
	white-space: pre-wrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	font-weight: 600;
}

.product-item .inner-content .product-title a {
	color: var(--black);
	font-size: 14px;
}

.product-item .inner-content .product-title a:hover {
	text-decoration: underline;
}

.product-item .inner-content .product-rating-price {
	height: 22px;
	line-height: 22px;
	overflow: hidden;
}

.product-item .inner-content .product-rating-price .price {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.product-item .inner-content .product-rating-price .wrp-rating-price {
	height: 44px;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: transform 0.25s ease-in-out;
	transition: transform 0.25s ease-in-out;
}

.product-item:hover .product-action {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	bottom: 30px;
}

.product-item:hover .inner-content .product-rating-price .wrp-rating-price {
	-webkit-transform: translateY(-22px);
	-ms-transform: translateY(-22px);
	-o-transform: translateY(-22px);
	transform: translateY(-22px);
}

.price-amount {
	font-weight: 700;
	font-size: 16px;
}

.price-amount.old-price {
	font-weight: 400;
	position: relative;
	font-size: 14px;
}

.price-amount.old-price::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 0.5px;
	background-color: var(--color-text);
	width: 100%;
}

.content-fash-sale .product-item .inner-content .product-rating-price .price span.price-amount.old-price:after {
	background-color: var(--color-text-hightlight);
}

.view-small .product-item {
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #e3e3e3;
}

.view-small .product-item .inner-image {
	float: left;
	margin-right: 20px;
	margin-bottom: 0;
}

.view-small .product-item .inner-image img {
	max-width: 80px;
}

.view-small .product-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.view-small .product-item .inner-content .product-title {
	margin-bottom: 2px;
}

.view-small .product-item .inner-content .product-title a:hover {
	text-decoration: none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.view-small .product-item .inner-content .price-amount {
	font-size: 14px;
}

.view-small .product-item .inner-content .price > span {
	display: inline-block;
	padding: 0 3px;
}

.view-small .product-item .inner-content .price > span.price-amount.old-price {
	margin-left: 0;
}

.quickview-close {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	z-index: 1000;
}

.quickview-info {
	position: relative;
	height: 390px;
	overflow: auto;
	padding: 50px 50px 50px 30px;
}

.quickview-info::-webkit-scrollbar {
	width: 6px;
}

.quickview-info::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.quickview-info::-webkit-scrollbar-track {
	border-radius: 8px;
}

.product-detail-head .product-image-detail .inner-image {
	padding-top: 100%;
}

.product-detail-footer iframe,
.product-detail-footer video,
.product-detail-footer img,
.product-detail-footer table {
	max-width: 100%;
}

.product-detail-footer .nav {
	margin-bottom: 30px;
	border-bottom: 1px solid #e3e3e3;
}

.product-detail-footer .nav li {
	margin-right: 60px;
}

.product-detail-footer .nav li a {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 600;
	padding: 0 0 20px;
	position: relative;
}

.product-detail-footer .nav li a::before {
	content: "";
	display: block;
	position: absolute;
	width: 0;
	height: 1px;
	left: 0;
	bottom: 0px;
	background-color: var(--color-main);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.product-detail-footer .nav li a.active::before {
	width: 100%;
}

.product-image-detail .owl-carousel::before,
.product-image-detail .owl-carousel::after {
	content: none;
}

.product-image-detail .owl-carousel .owl-prev {
	left: 0px;
}

.product-image-detail .owl-carousel .owl-next {
	right: 0px;
}

.product-image-detail .owl-carousel i {
	font-size: 32px;
	color: rgba(0, 0, 0, 0.8);
}

.product-image-detail .owl-carousel i:hover {
	color: var(--black);
}

.product-image-detail:hover .owl-nav i {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.product-image-detail:hover .owl-nav .owl-prev {
	left: 15px;
}

.product-image-detail:hover .owl-nav .owl-next {
	right: 15px;
}

.product-image-detail .slick-list,
.product-image-detail .slick-slide {
	margin: 0;
}

.product-image-detail .inner-image,
.product-image-detail .inner-iframe,
.product-image-detail .inner-video {
	position: relative;
	padding-top: 75%;
}

.product-image-detail .inner-image img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.product-image-detail .inner-iframe iframe {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.product-image-detail .inner-video video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.price-amount {
	white-space: nowrap;
}

.product-content-detail label {
	margin-bottom: 0;
	color: var(--color-main);
}

.product-content-detail .product-title-detail {
	color: var(--color-main);
	font-size: 24px;
	margin-bottom: 5px;
	line-height: 1.3;
    font-weight: 600;
}

.product-content-detail .product-rating .star-rating {
	margin-right: 15px;
}

.product-content-detail .product-description {
	margin-bottom: 21px;
}

.product-content-detail .product-description p {
	margin-bottom: 5px;
}

.product-content-detail .price .price-amount {
	font-size: 24px;
	font-weight: 700;
}

.product-content-detail .price .price-amount.old-price {
	font-size: 18px;
	font-weight: 400;
	color: var(--color-text);
	text-decoration: line-through;
	margin-left: 15px;
}

.product-content-detail .product-category a {
	font-size: 13px;
	color: var(--color-text);
	margin-left: 5px;
}

.product-content-detail .product-category a:last-child .comma-item {
	display: none;
}

.product-content-detail .product-category a:hover {
	color: var(--color-highlight);
}

.product-content-detail .product-meta > div {
	margin-bottom: 6px;
}

.product-content-detail .product-meta > div:last-child {
	margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute {
	margin-bottom: 10px;
}

.product-content-detail .entire-attribute .list-attribute label {
	margin-right: 20px;
	margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute .product-attribute-switch {
	margin-bottom: 0;
}

.product-content-detail .entire-attribute .list-attribute:last-child {
	margin-bottom: 0;
}

.product-content-detail .add-to-cart {
	color: var(--white);
	font-weight: 700;
	width: 100%;
	text-align: center;
	display: inline-block;
	padding: 10px 0 11px;
	background: var(--color-highlight);
	font-size: 16px;
}

.quantity-buy .btn-cart-buy a.add-to-cart.add-to-cart-buy {
	background: var(--color-main);
}

.product-content-detail .add-to-cart:hover {
	background-color: var(--color-highlight);
}

.product-content-detail .add-to-cart.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
    /* Chrome all / Safari all */
	-moz-user-select: none;
    /* Firefox all */
	-ms-user-select: none;
    /* IE 10+ */
	user-select: none;
}

.product-content-detail .out-of-stock {
	font-weight: 600;
	color: var(--color-highlight);
	text-transform: capitalize;
	height: 44px;
	line-height: 44px;
}

.product-content-detail .btn-compare {
	font-weight: 600;
	margin-top: 10px;
	display: inline-block;
	color: var(--color-main);
}

.product-content-detail .btn-compare i {
	margin-right: 5px;
}

.product-content-detail .btn-compare:hover {
	color: var(--color-highlight);
}

.product-quantity {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 25px;
	color: var(--color-main);
	float: left;
}

.product-quantity .btn-quantity {
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.product-quantity .btn-quantity:hover {
	color: var(--color-highlight);
}

.product-quantity input {
	font-size: 18px;
	width: 50px;
	height: 44px;
	border: none;
	background-color: transparent;
}

.social-share .share-title {
	margin-right: 15px;
}

.social-share .list-social .btn-social {
	float: left;
	margin: 0 4px;
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.social-share .list-social .btn-social:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.social-share .list-social .btn-social.facebook-icon {
	background-color: #365493;
}

.social-share .list-social .btn-social.twitter-icon {
	background-color: #3cf;
}

.social-share .list-social .btn-social.google-icon {
	background-color: #d44132;
}

.social-share .list-social .btn-social.pinterest-icon {
	background-color: #cb2027;
}

.social-share .list-social .btn-social.linkedin-icon {
	background-color: #0274b3;
}

.social-share .list-social .btn-social a {
	height: 40px;
	width: 40px;
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	display: inline-block;
}

.sidebar-mini-cart, .content-filter {
	position: fixed;
	display: flex;
	flex-direction: column;
	top: 0;
	bottom: 0;
	right: 0;
	width: 460px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 1030;
	background-color: #F8F8F8;
	-webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-webkit-transform: translate3d(460px, 0, 0);
	-moz-transform: translate3d(460px, 0, 0);
	-ms-transform: translate3d(460px, 0, 0);
	-o-transform: translate3d(460px, 0, 0);
	transform: translate3d(460px, 0, 0);
	-webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
}

.sidebar-mini-cart.open, .content-filter.open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-overflow-scrolling: touch;
}

.sidebar-mini-cart .sidebar-header {
	text-align: left;
}

.sidebar-mini-cart .sidebar-header .close-sidebar {
	font-size: 30px;
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart {
	flex: 1 1 auto;
	display: flex;
	position: relative;
}

.sidebar-mini-cart .content-mini-cart .entire-bottom-minicart {
	margin-top: auto;
}

.sidebar-mini-cart .content-mini-cart .cart-item {
	position: relative;
	padding: 5px 5px;
	background: var(--white);
	margin: 10px 0;
	border-radius: 5px;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart {
	position: absolute;
	top: 30px;
	right: 5px;
	font-size: 16px;
	cursor: pointer;
	width: 25px;
	text-align: center;
}

.sidebar-mini-cart .content-mini-cart .remove-mini-cart:hover i {
	color: var(--color-highlight);
}

.sidebar-mini-cart .content-mini-cart .inner-image img {
	width: 90px;
	float: left;
	margin-right: 20px;
	border: 1px solid #e3e3e3;
}

.sidebar-mini-cart .content-mini-cart .inner-content {
	margin-left: 110px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .product-title {
	font-weight: 700;
	padding-right: 30px;
	display: block;
	color: var(--color-main);
	margin-bottom: 6px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product {
	line-height: 20px;
	height: 20px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label,
.sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
	float: left;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product label {
	font-weight: 400;
	color: var(--color-main);
	margin-bottom: 0;
}

.sidebar-mini-cart .content-mini-cart .inner-content .attr-product p {
	margin-bottom: 0;
	font-weight: 700;
	color: #390;
	margin-left: 5px;
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity {
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .total-price {
	padding-top: 20px;
}

.sidebar-mini-cart .content-mini-cart .total-price label {
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .total-price .price-amount {
	margin-bottom: 0;
	float: right;
	font-size: 22px;
	font-weight: 700;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn {
	padding-top: 10px;
	padding-bottom: 65px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-checkout {
	display: block;
	font-weight: 700;
	padding: 14px 0;
	margin-top: 20px;
	background: var(--color-highlight);
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info {
	display: block;
	font-weight: 700;
	padding: 14px 0;
	background-color: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn .btn-cart-info:hover {
	color: var(--color-highlight);
	border-color: var(--color-highlight);
}

.sidebar-mini-cart .content-mini-cart .box-minicart {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.sidebar-mini-cart::-webkit-scrollbar {
	width: 6px;
}

.sidebar-mini-cart::-webkit-scrollbar-thumb {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	background: #e6e6e6;
}

.sidebar-mini-cart::-webkit-scrollbar-track {
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-ms-border-radius: 8px;
	-o-border-radius: 8px;
	-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.active-quick-shop .product-quick-shop {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.product-quick-shop {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(249, 249, 249, 0.97);
	-webkit-transform: translateY(-101%);
	-ms-transform: translateY(-101%);
	-o-transform: translateY(-101%);
	transform: translateY(-101%);
	-webkit-transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: all 0.35s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	z-index: 50;
	overflow-x: hidden;
	overflow-y: auto;
	text-align: center;
}

.product-quick-shop .quick-shop-close {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 15px;
	color: var(--color-main);
	cursor: pointer;
}

.product-quick-shop::-webkit-scrollbar {
	width: 6px;
}

.product-quick-shop::-webkit-scrollbar-thumb {
	border-radius: 8px;
	background: #e6e6e6;
}

.product-quick-shop::-webkit-scrollbar-track {
	border-radius: 8px;
}

.entry-quick-shop {
	height: 100%;
	width: 100%;
	padding: 20px 10px 10px;
}

.entry-quick-shop .product-attribute-switch {
	margin-bottom: 5px;
}

.entry-quick-shop .product-quantity {
	margin-right: 0;
}

.entry-quick-shop .product-quantity input {
	height: 32px;
}

.entry-quick-shop .product-quantity .btn-quantity {
	line-height: 32px;
}

.entry-quick-shop .reset-attribute {
	margin-left: 0;
}

.entry-quick-shop label {
	font-weight: 600;
	margin-bottom: 2px;
}

.entry-quick-shop .add-to-cart {
	display: inline-block;
	margin-top: 8px;
	height: 34px;
	width: 34px;
	font-size: 20px;
	background-color: var(--color-highlight);
	text-align: center;
	line-height: 34px;
	color: var(--white);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.entry-quick-shop .add-to-cart.disable {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
	-webkit-user-select: none;
    /* Chrome all / Safari all */
	-moz-user-select: none;
    /* Firefox all */
	-ms-user-select: none;
    /* IE 10+ */
	user-select: none;
}

.entry-quick-shop .entire-attribute {
	margin-bottom: 5px;
}

.entry-quick-shop .added_to_cart i::before {
	content: "\ebef";
}

.entry-quick-shop .out-of-stock {
	font-weight: 600;
	color: var(--color-highlight);
	text-transform: capitalize;
	line-height: 76px;
}

.per-page-title {
	font-weight: 600;
	color: var(--color-main);
}

.per-page-variation {
	padding: 0 7px;
}

.per-page-variation.active {
	color: var(--color-main);
	font-weight: 600;
}

.orderby-section .dropdown.show .orderby-title::after, .itemby-priority .dropdown.show span::after {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
	top: 10px;
}

.orderby-section .orderby-title::after, .itemby-priority .dropdown>span::after {
	content: "\e92d";
	position: absolute;
	font-family: "iconsax";
	top: 12px;
	right: 10px;
	font-weight: 900;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

.orderby-section .dropdown-item {
	padding-top: 0;
	padding-bottom: 0;
	line-height: 40px;
	height: 40px;
}

.orderby-section .dropdown-item.active {
	font-weight: 600;
	background-color: #f6f6f6;
	color: var(--color-main);
}

.orderby-section .dropdown-menu {
	margin: 0;
	padding: 0;
}

.itemby-priority .dropdown>span {
	background: #F1F1F1 !important;
	padding: 10px 15px;
	font-weight: 700;
	color: var(--color-main);
	cursor: pointer;
	display: block;
	box-shadow: none;
}

.filter-section {
	padding-left: 0;
	list-style: none;
}

.filter-section li .inner-switch > span {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	display: block;
	position: relative;
	border: 1px solid #707070;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 5px;
}

.filter-section li > a {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	font-size: 14px;
	padding: 5px 10px;
}

.filter-section li > a:hover {
	color: var(--color-main);
}

.filter-section li > a:hover .inner-switch > span {
	background-color: transparent !important;
}

.filter-section li > a:hover .inner-switch > span::after {
	content: "\616";
	font-family: "iconsax";
	position: absolute;
	top: -3px;
	left: -2px;
	line-height: 1;
	font-size: 23px;
	color: var(--color-main);
}

.filter-section li > a:hover .inner-switch > span {
	border: 1px solid #fff0;
}

.filter-section li > a.active .inner-name {
	color: var(--color-main);
}

.filter-section li > a.active .inner-switch > span {
	background-color: transparent !important;
}

.filter-section li > a.active .inner-switch > span::after {
	content: "\616";
	font-family: "iconsax";
	position: absolute;
	top: -3px;
	left: -2px;
	line-height: 1;
	font-size: 23px;
	color: var(--color-main);
}

.filter-section.filter-inline {
	display: flex;
	align-items: center;
}

.dropdown-item.active,
.dropdown-item:active {
	background-color: var(--light);
	color: var(--color-main);
}

.cart-drop-botoom .card-body {
	background: var(--light);
}

.card {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border-radius: 0.25rem;
}

.card-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1.25rem;
}
/*header-top*/
body.is-mobile {
	font-size: 14px;
}

/*header main*/

.form-search .input-group input {
	height: 40px;
	width: 100%;
	border-radius: 5px !important;
	border-color: #dbdbdb !important;
}

.form-search .input-group .input-group-append button.btn.btn-submit {
	height: 38px;
	background: none;
	padding: 0px 10px !important;
	z-index: 5;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

.form-search .input-group .input-group-append {
	margin-left: 0;
	position: absolute;
	left: 0;
}

/*dich vu*/

a.policy-list-item .icon img {
	width: 42px;
	object-fit: contain;
	height: 42px;
}

.policy-list-label {
	height: 45px;
	line-height: 26px;
}

/*banner*/
.section-man-bannr {
	height: 49vw;
	max-height: 49vw;
}

.section-man-bannr > .container {
	height: 100%;
}

.section-man-bannr .title-man {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.section-man-bannr .title-man .title-top {
	font-size: 33px;
}

.section-man-bannr .title-man .title-center {
	font-size: 71px;
	line-height: 115%;
}

.section-man-bannr .title-man .btn-seemore {
	font-size: 16px;
}

.section-man-bannr .title-man .btn-seemore:before,
.product-hot .product-hot-left .product-item .inner-content .product-rating-price:before {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 2px;
	background: var(--black);
	content: "";
	left: 3px;
	transform: translateY(-50%);
}

/*product sale*/
span#time_sale_right p:last-child:before {
	display: none;
}

span#time_sale_right p.hour {
	background: var(--black);
	float: left;
	height: 50px;
	width: 50px;
	border-radius: 4px;
	padding: 0 !important;
	line-height: 50px;
	font-size: 24px;
	position: relative;
	min-width: auto;
}

span#time_sale_right p.hour:before {
	content: ":";
	position: absolute;
	color: #000;
	right: -19px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
}

#time_sale_right {
	margin: 0 -15px;
	display: block;
	position: relative;
}

.title_sale .title-section {
	color: var(--color-highlight);
}

.product-item .inner-image .btn-love a {
	position: absolute;
	top: 7px;
	right: 7px;
	z-index: 1;
	display: inline-block;
	width: 30px;
	height: 30px;
	background: var(--white);
	text-align: center;
	line-height: 30px;
	border-radius: 6px;
	font-size: 20px;
	z-index: 12;
}

.product-tab.nav .nav-item .nav-link.active::after {
	display: none;
}

ul.pagination li.page-item {
	margin: 0px 5px;
	position: relative;
}

ul.pagination li.page-item .page-link {
	border: 0;
	height: 24px;
	width: 24px;
	line-height: 24px;
	padding: 0;
	text-align: center;
	opacity: 1;
	color: var(--black);
	border-radius: 5px;
	background: none;
}

.pagination {
	justify-content: flex-end !important;
}

ul.pagination li.page-item .active span {
	background: var(--color-main);
	width: 24px;
	height: 24px;
}

ul.pagination li.page-item.active span {
	background: var(--color-main);
	width: 24px;
	height: 24px;
	color: var(--white);
}

ul.pagination li.page-item .page-link i {
	vertical-align: middle;
}

ul.pagination li.page-item .page-link.active {
	background: var(--black);
	color: var(--white);
}

.product-hot .product-hot-left .product-item .inner-image {
	padding-top: 122.5%;
}

.product-hot .product-hot-left .product-item .inner-content {
	position: absolute;
	left: 50px;
	top: 70%;
	z-index: 12;
	border-top: 0;
}

.product-hot .product-hot-left .product-item .inner-content .product-title a {
	font-size: 45px;
}

.form-get-more-deals .content-form .form-group {
	flex: 0 0 80%;
}

.form-get-more-deals .content-form .form-group:last-child {
	flex: 0 0 20%;
}

.form-get-more-deals .content-form .form-group:last-child span.btn {
	background: var(--color-main);
	height: 42px;
	padding: 0;
	line-height: 42px;
	border-radius: 0 5px 5px 0;
}

.form-get-more-deals .content-form .form-group input {
	height: 42px;
	border-radius: 5px 0 0 5px !important;
	border: 1px solid #000 !important;
}

.product-padding-right .title-section span {
	font-size: 16px;
	font-weight: normal;
}

.product-padding-right .inner-image {
	border-radius: 12px !important;
	overflow: hidden;
}

.rounded-10 {
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-mini-cart .title-top-cart {
	border-bottom: 1px solid #ddd;
	margin-bottom: 5px;
}

.sidebar-mini-cart .content-mini-cart .mini-cart-btn a {
	height: 52px;
	line-height: 52px !important;
	border-radius: 5px;
	max-width: 280px;
	margin: 0 auto;
	width: 100%;
}

.product-item .inner-image .btn-love a.btn-product-action.added-wishlist {
	background: var(--color-highlight);
	color: #fff;
}

.icon_menu_tab .link_show,
.sort-right .dropdown span.orderby-title {
	height: 36px;
	width: 180px;
	border-radius: 5px;
}

.list-cart-item table.table.cart-info-section > thead > tr > th {
	background: none;
	color: var(--black);
	font-weight: 600;
	border: 0;
	padding: 10px 0;
}

.list-cart-item table.table.cart-info-section > tbody > tr > th,
.list-cart-item table.table.cart-info-section > tbody > tr > td {
	border: 0;
}

.list-cart-item .responsive-table tbody tr:nth-of-type(even) {
	background: none;
}

.list-cart-item table.table.cart-info-section > thead {
	border-bottom: 1px solid #ddd;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .product-quantity {
	border: 0;
	padding: 0 !important;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .product-quantity .btn-quantity {
	font-size: 19px;
}

.bg-white.cart-item-center .cart-info-section tbody .item-quantity .quantity-input {
	width: 30px;
	padding: 0;
	height: 28px;
	margin: 0;
	margin-bottom: 4px;
	font-size: 17px;
	font-weight: 600;
}

.cart-item-center .cart-info-section > tbody > tr.cart_item {
	border-bottom: 1px dashed #707070;
}

.cart-item-center .cart-info-section > tbody > tr.cart_item > td,
.cart-item-center .cart-info-section > tbody > tr.cart_item > th {
	padding: 13px 0;
}

.cart-item-center .cart-info-section > tbody > tr.cart_item:last-child {
	border-bottom: 0;
}

.name-cart {
	font-weight: 600;
}

.icon_we_accept .box_icon {
	flex: 0 0 33.33%;
	max-width: 33.33%;
}

.cart-totals-top > td {
	border: 0 !important;
}

.product-left .title-section {
	text-align: left !important;
	margin-bottom: 25px;
	padding-top: 10px;
}

.product-filter-botoom button.close_show {
	border: 0;
	background: none;
}

.target_show.toggle .product-filter-top {
	display: none !important;
}

.target_show.toggle .product-filter-botoom {
	display: block !important;
}

.product-filter-botoom {
	display: none;
}

.content-filter-product a.reset-attribute:before {
	display: none;
}

.content-filter-product a.reset-attribute {
	border: 0;
}

.content-filter-product > .row > div {
	border-right: 1px solid #cecece;
}

.content-filter-product > .row > div:last-child {
	border-right: 0;
}

.content-filter-product > .row {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dashed;
}

.content-filter-product > .row:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: 0;
}

.progress .progress-bar.bg-warning {
	line-height: 8px;
	background: var(--color-highlight) !important;
	float: left;
	height: 100%;
	color: #fff;
}

.time_product .progress {
	height: 8px;
}

.progress {
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
	box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%);
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute::before,
.product-content-detail .entire-attribute .list-attribute .reset-attribute:after {
	display: none;
}

.product-content-detail .entire-attribute .list-attribute .reset-attribute {
	border: 0;
	font-weight: normal;
}

.quantity-buy .product-quantity input {
	font-weight: 600;
	font-size: 23px;
}

.quantity-buy .product-quantity {
	font-size: 32px;
	line-height: normal;
	width: 114px;
}

.btn-cart-buy {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
}

.quantity-buy .btn-cart-buy a.add-to-cart {
	flex: 0 0 48%;
	max-width: 48%;
}

.product-content-detail .entire-attribute .list-attribute > div > p,
.entire-cart p {
	font-size: 14px;
}

button:hover,
a:hover {
	text-decoration: none !important;
}

.card .icon-card img {
	width: 24px;
	height: 24px;
}

.item-text-right .input-login .form-group input {
	height: 46px;
	border-radius: 0;
	border: 0;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	font-size: 16px;
}

.input-login .btn-login .btn-submit {
	height: 46px;
	line-height: 46px !important;
}

.session-login.confirm-phone .item-text-right form .form-group > span {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	border-right: 1px solid #ddd;
	padding-right: 15px;
	height: 35px;
	line-height: 35px;
}

.session-login.confirm-phone .item-text-right form .form-group input {
	border: 0;
	border-radius: 5px;
}

.session-login.confirm-phone .item-text-right form .form-group > span > span {
	padding-left: 8px;
	color: #969494;
}

.session-login.confirm-phone .item-text-right form .form-group {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding-left: 95px;
}

.session-login.session-login-otp .item-text-right .input-login .input-opt input {
	border: 0;
	margin: 0 5px;
	background: #f3f5f9;
	height: 40px;
	width: 40px;
	border-radius: 5px;
}

.session-login.session-login-otp .item-text-right .input-login .input-opt {
	margin: 0 -5px;
}

.session-login.session-login-otp .item-text-right form > p > a {
	color: red;
}

.producr-detail-combined .title-section, .title-section-4 {
	text-align: left !important;
	margin-bottom: 10px;
	font-size: 16px;
	border-bottom: 0 !important;
	padding-left: 25px !IMPORTANT;
	position: relative;
	line-height: 1.4;
}

.title-section-4 {
	color: var(--color-main);
	font-weight: 700;
}

.product-padding-right article.article-item .inner-image.ratio-custome {
	padding-top: 130%;
	border-radius: 12px;
	overflow: hidden;
}

.product-padding-right article.article-item .inner-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 15px 20px;
	background-image: linear-gradient(180deg, #ffffff00, #000000eb);
}

.product-padding-right .article-item .article-title a {
	font-size: 16px;
	font-weight: normal;
	color: var(--white);
}

ul.list-unstyled.app > li > a > img {
	height: 28px;
}

footer .logo-section {
	margin-top: -60px;
}

footer .logo-section img {
	height: 112px;
}

.product-padding-right .slick-slider:hover .slick-prev {
	left: -23px;
}

.product-padding-right .slick-prev,
.product-padding-right .slick-next {
	height: 46px;
	width: 46px;
	background: var(--white);
	border-radius: 50%;
}

.product-padding-right .slick-slider:hover .slick-next {
	right: -25px;
}

.target_show.toggle .product-filter-botoom .content-filter-product .filter-section .product-attribute-switch > li > a.inner-product-attribute {
	width: auto;
	font-weight: normal;
}

.product-filter-top .sort-right .dropdown-menu {
	background: var(--black);
	text-align: right;
	width: 180px;
}

.product-filter-top .sort-right .dropdown-menu a {
	color: var(--white);
}

.product-filter-top .sort-right .dropdown-menu a:hover {
	background-color: #222;
}

.slide-menu-section {
	margin-bottom: -10px;
}

.back-to-pc {
	display: block;
}

.back-to-mb {
	display: none;
}

.img-profile > img {
	width: 90px;
	height: 90px;
	object-fit: cover;
}

.item-address-member {
	border-bottom: 1px dashed;
}

.btn-add-member a {
	display: inline-block;
}

div#change-address-modal .modal-dialog {
	max-width: 600px;
}

div#change-address-modal .modal-body .form-group label {
	font-weight: 400;
}

.session-cart ul.member-categories-section > li {
	border-bottom: 1px dashed #ddd;
}

.menu-top-member-order > ul > li {
	list-style: none;
}

.list-order-element table > thead > tr > th:nth-child(2) {
	width: 13%;
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute {
	width: 32px;
	height: 32px;
	border-radius: 100% !important;
	line-height: 30px;
	border: 1px dashed #ddd;
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute.active {
	border: 1px solid var(--black);
}

.product-action .entire-attribute .product-attribute-switch .inner-product-attribute.active::before {
	display: none;
}

.banner-top {
	position: absolute;
	width: 100%;
}

.banner-top .banner-newest-lookbooks img {
	object-fit: cover;
	width: 100%;
	height: 80px;
}

.btn-delete-save > ul > li {
	list-style: none;
}

.quantity_cart .product-quantity {
	float: none;
}

.ui-slider .ui-slider-handle {
	border-radius: 50%;
	background: var(--color-highlight);
	border-color: var(--color-highlight);
	top: -8px;
}

.ui-slider-horizontal {
	height: 1px;
}

.ui-slider .ui-slider-range {
	background: var(--color-highlight);
	height: 2px;
	top: -1px;
}

.color-orange {
	color: #ff7948;
}

.flex-7 {
	flex: 0 0 14.2857%;
}

.mx--10 {
	margin: 0 -10px;
}

.bg-gray {
	background: #f5f5f5;
}

.radius-5 {
	border-radius: 5px;
}

.radius-10 {
	border-radius: 10px;
}

.member-attendance .list-date [attendance-tick="true"] {
	cursor: pointer;
}

.member-attendance .list-date [attendance-tick="true"]:hover {
	background: #000;
	color: #fff;
}

.member-attendance .list-date [checked="checked"] {
	cursor: context-menu;
	position: relative;
	text-align: center;
	background: #000;
	color: #fff;
}

.close.position-absolute {
	top: 5px;
	right: 0;
}

.show-form-search .wrap-suggestion {
	position: absolute;
	z-index: 1;
	background-color: #fff;
	width: 100%;
	padding: 10px;
	border-radius: 5px;
	top: 115%;
}

#modal-attendance-success .number-point {
	width: 70px;
	height: 70px;
	background: #000;
	margin: 0 auto;
	margin-bottom: 20px;
	text-align: center;
	color: #fff;
	line-height: 70px;
	font-size: 29px;
	font-weight: bold;
	border-radius: 100px;
}

#modal-attendance-error .modal-dialog,
#modal-attendance-success .modal-dialog {
	top: 20%;
}

#modal-attendance-error .btn-default:hover,
#modal-attendance-success .btn-default:hover {
	color: #fff;
}

.max-w-300 {
	max-width: 300px;
}

.btn-home-page {
	background-color: transparent;
	border: 1px solid var(--color-main);
	color: var(--color-main);
	text-align: center;
	border-radius: 5px;
	padding: 0 25px !important;
	height: 36px;
	line-height: 36px !important;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.btn-buy-point {
	background: var(--color-highlight);
	color: var(--white);
}

.btn-buy-point:hover {
	color: var(--white);
}

.cursor-pointer {
	cursor: pointer;
}

.svg-white {
	filter: var(--svg-white);
}

.svg-hover:hover {
	filter: var(--svg-hover);
	-webkit-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.icon-close {
	-ms-transform: rotate(45deg);
 /* IE 9 */
	transform: rotate(45deg);
}

/*Button Contact Fixed*/
.contact-fixed {
    z-index: 999;
    right: 20px;
    bottom: 20px;
    position: fixed;
    height: 60px;
    width: 60px;
    background: var(--color-main);
    border-radius: 50%;
    cursor: pointer;
}

.contact-fixed__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-size: 10px;
    line-height: 11px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__button.show {
    -webkit-transform: rotate(0) scale(1);
    -ms-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.contact-fixed__button i {
    font-size: 24px;
    margin-bottom: 2px;
}

.contact-fixed__pulsation {
    width: 84px;
    height: 84px;
    background-color: var(--color-main);
    border-radius: 50px;
    position: absolute;
    left: -12px;
    top: -12px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: arcontactus-pulse 2s infinite;
    animation: arcontactus-pulse 2s infinite;
}

.contact-fixed__pulsation:nth-child(2n) {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.contact-fixed__close {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: var(--white);
    font-size: 24px;
    -webkit-transform: rotate(180deg) scale(0);
    -ms-transform: rotate(180deg) scale(0);
    transform: rotate(180deg) scale(0);
    -webkit-transition: ease-in .12s all;
    -o-transition: ease-in .12s all;
    transition: ease-in .12s all;
}

.contact-fixed__close.show {
    -webkit-transform: rotate(-45deg) scale(1);
    -ms-transform: rotate(-45deg) scale(1);
    transform: rotate(-45deg) scale(1);
}

.contact-fixed__list {
    background: center no-repeat var(--white);
    box-shadow: 0 0 10px rgb(0 0 0 / 60%);
    width: 235px;
    position: absolute;
    bottom: 80px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 14px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 7px;
    -webkit-transform-origin: 80% 105%;
    -ms-transform-origin: 80% 105%;
    transform-origin: 80% 105%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: ease-out .12s all;
    -o-transition: ease-out .12s all;
    transition: ease-out .12s all;
    z-index: 10000;
}

.contact-fixed__list:before {
    position: absolute;
    bottom: -7px;
    right: 25px;
    left: auto;
    display: inline-block!important;
    border-right: 8px solid transparent;
    border-top: 8px solid #FFF;
    border-left: 8px solid transparent;
    content: '';
}

.contact-fixed__list.show {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.contact-fixed__item {
    display: flex;
    align-items: center;
    padding: 8px 20px;
    width: 100%;
}

.contact-fixed__item:hover {
    background-color: #eeeeee;
    color: var(--color-text);
}

.contact-fixed__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background-color: var(--color-main);
    border-radius: 50%;
    padding: 8px;
}

.contact-fixed__item-icon img {
    filter: brightness(0) invert(1);
}

@keyframes arcontactus-pulse {
	0% {
		-webkit-transform:scale(0);
		transform:scale(0);
		opacity:1
	}
	50% {
		opacity:.5
	}
	100% {
		-webkit-transform:scale(1);
		transform:scale(1);
		opacity:0
	}
}
/*End Button Contact Fixed*/

@media (min-width: 1200px) {
	.footer-mid > .container > .row > div:nth-child(1) {
		flex: 0 0 37.33333%;
		max-width: 37.33333%;
	}

	.footer-mid > .container > .row > div:nth-child(2),
    .footer-mid > .container > .row > div:nth-child(3) {
		flex: 0 0 23%;
		max-width: 23%;
	}
}

@media (max-width:1200px) {
	.setting-menu-mb > .container > .row > div:nth-child(2) {
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
}

@media (max-width: 991px) {

	.menu-container nav.menu-section > ul {
		display: flex;
		flex-direction: column;
	}

	.content-filter-product > .row > div {
		border-right: 0;
	}

	.filter-section {
		padding: 0;
	}

	.back-to-pc {
		display: none;
	}

	.back-to-mb {
		display: block;
	}

	.footer-mid-mb > .container > .row > div {
		flex: 0 0 50%;
		max-width: 50%;
	}
	
	.contact-fixed {
	    bottom: 60px;
	}
}

@media (max-width: 576px) {

	.policy-list .policy-list-item {
		display: flex;
		align-items: center;
	}

	.policy-list .policy-list-item .policy-list-label {
		height: auto;
		padding-left: 15px;
		text-align: left !important;
	}

	.policy-list .policy-list-item .icon img {
		width: 30px;
		height: 30px;
	}

	.product-pash-sale .title_sale {
		align-items: center;
	}

	.section-man-bannr .title-man .title-center {
		font-size: 25px;
	}

	.section-man-bannr .title-man .title-top {
		font-size: 20px;
	}

	.product-item .inner-content .product-title a, .producr-detail-combined .product-item .inner-content .product-title a {
		font-size: 12px !important;
	}

	.product-hot .product-hot-left .product-item .inner-content .product-title a {
		font-size: 25px;
	}

	.out-stock,
    .onsale,
    .featured {
		font-size: 10px;
		width: 47px;
		line-height: 25px;
		height: 25px;
	}

	.quantity-buy .btn-cart-buy {
		padding-left: 0;
		width: 100%;
	}

	.quantity-buy .product-quantity {
		font-size: 23px;
	}

	.quantity-buy .product-quantity input {
		width: 27px;
		padding: 0;
		font-size: 17px;
		height: 30px;
	}

	.product-content-detail .add-to-cart {
		padding: 5px 0 5px;
	}

	.quantity-buy .btn-cart-buy a.add-to-cart {
		font-size: 14px;
	}

	.cart-item-center .cart-info-section > tbody > tr.cart_item > td,
    .cart-item-center .cart-info-section > tbody > tr.cart_item > th {
		padding: 5px 0;
	}
}
/* Responsive */
.is-mobile .product-detail-footer .nav {
	margin-bottom: 0;
	border-bottom: 0;
}

.is-mobile .product-detail-footer .nav li {
	margin-right: 20px;
}

.is-mobile .product-detail-footer .nav li a {
	font-size: 14px;
}

.is-mobile .product-detail-footer .nav li a::before {
	content: none;
}

.is-mobile .product-detail-footer .nav li a.active {
	color: var(--color-highlight);
}

.is-mobile .box-rating {
	flex-direction: column;
}

.is-mobile .box-rating .author-info {
	flex: 1 1;
	padding: 0;
	display: flex;
	text-align: left;
}

.is-mobile .box-rating .author-info .letter-first {
	margin: 0 8px 0 0;
	height: 36px;
	width: 36px;
	line-height: 34px;
	font-size: 11px;
}

.is-mobile .box-rating .author-info .meta {
	text-align: left;
	padding-left: 10px;
	margin-top: 5px;
}

.is-mobile .box-rating .rating-content {
	width: 100%;
	padding-left: 0;
}

.is-mobile .box-rating .rating-content .entry-reply {
	margin-bottom: 10px;
}

.is-mobile .box-rating .child-reply .author-info .meta {
	padding-left: 0;
}

.is-mobile .box-rating .child-reply .reviews-form {
	background-color: transparent;
	padding: 0;
}

.is-mobile .reviews-form {
	background-color: transparent;
	padding: 0;
}

.is-mobile .reviews-form input[type="text"],
.is-mobile .reviews-form textarea {
	background-color: var(--light);
	border: 2px solid #dee2e6;
}

.is-mobile .logo-section {
	text-align: left;
}

.is-mobile .entry-topbar {
	display: block;
}

.is-mobile .entry-topbar .dropdown-topbar {
	justify-content: center;
}

.is-mobile .entry-topbar .left-topbar {
	display: block;
	text-align: center;
}

.is-mobile .entry-topbar .right-topbar ul {
	text-align: center;
	padding-left: 0;
}

.is-mobile .entry-topbar .slogan-topbar {
	height: inherit;
	line-height: inherit;
}

.is-mobile .slider-section .slick-next:hover,
.is-mobile .slider-section .slick-prev:hover {
	background-color: rgba(255, 255, 255, 0.75);
}

.is-mobile .slider-section .slick-next:hover::before,
.is-mobile .slider-section .slick-prev:hover::before {
	color: var(--color-main);
}

.is-mobile .slider-section .inner-title {
	font-size: 14px;
	margin-bottom: 10px;
}

.is-mobile .slider-section .inner-description {
	font-size: 28px;
	line-height: 35px;
}

.is-mobile .slider-section .inner-content {
	font-size: 13px;
	line-height: 16px;
	margin-top: 10px;
	margin-bottom: 15px;
}

.is-mobile .slider-section .btn-submit {
	font-size: 13px;
	line-height: 35px !important;
	height: 35px;
}

.is-mobile .menu-section {
	position: fixed;
	width: 290px;
	top: 0;
	bottom: 0;
	left: 0;
	height: 100vh;
	z-index: 1100;
	background-color: #fff;
	padding: 0 20px;
	overflow: auto;
	-webkit-transition: all 0.8s ease-in-out;
	transition: all 0.8s ease-in-out;
	-webkit-transform: translate3d(-290px, 0, 0);
	-moz-transform: translate3d(-290px, 0, 0);
	-ms-transform: translate3d(-290px, 0, 0);
	-o-transform: translate3d(-290px, 0, 0);
	transform: translate3d(-290px, 0, 0);
	-webkit-transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	transition: transform 0.3s cubic-bezier(0.65, 0.05, 0.51, 0.82);
	-webkit-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
	box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
}

.is-mobile .menu-section.open, .content-filter.open {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	padding-bottom: 90px;
}

.is-mobile .filter-section li > a {
	font-size: 12px;
}

.is-mobile .menu-section > ul > li {
	display: block;
	margin-right: 0;
	border-bottom: 1px solid #e3e3e3;
}

.is-mobile .menu-section > ul > li:last-child {
	border-bottom: 0;
}

.is-mobile .menu-section > ul > li > a {
	line-height: 1;
	height: auto;
	display: block !important;
	text-align: left;
	padding: 15px 0px;
	color: #000;
}

@media (min-width:992px) and (max-width:1200px) {
	.is-mobile .menu-section > ul {
		display: block !important;
		flex: initial !important;
	}
}

.is-mobile .menu-section > ul > li > .grower {
	top: 8px;
}

.is-mobile .menu-section .grower {
	display: block;
	position: absolute;
	top: 2px;
	right: 0;
	font-size: 14px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	opacity: 1;
	filter: alpha(opacity=100);
	z-index: 1;
}

.is-mobile .menu-section .grower::after {
	content: "\e908";
	font-family: "iconsax";
	vertical-align: bottom;
	font-weight: 600;
}

.is-mobile .menu-section .grower.open::after {
	content: "\eb1f";
}

.is-mobile .menu-section .menu-title {
	font-weight: normal;
	margin-bottom: 0;
	line-height: 1;
	padding: 10px 0;
	display: block;
}

.is-mobile .menu-section .row-menu {
	display: block;
	margin-right: 0px;
	margin-left: 0px;
}

.is-mobile .menu-section .row-menu > div,
.is-mobile .menu-section .row-menu li {
	max-width: 100%;
	padding: 0 0 0 15px;
}

.is-mobile .menu-section .container-menu {
	border-left: 1px solid #e3e3e3;
	margin-bottom: 10px;
	min-height: auto !important;
}

.is-mobile .menu-section .container-menu .sub-menu {
	display: none;
	border-left: 1px solid #e3e3e3;
	padding: 0px;
	margin-bottom: 0px;
}

.is-mobile .menu-section .menu-link {
	line-height: 1;
	padding: 10px 0;
	color: var(--color-main);
}

.is-mobile .menu-section .child-indicator {
	display: none;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item {
	padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
	background-color: #fff;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
	line-height: 1;
	width: 100%;
	padding: 10px 0;
}

.is-mobile .menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
	width: 100%;
	position: static;
	padding: 0;
	margin-bottom: 0;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.is-mobile .menu-section .entry-menu.dropdown {
	margin-bottom: 10px;
}

.is-mobile .menu-section .entry-menu.dropdown ul {
	position: static;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	display: none;
	min-width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	border-left: 1px solid #e3e3e3;
}

.is-mobile .menu-section .entry-menu.dropdown ul li {
	padding-left: 15px;
}

.is-mobile .menu-section .entry-menu.full-width .container-menu {
	width: 100%;
}

.is-mobile .menu-section .has-child {
	position: relative;
}

.is-mobile .menu-section .has-child > a {
	position: relative;
}

.is-mobile .menu-section .has-child > a > span {
	display: none !important;
}

.is-mobile .menu-section .has-child > .entry-menu {
	position: static;
	padding: 0;
	border-top: 0;
	min-width: auto;
	width: auto;
	display: none;
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.is-mobile .menu-section .has-child > .entry-menu::before {
	content: none;
}

.is-mobile .menu-section .has-child:hover > a {
	color: inherit;
}

.is-mobile .menu-section .menu-top {
	display: block;
	position: relative;
	margin-bottom: 15px;
	margin-top: 20px;
}

.is-mobile .menu-section .menu-top .menu-close {
	position: absolute;
	top: 5px;
	right: 0;
	font-size: 20px;
}

.is-mobile .menu-section .close-sidebar {
	position: absolute;
	font-size: 30px;
	color: var(--color-main);
	top: -5px;
	right: 0;
}

.is-mobile .btn-menu-mobile {
	width: 40px;
	height: 40px;
	line-height: 35px;
	text-align: center;
	font-size: 35px;
	display: inline-block;
	color: var(--white);
	padding: 0 12px;
}

.is-mobile .back-drop {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
	z-index: 1020;
	opacity: 0;
	filter: opacity(0);
	visibility: hidden;
}

.is-mobile .back-drop.open {
	opacity: 1;
	filter: opacity(1);
	visibility: visible;
}

.is-mobile .sticky-menu.fix {
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.is-mobile .sticky-menu.fix.scroll-up {
	-webkit-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}

.is-mobile .sidebar-mini-cart {
	width: 290px;
}

.is-mobile .sidebar-mini-cart .content-mini-cart .cart-item {
	padding: 15px 0;
}

.is-mobile .sidebar-mini-cart .content-mini-cart .remove-mini-cart {
	top: 12px;
}

.is-mobile .hight-light .entry-content {
	flex-direction: column;
	text-align: center;
	margin-bottom: 10px;
}

.is-mobile .hight-light .entry-content .inner-icon {
	margin-right: 0;
}

.is-mobile .entire-video-banner {
	padding-top: 56%;
}

.is-mobile .entire-video-banner .entire-content .inner-descript {
	font-size: 30px;
	line-height: 38px;
}

.is-mobile .entire-video-banner .entire-content .inner-category {
	font-size: 14px;
}

.is-mobile .entire-info-website,
.is-mobile .footer-menu-section {
	margin-bottom: 15px;
}

.is-mobile .entire-info-website address {
	margin-bottom: 30px;
}

.is-mobile .product-detail-head .product-quantity,
.is-mobile .product-detail-head .add-to-cart {
	margin-top: 5px;
	margin-bottom: 5px;
}

.is-mobile .view-small .product-item .inner-content {
	text-align: left;
}

.is-mobile .view-small .product-item .inner-content .star-rating {
	margin: 0;
}

.is-mobile .product-item .inner-image .product-action {
	display: none;
}

.is-mobile .product-item .inner-content .product-title {
	line-height: 1.2;
    -webkit-line-clamp: 2;
}

.is-mobile .product-item .inner-content .product-rating-price {
	height: auto;
	line-height: 1.4;
}

.is-mobile .product-item .inner-content .product-rating-price .wrp-rating-price {
	height: auto;
}

.is-mobile .product-item .inner-content .star-rating {
	margin: 0 auto;
}

.is-mobile .product-item .inner-content .price > span {
	display: inline-block;
	padding: 0;
}

.is-mobile .product-item .inner-content .price > span.price-amount.old-price {
	margin-left: 0;
}

.is-mobile .product-item:hover .inner-content .product-rating-price .wrp-rating-price {
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	-o-transform: translateY(0px);
	transform: translateY(0px);
}

.is-mobile ul.pagination li.page-item:before {
	content: none;
}

@media (max-width: 1280px) {
	.menu-section .entry-menu.full-width .container-menu {
		width: auto;
	}

	.menu-section .entry-menu.multil-column {
		min-width: 620px;
	}

	.slick-slider .slick-arrow {
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.slick-slider:hover .slick-prev {
		left: 0px !important;
	}

	.slick-slider:hover .slick-next {
		right: 0px;
	}

	.slick-slider::before,
    .slick-slider::after {
		content: none;
	}

	.slider-section .inner-title {
		font-size: 18px;
	}

	.slider-section .inner-description {
		font-size: 50px;
		line-height: 60px;
	}

	.entire-deal {
		padding: 50px 10px;
	}

	.entire-deal .title-deal {
		font-size: 30px;
		line-height: 40px;
	}

	.entire-deal .price,
    .entire-deal .countdown-wrapper,
    .entire-deal .description-deal {
		margin-bottom: 40px;
	}

	.entire-video-banner .entire-content .inner-descript {
		font-size: 38px;
		line-height: 42px;
	}

	.entire-video-banner .entire-content .inner-category {
		font-size: 18px;
	}
}

@media (max-width: 1000px) {

	.slick-dotted.slick-slider {
		margin-bottom: 30px;
	}

	.entry-topbar {
		display: block;
	}

	.entry-topbar .dropdown-topbar {
		justify-content: center;
	}

	.entry-topbar .left-topbar {
		display: block;
		text-align: center;
	}

	.entry-topbar .right-topbar ul {
		text-align: center;
		padding-left: 0;
	}

	.entry-topbar .slogan-topbar {
		height: inherit;
		line-height: inherit;
	}

	.menu-section > ul > li {
		display: block;
		margin-right: 0;
		border-bottom: 1px solid #e3e3e3;
	}

	.menu-section > ul > li:last-child {
		border-bottom: 0;
	}

	.menu-section > ul > li > a {
		line-height: 1;
		height: auto;
		display: block !important;
		text-align: left;
		padding: 15px 0px;
		font-size: 14px;
	}

	.menu-section > ul > li > .grower {
		top: 8px;
	}

	.menu-section .grower {
		display: block;
		position: absolute;
		top: 2px;
		right: 0;
		font-size: 14px;
		width: 30px;
		height: 30px;
		line-height: 30px;
		text-align: center;
		cursor: pointer;
		opacity: 1;
		filter: alpha(opacity=100);
		z-index: 1;
	}

	.menu-section .grower::after {
		content: "\e908";
		font-family: "iconsax";
		vertical-align: bottom;
		font-weight: 600;
	}

	.menu-section .grower.open::after {
		content: "\eb1f";
	}

	.menu-section .menu-title {
		font-weight: normal;
		margin-bottom: 0;
		line-height: 1;
		padding: 10px 0;
		display: block;
	}

	.menu-section .row-menu {
		display: block;
		margin-right: 0px;
		margin-left: 0px;
	}

	.menu-section .row-menu > div,
    .menu-section .row-menu li {
		max-width: 100%;
		padding: 0 0 0 15px;
	}

	.menu-section .container-menu {
		border-left: 1px solid #e3e3e3;
		margin-bottom: 10px;
		min-height: auto !important;
	}

	.menu-section .container-menu .sub-menu {
		display: none;
		border-left: 1px solid #e3e3e3;
		padding: 0px;
		margin-bottom: 0px;
	}

	.menu-section .menu-link {
		line-height: 1;
		padding: 10px 0;
		color: var(--color-main);
	}

	.menu-section .child-indicator {
		display: none;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item {
		padding-left: 15px;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item.active > .menu-link {
		background-color: #fff;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item > .menu-link {
		line-height: 1;
		width: 100%;
		padding: 10px 0;
	}

	.menu-section .entry-menu.tabs-menu .tabs-item > .sub-menu {
		width: 100%;
		position: static;
		padding: 0;
		margin-bottom: 0;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.menu-section .entry-menu.dropdown {
		margin-bottom: 10px;
	}

	.menu-section .entry-menu.dropdown ul {
		position: static;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
		display: none;
		min-width: auto;
		margin: 0;
		padding: 0;
		border: 0;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
		border-left: 1px solid #e3e3e3;
	}

	.menu-section .entry-menu.dropdown ul li {
		padding-left: 15px;
	}

	.menu-section .entry-menu.full-width .container-menu {
		width: 100%;
	}

	.menu-section .has-child {
		position: relative;
	}

	.menu-section .has-child > a {
		position: relative;
	}

	.menu-section .has-child > a > span {
		display: none !important;
	}

	.menu-section .has-child > .entry-menu {
		position: static;
		padding: 0;
		border-top: 0;
		min-width: auto;
		width: auto;
		display: none;
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
	}

	.menu-section .has-child > .entry-menu::before {
		content: none;
	}

	.menu-section .has-child:hover > a {
		color: inherit;
	}

	.menu-section .menu-top {
		display: block;
		position: relative;
		margin-bottom: 15px;
		margin-top: 20px;
	}

	.menu-section .menu-top .menu-close {
		position: absolute;
		top: 5px;
		right: 0;
		font-size: 20px;
	}

	.menu-section .close-sidebar {
		position: absolute;
		font-size: 30px;
		color: var(--color-main);
		top: -5px;
		right: 0;
	}

	.back-drop {
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		-webkit-transition: all 0.25s ease-in-out;
		transition: all 0.25s ease-in-out;
		z-index: 1020;
		opacity: 0;
		filter: opacity(0);
		visibility: hidden;
	}

	.back-drop.open {
		opacity: 1;
		filter: opacity(1);
		visibility: visible;
	}

	.sticky-menu.fix {
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.sticky-menu.fix.scroll-up {
		-webkit-transform: none;
		-ms-transform: none;
		-o-transform: none;
		transform: none;
	}

	.sidebar-mini-cart {
		width: 290px;
	}

	.sidebar-mini-cart .content-mini-cart .cart-item {
		padding: 15px 0;
	}

	.sidebar-mini-cart .content-mini-cart .remove-mini-cart {
		top: 12px;
	}

	.hight-light .inner-icon {
		margin-right: 30px;
	}

	.title-section {
		margin-bottom: 30px;
	}

	.entire-info-website .descript-website-section,
    .entire-info-website address,
    .entire-info-website .social-footer-section {
		margin-bottom: 30px;
	}

	.product-tab .nav .nav-item {
		padding: 0 15px;
	}

	.product-tab .nav .nav-item .nav-link {
		font-size: 14px;
		padding-bottom: 10px;
	}

	.product-detail-head .product-quantity,
    .product-detail-head .add-to-cart {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.form-billing label {
		margin-bottom: 5px;
	}

	.form-billing .form-group {
		margin-bottom: 15px;
	}

	footer .product-section,
    footer .footer-menu-section {
		margin-bottom: 40px;
	}
}

@media (min-width: 768px) and (max-width: 1280px) {
	.menu-section > ul > li > a {
		font-size: 11px;
	}

	.btn-action-header i {
		font-size: 18px;
	}
}

@media (max-width: 991px) {

	.product-detail-footer .nav {
		margin-bottom: 0;
		border-bottom: 0;
	}

	.product-detail-footer .nav li {
		margin-right: 20px;
	}

	.product-detail-footer .nav li a {
		font-size: 14px;
	}

	.product-detail-footer .nav li a::before {
		content: none;
	}

	.product-detail-footer .nav li a.active {
		color: var(--color-highlight);
	}

	.box-rating {
		flex-direction: column;
	}

	.box-rating .author-info {
		flex: 1 1;
		padding: 0;
		display: flex;
		text-align: left;
	}

	.box-rating .author-info .letter-first {
		margin: 0 8px 0 0;
		height: 36px;
		width: 36px;
		line-height: 34px;
		font-size: 11px;
	}

	.box-rating .author-info .meta {
		text-align: left;
		padding-left: 10px;
		margin-top: 5px;
	}

	.box-rating .rating-content {
		width: 100%;
		padding-left: 0;
	}

	.box-rating .rating-content .entry-reply {
		margin-bottom: 10px;
	}

	.box-rating .child-reply .author-info .meta {
		padding-left: 0;
	}

	.box-rating .child-reply .reviews-form {
		background-color: transparent;
		padding: 0;
	}

	.reviews-form {
		background-color: transparent;
		padding: 0;
	}

	.reviews-form input[type="text"],
    .reviews-form textarea {
		background-color: var(--light);
		border: 2px solid #dee2e6;
	}

	.entire-address {
		padding: 20px 0;
	}

	.comment-section .list-comment .comment-content {
		margin-left: 0;
	}

	.list-comment .list-reply {
		margin-left: 30px;
	}

	.comment-item .edit-comment {
		margin-left: 30px;
	}

	.edit-comment {
		margin-bottom: 30px;
	}

	.title-section, .product-left.product-da-xem .title-section {
		font-size: 24px;
		line-height: 30px;
		text-align: left !important;
		padding-left: 0 !important;
	}

	.description-section {
		text-align: left !important;
	}

	:not(.slick-vertical) .slider-thumbs .thumb-item {
		margin: 0 5px !important;
	}

	.product-image-detail .slider-thumbs {
		margin: 10px 0;
	}

	.product-image-detail .slider-thumbs .slick-list {
		margin: 0 -5px;
	}

	.product-image-detail .slider-thumbs .slick-prev {
		top: calc(-50% + 2px);
		left: 0;
		right: auto;
		width: 25px;
		height: 25px;
		margin: 0;
		background: var(--color-main);
	}

	.product-image-detail .slider-thumbs .slick-prev::before {
		content: "\e931";
	}

	.product-image-detail .slider-thumbs .slick-next {
		top: calc(-50% + 2px);
		left: auto;
		right: 0;
		width: 25px;
		height: 25px;
		margin: 0;
	}

	.product-image-detail .slider-thumbs .slick-next::before {
		content: "\e936";
	}

	.product-image-detail .slider-thumbs .thumb-item {
		margin: 0;
	}

	.product-image-detail .slider-thumbs .thumb-item img {
		border: 1px solid transparent;
		object-fit: cover;
	}

	.page-title-section.page-categories {
		background: #f3f3f3 !important;
		padding: 20px 0;
	}

	.page-title-section .inner-title {
		font-size: 30px;
	}

	.entry-order-review th,
    .entry-order-review td {
		font-size: 13px;
		padding: 7px 0;
	}

	.entry-order-review .order-total {
		font-size: 18px;
	}

	.entry-order-review .order-total .price-amount {
		font-size: 14px;
	}

	.entry-order-review .price-amount {
		font-size: 14px;
	}

	.payment-method .tab-content,
    .payment-method ul {
		padding: 0;
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
		border-right: 0;
	}

	.payment-method ul {
		border-bottom: 1px solid #e3e3e3;
		padding-bottom: 30px;
	}

	.payment-method ul li a.active::after {
		content: none;
	}

	.entire-cart-totals .order-total {
		font-size: 16px;
	}

	.entire-cart-totals .order-total td span {
		font-size: 16px;
	}

	.form-contact .title-section {
		padding-top: 30px;
	}
}

@media (max-width: 767px) {

	.deal-section {
		background-image: none !important;
		background-color: #e8eced;
	}

	.article-item .article-info .article-category {
		display: block;
		margin-right: 0;
	}

	.logo-section {
		text-align: center;
	}

	.work-time {
		margin-top: 40px;
		margin-bottom: 40px;
	}

	.slider-section .slick-next:hover,
    .slider-section .slick-prev:hover {
		background-color: rgba(255, 255, 255, 0.75);
	}

	.slider-section .slick-next:hover::before,
    .slider-section .slick-prev:hover::before {
		color: var(--color-main);
	}

	.slider-section .inner-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.slider-section .inner-description {
		font-size: 28px;
		line-height: 35px;
	}

	.slider-section .inner-content {
		font-size: 13px;
		line-height: 16px;
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.slider-section .btn-submit {
		font-size: 13px;
		line-height: 35px !important;
		height: 35px;
	}

	.entire-video-banner {
		padding-top: 56%;
	}

	.entire-video-banner .entire-content .inner-descript {
		font-size: 30px;
		line-height: 38px;
	}

	.entire-video-banner .entire-content .inner-category {
		font-size: 14px;
	}

	.page-title-section .product-categories li {
		display: block;
	}

	.responsive-table.cart-info-section {
		margin-bottom: 15px;
	}

	.responsive-table.cart-info-section .item-quantity::before {
		margin-top: 10px;
	}

	.responsive-table.cart-info-section .item-quantity .product-quantity {
		border: 0;
		padding: 0;
	}

	.entire-cart-totals {
		margin-top: 15px;
	}

	.product-item .inner-image .product-action {
		display: none;
	}

	.product-item .inner-content .product-rating-price {
		height: auto;
		line-height: 1.4;
	}

	.product-item .inner-content .product-rating-price .wrp-rating-price {
		height: auto;
	}

	.product-item .inner-content .star-rating {
		margin: 0 auto;
	}

	.product-item .inner-content .price > span {
		display: inline-block;
		padding: 0 3px;
	}

	.product-item .inner-content .price > span.price-amount.old-price {
		margin-left: 0;
	}

	.product-item:hover .inner-content .product-rating-price .wrp-rating-price {
		-webkit-transform: translateY(0px);
		-ms-transform: translateY(0px);
		-o-transform: translateY(0px);
		transform: translateY(0px);
	}

	.swal2-styled {
		padding: 0 10px;
	}

	.swal2-content,
    .swal2-actions,
    .swal2-header {
		padding: 7px 5px;
		text-align: center;
	}

	.swal2-actions button {
		font-size: 11px !important;
	}

	.swal2-actions {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.swal2-popup {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media (max-width: 700px) {
	.product-category-section > div {
		height: auto;
	}

	.product-category-section .inner-product-cat {
		height: auto;
		padding-top: 75%;
		margin-bottom: 30px;
	}

	.product-category-section .inner-product-cat.half-height {
		height: auto;
	}

	.hight-light .inner-icon {
		margin-right: 0px;
	}

	.hight-light .entry-content {
		flex-direction: column;
		text-align: center;
		margin-bottom: 30px;
	}

	.checkout-coupon .coupon-info::before,
    .checkout-coupon .coupon-info::after {
		content: none;
	}

	.product-content-detail .add-to-cart {
		max-width: 180px;
	}

	.sidebar-mini-cart .sidebar-header {
		margin-top: 0;
	}

	.sidebar-mini-cart .content-mini-cart .inner-image img {
		width: 45px;
		max-height: 60px;
		margin-right: 10px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content {
		margin-left: 55px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .product-title {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .quantity {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .inner-content .quantity .price-amount {
		font-size: 13px;
	}

	.sidebar-mini-cart .content-mini-cart .total-price label {
		font-size: 14px;
	}

	.sidebar-mini-cart .content-mini-cart .total-price .price-amount {
		font-size: 16px;
	}

	.sidebar-mini-cart .content-mini-cart .mini-cart-btn {
		padding-top: 20px;
	}
}

@media (max-width: 575px) {
	.coppyright-payment .coppyright {
		text-align: center;
		margin-bottom: 5px;
	}

	.coppyright-payment .payment {
		text-align: center !important;
	}
}

@media (max-width: 420px) {
	.slider-section .inner-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.slider-section .inner-description {
		font-size: 20px;
		line-height: 24px;
		margin-bottom: 10px;
	}

	.slider-section .inner-content {
		display: none;
	}

	.slider-section .btn-submit {
		font-size: 13px;
		line-height: 35px !important;
		height: 35px;
	}
}

@media screen and (device-aspect-ratio: 2 / 3) {
	select,
    textarea,
    input[type="text"],
    input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 5, 5C, 5S, iPod Touch 5g */
@media screen and (device-aspect-ratio: 40 / 71) {
	select,
    textarea,
    input[type="text"],
    input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 6, iPhone 6s, iPhone 7  */
@media screen and (device-aspect-ratio: 375 / 667) {
	select,
    textarea,
    input[type="text"],
    input[type="password"] {
		font-size: 16px;
	}
}

/* Fix Input Zoom on iPhone 6 Plus, iPhone 6s Plus, iPhone 7 Plus, iPhone 8, iPhone X, XS, XS Max  */
@media screen and (device-aspect-ratio: 9 / 16) {
	select,
    textarea,
    input[type="text"],
    input[type="password"] {
		font-size: 16px;
	}
}

/*Custom*/
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl {
    padding-right: 5px;
    padding-left: 5px;
}

.row {
	margin-right: -5px;
	margin-left: -5px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    padding-right: 5px;
    padding-left: 5px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col, .no-gutters>[class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.slick-slide {
	margin: 0 5px;
}

.slick-list {
	margin: 0 -5px;
}

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

	.priority-list-all>.row>div:nth-child(1) {
		flex: 0 0 12%;
		max-width: 12%;
	}

	.priority-list-all>.row>div:nth-child(2), .priority-list-all>.row>div:nth-child(4) {
		flex: 0 0 22%;
		max-width: 22%;
	}

	.priority-list-all>.row>div:nth-child(3) {
		flex: 0 0 30%;
		max-width: 30%;
	}

	.priority-list-all>.row>div:nth-child(5) {
		flex: 0 0 14%;
		max-width: 14%;
	}

	.list-category-product>.row>div {
		flex: 0 0 120px !important;
		max-width: 120px !important;
	}

	.view-product>.row>div {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.section-list-article  .article-news, .category-news {
		background: var(--white);
		padding: 15px;
		border-radius: 10px;
	}

	.category-news .section-category-product .item-category {
		margin-bottom: 0 !important;
	}

	.producr-detail-combined .product-item .inner-content .product-title a {
		font-size: 16px;
	}

	.search-mobile.fix-search {
		-webkit-animation-name: fadeInDown;
		-webkit-animation-duration: 5s;
		-webkit-animation-timing-function: linear;
		-webkit-animation-iteration-count: infinite;
		-webkit-animation-direction: normal;
		-webkit-animation-play-state: running;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-name: anim_titles;
		-moz-animation-duration: 5s;
		-moz-animation-timing-function: linear;
		-moz-animation-iteration-count: infinite;
		-moz-animation-direction: normal;
		-moz-animation-play-state: running;
		-moz-animation-fill-mode: forwards;
		-webkit-animation-delay: 1s;
		-moz-animation-delay: 1s;
		-webkit-animation-iteration-count: 1;
		-moz-animation-iteration-count: 1;
		-webkit-animation-duration: .7s;
		-moz-animation-duration: .7s;
		-webkit-animation-delay: 0s;
		-moz-animation-delay: 0s;
		-webkit-animation-timing-function: ease-out;
		-moz-animation-timing-function: ease-out;
	}
}

@media (min-width:992px) and (max-width:1200px) {
	.container, .container-lg, .container-md, .container-sm {
		max-width: 1200px;
	}

	.setting-menu > .container > .row > div:nth-child(2) {
		flex-basis: calc(83.33333% - 205px);
		max-width: 83.33333%;
	}

	.setting-menu > .container > .row > div:nth-child(3) {
		flex: 0 0 205px;
		max-width: 205px;
	}

	.section-category-product .item-category {
		margin-bottom: 10px !important;
	}

	.section-category-product>.row>div:nth-child(2) .item-category {
		height: calc(100% - 10px) !important;
	}

	.view-product.content-fash-sale>.row>div {
		flex: 0 0 20%;
		max-width: 20%;
	}
}

/*--------------------------------------------------------------------------
|  Header
--------------------------------------------------------------------------*/
.logo-section img {
	height: 80px;
	object-fit: contain;
}

@media (min-width:992px) {
	.setting-menu > .container > .row > div:nth-child(2) {
		padding: 0;
	}
}

.menu-section > ul > li.has-child > ul.entry-menu.dropdown:before {
	position: absolute;
	content: '\324';
	top: -23px;
	width: 20px;
	height: 20px;
	font-size: 23px;
	left: 20px;
	font-family: 'iconsax';
	color: var(--white);
}
/*--------------------------------------------------------------------------
|  Main
--------------------------------------------------------------------------*/
.policy-list {
	border-right: 1px solid #dee2e6;
}

.section-policy .row>div:last-child .policy-list {
	border: 0;
}

.slick-slider:hover .slick-arrow {
	background: #fff;
}

.article-content {
	overflow-y: hidden;
}
/*category_product*/

@media (min-width:992px) {
	.section-category-product>.row {
		display: grid;
		grid-template-columns: 25% 25% 25% 25%;
		gap: 0;
		padding: 0;
	}

	.category-product-home .section-category-product>.row>div:nth-child(2) {
		grid-row-start: 1;
		grid-row-end: 3;
		grid-column-start: 2;
	}

	.section-category-product>.row>div {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

.hover-on-img .img-category img {
	transition: 1.1s;
}

.hover-on-img:hover .img-category img {
	transform: scale(1.1);
}
/*category_product*/

/*fash sale*/
.section-fash-sale {
	background-size: cover;
	background-repeat: no-repeat;
}

.title_sale .title_sale {
	background: var(--color-highlight);
}

.title_sale .title .time {
	background: var(--color-highlight);
	display: flex;
	border-radius: 7px;
}

.title_sale .title .time span#time_sale_all_product {
	display: flex;
	align-items: center;
	margin: 0 -7px;
}

.title_sale .title .time span#time_sale_all_product p {
	margin: 0 10px !important;
	padding: 0;
	height: auto;
	border: 0;
	font-size: 22px;
	color: #15284B;
	position: relative;
	line-height: 1;
}

.title_sale .title .time span#time_sale_all_product p:before {
	content: '';
	position: absolute;
	right: -15px;
	top: 10px;
	height: 2px;
	width: 7px;
	background: var(--black);
	z-index: 2;
	line-height: 1.1;
}

.title_sale .title .time span#time_sale_all_product p:last-child:before {
	content: none;
}

.title_sale .title .time span {
	line-height: 1;
	font-weight: 700;
	color: #15284B;
}

.content-fash-sale .product-item .wrp-effect-change-img {
	padding-top: 128% !important;
	background: var(--white);
}

.content-fash-sale .product-item .wrp-effect-change-img img {
	object-fit: contain;
}

.content-fash-sale .product-item .inner-content .product-title a, .content-fash-sale .product-item .inner-content .product-category a, .content-fash-sale .product-item .inner-content .product-rating-price .price span {
	color: var(--color-text-hightlight);
}

.content-fash-sale .product-item .inner-content .product-rating-price .price {
	display: flex;
	justify-content: space-between;
}

.slick-slider .product-item {
	margin-bottom: 0;
}
/*fash sale*/

/*product*/
@media (min-width:992px) {
	.product-col-5 .row>div {
		flex: 0 0 20%;
		max-width: 20%;
	}

	.menu-section .entry-menu {
		top: 98%;
	}

	.title-tab {
		border-bottom: 1px solid #003131;
	}
}

.section-tab-product .title-tab .title-section, .product-padding-right .title-section {
	position: relative;
	padding-left: 40px;
}

/*product*/
/*banner-new-product*/
.section-banner .item-banner {
	padding-top: 120%;
}

.banner-new-product .section-banner .row>div:first-child .item-banner {
	padding-top: 59.3%;
}

.banner-new-product .section-banner .row>div:first-child {
	flex: 0 0 50%;
	max-width: 50%;
}

.banner-new-product .section-banner .row>div {
	flex: 0 0 25%;
	max-width: 25%;
}

.slider-banner-center .item {
	border-radius: 10px;
	overflow: hidden;
}

.slider-banner-center ul.slick-dots {
	position: absolute;
	right: 9px;
	width: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	bottom: initial;
}

.slider-banner-center .slick-dotted {
	margin-bottom: 0;
	position: relative;
}

.slider-banner-center ul.slick-dots li {
	margin: 5px 5px;
}

.slider-banner-center ul.slick-dots li button:before {
	width: 9px;
	height: 13px;
	line-height: 13px;
	border-radius: 5px;
	background-color: #F1F1F1;
	opacity: 1;
}

.slider-banner-center ul.slick-dots li.slick-active button:before {
	height: 38px;
	background-color: var(--color-highlight);
}

.slider-banner-center ul.slick-dots li.slick-active {
	height: 38px;
}

.slider-banner-center .item img {
	aspect-ratio: 7/2;
	object-fit: cover;
}

.slider-banner-bottom .item, .slider-banner-bottom .item img {
	aspect-ratio: 8/1;
	object-fit: cover;
}
/*hover banner*/
.img_banner:hover .line-top {
	width: calc(100% - 30px);
	z-index: 1;
}

.img_banner:hover .line-right {
	height: calc(100% - 30px);
	z-index: 1;
}

.img_banner:hover .line-bottom {
	width: calc(100% - 30px);
	z-index: 1;
}

.img_banner:hover .line-left {
	height: calc(100% - 30px);
	z-index: 1;
}

.img_banner .line {
	transition: all .4s;
}

.img_banner.line-top {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 0;
	border-top: 1px solid #fff;
}

.img_banner {
	display: block;
	position: relative;
}

.img_banner .line-top {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 0;
	border-top: 1px solid #fff;
}

.img_banner .line-right {
	top: 15px;
	right: 15px;
	border-left: 1px solid #fff;
	height: 0;
	position: absolute;
}

.img_banner .line-bottom {
	position: absolute;
	bottom: 15px;
	right: 15px;
	left: auto;
	width: 0;
	border-bottom: 1px solid #fff;
}

.img_banner .line-left {
	bottom: 15px;
	left: 15px;
	border-left: 1px solid #fff;
	height: 0;
	position: absolute;
}

/*search*/
.search-section .open i.iconsax.isax-search-normal-1 {
	display: none;
}

.search-section .open .d-none {
	display: inline-block !important;
}

.show-form-search {
	position: absolute;
	right: 41px;
	width: 400px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 99;
}

/*banner-new-product*/
.slider-banner-center .slick-slider::after, .slider-banner-center.slick-slider::before {
	width: 0;
	right: 0;
}
/*--------------------------------------------------------------------------
|  Footer
--------------------------------------------------------------------------*/
.title-head-contact .title-section {
	color: var(--black);
}

.form-get-more-deals .content-form .form-group .btn-1a:hover {
	border: 1px solid var(--black);
}

/*--------------------------------------------------------------------------
|  Responsive
--------------------------------------------------------------------------*/
/*product_detail*/
.content-product iframe {
	max-width: 100%;
	aspect-ratio: 10/6;
	width: 100%;
	height: auto;
}

.product-detail-footer img {
	width: 100%;
	height: auto;
}

@media (max-width:992px) {

	.section-category-product>.row>div {
		padding-right: 5px;
		padding-left: 5px;
	}

	.article-title-detail {
		font-size: 15px;
	}

	.price-amount {
		font-size: 11px;
	}

	.price-amount.old-price {
		font-size: 9px;
	}

	.product-padding-right .slick-next, .product-padding-right .slick-prev {
		top: 50%;
		transform: translateY(-50%);
		height: 30px;
		width: 30px;
	}

	.product-padding-right .slick-next:before, .product-padding-right .slick-prev:before {
		font-size: 19px;
	}
}

@media (max-width:576px) {
	.title_sale .title .time span#time_sale_all_product p {
		font-size: 12px;
		margin: 0 5px !important;
	}

	.title_sale .title .time span#time_sale_all_product p:before {
		right: -7px;
		top: 6px;
		width: 4px;
	}

	.product-padding-right .inner-content .date-view {
		display: none !important;
	}

	.product-padding-right .article-item .article-title a {
		font-size: 13px;
		line-height: 1.2;
	}

	.product-padding-right article.article-item .inner-content {
		padding: 10px 15px 7px;
	}

	.article-item .article-title {
		line-height: 1.2;
		margin-bottom: 0;
		height: 80px;
	}

	.product-pash-sale .title_sale a i {
		display: none;
	}

	.title_sale .title-section {
		font-size: 22px;
	}
}

@media (min-width:768px) and (max-width:1190px) {
	.is-mobile .news-left .view-small .article-item {
		flex: 0 0 50%;
		max-width: 50%;
		border-bottom: 0;
	}

	.is-mobile .news-left .view-small {
		display: flex;
		flex-wrap: wrap;
	}

	.product-padding-right .article-item .article-title a {
		font-size: 14px;
	}

	.date-view span, .date-view a {
		font-size: 10px;
	}

	.product-padding-right article.article-item .inner-content {
		padding: 10px 10px 10px;
	}

	.banner-new-product .section-banner .row>div:first-child .item-banner {
		padding-top: 58.6%;
	}
}

.content-fash-sale .row {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: scroll;
	flex-direction: row;
}

/*page_product*/
.bg-breadcrums-category {
	background: #F1F1F1;
}

.categories-title-section .inner-title {
	font-size: 64px;
}

.categories-title-section .breadcrumb-category {
	display: flex;
	align-items: center;
	justify-content: center;
}

.categories-title-section .breadcrumb-category span {
	border-radius: 23px;
}

.categories-title-section .breadcrumb-category span .title-name {
	color: #ffb917;
}

.categories-title-section .breadcrumb-category span .title-name:before, .categories-title-section .breadcrumb-category span .title-cgr:before {
	position: absolute;
	left: 15px;
	content: '';
	width: 8px;
	height: 8px;
	background: #ffb917;
	border-radius: 50%;
	top: 10px;
}

.categories-title-section .breadcrumb-category span a {
	color: var(--color-text-hightlight);
}

.section-list-category > .container > .row >div:nth-child(1) {
	flex: 0 0 262px;
	max-width: 262px;
}

.section-list-category > .container > .row >div:nth-child(2) {
	flex-basis: calc(100% - 262px);
	max-width: calc(100% - 262px);
}

.list-manufacturer-filter ul.filter-section {
	height: 250px;
	overflow-y: scroll;
	margin-bottom: 0;
}

.list-manufacturer-filter ul.filter-section::-webkit-scrollbar {
	width: 4px;
	background-color: var(--light);
	border: 1px solid var(--light);
}

.list-manufacturer-filter ul.filter-section::-webkit-scrollbar-thumb {
	background-color: var(--color-main);
	width: 5px;
}

.filter-category>a {
	display: table;
	margin: 0 auto;
}

.list-gild-product ul > li {
	list-style: none;
	padding-left: 15px;
}

.list-gild-product ul > li:first-child {
	padding-left: 0;
}

.itemby-priority .dropdown .dropdown-menu {
	width: 100%;
	background: #F1F1F1 !important;
	top: 5px !important;
	border-radius: 5px;
	overflow: hidden;
}

.itemby-priority .dropdown .dropdown-menu>ul>li {
	list-style: none;
}

.itemby-priority .dropdown .dropdown-menu>ul>li>a {
	display: block;
	height: 35px;
	line-height: 35px;
	padding: 0 10px;
}

.itemby-priority .dropdown .dropdown-menu>ul>li:hover>a {
	background: #ddd;
	color: var(--black);
}

.section-banner-list-product .slider-banner-bottom img {
	aspect-ratio: 1/2;
	object-fit: cover;
	border-radius: 5px;
	overflow: hidden;
}

.section-banner-list-product .slider-banner-bottom .item {
	margin-bottom: 30px;
}

.producr-detail-combined .title-section:before, .title-section-4:before {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 11px;
	background: var(--color-main);
	border-radius: 4px;
}

.product-content-detail .add-to-cart {
	max-width: 50%;
	flex-basis: calc(50% - 5px);
}

.quantity-buy .add-to-cart.add-to-cart-buy {
	flex: 0 0 100%;
	max-width: 100%;
	margin-top: 5px;
}

.quantity-buy .installment-purchase.add-to-cart {
	background: #4697DD;
}

.producr-detail-combined .product-item .product-category {
	display: none;
}

.title-section-3 {
	font-size: 23px;
	color: var(--color-main);
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.1;
	padding-left: 30px;
	position: relative;
}

.title-section-3:before {
	content: '';
	position: absolute;
	left: 0;
	height: 100%;
	width: 16px;
	background: var(--color-main);
	border-radius: 5px;
}

.product-status span.onsale:before {
	content: "\311";
	position: absolute;
    left: 24px;
    font-size: 15px;
	font-family: 'iconsax';
	bottom: -15px;
	color: var(--color-main);
}

.product-status span.featured:before {
	content: "\311";
	position: absolute;
	font-size: 15px;
	font-family: 'iconsax';
	bottom: -15px;
	color: var(--color-highlight);
	right: 22px;
}

.thong-so-ky-thuat table {
	width: 100%;
}

.thong-so-ky-thuat table tbody tr:nth-child(2n+1) {
	background: var(--light);
}

.thong-so-ky-thuat table tbody tr td {
	padding: 9px 15px;
}

.khuyen-mai p {
	margin-bottom: 5px;
	position: relative;
	padding-left: 20px;
}

.khuyen-mai p:before {
	width: 8px;
	height: 8px;
	background: var(--color-main);
	content: '';
	left: 0;
	top: 8px;
	position: absolute;
	border-radius: 50%;
}

.khuyen-mai p:last-child {
	margin-bottom: 0;
}

@media (min-width:992px) {
	.section-category-product>.row>div:nth-child(1) .item-category {
		background: #14274A;
	}

	.section-category-product>.row>div:nth-child(2) .item-category {
		background: #3E3E3E;
	}

	.section-category-product>.row>div:nth-child(3) .item-category {
		background: #0B2E34;
	}

	.section-category-product>.row>div:nth-child(4) .item-category {
		background: #3F2933;
	}

	.section-category-product>.row>div:nth-child(5) .item-category {
		background: #65310A;
	}

	.section-category-product>.row>div:nth-child(6) .item-category {
		background: #00315B;
	}

	.section-category-product>.row>div:nth-child(7) .item-category {
		background: #BE9040;
	}

	.category-product-home .section-category-product .item-category .img-category img {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}

	.category-product-home .section-category-product .item-category .img-category {
		position: relative;
		padding-top: 45%;
		margin: 35px 0 15px;
	}

	.category-product-home .section-category-product>.row>div:nth-child(2) .item-category {
		height: calc(100% - 10px);
	}

	.category-product-home .section-category-product>.row>div:nth-child(2) .item-category .img-category {
		padding-top: 125%;
	}

	.section-category-product .item-category .name-category {
		padding-bottom: 10px;
	}

	.category-product-home .section-category-product>.row>div:nth-child(2) .item-category .name-category {
		padding-bottom: 0;
		bottom: 10px;
		position: relative;
	}

	.section-category-product>.row>div:nth-child(8) {
		display: none;
	}
}

@media (min-width:576px) {
	.section-tab-product .title-tab .title-section-tab>a {
		display: none;
	}

	.section-tab-product .title-tab .title-section-tab {
		flex: 0 0 30%;
		max-width: 30%;
	}
}
/*mobile*/
@media (max-width:576px) {
	.banner-new-product .section-banner .row>div:first-child {
		flex: 0 0 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	.banner-new-product .section-banner .row>div {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.slider-banner-center .item img {
		height: 45vw;
		width: 100%;
	}

	.slider-banner-bottom .item, .slider-banner-bottom .item img {
		height: 20vw;
		width: 100%;
	}

	.section-tab-product .title-tab .title-section:before, .product-padding-right .title-section:before {
		display: none;
	}

	.is-mobile footer .logo-section {
		margin-top: 0;
	}
}

@media (max-width:992px) {
	.item-category .name-category a {
		color: var(--black) !important;
	}

	.item-category .wrp-effect-change-img.img-category {
		padding-top: 100%;
	}

	.section-tab-product .title-tab .title-section:before {
		display: none;
	}

	.section-tab-product .title-tab {
		display: flex!important;
		align-items: flex-start !important;
	}

	.section-tab-product .title-tab .title-section-tab {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}

	.section-category-product .item-category .img-category img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100% !important;
		width: 72%;
		right: 0;
		bottom: 0;
		display: table;
		margin: 0 auto;
	}

	.section-category-product>.row>div:nth-child(1) .img-category {
		background: #14274A;
	}

	.section-category-product>.row>div:nth-child(2) .img-category {
		background: #3E3E3E;
	}

	.section-category-product>.row>div:nth-child(3) .img-category {
		background: #0B2E34;
	}

	.section-category-product>.row>div:nth-child(4) .img-category {
		background: #3F2933;
	}

	.section-category-product>.row>div:nth-child(5) .img-category {
		background: #65310A;
	}

	.section-category-product>.row>div:nth-child(6) .img-category {
		background: #00315B;
	}

	.section-category-product>.row>div:nth-child(7) .img-category {
		background: #BE9040;
	}

	.section-category-product>.row>div:nth-child(8) .img-category {
		background: #003131;
	}

	.product-scoll .tab-content .tab-pane,.product-scoll .view-product {
		overflow-x: auto;
	}

	.product-scoll .tab-content .row, .product-scoll .view-product .row {
		width: 800px;
		max-width: unset;
		position: relative;
	}

	.product-scoll .tab-content .row>div, .product-scoll .view-product .row>div {
		flex: 0 0 160px;
		max-width: 160px;
		position: relative;
		-webkit-transition: .3s;
		-moz-transition: .3s;
		-o-transition: .3s;
	}

	.section-category-product .item-category .img-category:before {
		background: rgb(233 233 233 / 5%) none repeat scroll 0 0;
		content: "";
		height: 100%;
		left: 0;
		position: absolute;
		top: 1px;
		right: 0;
		bottom: 0;
		width: 120%;
		transform: rotate(0deg) scale(1.003) skew(-50deg) translate(114px);
		transition: all .3s ease-out;
		z-index: 0;
	}

	.title-section-3 {
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 20px;
	}

	.title-section-3:before {
		width: 11px;
		border-radius: 4px;
	}

	.empty .empty-cart {
		font-size: 14px;
	}
}

.product-scoll  .tab-pane::-webkit-scrollbar, .product-scoll  .view-product::-webkit-scrollbar,.product-scoll  .view-product .row::-webkit-scrollbar {
	display: none;
}

@media (min-width:576px) and (max-width:992px) {
	.title_sale .title .time span#time_sale_all_product p {
		font-size: 15px;
	}

	.new-product .view-product>.row>div:nth-child(10) {
		display: none;
	}

	.new-product .view-product>.row>div:nth-child(10) {
		display: none;
	}

	.slider-banner-center .item img {
		width: 100%;
		height: 250px;
		object-fit: cover;
	}

	.slider-banner-bottom .item, .slider-banner-bottom .item img {
		object-fit: cover;
		height: 127px;
		width: 100%;
	}

	.product-item .inner-content .product-title a {
		font-size: 12px;
	}
}

@media (min-width:992px) and (max-width:1200px) {
	.title-section {
		font-size: 30px;
	}

	.price-amount {
		font-size: 12px;
	}

	.section-category-product .item-category .name-category a {
		font-size: 18px !important;
	}

	.slider-banner-center .item img {
		width: 100%;
		height: 300px;
		object-fit: cover;
	}

	.slider-banner-bottom .item, .slider-banner-bottom .item img {
		object-fit: cover;
		height: 147px;
		width: 100%;
	}

	.product-item .inner-content .product-title a {
		font-size: 13px;
	}
}

@media (max-width:1200px) {
   
	.section-tab-product .title-tab .product-tab>li {
		flex: 0 0 33.33%;
		max-width: 33.33%;
		text-align: center;
	}

	.section-tab-product .title-tab .product-tab {
		width: 100%;
		max-width: 100%;
		display: flex;
		flex-wrap: nowrap;
	}

	.section-tab-product .title-tab .product-tab>li>a.active {
		background: var(--color-highlight) !important;
		font-weight: 700;
		border-radius: 5px;
	}

	.section-tab-product .title-tab .product-tab>li>a {
		background: var(--white);
		display: block;
		border-radius: 5px;
	}

	.itemby-priority-sort .content-sort, .itemby-priority-sort .content-select-by {
		overflow-x: scroll;
	}

	.itemby-priority-sort .content-sort::-webkit-scrollbar,  .itemby-priority-sort .content-select-by::-webkit-scrollbar {
		display: none;
	}

	.is-mobile .items-number {
		top: 11px;
	}

	.product-item .inner-image {
		margin-bottom: 10px;
	}
}

.product-pash-sale .product-item {
	background: none;
	box-shadow: none;
	padding: 0;
	border-radius: 5px;
}

.content-fash-sale .product-item .inner-content .product-rating-price .price span {
	color: #FFBF00;
}

.product-pash-sale .product-item {
	margin-bottom: 0 !important;
}
/*trang_danh_sach_san_pham*/
.list-category-product>.row>div {
	flex: 0 0 20%;
	max-width: 20%;
}

.list-category-product .item-category .img-category {
	padding-top: 110%;
	background: #404040;
}

.list-category-product .item-category .img-category img {
	width: 75%;
	margin: 0 auto;
	padding: 15px 0;
}

.list-category-product>.row>div:nth-child(2) .item-category .img-category {
	background: #C4B5FD;
}

.list-category-product>.row>div:nth-child(3) .item-category .img-category {
	background: #B5E0FD;
}

.list-category-product>.row>div:nth-child(4) .item-category .img-category {
	background: #FDBA74;
}

.list-category-product>.row>div:nth-child(5) .item-category .img-category {
	background: #94B9FF;
}

.list-category-product>.row>div:nth-child(6) .item-category .img-category {
	background: #6EE7B7;
}

.list-category-product>.row>div:nth-child(7) .item-category .img-category {
	background: #93C5FD;
}

.list-category-product>.row>div:nth-child(8) .item-category .img-category {
	background: #FDA4AF;
}

.list-category-product>.row>div:nth-child(9) .item-category .img-category {
	background: #F9A8D4;
}

.list-category-product>.row>div:nth-child(10) .item-category .img-category {
	background: #A5B4FC;
}

.list-category-product .item-category .name-category {
	line-height: 1.1 !important;
}

.section-category-product .item-category {
	z-index: 0;
}

@media (min-width:1024px) {
	.section-category-product .item-category:before {
		background: rgb(233 233 233 / 5%) none repeat scroll 0 0;
		content: "";
		height: 100%;
		left: 0;
		position: absolute;
		top: 1px;
		right: 0;
		bottom: 0;
		width: 120%;
		transform: rotate(0deg) scale(1.003) skew(-50deg) translate(114px);
		transition: all .3s ease-out;
		z-index: -1;
	}

	.section-category-product>.row>div:nth-child(2) .item-category .img-category::before {
		transform: rotate(93deg) scale(1.003) skew(-47deg) translate(258px);
		width: 120%;
		background: rgb(0 0 0 / 73%) none repeat scroll 0 0;
	}

	.section-tab-product .title-tab .title-section:before, .product-padding-right .title-section:before {
		content: '';
		position: absolute;
		left: 0;
		height: 100%;
		width: 20px;
		background: var(--color-main);
		border-radius: 6px;
	}
}

.itemby-priority-sort .content-sort>ul>li, .itemby-priority-sort .content-select-by>ul>li {
	list-style: none;
}

.itemby-priority-sort .content-sort>ul>li>a, .itemby-priority-sort .content-select-by>ul>li>a {
	padding: 5px 10px;
	display: inline-block;
	white-space: nowrap;
}

@media (max-width:1400px) {
	.section-category-product .item-category .img-category img {
		height: 9vw;
	}
}

.content-filter {
	left: initial;
	right: 0;
	height: 100%;
	width: 290px;
}

.content-filter .filter-top {
	background: var(--color-highlight);
}

.category-news .section-category-product>.row>div {
	flex: 0 0 20%;
	max-width: 20%;
}

.category-news .section-category-product .item-category .img-category, .category-news .section-category-product .item-category {
	background: none !important;
}

.category-news .section-category-product .item-category:before {
	display: none;
}

.category-news .section-category-product .item-category .name-category a {
	font-weight: normal !important;
	text-transform: capitalize !important;
	color: var(--black) !important;
}

.category-news .section-category-product>.row {
	display: flex;
}

.category-news .section-category-product .item-category .img-category img {
	width: 100%;
}

.article-slide-list .article-slide article .inner-content .article-title {
	height: 50px !important;
	overflow: hidden;
	margin-bottom: 0;
}

.view-small .article-item .item-left {
	flex: 0 0 100px;
}

.view-small .article-item .inner-content {
	flex-basis: calc(100% - 100px);
}

.header-hotline__content:before {
	content: '';
	position: absolute;
	left: 0;
	background: url(/templates/fashion01/assets/media/template/phoneicon.png);
	width: 31px;
	height: 31px;
	background-size: contain;
	top: 3px;
}

.header-hotline__text {
	line-height: 1.1;
}

.producr-detail-combined .product-item {
	margin-bottom: 5px;
	margin-top: 5px;
}

.load-more .btn-view-all, .load-more-config .btn-view-all-config {
	display: inline-block;
	font-size: 14px;
	color: var(--white);
	margin: 10px auto;
	cursor: pointer;
	border: 1px solid var(--color-main);
	text-align: center;
	position: relative;
	background-color: var(--color-main);
	width: 300px;
	padding: 5px;
}

.product-content.transform-active .btn-view-all, .btn-hide {
	display: none !important;
}

.product-content.transform-active .btn-view-all.btn-hide {
	display: inline-block !important;
}

.product-content .items-prduct-content {
	max-height: 490px;
	overflow: hidden;
	position: relative;
	margin-bottom: 10px;
}

.product-content.transform-active .items-prduct-content {
	max-height: 100%;
}

.producr-detail-combined .product-item {
	background: none;
	box-shadow: none;
	padding: 0;
}

.search-mobile.fix-search {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1019;
	background-color: var(--color-main) !important;
}

.toolbar-item.category-tool:before {
	width: 70px;
	height: 70px;
	background: var(--color-main);
	font-size: 0.875rem;
	font-stretch: normal;
	font-style: normal;
	line-height: 3.7;
	-webkit-letter-spacing: normal;
	-moz-letter-spacing: normal;
	-ms-letter-spacing: normal;
	letter-spacing: normal;
	border-radius: 50%;
	-webkit-text-decoration: none;
	text-decoration: none;
	position: absolute;
	left: calc(50% - 35px);
	top: -15px;
	padding: 0px;
	content: '';
}

.toolbar-item.category-tool a span {
	color: var(--color-white);
}

.toolbar-item.category-tool a span, .toolbar-item.category-tool a i {
	color: var(--white);
}

.toolbar-item.category-tool:after {
	content: '';
	background: url(/templates/app02/assets/media/combined-shape.svg);
	position: absolute;
	bottom: 47px;
	text-align: center;
	left: calc(50% - 35px);
	width: 70px;
	height: 19px;
	z-index: -1;
}

.toolbar-section .toolbar-item a span.items-number {
	background: none;
	left: 48px !important;
	top: 0 !important;
	right: initial !important;
}

.product-padding-right .article-item .article-title {
	height: auto;
}

@media (max-width:576px) {
	.price-amount {
		font-size: 9px;
	}

	.price-amount.old-price {
		font-size: 8px;
	}

	.support-content>a {
		display: flex;
		flex-direction: row;
		justify-content: center;
	}

	.support-content>a .name {
		padding-right: 10px;
		position: relative;
	}

	.support-content>a .name:before {
		content: ':';
		right: 3px;
		position: absolute;
	}
}

@media (min-width:768px) and (max-width:1200px) {
	.product-item .inner-content .product-title {
		line-height: 1.4;
	}
}

.footer-bottom {
	background: #00000029;
}

.app-light .app-content {
	padding-top: 29%;
}

.office-app>.container>.row {
	border-top: 1px solid #dee2e6!important;
	padding-top: 20px;
}

.bct img {
	width: 150px;
}

.user-section.entire-action-header .dropdown a#member-info {
	max-width: 50px;
	overflow: hidden;
	padding: 0;
	text-transform: capitalize;
}

.entire-action-header .dropdown-menu {
	border-radius: 5px;
	background: var(--white);
	padding: 10px 15px;
	top: 0 !important;
}

.user-section.entire-action-header .dropdown-menu:before {
	position: absolute;
	content: '\324';
	top: -23px;
	width: 20px;
	height: 20px;
	font-size: 23px;
	left: 20px;
	font-family: 'iconsax';
	color: var(--white);
}

.user-section.entire-action-header .dropdown-menu a.dropdown-item {
	color: var(--color-text);
	padding: 7px 15px 7px 0px !important;
}

.wrp-effect-change-img.img-category:hover>a>img {
	opacity: 0;
}

.section-mini-cart .dropdown-menu.box-minicart {
	width: 320px;
	right: -6px;
	left: initial !important;
	background: #F1F1F1;
}

.section-mini-cart .btn-delete-save {
	position: absolute;
	bottom: 5px;
	right: 0;
}

.section-mini-cart .dropdown-menu.box-minicart:before {
	position: absolute;
	content: '\324';
	top: -23px;
	width: 20px;
	height: 20px;
	font-size: 23px;
	right: 20px;
	font-family: 'iconsax';
	color: #f1f1f1;
}

ul.cart-list li.empty i {
	font-size: 74px;
}

.is-mobile .section-mini-cart .dropdown-menu.box-minicart {
	left: initial !important;
	background: #F1F1F1;
	transform: initial !important;
	top: 100% !important;
}
/*End Custom*/