body {
	background: #000000;
	background-size: cover;
	background-position: center;
	margin: 0 auto;
	font-family: "Dosis" !important;
	color: var(--text-light);
	font-size: 17px;
	background-attachment: fixed;
}

/* thai */
@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 400;
	src: local("Kanit Regular"), local("Kanit-Regular"),
		url(../fonts/nKKZ-Go6G5tXcraBGwCYdA.woff2) format("woff2");
	unicode-range: U+0E01-0E5B, U+200C-200D, U+25CC;
}

/* vietnamese */
@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 400;
	src: local("Kanit Regular"), local("Kanit-Regular"),
		url(../fonts/nKKZ-Go6G5tXcraaGwCYdA.woff2) format("woff2");
	unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}

/* latin-ext */
@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 400;
	src: local("Kanit Regular"), local("Kanit-Regular"),
		url(../fonts/nKKZ-Go6G5tXcrabGwCYdA.woff2) format("woff2");
	unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
		U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
	font-family: "Kanit";
	font-style: normal;
	font-weight: 400;
	src: local("Kanit Regular"), local("Kanit-Regular"),
		url(../fonts/nKKZ-Go6G5tXcraVGwA.woff2) format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
		U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
		U+FEFF, U+FFFD;
}

.well {
	color: #000;
}

a {
	color: var(--text-highlight);
	text-decoration: none;
}

a:hover {
	font-style: italic;
	color: var(--link-light-hover);
	text-decoration: none;
	text-shadow: 2px 1px 5px var(--text-shadow);
}

a:activem a:focus {
	font-style: italic;
	color: #fff;
	text-shadow: 2px 1px 5px var(--text-shadow);
}
a .bg-main.border-r {
    color: var(--text)!important;
}
button,
.btn-main {
	background: linear-gradient(0deg,
			var(--bg-light) 0%,
			var(--bg) 50%,
			var(--bg-light) 100%);
	border: 1px solid var(--border-div-light);
	font-size: 17px;
	text-transform: uppercase;
	border-radius: 5px;
	padding: 5px;
	min-width: 100px;
	font-weight: 600;
	color: var(--text);
	text-shadow: 1px 1px 3px var(--text-shadow);
	transition: all 0.5s ease;
}

button:hover,
.btn-main:hover {
	color: var(--text-hover);
	font-style: italic;
	text-shadow: 2px 3px 5px var(--text-shadow);
}

.alt {
	width: 28%;
	margin: 0 auto;
	background: var(--bg-light);
	border: 1px solid #989c93;
	border-radius: 5px;
}

.border-r,
.menuwap,
.totalinfo,
.info-bot,
.general-table,
#mainForm,
#pnl-pesan {
	padding: 15px;
	border: 1px solid var(--border-div);
	border-radius: 5px;
	margin: 0;
	background: var(--bg);
}

.info-bot ul {
	list-style-type: none;
}

h3 {
	display: block;
	font-size: 1.17em;
	margin-block-start: 1em;
	margin-block-end: 1em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	font-weight: bold;
}

.fyellow {
	color: yellow;
}

.fyellow:hover {
	color: yellow;
	font-weight: bold;
}

h2 {
	display: block;
	font-size: 1.5em;
	font-weight: bold;
}

button:hover,
.isbutton:hover {
	background: var(--bg-btn-hover);
	/* background: rgb(0, 0, 0); */
}

ul li a:hover,
a:hover {
	font-weight: bold;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.lg {
	font-size: 18px;
	padding: 10px;
}

.subtitle,
button {
	font-size: 14px;
}

#cover-spin::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	height: 60px;
	width: 60px;
	margin: 0px auto;
	-webkit-animation: rotation 0.6s infinite linear;
	-moz-animation: rotation 0.6s infinite linear;
	-o-animation: rotation 0.6s infinite linear;
	animation: rotation 0.6s infinite linear;
	border-left: 6px solid rgba(0, 174, 239, 0.15);
	border-right: 6px solid rgba(0, 174, 239, 0.15);
	border-bottom: 6px solid rgba(0, 174, 239, 0.15);
	border-top: 6px solid rgba(0, 174, 239, 0.8);
	border-radius: 100%;
	z-index: 100;
}

