/*******************************
1.General
2.Helper
3.Navbar
4.Hero section
5.About
6.Features
7.Testimonial
8.Pricing
9.Contact
10.Footer
11.Responsive
12.Authentication
********************************/

@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

.form-control:focus {
	border-color: #4a8b71;
	box-shadow: none;
}

.btn-apply {
	padding: 1rem 2.5rem;
	background-color: #f1cf69;
	font-size: 1.3rem;
}

.btn:focus {
	outline: none;
	box-shadow: none;
}

/*========== SHOW BULLET FOR CONTENT ==========*/

.has-content img {
	width: 100%;
	height: auto;
}

.has-content ul {
	list-style: initial;
}

.has-content ol {
	list-style: decimal;
}

.has-content li {
	margin-left: 1rem;
}

/*========== STATUS ==========*/

.status-outer {
	margin: 1rem 0;
	height: 3rem;
}

.status {
	display: none;
	font-size: 1.2rem;
}

/*========== POPUP LANGUAGE ==========*/

.choose-language-page {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	z-index: 100;
}

.language-inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.language-content {
	position: relative;
	width: 50%;
	height: auto;
	padding: 2.5rem 2rem;
	background-color: #fff;
	border-radius: 0.25rem;
}

.language-content .close-popup {
	position: absolute;
	top: 1rem;
	right: 1rem;
	cursor: pointer;
}

.language-content .note {
	padding-bottom: 2.5rem;
	font-style: italic;
}

.image-outer {
	width: 4rem;
}

.logo img,
.image-outer img {
	width: 100%;
	height: auto;
}

.vi-language,
.cn-language,
.en-language {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 1.5rem;
	color: rgb(29, 29, 29);
}

@media screen and (min-width: 576px) {
	.language-content {
		width: 70%;
	}
}

@media screen and (min-width: 992px) {
	.language-content {
		width: 50%;
		padding: 4rem 6rem 5rem;
	}

	.language-content .close-popup {
		top: 2rem;
		right: 2rem;
	}

	.logo {
		padding-bottom: 4rem;
	}

	.image-outer {
		width: 6rem;
	}

	.vi-language,
	.cn-language,
	.en-language {
		font-size: 2rem;
	}
}

/* ========== STYLE LANGUAGE ========== */

#current-language {
	background-color: #4a8b71;
	border: 2px solid #4a8b71;
	min-width: 12rem;
}

#current-language:hover {
	color: #fff;
}

.dropdown-menu.show {
	width: 100%;
}

#dropdown-language .dropdown-item {
	padding: 1rem 0.5rem 1rem 1rem !important;
	text-align: center;
}

#dropdown-language .image-outer {
	width: 2rem;
	height: 2rem;
}

/*========== PRELOADER ==========*/

.preloader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 1);
}

.preloader .preloader-img {
	width: 30rem;
	/* animation: flicker 2s infinite; */
}

.preloader-img img {
	width: 100%;
	height: auto;
}

.preloader-icon {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}

.preloader-icon div {
	width: 2.5rem;
	height: 2.5rem;
	background-color: #4a8b71;
	margin-left: 1rem;
	animation: flicker 1s infinite;
}

.preloader-icon div:nth-child(1) {
	animation-delay: 0.15s;
}

.preloader-icon div:nth-child(2) {
	animation-delay: 0.3s;
}

.preloader-icon div:nth-child(3) {
	animation-delay: 0.45s;
}

@keyframes flicker {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.related-product .product-img {
	position: relative;
	padding-bottom: 100%;

}

.related-product .product-img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	object-fit: contain;
}