.ms-kviz {
	position: relative;
	padding: 15px;
	border: 1px solid rgba(0, 0, 0, .25);
	border-radius: 4px;
	background: #f8f8f8;
	margin-bottom: 15px;
	overflow: hidden;
}

.ms-kviz h2 {
	
}

.ms-kviz .ms-kviz-inner {

}

.ms-kviz .ms-kviz-inner button {
	display: inline-block;
	margin-top: 15px;
	margin-bottom: 15px;
}

.ms-kviz .ms-kviz-inner .ms-pitanje {
	display: none;
	overflow: hidden;
}

.ms-kviz .ms-kviz-inner .ms-pitanje.active {

}

.ms-kviz .ms-kviz-inner .ms-pitanje h3 {

}

.ms-kviz .ms-kviz-inner .ms-pitanje .ms-odgovori {

}

.ms-kviz .ms-kviz-inner .ms-pitanje .ms-odgovori .ms-odgovor {

}

.ms-kviz .ms-kviz-inner .ms-pitanje .ms-odgovori .ms-odgovor label {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}

.ms-kviz .ms-kviz-inner .ms-pitanje .ms-odgovori .ms-odgovor input {
	position: relative;
	top: 1px;
	margin-right: 10px;
}

.response-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .75);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transform: translateY(-1000px);
	transition: opacity .5s, transform .5s;
}

.response-overlay img {
	max-width: 100%;
	margin-bottom: 10px;
	transform: scale(0);
	opacity: 0;
	transition: transform .5s, opacity .5s;
	transition-delay: .25s;
}

.response-overlay #the-response {
	width: 100%;
	max-width: 400px;
	background: #f8f8f8;
	border: 1px solid rgba(0, 0, 0, .25);
	border-radius: 4px;
	display: none;
	padding: 25px 15px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity .5s, transform .5s;
	transition-delay: .35s;
}

.response-overlay #the-response p {
    text-align: center;
    font-size: 20px;
    margin-bottom: 0;
}

.response-overlay #the-response p span {
    font-weight: 900;
    font-size: 54px;
}

.response-overlay #the-response p span::after {
	content: '%';
}

.response-overlay #the-response p small {
	font-size: 14px;
    color: #868686;
    text-transform: uppercase;
    font-style: italic;
}

.response-overlay #the-response label {
	display: block;
	margin-bottom: 15px;
}

.response-overlay #the-response input {
	width: 67%;
	height: 40px;
}

.response-overlay.active,
.response-overlay.active #the-response {
	transform: translateY(0);
	opacity: 1;
}

.response-overlay.active img {
	transform: scale(1);
	opacity: 1;
}