.quiz-form {
}

.gform_button{
	color: #fefefe !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	padding: 12px 14px !important;
	transition: 0.3s !important;
	border: none !important;
	border-radius: 0 !important;
	background-color: #174873 !important;
}
.gform_button:hover {
	color: #fefefe !important;
	border: none !important;
	background-color: #E79800 !important;
}

.quiz-form .gform-theme-button {
	color: #fefefe !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	padding: 12px 36px !important;
	transition: 0.3s !important;
	border: none !important;
	border-radius: 0 !important;
	background-color: #174873 !important;
}

.quiz-form .gform-theme-button:hover {
	color: #fefefe !important;
	border: none !important;
	background-color: #E79800 !important;
}

.quiz-form .gf_progressbar {
	border-radius: 0 !important;
	background-color: #FFCC7B !important;
}

.quiz-form .gf_progressbar_percentage {
	border-radius: 0 !important;
	background-color: #F5AB35 !important;
}

.quiz-form .gf_progressbar_percentage span {
	display: none !important;
}

.quiz-form .gchoice {
	border: 2px solid #e8ebed;
	/*padding: 20px 20px;*/
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
	margin-bottom: 15px;
	position: relative;
}
.quiz-form .gchoice:hover{
	border-color: #E79800;
}

.quiz-form .gchoice:hover input{
	border-color: #E79800;
}

.quiz-form .gchoice input {
	width: 20px;
	height: 20px;
	position: absolute;
	cursor: pointer;
	transform: translateY(-50%);
	top: 50% !important;
	right: 15px;
	border-color: #e8ebed;
}

.quiz-form .gchoice input:before {
	position: absolute;
	content: '';
	width: 20px;
	height: 20px;
	background-color: #E79800;
	border-radius: 20px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	display: none;
}

.quiz-form .gchoice input:after {
	position: absolute;
	content: '';
	width: 15px;
	height: 15px;
	border-radius: 20px;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	display: none;
	background: url("assets/check-solid-white.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.quiz-form .gchoice input:checked:before {
	display: block;
}

.quiz-form .gchoice input:checked:after {
	display: block;
}

.quiz-form .gchoice label {
	display: flex!important;
	align-items: center;
	position: relative;
	cursor: pointer;
	height: 60px;
	width: 100%;
	max-width: none !important;
	padding: 15px 45px 15px 15px;
}

.quiz-form .gform_page_footer {
	text-align: end;
}

.quiz-form .gf_progressbar_title {
	font-size: 16px!important;
	font-weight: 400!important;
}


