body {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	font-family: 'Karla', sans-serif;
	padding-bottom: auto;
	margin: 0px;

}

body * {
	-webkit-box-sizing: border-box;
	/* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;
	/* Firefox, other Gecko */
	box-sizing: border-box;
	/* Opera/IE 8+ */
	outline: none;
}

body>* {}

div.Clear {
	float: none;
	clear: both;
}

a {
	display: inline-block;
	cursor: pointer;
	text-decoration: none;
}

input,
select {
	outline: none;
}

.Tombol,
.tombol {
	display: inline-block;
	padding: 5px 10px;
	border: 1px solid #fff;
	border-radius: 4px;
	transition: all 0.2s ease;
	color: #fff;

}

.Tombol:hover,
.tombol:hover {
	background: #fff;
	color: #3061A0;
}

#Konten {
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	max-width: 900px;
	min-height: 100%;
	padding: 10px;
}

#Header {
	margin: 20px 0;
	text-align: center;
	color: #fff;
}

#Header .TopLogo,
#Header .Logo {
	margin: auto;
	position: relative;
	left: 0;
	right: 0;
	margin-bottom: 10px;
	margin-top: 20px;
	height: 100px;
	text-align: center;
}

#Header .Logo>div {
	display: inline-block;
}

#Header .Logo>div>div {
	display: flex;
	align-items: center;
	height: 100px;
}

#Header .Logo img {
	margin: 0px 20px;
	height: 60%;
}

/* #Header .logo .grid{	
	height: 100px;
	display: grid;
	grid-template-columns: calc(100% / 3) calc(100% / 3) auto;
	gap: 0px;	
}
#Header .logo div{	
	position: relative;
}
#Header .logo img{
	margin: auto;
	position: absolute;
	top:0;bottom:0;left:0;right:0;
	height: 60%;
	width: auto;
}
#Header .logo .kemnaker{
	height: 100px;
}
#Header .logo .kemnaker img{
	height: 100%;
}
#Header .logo .grid>div{
}
#Header .logo .fresh img{
	height: 60%;
} */
#Header h3 {
	color: #2776B6;
	margin: 10px 0px;
	font-size: 22px;
	text-shadow: 1px 1px 2px #fff;
}

#Header h3.pjk3 {
	font-size: 30px;
}

#Header h1,
#Header h2 {
	text-transform: uppercase;
}

#Header h1 {
	font-size: 33px;
	color: #2776B6;
	text-shadow: 1px 1px 2px #fff;
	margin: 10px 0px;
	padding: 0px;
}

#Header h2 {
	color: #2776B6;
	font-size: 28px;
	text-shadow: 1px 1px 2px #fff;
	margin: 10px 0px;
	padding: 0px;
}

#Header small {
	color: #2776B6;
	text-shadow: 1px 1px 2px #fff;
	font-size: 18px;
}

#Konten iframe {
	border-width: 0px;
}

.DivForm {
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	border: 1px solid #fff;
	padding: 10px;
	width: 500px;
	height: calc(100% - 150px);
	overflow: hidden;
}

.IframeForm {
	height: 100%;
	width: 100%;
}

#footer {
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

#footer .FootIMG {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 0px;
	box-shadow: 0px -4px 3px rgba(0, 0, 0, 0.2);
}

#footer .FootIMG img {
	width: 100%;
}


@media only screen and (max-width: 500px) {
	body {
		background-repeat: no-repeat;
		background-attachment: fixed;
		background-position: center;
		background-size: cover;
	}

	#Header {
		margin: 20px 0;
	}

	#Header h1 {
		font-size: 26px;
	}

	#Header h3>span {
		display: block;
		text-align: center;
	}

	#Header .logo {
		width: 80%;
	}

	#Header .logo img {
		height: 60%;
		width: auto;
	}

	#Header .logo .fresh img {
		height: 50%;
		width: auto;
	}

	#footer .FootIMG {
		grid-template-columns: 100%;
	}

}

.logout {
	background: #E84045;
	color: #fff;
}

#Loading {
	margin: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.6);
	visibility: visible;
	opacity: 1;
	transition: all 0.5s ease;
	z-index: 99999;
}

.Loading {
	margin: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 40px;
	height: 40px;
	animation: Loading 2.5s infinite linear both;
}

.Loading-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	animation: Loading-dot 2.0s infinite ease-in-out both;
}

.Loading-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: #fff;
	border-radius: 100%;
	animation: Loading-dot-before 2.0s infinite ease-in-out both;
}

.Loading-dot:nth-child(1) {
	animation-delay: -1.1s;
}

.Loading-dot:nth-child(2) {
	animation-delay: -1.0s;
}

