/* Utils */
:root {
	--primary-color: #3f51b5;
	--danger-color: #ee2938;
	--warning-color: #eec200;
	--orange-color: #f6ad55;
	--success-color: #00aa5b;
	--secondary-danger-color: #ee293840;
	--secondary-success-color: #ecfef4;
	--border-color: rgba(0, 0, 0, 0.1);
	--rounded-xl: 16px;
	--rounded-lg: 12px;
	--rounded: 8px;
	--rounded-sm: 4px;
	/* --bg-color: #f4f5fa; */
	--bg-color: #f4f5fa;
	--text-color: #262626;
	--white: #fff;
	--shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	--shadow-lg: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	--subtext: #3b3b3b;
}

.bg-white {
	background-color: #fff;
}

.bg-danger {
	background-color: var(--danger-color) !important;
}
.border {
	border-color: var(--border-color);
}
/* 
:focus-visible {
	outline: none !important;
} */

.form-control:focus {
	box-shadow: none !important;
	border-width: 0px !important;
}

/* hide scrollbar but allow scrolling */
body {
	-ms-overflow-style: none; /* for Internet Explorer, Edge */
	scrollbar-width: none; /* for Firefox */
	overflow-y: scroll;
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	display: none; /* for Chrome, Safari, and Opera */
	width: 20px;
}

::-webkit-scrollbar {
	display: none !important; /* for Chrome, Safari, and Opera */
	background: #000;
}

.container::-webkit-scrollbar {
	display: none !important; /* for Chrome, Safari, and Opera */
	width: 0px;
}

/* Styles */

.body,
html {
	font-size: 14px;
	color: var(--text-color);
}

a {
	text-decoration: none;
	color: var(--text-color);
}

.icon-xxs {
	width: 12px;
	height: 12px;
}

.icon-xs {
	width: 16px;
	height: 16px;
}

.icon-xs {
	width: 16px;
	height: 16px;
}

.app {
	background-color: var(--bg-color);
	overflow: auto;
	overflow-x: hidden;
}

.header-component {
	background-color: var(--bg-color);
	z-index: 999;
}
.header-button {
	padding: 0.5rem;
	font-size: 12px;
	position: relative;
}

.header-button__icons {
	width: 18px;
	height: 18px;
}

.input-with-icon {
	display: flex;
	align-items: center;
	border: 1px solid var(--border-color);
	padding: 0.5rem;
	width: 100%;
	border-radius: 0.4rem;
}
.input-with-icon.has-error {
	border: 1px solid var(--danger-color);
	border-radius: 0.4rem;
}

.input-with-icon.input-with-icon__large {
	padding: 0.75rem 1rem;
}

.input-form {
	border: 0;
}

.logo {
	width: 28px;
	height: 28px;
}

.header-component {
	position: sticky;
	top: 0;
	width: 100vw;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.product-list__container {
	display: flex;
}

.product-list__container__item {
	width: 100%;
	height: 100%;
}

.product-list__title {
	display: flex;
	justify-content: space-between;
}

.product-list__title h4 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-right: 8px;
}

.product-list__title a {
	font-size: 12px;
	font-weight: 700;
}

.product-list__title div {
	display: flex;
	align-items: center;
}

.product-list__list {
	display: flex;
	overflow: scroll;
	margin-left: -8px;
	margin-right: -8px;
}

.product-list__list::-webkit-scrollbar {
	display: none;
}

.product-list__item {
	width: 140px;
	background-color: #fff;
	margin-left: 8px;
	padding: 12px;
	border-radius: var(--rounded);
	box-shadow: var(--shadow);
	/* padding-bottom: 12px; */
	height: 100%;
}

.product-list__item-name,
.product-listitem__item-name,
.cart__detail .name {
	font-size: 0.9rem;
	/* margin-bottom: 4px; */
}

.product-list__item-price,
.product-detail__price,
.product-listitem__item-price,
.cart__detail .price {
	font-size: 0.9rem;
	font-weight: 700;
	/* margin-bottom: 4px; */
}

.product-list__promotions {
	margin-bottom: 4px;
}

.product-list__item-image {
	margin-bottom: 12px;
	/* width: 100px; */
	/* height: 100px; */
	margin: -12px;
	margin-bottom: 12px;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
}

.product-list__item-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
}

.product-list__promotion__discount,
.product-detail__promotion__discount,
.product-listitem__promotion__discount {
	font-size: 10px;
	background-color: var(--secondary-danger-color);
	padding: 2px 4px;
	border-radius: var(--rounded-sm);
	color: var(--danger-color);
	font-weight: 700;
}

