body{
	font-family: 'Poppins', sans-serif;
	margin:0;
	font-size:11pt;
}
header {
    background: #065081;
    text-align: center;
    padding: 15px 0;
	margin-bottom:15px;
}
header h1 {
    color: #fff;
    font-size: 14pt;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}
.container {
    padding: 0 15px;
}
.thumbnail-penilain {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
	justify-content:space-between;
    font-weight: 500;
    align-items: flex-start;
	margin-bottom:15px;
}
a.back-button {
    position: absolute;
    width: 24px;
    top: 17px;
    left: 13px;
}
.score-penilaian select:active{outline:0}
.score-penilaian select:focus{outline:0}
.score-penilaian select{
    font-size: 24pt;
	font-family: 'Poppins', sans-serif;
	border:0;
	appearance: none;
    font-weight: 600;
    background: #065081;
    color: #fff;
    padding: 6px 0px;
    border-radius: 9px;
    min-width: 85px;
    text-align: center;
    margin-left: 10px;
    width: auto;
    white-space: nowrap;
}
.text-center{text-align:center}
.btn {
    background: #eee;
    color: #000;
    text-decoration: none;
    padding: 12px 30px;
    display: inline-block;
	font-family:'Poppins', sans-serif;
	border:0;
    border-radius: 7px;
    text-transform: uppercase;
    font-weight: 500;
	min-width:100px;
}
.submit-button{
	background:#065081;
	color:#fff;
}
.button-border {
    border: 2px solid #065081;
    background: transparent;
    color: #065081;
    padding: 10px 28px;
}
.mt-1{margin-top:10px}
.mt-2{margin-top:20px}
.mt-3{margin-top:30px}
div#result-block img {
    width: 130px;
}
#list-penilaian{margin-bottom:30px}
.succes-block .score-total {color:#00af5b}
.failed-block .score-total {color:#af3500}
.score-total {
    text-align: center;
    font-weight: 600;
    font-size: 60pt;
    margin-top: 5px;
}
.succes-block .score-desc {color:#00af5b}
.failed-block .score-desc {color:#af3500}
.score-desc {
    text-align: center;
    font-weight: 600;
    font-size: 12pt;
    margin-top: -10px;
}
.step-line ul li.active span {
    font-size: 9pt;
    display: block;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    color: #444;
    margin-bottom: 5px;
    font-weight: 500;
	white-space: nowrap;
}
.step-line {
    margin-top: 50px;
    margin-bottom: 50px;
}
.step-line ul li span{display:none}
.step-line ul li.active {width:14px;height:14px;background:#aaa;}
.failed-block .step-line ul li.active {background:#af3500;}
.succes-block .step-line ul li.active {background:#00af5b;}
.step-line ul li {
    width: 9px;
    height: 9px;
    background: #ccc;
	position:relative;
    border-radius: 50%;
}
.step-line ul:before {
	content:"";
	display:block;
	position:absolute;
	width:100%;
	top:50%;
	height:2px;
	background:#ccc;
	transform:translateY(-50%)
}
.step-line ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 75%;
	align-items:center;
    margin: 0 auto;
	position:relative
}
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    margin-top: -58px;
    margin-left: -58px;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}