* {
	font-family: roboto;
	outline: 0;
	margin: 0;
	padding: 0;
	color: black;

	-ms-touch-action: pan-x pan-y;
	touch-action: manipulation;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-tap-highlight-color: transparent;
}

body {
	overflow-x: hidden;
}

body.fixed {
	overflow-y: hidden;
}

.container-page .s-pv-5 {
	padding: 50px 0;
}

.loader {
	display: none;
	width: 100px;
	height: 100px;
	margin: 0 auto;
}

.loader.show {
	display: block;
}

.loader-circular {
	-webkit-animation: rotate 1.5s linear infinite;
	-moz-animation: rotate 1.5s linear infinite;
	-ms-animation: rotate 1.5s linear infinite;
	-o-animation: rotate 1.5s linear infinite;
	animation: rotate 1.5s linear infinite;
	height: 100px;
	position: relative;
	width: 100px;
}

.loader-circular-path {
	stroke-dasharray: 1, 200;
	stroke-dashoffset: 0;
	-webkit-animation: dash 1.5s ease-in-out infinite,
		color 6s ease-in-out infinite;
	-moz-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	-ms-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	-o-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
	stroke-linecap: round;
}

@keyframes rotate {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes dash {
	0% {
		stroke-dasharray: 1, 200;
		stroke-dashoffset: 0;
	}
	50% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -35;
	}
	100% {
		stroke-dasharray: 89, 200;
		stroke-dashoffset: -186;
	}
}

@keyframes color {
	100%,
	0% {
		stroke: #d62d20;
	}
	40% {
		stroke: #0057e7;
	}
	66% {
		stroke: #008744;
	}
	80%,
	90% {
		stroke: #ffa700;
	}
}

.dark-background {
	width: 100vw;
	height: 100vh;
	z-index: 500;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
}

body.show-cart .dark-background,
body.show-login .dark-background {
	display: block;
}