.product-list__promotion__price,
.product-detail__promotion__price,
.product-listitem__promotion__price {
	text-decoration: line-through;
	max-width: 100px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 10px;
}

.owl-nav .owl-prev {
	position: absolute;
	top: 40%;
	left: -2.5%;
	background: var(--white) !important;
	width: 38px;
	height: 38px;
	box-shadow: var(--shadow);
	border-radius: 50% !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-nav .owl-prev span {
	font-size: 18px;
}

.owl-nav .owl-next {
	position: absolute;
	top: 40%;
	right: 0%;
	background: var(--white) !important;
	width: 38px;
	height: 38px;
	box-shadow: var(--shadow);
	border-radius: 50% !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

.owl-nav .owl-next span {
	font-size: 18px;
}

.owl-theme .owl-nav .disabled {
	opacity: 0;
}

.owl-theme .owl-nav [class*="owl-"]:hover {
	opacity: 0.5;
	color: var(--text-color);
}

.banners__container {
	display: flex;
}

.banners__container .banner-item {
	width: 100%;
	height: 100%;
}

.banners__container .banner-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--rounded);
	/* box-shadow: var(--shadow); */
}
.product-listitem__promotions {
	margin-bottom: 4px;
}
.filter__container {
	background-color: var(--white);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	box-shadow: var(--shadow);
	display: flex;
	overflow: scroll;
}

.filter__item:first-child {
	margin-left: 0px;
}

.product-list__others i {
	width: 1rem;
}

.product-listitem__others,
.product-list__others {
	font-size: 13px !important;
	color: #6d7588;
}
.product-listitem__others i {
	width: 1rem;
}
.filter__item:last-child {
	margin-right: 12px;
}

.filter__item {
	display: flex;
	align-items: center;
	font-size: 1rem;
	border: 1px solid var(--border-color);
	padding: 4px 8px;
	border-radius: var(--rounded);
	color: #6d7588;
	margin-left: 4px;
}
.filter__item.active {
	background-color: var(--secondary-success-color);
	border-color: var(--success-color);
	color: var(--success-color);
}

.filter__item span {
	white-space: nowrap;
}
.for__product-detail .image-view {
	margin-bottom: 12px;
}

.form-control {
	border: 1px solid var(--border-color);
	border-radius: var(--rounded);
	padding: 0.5rem;
	padding: 1rem;
}

.form-control.form-control__search {
	border: 0;
	border-radius: 0;
}

.input-group .input-group-text {
	border-right: 0;
}

.form-control::placeholder {
	color: var(--text-color);
	opacity: 0.2;
}

.rounded-lg {
	border-radius: var(--rounded-lg);
}

.form-control__search {
	border: 0;
	padding: 0rem;
	margin-left: 8px;
	font-size: 12px;
}

.image-preview {
	display: flex;
	overflow: scroll;
	padding: 0;
	margin-left: -8px;
	margin-right: -8px;
}

.image-preview__item {
	width: 72px;
	height: 72px;
	margin-left: 8px;
	list-style: none;
	display: inline-block;
}

.image-preview__item img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	/* border-radius: var(--rounded); */
	border: 1px solid var(--border-color);
}

.shadow {
	box-shadow: var(--shadow) !important;
}

.rounded {
	border-radius: var(--rounded);
}

.product-detail__sales {
	margin-bottom: 8px;
}

.product-detail__head {
	margin-bottom: 12px;
}

.product-detail__title {
	font-size: 1.2rem;
	margin-bottom: 8px;
}

.product-detail__item {
	padding: 1rem;
	box-shadow: var(--shadow);
	margin-bottom: 12px;
	border-radius: var(--rounded);
}
.product-detail__item__label,
.product-detail__item__value {
	font-size: 0.9rem;
}

.product-detail__item__title {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 8px;
}

.text-right {
	text-align: right;
}

.button__add-cart {
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 998;
}

.button__add-cart {
	background-color: var(--white);
	padding: 1rem;
	box-shadow: var(--shadow-lg);
}

.button__add-cart .btn {
	width: 100%;
	padding: 0.5rem;
	border-radius: 1000px;
	font-size: 14px;
	font-weight: 700;
}

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

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

.bottom-sheet {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	visibility: hidden;
	opacity: 0;
}

.bottom-sheet.show {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	visibility: visible;
	transition: all 0.3s ease-in-out;
	opacity: 1;
}

