*,
ul {
	margin: 0;
	padding: 0;
}

a,
a:hover {
	text-decoration: none;
}

body {
	font-family: "Roboto", sans-serif;
	font-size: 14px;
}

.login-area {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.login-area>div:first-child {
	width: 100%;
	background: #011733;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
}

.login-area>div:first-child span.first {
	height: 420px;
	width: 420px;
	border-radius: 100px;
	background: #ffffff0a;
	display: block;
	transform: rotate(65deg);
	position: absolute;
	right: -10px;
	top: -150px;
}

.login-area>div:first-child span.second {
	height: 420px;
	width: 420px;
	border-radius: 100px;
	background: #ffffff0a;
	display: block;
	transform: rotate(65deg);
	position: absolute;
	left: -10px;
	bottom: -150px;
}

.login-area>div:first-child span.third {
	height: 320px;
	width: 320px;
	border-radius: 50px;
	background: #ffffff0e;
	display: block;
	transform: rotate(60deg);
	position: absolute;
	left: 40%;
	bottom: -150px;
}

.login-area span.four {
	height: 320px;
	width: 320px;
	border-radius: 50px;
	background: #0117330e;
	display: block;
	transform: rotate(60deg);
	position: absolute;
	left: 40%;
	bottom: -150px;
}

.login-area span.five {
	height: 420px;
	width: 420px;
	border-radius: 100px;
	background: #0117330e;
	display: block;
	transform: rotate(65deg);
	position: absolute;
	left: -10px;
	bottom: -150px;
}

.login-area span.six {
	height: 420px;
	width: 420px;
	border-radius: 100px;
	background: #0117330e;
	display: block;
	transform: rotate(65deg);
	position: absolute;
	right: -10px;
	top: -150px;
}

.login-area h1 {
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	color: white;
}

.bottom-area {
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
	text-align: center;
	color: white;
	width: 100%;
}

.bottom-area img {
	height: 140px;
}

.bottom-area p {
	font-weight: 500;
	margin-top: 30px;
}

.login-area .last {
	display: flex;
	align-items: start;
	justify-content: center;
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.form-area {
	margin-top: 50px;
	width: 550px;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid #f3f3f3;
	box-shadow: 0 4px 40px rgba(0, 0, 0, 0.042);
	background: #fff;
	position: relative;
	z-index: 99;
}

.form-input {
	position: relative;
	margin-bottom: 10px;
}

.form-input input,
.form-input select {
	width: 100%;
	border: 1px solid #ddd;
	height: 45px;
	padding: 0 10px;
	border-radius: 5px;
	transition: 0.5s;
}

.form-input textarea {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
	transition: 0.5s;
}

.form-input input[type="file"] {
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
	transition: 0.5s;
}

.form-input-otp input {
	width: 100%;
	border: 1px solid #ddd;
	height: 50px;
	padding: 0 10px;
	border-radius: 5px;
	transition: 0.5s;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
}

.form-input-otp input::placeholder {
	font-size: 20px;
}

.form-input input:focus,
.form-input-otp input:focus {
	outline: none;
	border: 1px solid #011733;
}

.form-input label {
	margin-bottom: 3px;
	font-weight: 500;
	color: #0d1946;
}

.form-input-select {
	position: relative;
	margin-bottom: 10px;
}

.form-input-select .select {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
}

.option.active {
	font-weight: 500;
}

.btn-main {
	background: #011733;
	color: white;
}

.btn-xs {
	font-size: 12px;
}

.select {
	position: relative;
}

.select-option {
	position: absolute;
	left: 0;
	width: 100%;
	background: white;
	list-style-type: none;
	z-index: 99;
	top: 40px;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-radius: 0 0 5px 5px;
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: 0.5s;
}

.select-option li {
	padding: 6px 10px;
	border-bottom: 1px dashed #ddd;
	overflow: hidden;
}

.select-option li:hover {
	background: #ededed;
	cursor: pointer;
}

.select-option li:last-child {
	border: none;
}

.form-input-select label {
	position: absolute;
	top: -10px;
	left: 10px;
	background: #fff;
	z-index: 99;
}

.select-option.show {
	opacity: 1;
	height: auto;
}

input::placeholder {
	color: #9c9c9c;
}

.dashboard {
	background: #f2f2f2;
	display: grid;
	grid-template-columns: 270px 1fr;
}

.sidebar {
	height: 100vh;
	background: #fff;
	width: 100%;
	z-index: 99;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	overflow-y: scroll;
}

.sidebar::-webkit-scrollbar {
	width: 5px;
	height: 8px;
	background-color: #dfdfdf;
	/* or add it to the track */
}

/* Add a thumb */
.sidebar::-webkit-scrollbar-thumb {
	background: #0765ad43;
}

.content {
	position: relative;
	height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;
}

.content-page::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #011733;
}

.content-bg::before {
	content: "";
	position: absolute;
	z-index: 0;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 119vw;
	border-bottom: 253px solid #011733;
	border-radius: 0 0 80% 80% / 0 0 75% 75%;
}

nav ul li a {
	display: block;
	padding: 8px 10px;
	font-size: 16px;
	font-weight: 400;
	color: #7094b0;
}

nav ul li a i.fab,
nav ul li a i.fad {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	background: #0765ad1d;
	color: #0765ad;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

nav ul li a.second-menu i {
	width: 30px;
	height: 30px;
	border-radius: 5px;
	background: #fff;
	color: #9a9a9a;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

nav ul li a.active {
	color: #011733;
	font-weight: 500;
}

nav ul li a.active i {
	background: #011733;
	color: white;
}

.logo-sidebar {
	text-align: center;
	padding: 30px 0;
	color: #011733;
	border-bottom: 1px solid #ddd;
	margin-bottom: 20px;
}

.logo-sidebar h1 {
	font-size: 28px;
	font-weight: 700;
}

.logo-sidebar .initial {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	color: white;
	border-radius: 50%;
	font-size: 30px;
	font-weight: 600;
}

.program {
	width: 100%;
	scrollbar-color: transparent transparent;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
}

.list-program {
	display: flex;
	width: max-content;
	gap: 15px;
	list-style-type: none;
	position: relative;
	z-index: 999;
}

.list-program li {
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	scroll-snap-align: start;
	width: 240px;
}

.list-program img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.list-program li .program-header {
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.list-program li .program-header i.fa-trash-alt {
	position: absolute;
	right: 5px;
	top: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	color: #FFF;
	background: #f50808;
	font-size: 12px;
}

.list-program li {
	background: #fff;
}

.list-program li .program-body,
.list-program li .program-footer {
	padding: 10px;
	font-size: 12px;
}

.list-program li .program-footer {
	border-top: 1px dashed #ddd;
}

.list-program li .program-body h3 {
	font-size: 14px;
	font-weight: 500;
	color: #fb9237;
}

.list-program li .program-body h2 {
	font-size: 16px;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.slider {
	position: relative;
	margin-bottom: 30px;
}

.slider img {
	width: 100%;
	border-radius: 10px;
}

.img-produk {
	width: 100%;
}

.card-header {
	position: relative;
	overflow: hidden;
}

.detail-produk {
	position: absolute;
	bottom: 0;
	padding: 20px;
	background: rgb(1, 1, 1);
	background: linear-gradient(0deg,
			rgba(0, 0, 0, 0.699) 5%,
			rgba(0, 0, 0, 0) 100%);
	width: 100%;
}

.hide-content {
	display: none;
	width: 100%;
	border-bottom: 1px dashed #011733;
	padding-bottom: 10px;
}

.checkbox {
	position: relative;
}

.checkbox input {
	display: none;
}

.checkbox label {
	position: relative;
	border: 1px solid #ddd;
	width: 40px;
	height: 25px;
	border-radius: 50px;
	display: flex;
	align-items: center;
}

.checkbox span {
	width: 20px;
	height: 20px;
	background: #9c9c9c;
	display: block;
	border-radius: 50%;
	margin-left: 2px;
	transition: 0.5s;
}

.checkbox input:checked+label {
	border-color: #0765ad;
	background: #0765ad23;
}

.checkbox input:checked+label span {
	margin-left: 17px;
	background: #0765ad;
}

.title {
	z-index: 99;
	position: relative;
}

.mobile-menu {
	display: none;
}

.scroll {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: scroll;
	height: 100vh;
	padding-top: 200px;
}

/* HTML: <div class="loader"></div> */
#preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #00000067;
	z-index: 999 !important;
	display: none;
}

.loader {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 4px solid lightblue;
	border-right-color: #0765ad;
	animation: l2 1s infinite linear;
}

@keyframes l2 {
	to {
		transform: rotate(1turn);
	}
}

.loading-content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	padding: 50px;
	border-radius: 10px;
}

.modals {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: scale(1.1);
	z-index: 999999;
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
}

.modals-content.modals-sm {
	width: 25%;
}

.modals-content.modals-lg {
	width: 35%;
}

.modals-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	border-radius: 0.5rem;
	overflow: hidden;
}

.modals-body {
	padding: 1rem 1.5rem;
	max-height: 80vh;
	scrollbar-color: transparent transparent;
	overflow-y: scroll;
}

.close-button {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 1.5rem;
	line-height: 1.5rem;
	text-align: center;
	cursor: pointer;
	border-radius: 0.25rem;
	background-color: lightgray;
}

.close-button:hover {
	background-color: darkgray;
}

.show-modals {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.modals-header {
	text-align: center;
	padding: 20px;
	border-bottom: 1px solid #ddd;
}

.modals-header-warning {
	color: #3a3a3a;
}

.list-checkout li {
	position: relative;
	display: flex;
	border-bottom: 1px dashed #ddd;
	padding: 10px 0;
}

.list-checkout li img {
	width: 150px;
	height: 100px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 20px;
}

.list-checkout li h5 {
	font-size: 16px;
}

.icon-fixed {
	position: absolute;
	right: 0;
	color: red;
}

.count-order {
	font-weight: 500;
	color: #f50808;
}

.invoice {
	width: 100%;
	scroll-snap-type: x mandatory;
	overflow-x: scroll;
	scrollbar-color: transparent transparent;
}

.list-invoice {
	position: relative;
	list-style-type: none;
	/* display: flex;
	width: max-content; */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.list-invoice li {
	padding: 20px;
	border: 1px solid #dcdcdc;
	border-radius: 10px;
	background: #ffffff;
	position: relative;
}

.icon-fix {
	position: absolute;
	right: 10px;
	top: 10px;
	font-size: 18px;
}

i.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
}

.icon-danger {
	background: #f5080823;
	border: 1px solid #ff8787;
	color: #f50808 !important;
}

.icon-success {
	background: #08f53f23;
	border: 1px solid #87ff8b;
	color: #08f53f !important;
}

.list-invoice li img {
	width: 40px;
	margin-right: 10px;
}

.list-invoice li h2 {
	font-size: 18px;
	margin: 0;
}

.list-invoice ul li {
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	background: none;
}

.list-invoice ul p {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
}

.list-invoice ul li i {
	width: 25px;
}

.inv-header {
	padding: 30px;
	background: #0765ad;
	color: white;
}

.inv-header i {
	font-size: 50px;
	color: white;
	margin-bottom: 10px;
}

.card-custom {
	text-align: center;
	padding: 20px;
	border: 1px dashed #ddd;
	background: #f2f2f2;
	border-radius: 5px;
}

.card-custom p {
	font-size: 11px;
}

.card h5 {
	font-size: 14px;
}

.welcome {
	padding: 0;
	padding: 20px 25px;
}

.output {
	display: none;
	margin: 10px 0;
	width: 150px;
}

.btn-back {
	border: none;
	background: none;
	font-size: 14px;
	color: #3a3a3a;

}

.btn-back:active {
	outline: none;
	color: #011733;
}

.tab-menu {
	display: flex;
	list-style-type: none;
	border-bottom: 1px solid #ddd;
}

.tab-menu li a {
	display: block;
	padding: 10px;
	font-size: 16px;
	color: #9d9d9d;
}

.tab-menu li.active a {
	font-weight: 600;
	color: #0765ad;
}

.tab-menu-body {
	margin-top: 20px;
	border-radius: 5px;
	padding: 20px;
	border: 1px solid #a6b4db;
	display: none;
	background: #FFF;
}

.form-input-label {
	position: relative;
	border-bottom: 1px dashed #d5d5d5;
	padding-bottom: 13px;
	margin-bottom: 13px;
}

.form-input-label i {
	width: 20px;
}

.form-input-label label {
	font-weight: 500;
	color: #7094b0;
	margin-bottom: 0;
}

.form-input-label p {
	margin-left: 22px;
	margin-bottom: 0;
	text-transform: uppercase;
	font-size: 14px;
}

.popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	align-items: center;
	justify-content: center;
	z-index: 9999999;
	display: none;
	align-items: center;
	justify-content: center;
}

.popup-content {
	background: #FFF;
	padding: 30px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	color: #000;
	width: 90%;
	max-width: 500px;
	animation: fadeIn 0.2s ease-in-out;
	position: relative;
}

.popup.show {
	display: flex;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.99) translateY(-0.7em);
		transform-origin: top;
	}

	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

/* From Uiverse.io by ErzenXz */
.input {
	width: 100%;
	height: 45px;
	padding: 12px;
	border-radius: 5px;
	border: 1.5px solid lightgrey;
	outline: none;
	transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
	box-shadow: 0px 0px 20px -18px;
}

.input:hover {
	border: 2px solid lightgrey;
	box-shadow: 0px 0px 20px -17px;
}

.input:active {
	transform: scale(0.95);
}

.input:focus {
	border: 2px solid grey;
}

.list-kategori li input,
.list-product-sponsor li input {
	display: none;
}

.list-product-sponsor {
	list-style-type: none;
}

.popup-content i.fa-times {
	position: absolute;
	right: -10px;
	top: -10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	background: #f50808;
	color: white;
}

.list-kategori {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 16px;
	list-style-type: none;
}

.list-product-sponsor label,
.list-kategori label {
	cursor: pointer;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
	background: #fff;
	display: flex;
	flex-direction: column;
	transition: 0.3s;
	position: relative;
}

.list-product-sponsor label span {
	position: absolute;
	top: 10px;
	width: 15px;
	height: 15px;
	right: 10px;
	background: #FFF;
	border: 4px solid #0765ad;
	color: white;
	border-radius: 50%;
	font-size: 12px;
	display: none;
}

.list-kategori li input:checked+label,
.list-product-sponsor li input:checked+label {
	border-color: #0765ad;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	background: #0765ad3d;
}

.list-product-sponsor li input:checked+label span {
	display: block;
}

.list-kategori label h4 {
	font-size: 18px;
}

.table-program {
	border-radius: 10px;
	margin-bottom: 10px;
	border-left: 5px solid #933bb8;
	border-top: 1px dashed #e3aef9;
	border-right: 1px dashed #e3aef9;
	border-bottom: 1px dashed #e3aef9;
}

.table-program-body {
	padding: 20px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	background: #FFF;
	gap: 10px;
	border-radius: 5px;
}

.card-tiket {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	list-style-type: none;
	gap: 10px;
}

.card-tiket li {
	border: 1px solid #ddd;
	background: #FFF;
	margin-bottom: 10px;
	border-radius: 5px;
}

.card-tiket-body {
	padding: 20px;
}

.lines {
	position: relative;
	border-bottom: 1px dashed #ddd;
}

.lines-dashed {
	position: relative;
	border-bottom: 1px dashed #ddd;
	margin: 10px 0;
}

.lines::before {
	position: absolute;
	left: -15px;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50px;
	background: #f2f2f2;
}

.lines::after {
	position: absolute;
	right: -15px;
	content: '';
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50px;
	background: #f2f2f2;
}

.card-tiket-body ul {
	list-style-type: none;
}

.card-tiket-body ul li input {
	display: none;
}

.card-tiket-body ul li {
	border: none;
}

.card-tiket-body ul li label {
	padding: 15px;
	border-radius: 5px;
	border: 1px dashed #444;
	position: relative;
	display: block;
	cursor: pointer;
}

.card-tiket-body ul li input:checked+label {
	border: 1px dashed #011733;
	background: #01173314;
}

.card-tiket-body ul li label span {
	position: absolute;
	right: 10px;
	top: 10px;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	border: 4px solid #011733;
	display: none;
}

.card-tiket-body ul li input:checked+label span {
	display: block;
}

.bg-black {
	background: #000;
}

@media only screen and (max-width: 768px) {

	.table-program-body {
		grid-template-columns: 1fr;
	}

	.table-program-body a {
		display: block;
		width: 100%;
		font-size: 12px;
	}

	.review h6,
	.review h5 {
		font-size: 14px;
	}

	.list-program {
		width: 100%;
		flex-direction: column;
	}

	.list-program li {
		width: 100%;
	}

	.tab-menu li a {
		font-size: 12px;
	}

	.welcome {
		padding: 0;
		padding: 10px 25px;
	}

	.welcome h4 {
		font-size: 18px;
	}

	.content-page::before {
		height: 45px;
	}

	.card-custom h5,
	.card-custom h6 {
		font-size: 14px;
	}

	.list-invoice {
		display: flex;
		flex-direction: column;
	}

	.list-invoice li {
		width: 100%;
	}

	.loading-content {
		width: 80%;
	}

	.w-50,
	.w-75 {
		width: 100% !important;
	}

	.list-checkout li h5 {
		font-size: 12px;
	}

	.list-checkout li img {
		width: 100px;
		height: 40px;
	}

	.list-checkout p {
		font-size: 12px;
	}

	.modals-content.modals-lg {
		width: 90%;
	}

	.modals-content.modals-sm {
		width: 75%;
	}

	.slider img {
		height: 150px;
		object-fit: cover;
	}

	.mobile-menu {
		position: fixed;
		left: 0;
		width: 100%;
		bottom: 0;
		background: #fff;
		display: block;
		z-index: 999;
	}

	.mobile-menu ul {
		display: flex;
		justify-content: space-between;
		list-style-type: none;
	}

	.mobile-menu ul li {
		text-align: center;
		font-size: 11px;
	}

	.mobile-menu ul li span {
		display: block;
	}

	.mobile-menu ul li img {
		width: 16px;
		margin-bottom: 6px;
		opacity: 0.3;
	}

	.mobile-menu ul li a {
		color: #9c9c9c;
		padding: 14px 10px;
		display: block;
	}

	.mobile-menu ul li a.active {
		color: #011733;
		font-weight: 600;
	}

	.mobile-menu ul li a.active img {
		opacity: 1;
		filter: opacity(0.5) drop-shadow(0 0 0 rgb(72, 72, 217));
	}

	.detail {
		font-size: 12px;
	}

	.content {
		padding-bottom: 80px;
	}

	.content-pg::before {
		width: 150vw;
		border-bottom: 253px solid #011733;
		border-radius: 0 0 80% 80% / 0 0 75% 75%;
	}

	.dashboard {
		grid-template-columns: 1fr;
	}

	.sidebar {
		display: none;
	}

	.login-area {
		grid-template-columns: 1fr;
	}

	.login-area>div:first-child {
		display: none;
	}

	.form-area {
		width: 100%;
	}

	.alert {
		font-size: 12px;
	}

	.card-tiket {
		grid-template-columns: 1fr;
	}
}

.review-list li:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.review-list li {
	margin-bottom: 10px;
	border-bottom: 1px dashed #92e7ff;
	padding: 10px 0;
}