*
{
	font-family: "proxima-nova", sans-serif;
}

.waves_bg
{
	background-image: url(../img/role-selector-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 50vh;
}

.country_list
{
	display: flex;
	flex-direction: column;
}

.flag
{
	width: 18%;
}

.country
{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 82%;
}

.country_row
{
	display: flex;
	flex-direction: row;
	padding-top: 8px;
	padding-bottom: 8px;
	border-radius: 8px;
	cursor: pointer;
}

.country_row.disabled
{
	cursor: unset;
	opacity: 0.5;
}

.country_row:not(.disabled):hover, .country_row.selected
{
	background-color: #EBF1F3;
}

.main_container
{
	min-height: 130vh;
}

.inner_container .country p
{
	text-align: left;
	padding: 0;
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	color: #0F1D22;
}

.country_list a
{
	text-decoration: none;
}

.inner_container
{
	background-color: white;
	border-radius: 12px;
	padding: 25px;
	filter: drop-shadow(0px 10px 10px rgba(0,0,0,0.25));
	border: 0px solid black;
}

.inner_container h1
{
	text-align: center;
	font-size: 34px;
	color: #0F1D22;
	font-weight: 700;
}

.inner_container p
{
	text-align: center;
}

.inner_container button
{
	background-color: #FCD603;
	color: #02161A;
	text-align: center;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 6px;
	width: 100%;
	height: 42px;
	border: 2px solid #FCD603;
	transition: all 0.3s ease;
}

.inner_container button:hover
{
	background-color: white;
	color: #02161A;
	transition: all 0.3s ease;
}

.form-check-input
{
	border: 2px solid #666;
}

/*label
{
	font-size: 18px;
	color: #0F1D22;
	font-weight: 400;
}*/

.footer
{
	background-color: transparent;
	padding: 15px;
	position: fixed;
	bottom: 0px;
	width: 100%;
}

.footer_left a
{
	color: #02AFD7;
}

.footer_left p
{
	color: white;
}

.align_right p
{
	text-align: right;
}

.align_right p a
{
	color: white;
	text-decoration: none;
}

.align_right p a:hover
{
	text-decoration: underline;
}

@media only screen and (max-width: 992px) 
{
	.align_right p
	{
		text-align: left;
	}
}