.bottom-sheet__overlay {
	background-color: rgba(0, 0, 0, 0);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
}

.bottom-sheet.show .bottom-sheet__overlay {
	background-color: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	visibility: visible;
	transition: all 0.3s ease-in-out;
}

.bottom-sheet__dialog {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	border-top-left-radius: var(--rounded-xl);
	border-top-right-radius: var(--rounded-xl);
	overflow-y: hidden;
	padding: 1.5rem;
	transition: all 0.3s ease-in-out;
	transform: translateY(100%);
	z-index: 1000;
}

.bottom-sheet.show .bottom-sheet__dialog {
	transition: all 0.3s ease-in-out;
	transform: translateY(0);
}

.qty-control {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border-color);
	border-radius: var(--rounded);
}

.qty-control__button {
	width: 22px;
	height: 22px;
	border-radius: 1000px;
	font-weight: 400;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	color: var(--success-color);
}

.qty-control__button.disabled {
	color: var(--subtext);
	pointer-events: none;
	opacity: 0.5;
}

.qty-control__input {
	border: 0;
	width: 42px;
	text-align: center;
	margin: 0;
	padding: 0;
	font-weight: 400;
	font-size: 12px;
}

.un-floating {
	position: relative;
}

.un-shadow {
	box-shadow: none;
}

.cart__badge {
	position: absolute;
	top: -5px;
	right: -5px;
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 2px 4px;
}

.tab-bar-component {
	position: fixed;
	bottom: 0;
	z-index: 998;
	background-color: #fff;
	width: 100%;
	padding: 1rem 1rem;
	box-shadow: var(--shadow-lg);
}

.product-listitem__item {
	padding: 1rem;
	box-shadow: var(--shadow);
	margin-bottom: 12px;
	border-radius: var(--rounded);
	background-color: var(--white);
}

.product-listitem__item .add-to-cart {
	display: flex;
	justify-content: flex-end;
}

.product-listitem__item .add-to-cart .btn {
	background-color: var(--white);
	border: 2px solid var(--success-color);
	color: var(--success-color);
	border-radius: 1000px;
	font-size: 0.8rem;
	width: 20%;
	padding: 0.3rem;
	font-weight: 700;
}

.checkout-button {
	position: fixed;
	bottom: 50px;
	left: 0;
	width: 100%;
	padding: 1rem;
}

.checkout-button .btn {
	border-radius: var(--rounded-xl);
	display: flex !important;
	justify-content: space-between;
	align-items: center;
}

.cart__item {
	display: flex;
}

.section__title h6 {
	font-weight: 600;
}

.cart__image,
.order-item .preview__item-image {
	width: 72px;
	margin-right: 1rem;
	border: 1px solid var(--border-color);
	height: 72px;
	aspect-ratio: 1;
	/* overflow: hidden; */
}

.cart__image img {
	/* width: 72px; */
	/* height: 72px; */
	/* border-radius: var(--rounded); */
	overflow: hidden;
	object-position: center;
	/* border: 1px solid var(--border-color); */
}

.section-card {
	padding: 1rem;
	box-shadow: var(--shadow);
	margin-bottom: 12px;
	border-radius: var(--rounded);
	background-color: var(--white);
}

.section-card__title {
	font-weight: 600;
	font-size: 1.2rem;
}

.section-body__link {
	font-size: 1rem;
	margin-bottom: 6px;
	display: block;
}

.section-body__link.active {
	color: var(--success-color);
	font-weight: 600;
}

.section-divider {
	margin: 1rem -1rem;
	height: 1px;
	background-color: var(--border-color);
}

.for__floating-checkout .price-summary {
	font-size: 0.9rem;
}
.shipping-thumb {
	margin-right: 1rem;
	height: 42px;
	width: 42px;
	object-fit: contain;
	object-position: center;
}

.shipping-thumb img {
	width: 100%;
	height: 100%;
	overflow: hidden;
	object-position: center;
	object-fit: contain;
}

.shipping-name {
	font-size: 0.9rem;
	font-weight: 600;
}

.shipping-description {
	font-size: 0.8rem;
	opacity: 0.7;
}

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

.address-list::-webkit-scrollbar {
	width: 0;
}
.address-list {
	overflow: scroll;
	max-height: 100%;
	padding-bottom: 1rem;
}

.address-item {
	margin-bottom: 12px;
	border: 1px solid var(--border-color);
	padding: 0.7rem;
	border-radius: var(--rounded-lg);
	background-color: var(--white);
}

.address-label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--subtext);
	opacity: 0.5;
}

