body {
	min-width: auto;
}
input.tautan {
	font-size: inherit;
	font-family: inherit;
}
a, .tautan {
	color: darkblue;
	cursor: pointer;
}
a:hover, .tautan:hover {
	text-decoration: underline;
}
.kepala {
	position: static;
}
@media only screen and (max-width: 768px) {
	.kepala .alogo {
		margin-right: 0;
	}
	.kepala .divmenu {
		display: none;
	}
	.kepala {
		padding-top: 12px;
		padding-left: 12px;
		padding-right: 12px;
	}
	.kepala .alogo {
		width: 158px;
		height: 45px;
	}
	.kepala .divbahasa {
		font-size: 12px;
	}
	.kepala .sempadan {
		margin-top: 18px;
	}
	.badan, .kaki {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 18px;
	}
	.kaki .logo img {
		width: 210px;
		height: 60px;
	}
	.kaki .medsos a img {
		width: 38px;
	}
	.kaki .menu a {
		font-size: 20px;
	}
	h2 {
		font-size: 36px;
	}
	h3 {
		font-size: 28px;
	}
}

.hlist ol, .hlist ul {
	display: inline-block;
	margin: 0;
}
.hlist li {
	display: inline;
	margin: 0;
}
.hlist li:after {
	content: " · ";
	font-weight: bold;
}
.hlist li:last-child:after {
	content: none;
}
.hlist ol ol, .hlist ol ul,
.hlist ul ol, .hlist ul ul {
	display: inline;
}
.hlist li li:first-child:before {
	content: " (";
	font-weight: normal;
}
.hlist li li:last-child:after {
	content: ")";
	font-weight: normal;
}



.balai.menu {
	background: #4a5658;
	padding: 12.5px 75px;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: -0.5px;
	color: #ffffff;
}
.balai.menu p {
	display: inline;
	margin-right: 1em;
}
.balai.menu a {
	color: #84b8f5;
}
.balai.menu ul {
	display: inline-block;
}
.submenu {
	display: flex;
	gap: 25px;
	min-height: 50vh;
}
.submenu .submenu_kepala {
	width: 25%;
	border-right: 1px solid gray;
}
.submenu .submenu_kepala ul {
	padding: revert;
}
.submenu .submenu_kepala li a.aktif {
	color: black;
	font-weight: bold;
}
.submenu .submenu_kepala li a.aktif:hover {
	text-decoration: none;
}
.submenu .submenu_isi {
	width: 75%;
}
@media only screen and (max-width: 768px) {
	.balai.menu {
		padding-left: 10px;
		padding-right: 10px;
		font-size: 18px;
	}
	.submenu {
		display: block;
	}
	.submenu .submenu_kepala {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid gray;
	}
	.submenu .submenu_isi {
		width: 100%;
	}
	.submenu .submenu_kepala ul {
		padding: 10px;
		text-align: center;
	}
	.submenu .submenu_kepala li {
		display: inline;
		margin: 0;
		text-wrap: nowrap;
	}
	.submenu .submenu_kepala li:after {
		content: " | ";
		font-weight: bold;
		color: lightgray;
	}
	.submenu .submenu_kepala li:last-child:after {
		content: none;
	}
}



.balai.pesan .galat, .balai.pesan .peringatan, .balai.pesan .info, .balai.pesan .sukses {
	display: block;
	padding: 12.5px 75px;
	font-size: 20px;
	margin: 1px 0;
}
.balai.pesan .galat {
	background-color: pink;
	color: red;
}
.balai.pesan .peringatan {
	background-color: khaki;
	color: darkorange;
}
.balai.pesan .info {
	background-color: lightblue;
	color: darkblue;
}
.balai.pesan .sukses {
	background-color: lightgreen;
	color: darkgreen;
}
@media only screen and (max-width: 768px) {
	.balai.pesan .galat, .balai.pesan .peringatan, .balai.pesan .info, .balai.pesan .sukses {
		padding: 10px;
		font-size: 18px;
	}
}



