:root {
	--apvs: #022551;
}

.bg-apvs {
	background-color: var(--apvs);
	color: var(--light);
}

.bloco.active {
	display: block;
}

:disabled {
	cursor: not-allowed;
}

.bg-top {
	background: url("../img/bg-apvs.png") no-repeat right center;
	background-size: cover;
	min-height: 500px;
}

.form-cadastro {
	background: #f1f1f1;
	width: 100%;
}

.titulo-cadastro {
	font-size: 1.2rem;
	padding: 5px 20px;
}

.form-wip.form-group {
	background: none;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
	position: relative;
	margin-top: 15px;
}

.form-wip.form-group label {
	position: absolute;
	top: -15px;
	left: 10px;
	padding: 0 10px;
	background: #f1f1f1;
	text-transform: capitalize;
}

.form-wip.form-group .form-control {
	background: transparent;
	border: 0;
	padding: 0 5px;
	margin-top: 5px;
	box-shadow: none;
}

img.icone-caminhao {
	position: relative;
	top: -150px;
	max-width: 100%;
}

button {
	transition: 0.1s ease-in-out;
}

.previl-image img {
	width: auto;
	max-width: 100%;
}

.previl-image {
	border: 1px solid;
	padding: 2px;
	width: 85px;
	height: 85px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

form#form-simulador {
	margin-top: 50px;
}

form#form-simulador .form-group label {
	color: #fff;
}

form#form-simulador .form-control {
	color: #fff;
	background: transparent;
	font-size: 18px;
	padding: 15px;
	height: unset;
}

form#form-simulador .form-control option {
	color: #333;
}

form#form-simulador button {
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	padding: 16px 50px;
	text-transform: uppercase;
	-webkit-border-radius: 3px 3px;
	-moz-border-radius: 3px 3px;
	border-radius: 3px 3px;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	justify-content: center;
}
form#form-simulador button[disabled] {
	cursor: not-allowed;
}

form#form-simulador .form-msg {
	margin-top: 50px;
}

form#form-simulador .form-msg * {
	color: #fff;
}

form#form-simulador ::-webkit-input-placeholder {
	/* Edge */
	color: #fff;
}

form#form-simulador :-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #fff;
}

form#form-simulador ::placeholder {
	color: #fff;
}
form#form-simulador select.form-control:not([disabled]) {
	cursor: pointer;
}
.loading {
	position: relative;
}
.loading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.5);
  z-index: 8;
}
.loading::after{
	content: '';
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	border-radius: 50px;
	border: 2px solid #f9f9f9;
	border-top-color: #0a449b;
	animation: spin infinite;
	animation-duration: 1s;
  z-index: 9;
}
@media (max-width: 700px) {
	img.icone-caminhao {
		top: -50px;
	}
}
