html {
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;

	box-sizing: border-box;
	font-size: 62.5%;
}

*,
:after,
:before {
	box-sizing: inherit;
}

body {
	max-width: 120rem;
	width: 96%;
	padding: 0 calc(2rem / 2);
	line-height: 1.6;

	margin: 0 auto;
	margin-top: 7vh;

	background: #282A36;
	color: #F5F5F5;

	font-size: 1.6rem;
	font-family: monospace;
}

nav {
	margin-bottom: 3vh;
}

a, .no-pm li a {
	color: #0DEE79;
}

nav a {
	margin-right: 2vh;
	font-size: 1.1em;
}

main a {
	color: #39DDFB;
	text-decoration: none;
}

p {
	margin-top: 0;
	font-size: 1.4em;
}

h1 {
	margin: unset;
	font-size: 3.1em;
	line-height: 1.2;
}

h2 {
	font-weight: 300;
	margin: unset;
	font-size: 2em;
}

ol {
	margin-top: unset;
}

ol li {
	margin-top: 0;
	font-size: 1.2em;
}

article {
    background: #435585;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #0CF082;
}

blockquote {
	background: #262626;
	padding: 1.5rem 2rem;
	margin-right: 0;
	margin-left: 0;
}

button {
	background: white;
	color: black;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: 4px;

	font-family: monospace;
	font-size: 1.6rem;
	line-height: 1;
	padding: 1rem 2.5rem;
	margin-bottom: 1vh;

	transform: scale(1);
	transition: opacity 0.2s ease;
}

button:hover {
	background: #EEEEEC;
}

button:active {
	transform: scale(0.98);
	background: #BABDB6;
}

input[type="number"],
input[type="text"],
select,
textarea {
	background: #435585;
	color: white;
	border: 1px solid #0CF082;
	border-radius: 4px;

	font-family: inherit;
	font-size: 1.2em;

	padding: 0.8rem 1rem;
	display: block;
	transition: all 0.2s ease;
	width: 100%;
}

input[type="number"]:hover,
input[type="text"]:hover,
select:hover,
textarea:hover {
	border-color: #bbb;
}

input[type="number"]:focus,
input[type="text"]:focus,
select:focus,
textarea:hover {
	border-color: #39DDFB;
	box-shadow: 0 0 1px #39DDFB;
	outline: none;
}

textarea {
	outline: none;
}

select {
	appearance: none;
	background: #435585 no-repeat 100%;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='white'><polygon points='0,0 60,0 30,40'/></svg>");
	background-origin: content-box;
	background-size: 1ex;
}

button:disabled,
button:disabled:hover,
input:disabled,
input:disabled:hover {
  cursor: not-allowed;
}


.fullwidth {
	width: 100%;
}

.no-select {
	user-select: none;
}
.no-margin {
	margin: unset;
}
.mb-1 {
	margin-bottom: 1vh;
}
.mb-2 {
	margin-bottom: 2vh;
}



.bulan ul li time {
	flex: 0 0 18vh;
}

.no-pm {
	padding: unset;
	margin: unset;
}

.no-pm li {
	margin: unset;
	list-style-type: none;

	font-size: 1.2em;
	line-height: 1.6;

	display: flex;
	margin-bottom: 1.5vh;
}

.no-pm li time {
	color: #39DDFB;
	flex: 0 0 15vh;
}

.bulan .no-pm li {
	margin: unset;
	list-style-type: none;

	font-size: 1.2em;
	line-height: 1.6;

	display: flex;
	margin-bottom: 0;
}

.bulan ul {
	margin-bottom: 2.5vh;
}



/*
	row & column
	stolen from github.com/jenil/chota v0.9.2 hehe
*/
.row {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin-left: calc(2rem / -2);
	margin-right: calc(2rem / -2);
}

.col {
	flex: 1;
}

.col {
	margin: 0 calc(2rem / 2) calc(2rem / 2);
}



@media screen and (max-width: 650px) {
	nav a {
		font-size: 1em;
	}

	h1 {
		font-size: 2.3em;
	}

	h2 {
		font-size: 1.7em;
	}

	p {
		font-size: 1.2em;
	}

	.no-pm li {
		flex-direction: column;
		margin-bottom: 1.5vh;
	}

	.bulan .no-pm li span {
		margin: 0 0 2vh 0;
	}

	.no-pm li a {
		flex: 0 0 4.5vh;
	}

	.no-pm li time {
		flex: 0;
	}

	.bulan ul li time {
		flex: 0;
	}

	.col {
		flex: 0 1 100%;
		max-width: 100%;
	}

	.mobile-reverse {
		flex-flow: row-reverse wrap-reverse;
	}
}

@media screen and (min-width: 900px) {
	.col-2-md {
		flex: 0 0 calc(16.66667% - 2rem);
		max-width: calc(16.66667% - 2rem);
	}
	.col-4-md {
		flex: 0 0 calc(33.33333% - 2rem);
		max-width: calc(33.33333% - 2rem);
	}
	.col-8-md {
		flex: 0 0 calc(66.66667% - 2rem);
		max-width: calc(66.66667% - 2rem);
	}
}

@media screen and (min-width: 1200px) {
	.col-2-lg {
		flex: 0 0 calc(16.66667% - 2rem);
		max-width: calc(16.66667% - 2rem);
	}
	.col-4-lg {
		flex: 0 0 calc(33.33333% - 2rem);
		max-width: calc(33.33333% - 2rem);
	}
	.col-8-lg {
		flex: 0 0 calc(66.66667% - 2rem);
		max-width: calc(66.66667% - 2rem);
	}
}

.is-hidden {
    display: none;
}

#qrcode {
	padding: 20px;
}
.white-box {
	background: white;
}