.address-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--subtext);
}

.address-phone {
	font-size: 0.8rem;
	color: var(--subtext);
}

.address-detail {
	font-size: 0.8rem;
	color: var(--subtext);
}

.address-action {
	margin-top: 12px;
}

.address-item.active {
	border: 1px solid var(--success-color);
	background-color: #f0fff4;
}
.has-error {
	border-bottom: 1px solid var(--danger-color) !important;
	border-radius: 0;
}
.address-item.active .address-action .btn {
	color: var(--text-color);
}
.address-action .btn.btn-success {
	color: var(--success-color);
	border: 1px solid var(--success-color);
}

.address-item.active .btn.btn-success {
	border: 1px solid var(--success-color);
	opacity: 0.2;
}

.address-action .btn {
	border-radius: 1000px;
	font-size: 0.8rem;
	padding: 0.5rem;
	font-weight: 600;
	width: 100%;
	border: 1px solid var(--border-color);
	background-color: var(--white);
}

.loading {
	background-image: linear-gradient(
		90deg,
		#fff,
		var(--border-color),
		#fff,
		var(--border-color)
	);
	background-size: 1000%;
	background-position: right;
	border-radius: var(--rounded);
	width: 150px;
	height: 15px;
	animation: sweep 2s ease-in-out infinite alternate;
}

.payment-category {
	margin-bottom: 1rem;
	padding-left: 0rem;
}

.payment-category__title {
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.payment-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--border-color);
}

.text-border {
	color: var(--border-color);
	stroke: var(--border-color);
}

.payment-item__thumb img {
	height: 42px;
	width: 42px;
	object-fit: contain;
	object-position: center;
}

.payment-item__thumb {
	margin-right: 1rem;
	object-fit: contain;
	object-position: center;
	width: 80%;
}

.payment-item__name {
	font-size: 0.9rem;
	font-weight: 600;
	margin-left: 12px;
}
.payment-area {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	box-shadow: var(--shadow);
}

.payment-area .for__info small {
	opacity: 0.5;
	margin-bottom: 6px;
}

.payment-area .btn {
	border-radius: var(--rounded);
	padding: 0.5rem 2rem;
}

.order-item {
	background-color: var(--white);
	border-radius: var(--rounded);
	margin-bottom: 12px;
	box-shadow: var(--shadow);
	padding: 1rem;
	display: block;
}

.divider {
	margin: 1rem -1rem;
	height: 1px;
	background-color: var(--border-color);
}

.order-item .preview__item-info .preview__item-name {
	font-size: 0.9rem;
	font-weight: 600;
}

.order-item .preview__item-info .preview__item-qty {
	font-size: 0.8rem;
}

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

.order-item .other-item {
	margin-top: 0.5rem;
	font-size: 0.9rem;
}

.order-item .order-id {
	font-size: 1rem;
	font-weight: 600;
	line-height: 0;
	margin-top: 4px;
}

.order-item .total__price .caption {
	font-size: 0.8rem;
}

.order-item .total__price .value {
	font-size: 0.9rem;
	font-weight: 600;
}

.buy-again__button {
	font-size: 0.8rem;
	border-radius: var(--rounded);
	padding: 0.5rem 1.5rem;
}

.profile__container {
	display: flex;
	align-items: center;
}

.photo-profile {
	width: 72px;
	height: 72px;
}

.photo-profile .profile__image {
	aspect-ratio: 1;
	border-radius: 1000px;
}
.product-list__list > a {
	margin-bottom: 12px;
}
.rounded-xl {
	border-radius: var(--rounded-xl);
}

.profile__menu:last-child {
	border-bottom: none;
}

.profile__menu {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
}
.profile__menu__item {
	display: block;
}
.profile__menu__item__text {
	margin-left: 1rem;
}
.font-xs {
	font-size: 0.7rem;
}

.btn {
	border-radius: var(--rounded);
	padding: 0.5rem 1.5rem;
	font-size: 0.9rem;
}

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

.form-control.-profile {
	border: 0px;
	padding: 0;
	font-size: 0.9rem;
}

.text-muted {
	color: var(--subtext);
	opacity: 0.5;
}

.text-xxs {
	font-size: 0.8rem;
}

.scrollable {
	overflow: auto;
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
	opacity: 0.65;
	transform: scale(0.85) translateY(-0.8rem) translateX(0.1rem);
}

.--floating-input.force:disabled {
	background-color: var(--white);
}
.--form-floating-pressable.has-value {
	font-size: 0.7rem;
}