/* Balai Utama */
.pergike {
	background: #84b8f5;
	display: block;
	border-radius: 15px;
	width: fit-content;
	margin: auto;
	padding: 10px;
}
.pergike td {
	padding: 5px;
}
.pergike select {
	width: 300px;
	height: 2em;
	border: 1px solid gray;
	border-radius: 10px;
	padding: 5px;
	background-color: #ffffff;
	font-size: inherit;
	font-family: inherit;
	appearance: menulist-button;
}
.pergike option {
	padding: 5px;
}
.pergike select.tempat {
	width: 250px;
}
.pergike select.waktu {
	width: 175px;
}
@media only screen and (max-width: 768px) {
	.pergike tr {
		display: grid;
	}
	.pergike select.nama {
		min-width: 100%;
	}
	.pergike select.tempat {
		width: 58%;
	}
	.pergike select.waktu {
		width: 40%;
	}
}

.daftaracara {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 10px;
	padding: 25px;
	text-align: center;
}
.acara {
	width: 405px;
	height: 250px;
	overflow: hidden;
	margin: auto;
	border-radius: 15px;
	box-shadow: lightgray 3px 3px 20px 5px;
	color: inherit;
}
.acara:hover {
	background: #ffc05d20;
	text-decoration: none;
	box-shadow: gray 3px 3px 10px 2px;
}
.acara:hover img {
	filter: brightness(1.2);
}
.acara:hover .nama {
	text-decoration: underline;
}
.acara img {
	width: 100%; /* 405px */
	height: 135px;
	object-fit: cover;
	border-bottom: 1px solid black;
}
.acara .waktu {
	width: 75px;
	height: 105px;
	float: left;
}
.acara .waktu .bulan {
	color: red;
	font-size: 18px;
}
.acara .waktu .hari {
	font-size: 32px;
	font-weight: bold;
}
.acara .waktu .info {
	color: gray;
	font-size: 18px;
	line-height: 0.8;
}
.acara .nama, .acara .tempat {
	margin-left: 80px;
	text-align: left;
}
.acara .nama {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.25;
	height: 3em;
	overflow: auto;
}
.acara .tempat {
	margin-right: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 1.5em;
	color: gray;
}
@media only screen and (max-width: 768px) {
	.acara {
		width: 100%;
	}
}