.header,
.checkbox-container,
.radio-container,
.button,
.select,
.expandable,
.page {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.header {
	width: 100vw;
	height: 100px;
	background-color: transparent;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;

	background-size: cover;
	background-repeat: no-repeat;
}

.header-content {
	padding: 15px 3.5vw 15px 9.5vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	display: inline-block;
	vertical-align: middle;
}

.logo {
	width: 150px;
	height: 43px;
	background-size: 100%;
	background-repeat: no-repeat;
}

.header-menu,
.header-menu-text {
	color: white;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 8pt;
}

.header-menu {
	position: relative;
	text-align: left;

	cursor: pointer;
}

.header-menu:not(:nth-last-child(1)) {
	margin-right: 60px;
}

.header-menu-text {
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
	font-size: 11pt;
}

.header-menu.active .header-menu-text,
.header-lang.active {
	color: white !important;
}

.header-submenu-container {
	position: absolute;
	width: 170px;
	height: 0;
	overflow: hidden;
	background-color: white;
	box-shadow: 0 0 5px 2px #aaa;
	border-radius: 10px;
	padding: 20px;
	margin-left: -20px;
	opacity: 0;
	z-index: 100;
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-ms-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.header-submenu {
	display: block;
	text-decoration: none;
	font-size: 11pt;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.header-submenu:not(:nth-child(1)) {
	margin-top: 15px;
}

.cart-container,
.cart-icon,
.cart-text {
	display: inline-block;
	vertical-align: middle;
}

.cart-icon {
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.cart-icon-count {
	position: absolute;
	bottom: -5px;
	right: -5px;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	text-align: center;
	background-color: #73a44b;
	color: white;
	font-size: 8pt;
	padding-top: 2px;
}

.cart-text {
	font-size: 10pt;
	margin-left: 10px;
	color: #73a44b;
}

.modal-header-login .modal-box {
	width: 400px;
}

.modal-header-login-text {
	font-size: 9pt;
	text-align: center;
}

.modal-header-login-footer {
	text-align: center;
}

.container {
	min-height: 100vh;
}

.section-title {
	font-family: roboto-bold;
	color: #00093f;
	text-transform: uppercase;
	text-align: center;
	font-size: 22pt;
	margin-bottom: 20px;
}

.form-item:not(:nth-child(1)) {
	margin-top: 10px;
}

.form-label {
	font-size: 11pt;
	margin-bottom: 5px;
}

input.form-input,
textarea.form-input {
	border: 1px solid #bbb;
	padding: 8px 10px;
	font-size: 10pt;
	width: 100%;
	background-color: white;
	color: black;
	border-radius: 8px;
}

textarea.form-input {
	height: 70px;
	resize: vertical;
}

[data-align="right"] {
	text-align: right;
}

.header.transparent {
	background-color: transparent;
}

.header.transparent .logo {
	opacity: 0;
}

.header.hide {
	display: none;
}

.notification {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: inline-block;
	min-width: 120px;
	height: 54px;
	background-color: black;
	color: white;
	font-size: 10pt;
	padding: 18px 25px 0;
	opacity: 0;
	display: none;
	z-index: 2002;
}

@-webkit-keyframes notification-showing-anim {
	0% {
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes notification-showing-anim {
	0% {
		opacity: 0;
	}

	5% {
		opacity: 1;
	}

	95% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.notification.showing {
	display: block;
	-webkit-animation: 4s linear 0s 1 normal forwards running
		notification-showing-anim;
	-moz-animation: 4s linear 0s 1 normal forwards running
		notification-showing-anim;
	-ms-animation: 4s linear 0s 1 normal forwards running
		notification-showing-anim;
	-o-animation: 4s linear 0s 1 normal forwards running notification-showing-anim;
	animation: 4s linear 0s 1 normal forwards running notification-showing-anim;
}

.error {
	color: red;
	font-size: 10pt;
}

.section {
	width: 100vw;
	overflow: hidden;
}

.section-inner {
	width: 90vw;
	position: relative;
	margin: 0 auto;
	overflow: auto;
}

/* .car-item-container {
	width: 1120px;
	margin: 0 auto;
} */

.car-item-container {
	display: grid;
	/* border: 1px solid red; */
	gap: 30px;
	grid-template-columns: repeat(1, 1fr) r;
}

.section-3-display {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.car-item {
	box-shadow: 0 0 10px #ccc;
	border-radius: 24px;
	padding: 20px 0 65px;
	display: inline-block;
	text-decoration: none;
	position: relative;
	/* margin-bottom: 35px; */
	transition: all 0.3s;
}

/* .car-item:not(:nth-child(3n)) {
	margin-right: 35px;
} */

.car-item:hover {
	background-color: rgba(0, 0, 0, 0.05);
}

.car-item-image {
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: calc(100% - 30px);
	max-width: 350px;
	height: 208px;
	margin: 0 auto;
	/* border: 1px solid red; */
}

.car-item-name {
	font-family: roboto-bold;
	font-size: 14pt;
	text-align: center;
	margin: 10px 0 7px;
	display: block;
	text-decoration: none;
}

.car-item-subtitle-icon,
.car-spec-icon {
	display: inline-block;
	vertical-align: middle;
	width: 22px;
	height: 22px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 4px;
}

.car-item-subtitle-icon {
	margin-top: -2px;
}

.car-item-subtitle {
	text-align: center;
	margin-bottom: 30px;
	display: block;
	text-decoration: none;
}

.car-spec {
	padding: 10px 0;
	margin: 0 20px;
	border-bottom: 1px solid #ccc;
}

.car-spec.hide {
	display: none;
}

.car-spec:nth-child(1) {
	border-top: 1px solid #ccc;
}

.car-spec-left,
.car-spec-right {
	display: inline-block;
	vertical-align: middle;
	font-size: 9pt;
	line-height: 22px;
	font-family: roboto-bold;
	width: 50%;
}

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

.car-item-button-container {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-top: 20px;
	text-align: center;
	padding-bottom: 15px;
}

.car-item-button-container .button:nth-child(1) {
	margin-right: 15px;
}

.image-container {
	position: relative;
	display: inline-block;
}

.image-container:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ddd;
}

@media (min-width: 768px) {
	.car-item-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.car-item-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 1440px) {
}

:not(img)[data-src]:not([data-wrapper-anim="false"]) {
	position: relative;
}

:not(img)[data-src]:not([data-wrapper-anim="false"]):before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #ddd;
}

@-webkit-keyframes hide-wrapper-anim {
	to {
		opacity: 0;
	}
}

@keyframes hide-wrapper-anim {
	to {
		opacity: 0;
	}
}

.image-container.hide-wrapper:after,
:not(img)[data-src]:not([data-wrapper-anim="false"]).hide-wrapper:before {
	opacity: 0;
	-webkit-animation: 0.2s linear 0s 1 normal forwards running hide-wrapper-anim;
	-moz-animation: 0.2s linear 0s 1 normal forwards running hide-wrapper-anim;
	-ms-animation: 0.2s linear 0s 1 normal forwards running hide-wrapper-anim;
	-o-animation: 0.2s linear 0s 1 normal forwards running hide-wrapper-anim;
	animation: 0.2s linear 0s 1 normal forwards running hide-wrapper-anim;
}

@-webkit-keyframes show-up-anim {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 15px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}

@keyframes show-up-anim {
	0% {
		opacity: 0;
		-moz-transform: translate(0, 15px);
		-ms-transform: translate(0, 15px);
		-o-transform: translate(0, 15px);
		transform: translate(0, 15px);
	}

	100% {
		opacity: 1;
		-moz-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		-o-transform: translate(0, 0);
		transform: translate(0, 0);
	}
}

.section [data-anim="show-up"]:not([data-anim-threshold="self"]),
[data-anim-threshold="self"] {
	opacity: 0;
}

.section.show [data-anim="show-up"]:not([data-anim-threshold="self"]),
[data-anim-threshold="self"].show {
	-webkit-animation-name: show-up-anim;
	-webkit-animation-duration: 0.4s;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-name: show-up-anim;
	-moz-animation-duration: 0.4s;
	-moz-animation-fill-mode: forwards;
	-ms-animation-name: show-up-anim;
	-ms-animation-duration: 0.4s;
	-ms-animation-fill-mode: forwards;
	-o-animation-name: show-up-anim;
	-o-animation-duration: 0.4s;
	-o-animation-fill-mode: forwards;
	animation-name: show-up-anim;
	animation-duration: 0.4s;
	animation-fill-mode: forwards;
}

.radio-container,
.checkbox-container {
	cursor: pointer;
	margin-bottom: 5px;
}

.radio,
.checkbox {
	display: inline-block;
	vertical-align: middle;
	border-radius: 100%;
	border: 1px solid white;
	background-color: white;
	width: 20px;
	height: 20px;
	position: relative;
}

.radio {
	border-radius: 100%;
}

.checkbox {
	border-radius: 0;
}

.radio:after,
.checkbox:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	background-color: black;
	top: 3px;
	left: 3px;
	-webkit-transform: scale(0, 0);
	-moz-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.radio:after {
	border-radius: 100%;
}

.radio-container.active .radio:after,
.checkbox-container.active .checkbox:after {
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}

.radio-text,
.checkbox-text {
	display: inline-block;
	vertical-align: middle;
	color: white;
	margin-left: 3px;
}

.dropdown-container {
	display: none;
	position: absolute;
	width: calc(100%);
	top: 100%;
	left: 0;
	max-height: 300px;
	overflow: auto;
	background-color: white;
	padding: 5px 0;
	border: 1px solid #aaa;
	z-index: 10;
}

.dropdown-container.show {
	display: block;
}

.dropdown-item {
	padding: 10px 10px;
	cursor: pointer;
	font-size: 10pt;
}

.dropdown-item:nth-last-child(1) {
	border-bottom: 0;
}

.dropdown-item:hover {
	background-color: #eee;
}

.select {
	display: inline-block;
	position: relative;
	cursor: pointer;
	border: 1px solid #aaa;
}

.select-text,
.dropdown-icon {
	display: inline-block;
	vertical-align: middle;
}

.select-text {
	padding: 8px 10px;
	width: calc(100% - 33px);
	font-size: 10pt;
}

.dropdown-icon {
	background-image: url("../../icons/down.svg");
	margin-left: 8px;
	margin-right: 4px;
	width: 17px;
	height: 17px;
	background-size: 120%;
	background-repeat: no-repeat;
	background-position: center;
}

.button {
	border: none;
	display: inline-block;
	vertical-align: middle;
	background-color: rgb(89, 192, 137);
	color: white;
	font-size: 10pt;
	width: 135px;
	padding: 8px 20px;
	text-align: center;
	border-radius: 8px;
	cursor: pointer;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.button:hover {
	background-color: rgb(89, 192, 137);
}

.button[data-variant="2"] {
	background-color: rgb(181, 50, 54);
}

.button[data-variant="2"]:hover {
	background-color: rgb(181, 50, 54);
}

.button[data-variant="3"] {
	background-color: rgb(185, 122, 44);
}

.button[data-variant="3"]:hover {
	background-color: rgb(185, 122, 44);
}

.button[data-variant="4"] {
	background-color: #ffcd29;
	color: #00093f;
}

.button[data-variant="5"] {
	background-color: #00093f;
}

.button-lihat-lokasi {
	margin-top: 10px;
	width: auto;
}

.button-icon {
	display: inline-block;
	vertical-align: middle;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 17px;
	height: 17px;
	margin-right: 5px;
	margin-top: -2px;
}

.button.disabled,
.button.disabled:hover,
.button.disabled:active,
.button:disabled,
.button:disabled:hover,
.button:disabled:active {
	background-color: #ccc;
	color: #777;
	cursor: default;
}

.button[data-inline-block="true"] {
	display: inline-block;
	vertical-align: middle;
	padding-left: 0;
	padding-right: 0;
}

[data-title-variant="1"] {
	font-size: 18pt;
	font-family: roboto-bold;
}

[data-title-variant="2"] {
	font-size: 14pt;
	font-family: roboto-bold;
}

.modal-chat-wa .modal-box {
	width: 400px;
}

.btn-chat-wa-container {
	text-align: right;
}

.btn-chat-wa {
	margin-top: 20px;
	background-color: #79cf6c;
}

.btn-chat-wa:hover {
	background-color: #65ac5a !important;
}

.g_id_signin {
	margin: 20px auto 0;
}

.btn-sign-in-google,
.btn-sign-in-google:hover {
	margin-top: 20px;
	background-color: white;
	color: black;
	border: 1px solid #777;
	border-radius: 0;
}

.snackbar {
	visibility: hidden; /* Hidden by default. Visible on click */
	min-width: 250px; /* Set a default minimum width */
	margin-left: -125px; /* Divide value of min-width by 2 */
	background-color: #d32f2f; /* Black background color */
	color: #fff; /* White text color */
	text-align: center; /* Centered text */
	border-radius: 2px; /* Rounded borders */
	padding: 16px; /* Padding */
	position: fixed; /* Sit on top of the screen */
	z-index: 10000; /* Add a z-index if needed */
	right: 30px; /* Center the snackbar */
	bottom: 30px; /* 30px from the bottom */
}

.snackbar[data-type="1"] {
	background-color: #43a047;
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 4s forwards;
	animation: fadein 0.5s, fadeout 0.5s 4s forwards;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}
	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}
	to {
		bottom: 0;
		opacity: 0;
	}
}

/* Chrome, Safari, Edge, Opera */
input:not([data-type="qty"])::-webkit-outer-spin-button,
input:not([data-type="qty"])::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"]:not([data-type="qty"]) {
	-moz-appearance: textfield;
}

.breadcrumbs-container {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 20px 10px;
	position: relative;
}

.breadcrumbs-item {
	display: inline-block;
	vertical-align: middle;
	font-size: 9pt;
	padding: 0 10px;
	border-left: 1px solid transparent;
	border-right: 1px solid transparent;
	cursor: pointer;
}

.breadcrumbs-item:not(:nth-child(1)) {
	border-left-color: black;
}

.breadcrumbs-item.disabled {
	color: #999;
	cursor: default;
}

.general-icon {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin-right: 10px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.subtitle-variant-1 {
	color: #197928;
	font-family: montserrat-bold;
	font-size: 14pt;
}

.carousel {
	position: relative;
}

.carousel-nav {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);

	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 10;
	cursor: pointer;
}

.carousel-left {
	left: 15px;
}

.carousel-right {
	right: 15px;
}

.carousel-item-container {
	position: relative;
	overflow: hidden;
	white-space: nowrap;
}

.carousel-item {
	display: inline-block;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.carousel-dot-container {
	text-align: center;
	position: absolute;
	bottom: 40px;
	left: 0;
	width: 100%;
}

.carousel-dot {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	background-color: white;
	border-radius: 100%;
	cursor: pointer;
}

.carousel-dot:not(:nth-child(1)) {
	margin-left: 5px;
}

.carousel-dot.active {
	background-color: #544943;
}

.expandable-container {
	position: relative;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.expandable {
	border: 2px solid black;
	border-radius: 8px;
	/* margin-bottom: 15px; */
}

.expandable-header {
	cursor: pointer;
	position: relative;
}

.expandable-title,
.expandable-icon {
	display: inline-block;
	vertical-align: middle;
}

.expandable-title {
	font-size: 10pt;
	padding: 20px;
	width: calc(100% - 50px);
	position: relative;
	font-family: roboto-bold;
}

.expandable-number {
	border-radius: 100%;
	border: 1px solid black;
	width: 25px;
	height: 25px;
	padding-top: 5px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	position: relative;
	background-color: #eee;
}

.expandable-icon {
	background-image: url("../../img/down.svg");
	width: 38px;
	height: 38px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}

.expandable.active .expandable-icon {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.expandable-body {
	display: none;
	position: relative;
}

.expandable-body::before {
	background-color: #ccc;
}

.expandable.active .expandable-body {
	display: block;
}

.expandable-body pre {
	padding: 0 20px 20px 20px;
	line-height: 20px;
	font-size: 10pt;
}

.category {
	display: inline-block;
	vertical-align: middle;
	padding: 10px;
	border: 1px solid #f69174;
	border-radius: 5px;
	background-color: white;
	position: relative;
	width: 220px;
	margin-bottom: 15px;
	cursor: pointer;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.category:hover {
	background-color: #f6907417;
}

.category.active {
	background-color: #f69174;
}

.category.active .category-name,
.category.active .category-count {
	color: white;
}

.category-icon,
.category-name,
.category-count {
	display: inline-block;
	vertical-align: middle;
}

.category-icon {
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 5px;
}

.category-name,
.category-count {
	color: #f69174;
	font-size: 9pt;
	font-family: roboto-bold;
}

.category-name {
	width: calc(100% - 60px);
	text-align: left;
}

.category-count {
	width: 25px;
	text-align: right;
}

.article {
	display: inline-block;
	vertical-align: top;
	text-decoration: none;
	width: 100%;
	min-width: 270px;
	text-align: left;
	/* margin-bottom: 40px; */
	/* border: 1px solid red; */
}

/* .article:not(:nth-child(3n)) {
	margin-right: 25px;
} */

.article-image {
	width: 100%;
	height: 151.875px;
	background-color: #ddd;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 10px;
	margin-bottom: 10px;
}

.article-title {
	color: #707070;
	font-family: roboto-bold;
	font-size: 11pt;
	margin-bottom: 8px;
}

.article-subtitle {
	font-size: 9pt;
	color: #777;
	height: 54px;
	overflow: hidden;
	line-height: 18px;
}

.article-date {
	text-align: right;
	font-size: 9pt;
}

.product {
	display: inline-block;
	vertical-align: top;
	width: 200px;
	position: relative;
	text-decoration: none;
	margin-bottom: 30px;
	text-align: center;
}

.product:not(:nth-child(5n)) {
	margin-right: 40px;
}

.product:nth-last-child(1) {
	margin-right: 0;
}

.product-image {
	width: 200px;
	height: 200px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #faf4de;
	border-radius: 20px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
}

.product-image-after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.product:hover .product-image-after {
	background-color: rgba(88, 151, 0, 0.5);
	opacity: 1;
}

.product-button-container {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
}

.product-button {
	background-color: #544f49;
	display: inline-block;
	vertical-align: middle;
	color: white;
	font-size: 7pt;
	text-transform: uppercase;
	padding: 8px 10px;
	border-radius: 30px;
}

.product-title {
	font-size: 9pt;
	font-family: roboto-bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #555;
	text-transform: uppercase;
}

.product-subtitle {
	font-size: 9pt;
	color: #777;
	margin-top: 3px;
	margin-bottom: 3px;
	text-transform: uppercase;
}

.product-price {
	font-size: 9pt;
	color: #555;
	font-family: roboto-bold;
}

.product-price-old {
	display: inline-block;
	vertical-align: baseline;
	font-size: 9pt;
	position: relative;
	color: #555;
}

.product-price-old:after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #777;
	position: absolute;
	top: 7px;
	left: 0;
}

.product-quick-image-container,
.product-quick-text-container {
	display: inline-block;
	vertical-align: top;
}

.product-quick-image-container {
	width: 280px;
}

.product-quick-image-big {
	width: 280px;
	height: 280px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 20px;
	margin-bottom: 20px;
}

.product-quick-thumbnail {
	display: inline-block;
	vertical-align: middle;
	width: 70px;
	height: 70px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	margin-right: 10px;
	cursor: pointer;
}

.product-quick-text-container {
	width: calc(100% - 280px);
	padding-left: 20px;
}

.product-quick-subtitle {
	font-size: 14pt;
	text-transform: uppercase;
	margin-bottom: 5px;
	color: #625449;
}

.product-quick-title {
	font-family: roboto-bold;
	font-size: 14pt;
}

.product-quick-price {
	margin-top: 15px;
	font-size: 16pt;
	color: #73a44b;
}

.product-quick-description {
	margin-top: 30px;
	font-size: 10pt;
	line-height: 20px;
	height: 80px;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-quick-btn-minus,
.product-quick-btn-plus {
	display: inline-block;
	vertical-align: middle;
	width: 34px;
	height: 34px;
	text-align: center;
	font-size: 18pt;
	color: #73a44b;
	border-radius: 5px;
	border: 1px solid #aaa;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.product-quick-detail-qty {
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 5px;
	margin-right: 5px;
	font-size: 14pt;
	padding: 5px;
	width: 80px;
	border: 1px solid #999;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
}

.btn-product-quick-add-to-cart,
.btn-product-quick-buy-now {
	margin-left: 15px;
	font-size: 10pt;
}

.custom-title {
	font-family: roboto-bold;
	font-size: 36pt;
	text-align: left;
	color: #f69174;
	line-height: 45px;
}

.modal-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	cursor: default;
}

.modal-container.active {
	display: block;
}

.modal-box {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: white;
	border-radius: 20px;
	padding: 40px;
	min-width: 300px;
}

.modal-header {
	position: relative;
}

.modal-close-icon {
	position: absolute;
	width: 25px;
	height: 25px;
	right: 20px;
	top: 20px;
	cursor: pointer;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.modal-title {
	font-family: roboto-bold;
	color: #cc4b5f;
	margin-bottom: 20px;
}

.modal-product-quick-view .modal-box {
	width: 800px;
}

.tag[data-variant="1"] {
	background-color: #00bba3;
	color: white;
}

.tag[data-variant="2"] {
	background-color: #f2e985;
	color: black;
}

.tag[data-variant="3"] {
	background-color: #f24968;
	color: white;
}

.page-container {
	text-align: center;
	/* border: 1px solid red; */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
}

.page {
	display: inline-block;
	vertical-align: middle;
	color: #00093f;
	text-decoration: none;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	font-size: 10pt;
	padding-top: 11px;
	font-family: montserrat-semibold;
	cursor: pointer;
	border: 1px solid #00093f;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.page:hover,
.page.active {
	color: #ffcd29;
	background-color: #00093f;
}

/* .page:not(:nth-child(1)) {
	margin-left: 5px;
} */

pre,
.expandable-body pre ul li {
	line-height: 30px;
	white-space: pre-wrap;
}

pre b {
	font-family: roboto-bold;
}

.expandable-body pre ul li {
	margin-top: -30px;
	margin-left: 20px;
	list-style: none;
	position: relative;
}

.expandable-body pre ul li:not(:nth-last-child(1)) {
	margin-bottom: 30px;
}

.expandable-body pre ul li::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: -20px;
	top: 10px;
	width: 10px;
	height: 10px;
	background-color: #85b518;
}

/* .btn-footer-bantuan {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 10;
	width: 64px;
	height: 64px;
	background-size: 50%;
	background-repeat: no-repeat;
	background-color: rgb(89, 192, 137);
	background-position: center;
	border-radius: 100%;
} */

.btn-footer-search {
	position: fixed;
	bottom: 88px;
	right: 20px;
	z-index: 10;
	background-color: #f9cc00;
	border-radius: 100%;
}

.btn-footer-bantuan {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 10;
	background-color: rgb(89, 192, 137);
	border-radius: 100%;
}

.btn-footer-search div,
.btn-footer-bantuan div {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn-footer-search div img,
.btn-footer-bantuan div img {
	width: 25px;
	height: auto;
	/* border: 1px solid red; */
}

.footer {
	position: relative;
	width: 100vw;
	padding: 30px 0;
	text-align: center;
	background-color: #00093f;
}

.footer-col {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	width: 250px;
}

.footer-description {
	margin-top: 10px;
	font-size: 10pt;
	line-height: 25px;
	color: white;
}

.footer-description a {
	color: white;
	text-decoration: none;
	display: block;
}

.footer-col-blog .footer-description a {
	line-height: 20px;
	margin-bottom: 15px;
}

.footer-col-title {
	margin-bottom: 30px;
	font-size: 13pt;
	color: white;
}

.footer-col-title:after {
	content: "";
	margin-top: 15px;
	display: block;
	width: 80px;
	height: 1px;
	background-color: white;
}

.footer-sosmed {
	display: inline-block;
	vertical-align: middle;
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-right: 8px;
}

.footer-icon-wa {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 14px;
	height: 14px;
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	margin-top: -2px;
}

.header-style {
	/* border: 1px solid red; */
	padding: 0 20px !important;
	height: 80px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	/* background-color: green !important; */
	/* position: sticky; */
	/* top: 0; */
	/* z-index: 1000; */
}

.header-style .header-content {
	padding: 0;
	width: 100%;
	max-width: 1440px;
	/* padding: 0 80px; */
	/* border: 1px solid red; */
}

.header-style .header-content .logo {
	/* border: 1px solid black !important; */
	margin: 0 !important;
}

.header-menu-wrapper {
	/* border: 1px solid red; */
	display: flex;
	align-items: center;
	gap: 40px;
}

.header-menu-wrapper .header-menu {
	margin: 0 !important;
	padding: 0 !important;
}

.header-menu-wrapper .header-menu-text {
	padding: 0 !important;
}

.header-social-media {
	display: flex;
	gap: 20px;
	/* border: 1px solid red; */
	justify-content: flex-end;
}

.header-social-media a img {
	height: 16px;
}

@media (min-width: 1440px) {
	.header-style {
		height: 100px !important;
	}

	.header-style .header-content {
		padding: 0 80px;
	}
}

@media all and (max-width: 1335px) {
	.header-upper,
	.footer-white-pattern,
	.continue-shipping,
	.text-get-started,
	.custom-title br,
	[data-platform="desktop"] {
		display: none;
	}

	.header {
		height: 60px;
		overflow: visible;
		background-color: transparent !important;
	}

	.header.scroll {
		/* background-color: white !important; */
		background-color: rgba(0, 0, 0, 0.35) !important;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.header-inner {
		height: 60px;
	}

	.logo {
		width: 150px;
		height: 43px;
		margin-top: 13px;
		z-index: 100;
		position: relative;
	}

	body.show-menu {
		overflow-y: hidden;
	}

	.header-content {
		padding: 0 5vw;
		display: block;
	}

	.header-menu-container {
		position: absolute;
		left: 0;
		top: 0;
		margin: 0;
		width: 100vw;
		height: calc(100vh);
		background-color: #00093f;
		padding: 100px 5vw 5vw;
		opacity: 0;
		display: none;
	}

	.header-menu-wrapper {
		/* border: 1px solid red; */
		display: flex;
		flex-direction: column;
		align-items: normal;
		gap: 20px;
	}

	.header-menu,
	.header-menu-text {
		font-size: 11pt;
	}

	.header-menu,
	.cart-container[data-platform="mobile"],
	.header-lang-switcher {
		display: block;
		text-align: right;
		margin-bottom: 20px;
		margin-right: 0;
	}

	.header-menu:nth-last-child(1) {
		margin-bottom: 0;
	}

	.cart-container {
		position: absolute;
		top: 15px;
		right: 70px;
	}

	.header-menu-icon {
		position: absolute;
		width: 30px;
		/* border: 1px solid red; */
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}

	.menu-icon-line {
		width: 100%;
		height: 2px;
		background-color: white;
		margin-bottom: 7px;
	}

	.menu-icon-line-3 {
		margin-bottom: 0;
	}

	@-webkit-keyframes menu-mobile-container-open {
		to {
			opacity: 1;
		}
	}

	@keyframes menu-mobile-container-open {
		to {
			opacity: 1;
		}
	}

	body.show-menu .header-menu-container {
		display: block;
		-webkit-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-moz-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-ms-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-o-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-open;
	}

	body.show-menu .header-menu {
		-webkit-animation: 0.5s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-moz-animation: 0.5s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-ms-animation: 0.5s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		-o-animation: 0.5s linear 0s 1 normal forwards running
			menu-mobile-container-open;
		animation: 0.5s linear 0s 1 normal forwards running
			menu-mobile-container-open;
	}

	.header-menu:nth-child(1) {
		-webkit-animation-delay: 0.2s !important;
		-moz-animation-delay: 0.2s !important;
		-ms-animation-delay: 0.2s !important;
		-o-animation-delay: 0.2s !important;
		animation-delay: 0.2s !important;
	}

	.header-menu:nth-child(2) {
		-webkit-animation-delay: 0.3s !important;
		-moz-animation-delay: 0.3s !important;
		-ms-animation-delay: 0.3s !important;
		-o-animation-delay: 0.3s !important;
		animation-delay: 0.3s !important;
	}

	.header-menu:nth-child(3) {
		-webkit-animation-delay: 0.4s !important;
		-moz-animation-delay: 0.4s !important;
		-ms-animation-delay: 0.4s !important;
		-o-animation-delay: 0.4s !important;
		animation-delay: 0.4s !important;
	}

	.header-menu:nth-child(4) {
		-webkit-animation-delay: 0.5s !important;
		-moz-animation-delay: 0.5s !important;
		-ms-animation-delay: 0.5s !important;
		-o-animation-delay: 0.5s !important;
		animation-delay: 0.5s !important;
	}

	@-webkit-keyframes menu-mobile-container-close {
		to {
			opacity: 0;
		}
	}

	@keyframes menu-mobile-container-close {
		to {
			opacity: 0;
		}
	}

	body.menu-closing .header-menu-container {
		opacity: 1;
		display: block;
		-webkit-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-close;
		-moz-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-close;
		-ms-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-close;
		-o-animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-close;
		animation: 0.2s linear 0s 1 normal forwards running
			menu-mobile-container-close;
	}

	@-webkit-keyframes menu-icon-line-1-opening {
		to {
			-webkit-transform: rotate(45deg) translate(4px, 7px);
			background-color: white;
		}
	}

	@keyframes menu-icon-line-1-opening {
		to {
			-moz-transform: rotate(45deg) translate(4px, 7px);
			-ms-transform: rotate(45deg) translate(4px, 7px);
			-o-transform: rotate(45deg) translate(4px, 7px);
			transform: rotate(45deg) translate(4px, 7px);
			background-color: white;
		}
	}

	@-webkit-keyframes menu-icon-line-2-opening {
		to {
			opacity: 0;
		}
	}

	@keyframes menu-icon-line-2-opening {
		to {
			opacity: 0;
		}
	}

	@-webkit-keyframes menu-icon-line-3-opening {
		to {
			-webkit-transform: rotate(-45deg) translate(5px, -8px);
		}
	}

	@keyframes menu-icon-line-3-opening {
		to {
			-moz-transform: rotate(-45deg) translate(5px, -8px);
			-ms-transform: rotate(-45deg) translate(5px, -8px);
			-o-transform: rotate(-45deg) translate(5px, -8px);
			transform: rotate(-45deg) translate(5px, -8px);
		}
	}

	body.menu-opening .menu-icon-line-1,
	body.menu-opening .menu-icon-line-2,
	body.menu-opening .menu-icon-line-3,
	body.menu-closing .menu-icon-line-1,
	body.menu-closing .menu-icon-line-2,
	body.menu-closing .menu-icon-line-3 {
		-webkit-animation-duration: 0.3s;
		-webkit-animation-fill-mode: forwards;
		-moz-animation-duration: 0.3s;
		-moz-animation-fill-mode: forwards;
		-ms-animation-duration: 0.3s;
		-ms-animation-fill-mode: forwards;
		-o-animation-duration: 0.3s;
		-o-animation-fill-mode: forwards;
		animation-duration: 0.3s;
		animation-fill-mode: forwards;
	}

	body.menu-opening .menu-icon-line-1 {
		-webkit-animation-name: menu-icon-line-1-opening;
		-moz-animation-name: menu-icon-line-1-opening;
		-ms-animation-name: menu-icon-line-1-opening;
		-o-animation-name: menu-icon-line-1-opening;
		animation-name: menu-icon-line-1-opening;
		background-color: white;
	}

	body.menu-opening .menu-icon-line-2 {
		-webkit-animation-name: menu-icon-line-2-opening;
		-moz-animation-name: menu-icon-line-2-opening;
		-ms-animation-name: menu-icon-line-2-opening;
		-o-animation-name: menu-icon-line-2-opening;
		animation-name: menu-icon-line-2-opening;
	}

	body.menu-opening .menu-icon-line-3 {
		-webkit-animation-name: menu-icon-line-3-opening;
		-moz-animation-name: menu-icon-line-3-opening;
		-ms-animation-name: menu-icon-line-3-opening;
		-o-animation-name: menu-icon-line-3-opening;
		animation-name: menu-icon-line-3-opening;
		background-color: white;
	}

	body.menu-opened .menu-icon-line-1 {
		-webkit-transform: rotate(45deg) translate(4px, 7px);
		-moz-transform: rotate(45deg) translate(4px, 7px);
		-ms-transform: rotate(45deg) translate(4px, 7px);
		-o-transform: rotate(45deg) translate(4px, 7px);
		transform: rotate(45deg) translate(4px, 7px);
		background-color: white;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	body.menu-opened .menu-icon-line-2 {
		opacity: 0;
		background-color: white;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	body.menu-opened .menu-icon-line-3 {
		-webkit-transform: rotate(-45deg) translate(5px, -8px);
		-moz-transform: rotate(-45deg) translate(5px, -8px);
		-ms-transform: rotate(-45deg) translate(5px, -8px);
		-o-transform: rotate(-45deg) translate(5px, -8px);
		transform: rotate(-45deg) translate(5px, -8px);
		background-color: white;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
	}

	@-webkit-keyframes menu-icon-line-1-closing {
		to {
			-webkit-transform: rotateZ(0deg) translateY(0px) translateX(0px) scaleX(1);
		}
	}

	@keyframes menu-icon-line-1-closing {
		to {
			-moz-transform: rotateZ(0deg) translateY(0px) translateX(0px) scaleX(1);
			-ms-transform: rotateZ(0deg) translateY(0px) translateX(0px) scaleX(1);
			-o-transform: rotateZ(0deg) translateY(0px) translateX(0px) scaleX(1);
			transform: rotateZ(0deg) translateY(0px) translateX(0px) scaleX(1);
		}
	}

	@-webkit-keyframes menu-icon-line-2-closing {
		to {
			opacity: 1;
		}
	}

	@keyframes menu-icon-line-2-closing {
		to {
			opacity: 1;
		}
	}

	body.menu-closing .menu-icon-line-1,
	body.menu-closing .menu-icon-line-3 {
		-webkit-animation-name: menu-icon-line-1-closing;
		-moz-animation-name: menu-icon-line-1-closing;
		-ms-animation-name: menu-icon-line-1-closing;
		-o-animation-name: menu-icon-line-1-closing;
		animation-name: menu-icon-line-1-closing;
	}

	body.menu-closing .menu-icon-line-2 {
		-webkit-animation-name: menu-icon-line-2-closing;
		-moz-animation-name: menu-icon-line-2-closing;
		-ms-animation-name: menu-icon-line-2-closing;
		-o-animation-name: menu-icon-line-2-closing;
		animation-name: menu-icon-line-2-closing;
	}

	/* .container {
		padding-top: 58px;
	} */

	.breadcrumbs-item {
		font-size: 8pt;
	}

	.button {
		padding: 9px 20px;
	}

	.button:active {
		color: black;
		background-color: white;
	}

	.custom-body-menu {
		width: 38vw;
		display: inline-block;
		margin-right: 2vw;
	}

	[data-title-variant="1"] {
		font-size: 16pt;
	}

	.expandable-title {
		/* padding: 5vw; */
		/* width: calc(100% - 30px - 4vw); */
	}

	.expandable-container::before,
	.expandable-title::before,
	.expandable-body::before {
		/* left: calc(5vw + 12px); */
	}

	.expandable-body pre {
		/* padding: 5vw 0 5vw 15vw; */
	}

	.modal-container .modal-box {
		min-width: 90vw !important;
	}

	.category {
		padding: 8px 5px;
		border-radius: 5px;
		width: 42.5vw;
		margin-bottom: 15px;
	}

	.category:active {
		background-color: #f6907417;
	}

	.category-icon,
	.category-name,
	.category-count {
		display: table-cell;
	}

	.category-icon {
		width: 25px;
		height: 25px;
	}

	.category-name {
		width: calc(42.5vw - 65px);
		height: 30px;
		padding-left: 5px;
	}

	.article {
		display: block;
		/* width: 90vw; */
		/* margin-bottom: 40px; */
		margin-left: 0 !important;
	}

	.article:not(:nth-last-child(1)) {
		margin-right: 0;
	}

	.article:nth-child(even) {
		margin-left: 5vw;
	}

	.article-image {
		/* width: 90vw; */
		/* height: 50.625vw; */
	}

	.article-title {
		font-size: 11pt;
	}

	.article-subtitle {
		font-size: 10pt;
	}

	.product {
		width: 42.5vw;
		margin-bottom: 30px;
	}

	.product:not(:nth-child(5n)) {
		margin-right: 0;
	}

	.product:not(:nth-child(2n)) {
		margin-right: 5vw;
	}

	.product-image {
		width: 42.5vw;
		height: 42.5vw;
	}

	.product-title,
	.product-subtitle,
	.product-price {
		font-size: 8pt;
	}

	.custom-title {
		font-size: 20pt;
	}

	.footer {
		padding: 5vw;
	}

	.footer-col {
		display: block;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.footer-col:nth-child(1) {
		width: auto;
	}

	.footer-col-title {
		margin-bottom: 10px;
	}

	.footer-icon {
		margin-bottom: 10px;
		width: 45px;
		height: 45px;
	}

	.footer-description {
		width: calc(90vw);
		padding-right: 0;
	}

	.footer-copyright {
		display: none;
		margin-bottom: 15px;
	}
}

@media all and (min-width: 1335px) and (max-width: 1440px) {
	.footer-fixed-copyright br,
	.text-get-started,
	.header-menu-icon,
	[data-platform="mobile"] {
		display: none;
	}

	.header {
		height: 60px;
	}

	.header.scroll {
		background-color: rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.header-content {
		padding-left: 3vw;
		padding-right: 4vw;
	}

	.logo {
		width: 150px;
		height: 43px;
	}

	.header-menu {
		display: inline-block;
		vertical-align: middle;
		margin-top: 10px;
		margin-right: 15px;
		padding-bottom: 0;
	}

	.header-menu-text {
		font-size: 8pt;
	}

	.expandable-title {
		/* padding: 2vw; */
	}

	.expandable-container::before,
	.expandable-title::before,
	.expandable-body::before {
		left: calc(2vw + 12px);
	}

	.expandable-body pre {
		/* padding: 2vw 0 2vw 6vw; */
		line-height: 18px;
		font-size: 8pt;
	}

	/* .container {
		min-height: 0;
		padding-top: 60px;
	} */

	.button:active {
		color: black;
		background-color: white;
	}

	.custom-body-menu {
		width: 200px;
		display: inline-block;
		margin-right: 2vw;
	}

	.section-inner {
		width: 92vw;
	}

	.custom-title {
		font-size: 28pt;
		line-height: 36px;
	}

	.article {
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 40px;
	}

	.article:nth-child(odd) {
		margin-right: 30px !important;
	}

	.product {
		width: 170px;
		margin-bottom: 30px;
		margin-right: 0 !important;
	}

	.product:not(:nth-child(4n)) {
		margin-right: 15px !important;
	}

	.product:nth-last-child(1) {
		margin-right: 0;
	}

	.product-image {
		width: 170px;
		height: 170px;
	}

	.footer {
		padding: 4vw;
	}

	.footer-col {
		margin-bottom: 50px;
	}

	.footer-description,
	.footer-copyright {
		width: 290px;
		padding-right: 0;
	}
}

@media all and (min-width: 1335px) and (max-width: 1440px) {
	.product {
		margin-right: 0 !important;
	}

	.product:not(:nth-child(4n)) {
		margin-right: 30px !important;
	}

	.product:nth-last-child(1) {
		margin-right: 0 !important;
	}

	.article {
		margin-left: 0 !important;
		margin-right: 0 !important;
		margin-bottom: 40px;
	}

	.article:nth-child(odd) {
		margin-right: 0 !important;
	}

	.article:not(:nth-child(3n)) {
		margin-right: 30px !important;
	}

	.article:nth-last-child(1) {
		margin-right: 0 !important;
	}

	.product {
		width: 170px;
		margin-bottom: 30px;
		margin-right: 0 !important;
	}

	.product:not(:nth-child(4n)) {
		margin-right: 15px !important;
	}

	.product:nth-last-child(1) {
		margin-right: 0;
	}

	.product-image {
		width: 170px;
		height: 170px;
	}
}

@media all and (min-width: 1335px) {
	.div-mobile,
	.footer-fixed-copyright br,
	.header-menu-icon,
	[data-platform="mobile"] {
		display: none;
	}

	.header.scroll {
		background-color: rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}

	.logo {
		margin-top: 5px;
	}

	.header-menu {
		display: inline-block;
		vertical-align: middle;
		padding-top: 10px;
	}

	.header-menu-whatsapp {
		margin-top: -10px;
	}

	.header.scroll .header-menu-text,
	.header.scroll .header-lang {
		color: white;
	}

	.header.scroll .header-lang:nth-child(1) {
		border-right-color: white;
	}

	.header-menu:hover,
	.header-menu-text:hover {
		color: white;
	}

	.header-menu:hover .header-submenu-container {
		height: auto;
		opacity: 1;
	}

	.header-submenu:hover {
		color: white;
	}
}

.section-wrap {
	/* border: 1px solid blue; */
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (min-width: 768px) {
	.section-wrap {
		padding: 0 80px;
	}
}

@media (min-width: 1024px) {
}

@media (min-width: 1336px) {
	.section-wrap {
		padding: 0 180px;
	}

	.btn-footer-search {
		position: fixed;
		bottom: 94px;
		right: 20px;
		z-index: 10;
		background-color: #f9cc00;
		border-radius: 100%;
	}

	.btn-footer-search div,
	.btn-footer-bantuan div {
		width: 55px;
		height: 55px;
	}

	.btn-footer-search div img,
	.btn-footer-bantuan div img {
		width: 25px;
		height: auto;
	}
}

@media (min-width: 1440px) {
}
