@charset "ISO-8859-1";

/* @import url('https://fonts.googleapis.com/css?family=Roboto'); */
/* body { */
/* 	background-color: #fafafa; */
/* 	 font-family: Roboto; */
/* } */
@import
	url('https://fonts.googleapis.com/css?family=Montserrat:400,900|Roboto')
	;

body {
	background-color: #fafafa;
	font-family: Roboto, sans-serif;
}

label {
	font-weight: normal !important;
}

.form-group.required .control-label:before {
	content: "*";
	color: red;
	padding-right: 5px;
}

@media ( min-width : 768px) {
	.breaking-caret:after {
		content: "";
		width: 0;
		height: 0;
		border-top: 20px solid transparent;
		border-left: 15px solid #007bff;
		border-bottom: 20px solid transparent;
		position: absolute;
		right: -15px;
		top: 0;
	}
}

/* LOADER */
#overlay {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	display: none;
	background: rgba(0, 0, 0, 0.6);
}

.cv-spinner {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px #ddd solid;
	border-top: 4px #2e93e6 solid;
	border-radius: 50%;
	animation: sp-anime 0.8s infinite linear;
}

@
keyframes sp-anime { 100% {
	transform: rotate(360deg);
}

}
.is-hide {
	display: none;
}



footer {
	background: #fff;
	padding: 15px 20px;
	display: block;
}

#unlogged-footer {
	padding-bottom: 20px;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background-color: #2A3F54;
	color: white;
	text-align: center;
	opacity: .8;
}