:root {
	--gradient: linear-gradient(to right, #ea65b2, #d43b9d);
	--primary-color: #ea65b2;
	--text-color: #212529;
}

html,
body {
	color: var(--text-color);
	scroll-behavior: smooth;
}

@media (min-width: 768px) {
	.col-md-4 {
		flex: 0 0 auto;
		width: 30.33333333% !important;
	}

	.navbar-brand img {
		width: 120px !important;
	}

	.custom-btn {
		padding: 8px 16px !important;
	}
}

#stickyNavbar.sticky {
	background: var(--primary-color);
	z-index: 1;
	box-shadow: 0px 0px 24px #0000001c;
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.header-navbar {
	padding: 0px 20px;
}

.navbar-brand img {
	width: 90px;
}

.custom-btn {
	padding: 6px 10px;
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	font-size: 1rem;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	color: white;
	border-radius: 8px !important;
}

.bg-myGradient {
	background: var(--gradient) !important;
	color: white;
}

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

.border-white {
	border: 2px solid white;
	border-radius: 8px;
}

.border-black {
	border: 2px solid black;
	border-radius: 8px;
}

.header {
	background-color: var(--primary-color);
	position: relative;
	overflow: hidden;
}

.header h4 {
	font-size: calc(1.14375rem + 1.125vw);
	font-weight: 400;
}

.header-content {
	display: flex;
	padding-bottom: 120px;
	align-items: center;
	flex-wrap: wrap-reverse;
}

.detail {
	font-size: 17px;
}

.detail i {
	font-size: 25px;
	margin-right: 7px;
	background-color: var(--primary-color);
	padding: 8px 10px;
	color: white;
	border-radius: 8px;
}

.banner h4 {
	font-size: calc(1.35rem + 1.2vw);
	font-weight: 400;
}

.support a {
	position: fixed;
	z-index: 10;
	background: var(--gradient) !important;
	font-size: 18px;
	color: white;
	bottom: 30px;
	right: 30px;
	padding: 8px 14px;
	border-radius: 14px;
	text-decoration: none;
}

.support a:hover {
	color: white;
}

.daftarHarga table {
	width: 100%;
}

#dataHarga .success {
	background-color: #014737;
	padding: 8px 14px;
	color: #84e1bc !important;
}

#dataHarga .danger {
	background-color: #470101;
	padding: 8px 14px;
	color: #e18484 !important;
}

.faq button {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-align: left;
	padding: 16px 20px;
	border: 1px solid #dfdfdf;
	background-color: white;
	border-radius: 14px;
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.faq button.collapsed {
	border: 1px solid #dfdfdf;
}

.faq button:not(.collapsed) {
	border-bottom: none;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

.faq .accordion-body {
	border: 1px solid #dfdfdf;
	border-top: none;
	border-radius: 0 0 14px 14px;
	padding: 16px 20px;
	margin-top: -10px;
}

.faq .icon {
	transition: transform 0.3s ease-in-out;
	font-size: 20px;
	font-weight: bold;
}

@media (max-width: 768px) {
	.faq .icon {
		font-size: 33px !important;
	}
}

.faq button:not(.collapsed) .icon {
	transform: rotate(45deg);
}

.required {
	color: red;
}