.Loading-dot:nth-child(3) {
	animation-delay: -0.9s;
}

.Loading-dot:nth-child(4) {
	animation-delay: -0.8s;
}

.Loading-dot:nth-child(5) {
	animation-delay: -0.7s;
}

.Loading-dot:nth-child(6) {
	animation-delay: -0.6s;
}

.Loading-dot:nth-child(1):before {
	animation-delay: -1.1s;
}

.Loading-dot:nth-child(2):before {
	animation-delay: -1.0s;
}

.Loading-dot:nth-child(3):before {
	animation-delay: -0.9s;
}

.Loading-dot:nth-child(4):before {
	animation-delay: -0.8s;
}

.Loading-dot:nth-child(5):before {
	animation-delay: -0.7s;
}

.Loading-dot:nth-child(6):before {
	animation-delay: -0.6s;
}

#KontenView {
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	min-height: 350px;
	height: calc(100% - 350px);
	text-align: center;
	overflow: hidden;
	transition: all 0.5s ease;
}

#KontenView .Menu {
	margin: auto;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	display: grid;
	grid-template-columns: calc(calc(100% / 3) - calc(20px / 3)) calc(calc(100% / 3) - calc(20px / 3)) auto;
	gap: 10px;
	transition: all 0.5s ease;
}

#KontenView .Menu a {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	font-size: 25px;
	padding: 50px 30px;
	font-weight: bold;
	color: #fff;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
	transition: all 0.2s ease;
}

#ClickView {
	margin: auto;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s ease;
	z-index: 7;
}

#ClickView .Close {
	margin: auto;
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	width: 80px;
	text-align: center;
	background: rgba(239, 25, 25, 0.5);
	z-index: 5;
}

#ClickViewData {
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 100%;
	max-height: 100%;
}

#ClickViewData.ViewImage {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100%;
}

#ClickViewData.ViewImage h3 {
	display: inline-block;
	margin: auto;
	position: absolute;
	left: 0;
	top: 0;
	padding: 5px 20px;
	background: rgba(255, 255, 255, 0.5);
}

#ClickViewData.ViewImage a {
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	height: 50px;
	width: 50px;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	box-shadow: 1px 1px 2px #000;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	transition: all 0.2s ease;
}

#ClickViewData.ViewImage a.DownloadIMG {
	top: auto;
	bottom: 10px;
	right: 10px;
	height: auto;
	width: auto;
	background: rgba(255, 255, 255, 0.7);
	opacity: 1;
	border-radius: 2px;
}

#ClickViewData.ViewImage a.P {
	left: 0;
}

#ClickViewData.ViewImage a:before,
#ClickViewData.ViewImage a:after {
	content: "";
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.5);
	width: 10px;
	height: 50%;
	transition: all 0.2s ease;
}

#ClickViewData.ViewImage a.P:before {
	top: 0;
	-ms-transform: skewX(-20deg);
	transform: skewX(-20deg);
}

#ClickViewData.ViewImage a.P:after {
	bottom: 0;
	-ms-transform: skewX(20deg);
	transform: skewX(20deg);
}

#ClickViewData.ViewImage a.N {
	right: 0;
}

#ClickViewData.ViewImage a.N:before {
	top: 0;
	-ms-transform: skewX(20deg);
	transform: skewX(20deg);
}

#ClickViewData.ViewImage a.N:after {
	bottom: 0;
	-ms-transform: skewX(-20deg);
	transform: skewX(-20deg);
}

#ClickViewData.ViewImage a:hover {
	border: 2px solid rgba(255, 255, 255, 1);
}

#ClickViewData.ViewImage a:hover:before,
#ClickViewData.ViewImage a:hover:after {
	background: rgba(255, 255, 255, 1);
}

#Menu_Admin {
	text-align: center;
	margin-top: 20px;
}

#Menu_Admin a {
	position: relative;
	background: #CDEFFF;
	color: #5A8FAA;
	border: 1px solid #5A8FAA;
}

#Menu_Admin a:hover {
	background: #63BCE8
}

.NoPelatihan {
	display: inline-block;
	padding: 10px;
	text-align: center;
	background: #FFCACA;
	border: 1px solid #D26363;
	margin-bottom: 50px;
	color: #C94141;
}

@keyframes Loading {
	100% {
		transform: rotate(360deg);
	}
}

@keyframes Loading-dot {

	80%,
	100% {
		transform: rotate(360deg);
	}
}

@keyframes Loading-dot-before {
	50% {
		transform: scale(0.4);
	}

	100%,
	0% {
		transform: scale(1.0);
	}
}