@-webkit-keyframes rotation {
	from {
		-webkit-transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
	}
}

@-moz-keyframes rotation {
	from {
		-moz-transform: rotate(0deg);
	}

	to {
		-moz-transform: rotate(359deg);
	}
}

@-o-keyframes rotation {
	from {
		-o-transform: rotate(0deg);
	}

	to {
		-o-transform: rotate(359deg);
	}
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

#cover-spin {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	z-index: 9999;
	display: none;
}

.pall-5 {
	padding: 5px;
}

.ptb-5 {
	padding-top: 5px;
	padding-bottom: 5px;
}

.mb-2 {
	margin-bottom: 2px;
}

.btn-red {
	background: rgb(255, 0, 0);
	border-color: rgb(255, 0, 0);
	color: #fff;
}

.tbl-content {
	background: var(--bg-4);
	border: 1px solid var(--border-div-darker);
}

.tbl-content td,
.tbl-content th {
	border-color: var(--border-div-darker) !important;
}

.tbl-content th,
.tbl-content td {
	padding: 5px;
	text-align: center;
	font-weight: bold;
}

.all-center * {
	text-align: center !important;
}

.all-center {
	background: var(--bg-dark);
	letter-spacing: 0.1em;
}

.tbl-style,
.tbl-style * {
	padding: 5px;
	font-size: 15px !important;
	background: var(--bg-4);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.form-control-block {
	width: 100%;
	padding: 5px;
}

input,
select,
button {
	padding: 5px;
}

.fred,
.fred * {
	color: #fdfdfd;
}

.link-none,
.link-none:active,
.link-none:hover {
	text-decoration: none;
}

.mb-15 {
	margin-bottom: 15px;
}

/* a button,
button,
.isbutton,
.bg-badge {
	color: #fff;
	border: 1px solid #9c9a93;
	background: linear-gradient(
		0deg,
		rgb(102, 96, 7) 0%,
		rgb(240, 230, 97) 50%,
		rgb(155, 148, 18) 100%
	);
	padding: 5px 10px;
	text-shadow: 2px 1px 1px black;
	transition: all 0.5s ease;
} */
input,
select,
textarea {
	color: #000;
}

.content {
	text-align: center;
	/* font-family: "Ruda" !important; */
}

.error {
	color: #d00;
}

.success {
	color: #0e9800;
}

.info {
	color: #0026cb;
}

ul {
	padding: 0;
	margin: 0;
}

.general-ul li {
	margin: 8px 0;
}

.menuhome {
	background: var(--bg-4);
}

.menuhome li,
.menulocation li {
	display: block;
}

.menuhome li a {
	display: block;
	border: 1px solid var(--border-div-darker);
	padding: 10px;
	text-transform: uppercase;
}

.menuhome li a:hover {
	background: var(--bg-darker);
	text-decoration: none;
}

.menulocation li {
	background: #a56000;
}

.menulocation li a {
	display: block;
	color: #fff;
	border: 1px solid #fff;
	padding: 5px;
}

.menulocation li a:hover {
	background: #000000;
	text-decoration: none;
}

.purchaser {
	width: 100%;
	height: 200px;
}

.general-table td,
.general-table th {
	padding: 5px;
}

label.errorz,
label.error {
	display: block;
	color: red;
}

.info table {
	width: 100%;
	margin-bottom: 10px;
}

.info table td,
.info table th {
	padding: 1px 5px;
	border: 1px solid #000;
	border-collapse: collapse;
}

.btncover a {
	text-decoration: none;
}

@media screen and (max-width: 480px) {
	.alt {
		width: 86%;
	}
}
.info-bot p span {
	color: var(--text-highlight);
}
.info-bot {
	padding: 7px;
	border: 1px solid var(--border);
	border-radius: 5px;
	margin: 0;
	background: var(--bg-4);
	color: var(--text);
}