.__label,
.--form-floating-pressable {
	font-size: 0.8rem;
	color: var(--subtext);
	opacity: 0.5;
	margin-right: 1rem;
}
.line-height-0 {
	line-height: 0px;
}
.address-list__item {
	padding: 1rem;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.9rem;
}
.floating-label-button {
	padding: 0.5rem 0rem;
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 1rem;
}
.--form-floating {
	border-bottom: 1px solid var(--border-color);
}
.--form-floating label {
	font-size: 0.8rem;
	color: var(--subtext);
	opacity: 0.5;
	padding: 1rem 0;
}

.--floating-input {
	border: 0px;
	padding: 0.25rem !important;
	height: 45px !important;
}

.w-35 {
	width: 35%;
}

.navigation-top-item {
	margin-right: 12px;
	position: relative;
}

.navigation-top-item .nav-link {
	padding: 0.5rem 0.5rem;
	font-size: 1rem;
	color: var(--subtext);
	opacity: 0.7;
	font-weight: 600;
}

.nav-link.active {
	opacity: 1;
}

.sub-nav {
	padding: 0.5rem 0;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--white);
	border-radius: var(--rounded);
	box-shadow: var(--shadow);
	transition: all 0.2s ease-in-out;
	z-index: 9999;
}

.has-dropdown:hover .sub-nav {
	display: block;
}

.section-table-header {
	display: flex;
}

.section-table-header .column {
	flex: 1;
	padding: 0 0.5rem;
}

.section-table-header .column.column__0 {
	flex: 0;
}

.section-table-header .column.column__2 {
	flex: 2;
}

.order__detail label {
	display: block;
}

.order__detail .value {
	font-size: 0.9rem;
}

.order__detail .bank-logo {
	width: 42px;
	height: 42px;
	object-fit: contain;
}

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

.text-subtext {
	color: #6d7588;
}

.selected-shipping-state {
	background-color: var(--border-color);
	border-radius: 1000px;
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	opacity: 0.2;
}

.selected-shipping-state.selected {
	opacity: 1;
}

.font-sm {
	font-size: 0.8rem;
}

.font-md {
	font-size: 0.9rem !important;
}

.font-lg {
	font-size: 1.1rem !important;
}

.font-xl {
	font-size: 1.2rem !important;
}

.form-check-input:checked {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}
.accordion-item {
	border-width: 0px;
}
.accordion-button {
	padding: 0.5rem 0rem;
}

.accordion-button:focus {
	border-color: var(--border-color);
	box-shadow: none !important;
}

.steps-list {
	list-style-type: decimal;
	font-size: 0.9rem;
	padding: 0;
	padding-left: 1rem;
}

.steps-item {
	font-size: 0.9rem;
}

