/*ESTILOS DEL FORMULARIO COTIZA*/
#cotiza {
  background: #F5F8FA;
  max-width: 100%;
  margin: auto;
	overflow: hidden;
}
.columna-cotiza {
	padding: 15px;
}
.formbase {
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
}
.cotiza-txt {
	text-align: center;
	color: #fff;
	font-weight: 400;
  background: #152E7C;
  padding: 5px;
  border-radius: 7px;
  margin-bottom: 10px;
}
.cotiza-img {
  max-width: 400px;
  border-radius: 20px;
  margin: auto;
/*
  max-height: 400px;
  object-fit: cover;
  border-radius: 50%;
*/
}
.cotiza-confianza {
  font-size: 0.8em;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}
.cotiza-confianza span {
  color: #999;
}

form {

}
form p {
	font-size: 0.9em;
	padding: 5px 0;
	color: #666;
}
input, textarea {
  font-family: sans-serif;
  font-size: 1em;
  width: 100%;
  padding: 10px;
	margin: 5px 0;
	border: none;
	border-radius: 10px;
  background: rgba(0,0,0,0.05);
}
::placeholder {
	color: #999;
}
textarea {
  min-height: 100px;
  max-height: 200px;
  max-width: 100%;
}
.form-boton .icon-whatsapp {
	position: relative;
  top: 4px;
	font-size: 2em;
  padding-right: 10px;
}
#contacto-boton {
  color: #fff;
	background-color: #B0C747;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  padding: 5px 30px;
  border-radius: 5px;
  transition: all 0.4s;
  
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  margin: 15px auto;
}
#contacto-boton:hover {
  background: #333;
}
.privacidad {
  font-size: 0.8em;
  color: #333;
  text-align: center;
}
.privacidad-img {
  margin: auto;
  width: 20px;
}

#estado-envio{
  display:none;
  margin-top:20px;
  text-align:center;
  color:#25D366;
  font-weight:600;
  font-size:15px;
}

.spinner{
  width:22px;
  height:22px;
  margin:12px auto 0;
  border:3px solid #DDD;
  border-top:3px solid #25D366;
  border-radius:50%;
  animation:girar .8s linear infinite;
}

@keyframes girar{
from{
  transform:rotate(0deg);
  }

to{
  transform:rotate(360deg);
  }
}

/*ESTILOS RESPONSIVE*/
@media (min-width: 450px) {

}

@media (min-width: 768px) {
.grupo-cotiza {
	max-width: 1100px;
	margin: auto;
  display: flex;
  justify-content: center;
	align-items: center;
}
.columna-cotiza {
  width: 50%;
}
#contacto-boton {
  margin: 15px 0;
}
.privacidad {
  text-align: left;
  display: flex;
  align-items: center;
}
.privacidad-img {
  width: 15px;
  margin: 0 10px;
}
.form-grupo {
	display: flex;
	justify-content: space-between;
}
.form-grupo input {
  width: 49%;
}
}

@media (min-width: 1024px) {

}

/*GOOGLE MAPS*/
#mapa {
  max-width: 1900px;
  margin: auto;
  background: #fff;
}
.grupo-mapa {
  max-width: 960px;
  margin: auto;
	padding: 10px;
}
.mapa-datos {
  color: #333;
}
.mapa-google {
    height: 0;
    padding-top: 25px;
    padding-bottom: 56.25%;
    position: relative;
    margin: 20px 0;
    box-shadow: 0 0 0 4px #fff,
                0 0 0 5px rgba(0,0,0,0.2);
}
.mapa-google iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-------------ESTILOS RESPONSIVE WEB DESIGN-------------*/
@media (min-width: 768px) {
/*BANNER*/
.mockfondo-contacto {
  height: 600px;
}
.grupo-contacto {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: center;
	align-items: center;
  flex-wrap: wrap;
}
.columna-contacto {
  width: 50%;
	padding: 20px;
	border-right: 1px dashed #999;
}
	.datos {
		width: 30%;
	}
	.columna-contacto:last-child {
	border-right: none;
	}
}

@media (min-width: 1024px) {

}