/* Balai Acara */
.balai_acara {
	padding: 0
}
.balai_acara .luar {
	padding: 25px 75px;
	margin-bottom: -25px;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.balai_acara .panji {
	width: 100%;
	max-height: 65vh;
	object-fit: cover;
	margin-bottom: -10px;
}
.balai_acara .detail {
	background: #ffffff80;
	padding: 20px;
}
.balai_acara .atas, .balai_acara .bawah .kiri, .balai_acara .bawah .kanan {
	background: white;
	padding: 25px;
}
.balai_acara .atas {
	padding: 20px;
}
.balai_acara .atas .nama {
	margin: 0;
}
.balai_acara .atas .info {
	display: flex;
	gap: 25px;
}
.balai_acara .atas table {
	width: 67%;
}
.balai_acara .atas table td {
	vertical-align: top;
}
.balai_acara .atas table td.ikon {
	width: 25px;
	min-width: 25px;
	padding-top: 3px;
}
.balai_acara .atas table .tanggal {
	white-space: pre-wrap;
}
.balai_acara .atas .penyelenggara {
	width: 33%;
	min-width: 300px;
	padding-left: 5px;
}
.balai_acara .atas .penyelenggara b {
	color: #ff597b;
}
.balai_acara .bawah {
	margin-top: 25px;
	display: flex;
	gap: 25px;
}
.balai_acara .bawah h3 {
	margin: 0.5em 0;
}
.balai_acara .bawah .kiri {
	width: 67%;
	font-size: 90%;
}
.balai_acara .bawah .kiri p {
	margin: revert;
}
.balai_acara .bawah .kiri img {
	max-width: 100%;
}
.balai_acara .bawah .kanan {
	width: 33%;
	min-width: 315px;
	text-align: left;
}
.balai_acara .bawah .kanan table {
	width: 100%;
}
.balai_acara .bawah .kanan table tr td {
	padding: 8px 0;
}
.balai_acara .bawah .kanan table tbody tr td {
	border-bottom: 1px dashed gray;
}
.balai_acara .bawah .kanan table tbody tr:last-child td {
	border-bottom: none;
}
.balai_acara .bawah .kanan table tbody td:nth-child(2) {
	width: 110px;
	text-align: right;
	font-size: 14px;
	font-style: italic;
	letter-spacing: -1px;
}
.balai_acara .bawah .kanan table tbody td:nth-child(2) select {
	width: 60px;
	height: 2em;
	border: 1px solid gray;
	border-radius: 2px;
	padding: 5px;
	background-color: #ffffff;
	font-size: 20px;
	font-family: inherit;
	appearance: menulist-button;
}
.balai_acara .bawah .kanan table tfoot hr {
	border: revert;
}
.balai_acara .bawah .kanan table tfoot td:nth-child(2) {
	text-align: right;
}
.balai_acara .bawah .kanan input[type=button],
.balai_acara dialog input[type=submit] {
	background: #84b8f5;
	color: #ffffff;
	font-family: inherit;
	font-size: 20px;
	padding: 10px;
	cursor: pointer;
	width: 100%;
	margin-bottom: 10px;
}
.balai_acara .bawah .kanan input[type=button]:hover,
.balai_acara dialog input[type=submit]:hover {
	box-shadow: 0px 26px 30px -16px #84b8f5c0;
}
.balai_acara .bawah .kanan input[type=button]:disabled,
.balai_acara dialog input[type=submit]:disabled {
	background-color: lightgray;
}
.balai_acara .bawah .kanan input[type=button]:disabled:hover,
.balai_acara dialog input[type=submit]:disabled:hover {
	box-shadow: none;
}
.balai_acara dialog {
	margin: auto;
	padding: 25px;
	border: 20px solid gray;
	background: #ffffff;
}
.balai_acara dialog::backdrop {
	background-color: #00000080;
}
.balai_acara dialog .ketentuan {
	font-size: 90%;
}
.balai_acara dialog .ketentuan h3 {
	margin-top: 0;
}
.balai_acara .bawah .kiri h4::before,
.balai_acara dialog .ketentuan h4::before {
	display: inline-block;
	width: 0.25em;
	height: 1em;
	content: '';
	background-color: #ffc05d;
	margin: 0 0.25em -0.125em -0.5em;
}
.balai_acara .bawah .kiri ul, .balai_acara .bawah .kiri ol,
.balai_acara dialog .ketentuan ul, .balai_acara dialog .ketentuan ol {
	padding: revert;
}
.balai_acara dialog table {
	margin:-10px;
}
.balai_acara dialog table tr td {
	padding: 10px;
}
.balai_acara dialog input[type=text],
.balai_acara dialog input[type=tel],
.balai_acara dialog input[type=email] {
	width: 300px;
	border: 1px solid gray;
	border-radius: 2px;
	padding: 5px;
	background-color: #ffffff;
	font-size: inherit;
	font-family: inherit;
}
.balai_acara dialog input[type=email]:read-only, .balai_acara dialog input[type=email]:-moz-read-only {
	color: gray;
	background-color: #dddddd;
}
.balai_acara dialog input[type=text]:focus,
.balai_acara dialog input[type=tel]:focus,
.balai_acara dialog input[type=email]:focus {
	outline: none;
	box-shadow: none;
	border-bottom: 2px solid #4488ff;
	margin-bottom: -1px;
}
.balai_acara dialog span {
	font-size: 14px;
	font-style: italic;
	color: gray;
}
.balai_acara dialog input[type=checkbox] {
	width: 1rem;
	height: 1rem;
	appearance: revert;
}
@media only screen and (max-width: 768px) {
	/* For mobile: */
	.balai_acara .luar {
		padding-left: 0;
		padding-right: 0;
	}
	.balai_acara .info {
		flex-wrap: wrap;
	}
	.balai_acara .atas table, .balai_acara .atas .penyelenggara {
		width: 100%;
	}
	.balai_acara .bawah {
		flex-wrap: wrap-reverse;
	}
	.balai_acara .bawah .kiri, .balai_acara .bawah .kanan {
		width: 100%;
	}
	.balai_acara dialog {
		min-width: 98vw;
		top: 130px;
	}
	.balai_acara dialog table tr td {
		display: block;
		padding: 5px 10px;
	}
	.balai_acara dialog input[type=text],
	.balai_acara dialog input[type=tel],
	.balai_acara dialog input[type=email] {
		width: 100%;
	}
}



/* Balai Masuk */
.balai_masuk {
	margin-bottom: -25px;
	background: linear-gradient( 0deg,
		rgba(255, 89, 123, 1) 10%,
		rgba(255, 192, 93, 1) 100%
	);
	min-height: 550px;
	min-height: max(82.5vh, 550px);
	color: #ffffff;
}
.balai_masuk h2 {
	color: #ffffff;
}
.balai_masuk .formulir {
	border-radius: 20px;
	margin: 25px auto 50px;
	padding: 25px;
	width: 450px;
	max-width: 90vw;
	background: linear-gradient( 135deg,
		rgba(0, 0, 0, 0.1) 25%,
		rgba(0, 0, 0, 0.3) 100%
	);
	box-shadow: lightgray 3px 3px 20px 5px;
}
.balai_masuk .formulir label {
	display: block;
	margin-bottom: 25px;
	color: #dddddd;
}
.balai_masuk .formulir input[type=email],
.balai_masuk .formulir input[type=password],
.balai_masuk .formulir input[type=text] {
	width: 100%;
	border: 1px solid #ffffff;
	border-radius: 5px;
	padding: 12.5px;
	background: #ffffff40;
	color: #ffffff;
	font-size: inherit;
	font-family: inherit;
}
.balai_masuk .formulir input[type=email]:focus,
.balai_masuk .formulir input[type=password]:focus,
.balai_masuk .formulir input[type=text]:focus {
	outline: none;
	box-shadow: none;
	border-bottom: 2px solid #4488ff;
	margin-bottom: -1px;
}
.balai_masuk .formulir input[type=submit] {
	width: 100%;
	border-radius: 5px;
	padding: 12.5px;
	background: #84b8f5;
	color: #ffffff;
	font-size: inherit;
	font-family: inherit;
	font-weight: bold;
	margin: 12.5px 0;
	cursor: pointer;
}
.balai_masuk .ekstra a {
	color: #84b8f5;
}
@media only screen and (max-width: 768px) {
	.balai_masuk {
		min-height: 450px;
		min-height: max(80vh, 450px);
	}
}



/* Akun */
.balai_akun #formulir_profil, .balai_akun #formulir_surel, .balai_akun #formulir_sandi {
	display: none;
	scroll-margin-top: 100vh;
	margin-bottom: 1em;
}
.balai_akun #formulir_profil:target, .balai_akun #formulir_surel:target, .balai_akun #formulir_sandi:target {
	display: block;
}
.balai_akun table tr td {
	padding: 10px;
}
.balai_akun table tr td:first-child {
	width: 250px;
}
.balai_akun input[type=text],
.balai_akun input[type=tel],
.balai_akun input[type=email],
.balai_akun input[type=password] {
	width: 350px;
	border: 1px solid gray;
	border-radius: 2px;
	padding: 5px;
	background-color: #ffffff;
	font-size: inherit;
	font-family: inherit;
}
.balai_akun input[type=email]:read-only, .balai_akun input[type=email]:-moz-read-only {
	color: gray;
	background-color: #dddddd;
}
.balai_akun input[type=text]:focus,
.balai_akun input[type=tel]:focus,
.balai_akun input[type=email]:focus,
.balai_akun input[type=password]:focus {
	outline: none;
	box-shadow: none;
	border-bottom: 2px solid #4488ff;
	margin-bottom: -1px;
}
.balai_akun input[type=submit] {
	background: #84b8f5;
	color: #ffffff;
	font-family: inherit;
	font-size: 20px;
	padding: 10px;
	margin: 10px auto;
	cursor: pointer;
	width: 200px;
	display: block;
}
.balai_akun input[type=submit]:hover {
	box-shadow: 0px 26px 30px -16px #84b8f5c0;
}
@media only screen and (max-width: 768px) {
	.balai_akun table tr {
		display: grid;
	}
	.balai_akun table tr td {
		display: block;
		padding: 5px 10px;
	}
	.balai_akun table tr td:first-child {
		width: auto;
	}
	.balai_akun table tr td:nth-child(2) {
		display: none;
	}
}



/* Pesanan */
.balai_pesanan #tunda, .balai_pesanan #selesai {
	display: none;
	scroll-margin-top: 100vh;
	margin-bottom: 1em;
}
.balai_pesanan #tunda:target, .balai_pesanan #selesai:target {
	display: block;
}
.balai_pesanan table {
	border-collapse: collapse;
}
.balai_pesanan table thead th {
	border-bottom: 1px solid black;
	padding: 0 0.5em;
}
.balai_pesanan table tbody td {
	padding: 0 0.5em;
}