.accordion-button {
	border-bottom: 0px;
	font-size: 0.9rem;
}
.accordion-button:not(.collapsed) {
	background-color: var(--white);
	color: var(--text-color);
	box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
	background-image: var(--bs-accordion-btn-icon) !important;
}
.section-cart__title {
	margin-bottom: 0.5rem;
	text-align: left !important;
}
.section-cart__title h6 {
	font-size: 1rem;
}
.value_for__selected-address div {
	line-break: auto;
	word-wrap: break-word;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.table-global {
	table-layout: fixed;
	position: relative;
	border-spacing: unset;
	border-collapse: separate;
}
.table-global tbody,
td,
.table-global tfoot,
th,
.table-global thead,
tr {
	border-color: #b6b6b6;
	border-width: 1px;
}
.table-global thead tr th {
	font-weight: bold;
	background-color: #ddd !important;
	text-align: center;
	border: 0px;
	border-top: 1px solid #b6b6b6;
	border-bottom: 1px solid #b6b6b6;
	border-right: 1px solid #b6b6b6;
}
.table-global thead tr th:first-child {
	border-left: 1px solid #b6b6b6;
}
.table-global tbody tr td {
	border: 0px;
	border-bottom: 1px solid #b6b6b6;
	border-right: 1px solid #b6b6b6;
}
.table-global tbody tr td:first-child {
	border-left: 1px solid #b6b6b6;
}
.master-app .btn {
	border-radius: 0px;
}
.master-app .btn-action {
	background-color: #dddddd;
	border: 1px solid #b6b6b6;
	padding: 0.5rem 1rem;
	color: var(--text-color);
	border-radius: 4px;
}
.input-group .form-control.right {
	border-right: 0px;
}
.input-group .form-control.left {
	border-left: 0px;
}
.input-group-text.left {
	border-left: 1px solid #dddddd;
	border-right: 0px;
}
.input-group-text.right {
	border-right: 1px solid #dddddd;
	border-left: 0px;
}
.input-group-text {
	border-radius: 0px;
	background-color: #dddddd;
	border: 1px solid #dddddd;
}
.master-app .btn-action.btn-sm {
	padding: 0.25rem 0.5rem;
	font-size: 0.8rem;
}
.master-app .form-control,
.master-app .form-select {
	border-radius: 0px;
	padding: 0.5rem 0.75rem;
}
.master-app .form-control:focus,
.master-app .form-select:focus {
	border: 1px solid var(--border-color) !important;
}
.master-app .image__preview {
	display: flex;
	justify-content: center;
	margin: 12px auto;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	overflow: hidden;
}
.master-app .image__preview img {
	width: 100%;
	max-height: 200px;
	object-fit: contain;
}
.modal-header {
	background: var(--border-color);
	border-radius: 0px;
}
.modal-title {
	font-weight: 600;
	opacity: 0.8;
}
.modal-content {
	border-radius: 0px;
	border: 0px;
	box-shadow: var(--shadow);
}
/* Swal */
.swal2-title {
	font-size: 1.2rem !important;
}
.swal2-html-container {
	font-size: 0.9rem !important;
	margin: 0.5rem 0 !important;
}
.swal2-actions {
	margin: 0.5rem 0 !important;
}
.swal2-popup {
	border-radius: 4px !important;
	box-shadow: var(--shadow) !important;
}
/* Datepicker */
.daterangepicker {
	padding: 0.5rem 0.5rem;
	box-shadow: var(--shadow-lg);
	border-radius: var(--rounded);
	border-width: 0px;
}
.daterangepicker:before {
	border-bottom-color: transparent;
}
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
	padding: 0.5rem 0.5rem;
	border-radius: var(--rounded);
	border: 1px solid var(--border-color);
}
.daterangepicker .calendar-table th,
.daterangepicker .calendar-table td {
	padding: 5px 10px;
}
.daterangepicker td.disabled,
.daterangepicker option.disabled {
	text-decoration: none;
}
.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
	width: 100px;
	padding: 0.5rem 0.5rem;
	border-radius: var(--rounded);
}
.daterangepicker .drp-buttons .btn {
	border-radius: var(--rounded);
	width: 100px;
}
/* Izitoas */
.iziToast > .iziToast-body .iziToast-title {
	font-weight: 600 !important;
	margin-bottom: 12px;
}
.iziToast > .iziToast-body .iziToast-message {
	margin-bottom: 12px !important;
	display: block;
}
.iziToast > .iziToast-progressbar {
	position: absolute;
	left: 8px;
	bottom: 0px;
	width: 95%;
	z-index: 1;
	background: rgba(255, 255, 255, 0);
	opacity: 0.3;
}
.iziToast-wrapper-bottomCenter {
	bottom: 20px;
}
.tracking__item {
	display: flex;
	align-items: center;
}
.fscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9999;
}

.search-modal-component {
	opacity: 0;
	visibility: hidden;
}

.search-modal-component.active {
	opacity: 1;
	visibility: visible;
	transition: all 0.3s ease-in-out;
}
.lds-roller {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}
.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}
.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #fff;
	margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}
.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}
.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}
.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}
.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}
.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}
.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}
.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}
@keyframes lds-roller {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes sweep {
	0% {
		background-position: right;
	}
	100% {
		background-position: left;
	}
}

@media screen and (min-width: 768px) {
	.in-tab {
		display: none !important;
	}
	.product-list__item {
		width: 15vw;
	}
	.w-100__w-50 {
		width: 50%;
	}
	.product-listitem__list {
		display: flex;
		flex-wrap: wrap;
	}
	.product-listitem__list > div {
		margin: 5px;
	}
	.product-listitem__list > div {
		width: calc(50% - 10px);
	}
	.in-mobile {
		display: none !important;
	}
	.in-tab {
		display: block !important;
	}

	.image-preview {
		margin-left: 0;
		margin-right: 0;
	}

	.image-preview > li:first-child {
		margin-left: -4px;
	}

	body,
	html {
		font-size: 16px;
		color: var(--text-color);
	}
}

@media screen and (max-width: 480px) and (orientation: portrait) {
	.in-tab {
		display: none !important;
	}

	.iziToast {
		width: 90%;
		border-radius: var(--rounded);
		opacity: 1;
	}
}
