@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro&display=swap");
html {
  font-size: 16px; }

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1.2rem;
  color: #353434;
  overflow-x: hidden; }

/*.container{
	max-width: 1280px;
	padding: 10px;
}*/
section, .container {
  overflow: hidden; }

header {
  /*border:solid pink 1px;*/
  position: relative;
  margin-top: 5%;
  clear: both; }
.hidden{
	visibility:hidden;
}
.btnSiguiente {
  position: absolute;
  z-index: 90;
  right: 5%;
  bottom: 10%;
  max-width: 50px; }

.carousel-caption {
  top: 30%; }

.carousel h2 {
  font-size: 3.2rem; }

.sliderCeleste, .classCeleste {
  color: #0092D2; }

.classAzulOscuro {
  color: #003256; }

/*.carousel h2 span.animacionLetras{
	
	position: absolute;
	right: 0;
	width: 0;
	background: #fff;
	border-left:1px solid #000;
	
	animation: maquina 7s infinite alternate steps(18);
}

@keyframes maquina{
	from{
		width: 100%;
	}
	to{
		width: 0;
	}
}*/
.carousel h4 {
  margin-bottom: 2rem;
  font-size: 1.8rem; }

/*.nosotros {
  font-size: 1.2rem; }*/

.nosotros h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #003256; }

.datosProductores{
    font-size:0.98rem;
    text-align:center;
}

.datosProductores div{
    padding:0px;
}
.nosotros h4 {
  color: #0092D2; 
  font-size:1rem;
    padding-left:0px;
    
}

.iconosNosotors{
	width:80px;
	height: 80px;
}

@media(min-width:576px){
    .datosProductores{
    
    text-align:left;
    }
}
/*seccion cotizador*/
section.seccionCotizador {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 50rem;
  /*25rem*/
  width: 100%;
  overflow: hidden; 
}

section.seccionCotizador video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

section.seccionCotizador .container {
  position: relative;
  z-index: 2; }

section.seccionCotizador .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*background-color: black;*/
  background-image: image("/vistas/Video/VideoCotizador.png");
  opacity: 0.5;
  z-index: 1; }


section.seccionCotizador h3 {
  color: #002034;
  font-weight: bold;
  font-size: 4rem; }

section.seccionCotizador p {
  font-size: 4rem; }

.tituloCotizador{
	position: relative;
	margin-top:50px;
	
}

.cotiPasoPaso{
	
	margin-top:50px;
}
@media(min-width:992px){
	.tituloCotizador{
		
		margin-top:150px;
		
	}
	
	.cotiPasoPaso{
		
		margin-top:100px;
	}
}


.btnCotizar, .btnCotizar:disabled,
.btnCotizar[disabled] {
  background-color: #003256;
  border-color: #003256;
  border-radius: 0; 
  opacity: 1;
  color:#FFFFFF;
	text-transform: uppercase;
	font-weight:normal;
}



section.seccionCotizador form input {
  border-radius: 0;
  border-color: #FFF;
  color: #353434; }

/*@media (pointer: coarse) and (hover: none) {
  section.seccionCotizador {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black no-repeat center center scroll;
  }
  section.seccionCotizador video {
    display: none;
  }
}*/
/*FIN seccion cotizador*/
/*COBERTURAS*/
/* Asignamos perspectiva a nuestro contenedor */
.flip-container {
  -webkit-perspective: 1000;
          perspective: 1000;
  /*border: 1px solid #d9d9d9;*/
  /* Para Firefox - IE10+ debemos agregar propiedades extras */
  -moz-transform-style: preserve-3d;
  -moz-transform: perspective(1000px);
  -ms-transform-style: preserve-3d;
  -ms-transform: perspective(1000px)
  /*margin:30px;*/ }

.flip-container, .front, .back {
  /*width: 280px;
  height: 320px;*/
  width: 320px;
  height: 407px;
  padding: 0px;
  margin: 0px;
  top: 0px; }

.flip-container ul {
  margin-left: 0px;
  margin-top: 20px; }

.flip-container ul li {
  list-style: none; }

.front, .back {
  /*padding:10px;*/ }

/* preserve-3d: Indicamos que todo elemento hijo del div flipper estara en un espacio 3D XYZ  */
.flipper {
  -webkit-transition: 2s;
          transition: 2s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  /*transform-style: preserve-3d;*/
  -webkit-transition: -webkit-transform 2s ease;
  -webkit-transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  position: relative; }

.front, .back {
  /* Backface: Nos permite ocultar la parte posterior de los elementos html */
  /* en este caso FRONT - BACK */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: 2s;
          transition: 2s;
  /*transform-style: preserve-3d;*/
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 2s ease;
  -webkit-transition: -webkit-transform 2s ease;
  transition: transform 2s ease; }

/* FRONT: eje Y = 0   */
.front {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg)
  /*background: #bcea67;*/ }

.frontEmpresas {
  /*transform: rotateY(0deg);*/
  /*background-image:url("vistas/img/Empresas.png");*/
  /*width: 280px;
  height: 320px;*/ }

.frontIndividuos img, .frontEmpresas img, .frontAgro img {
  /*background-image:url("vistas/img/Individuos.png");*/
  position: relative;
  z-index: 1; }

.front h2 {
  font-family: 'Source Sans Pro', sans-serif;
  color: #FFF;
  position: relative;
  top: -30%;
  left: 30%;
  z-index: 10; }

/* BACK: eje Y = -180, se mantendra oculto */
.back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  /*background: #ffdd54;*/
  color: #fff;
  padding: 0px 10px;
  width: 320px;
  height: 407px;
  -webkit-transition: 2s;
          transition: 2s;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  /*transform-style: preserve-3d;*/
  -webkit-transition: -webkit-transform 2s ease;
  -webkit-transition: -webkit-transform 2s ease;
  transition: transform 2s ease; }

.backEmpresas {
  background: #323434;
  font-size: 1.1rem;
  padding-left: 0px; }

.backEmpresas ul li {
  line-height: 23px; }

.backIndividuos {
  background: #003256; }

.backAgro {
  background: #00A551; }

/* EFECTO FLIP */
/* Hover */
.flip-container:hover .front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.flip-container:hover .back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg); }

/* Toggle - Moviles */
.flip-container.hover .front {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg); }

.flip-container.hover .back {
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg); }

/*FIN COBERTURAS*/
/*ASEGURADORAS*/
.aseguradorasCeleste {
  background-color: #0092D2; }

.balloon {
  background-color: #0092D2;
  border-radius: 5px;
  /*background-color: chocolate;
  color: floralwhite;*/
  padding: 10px
  /*width: 420px;
  font-family: 'Indie Flower', cursive;
  font-size: 2em	*/ }

.balloon:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid #0092D2;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  margin: 0 0 0 0px;
  margin-top: 13.4%; }

.clasecualquiera:before {
  content: 'esto se agregar├í';
  color: red; }

.aseguradorasCeleste .container {
  color: #FFF; }

.aseguradorasCeleste .container h2 {
  font-size: 2.5rem; }

.rombo {
  width: 100px;
  height: 100px;
  border: 3px solid #555;
  background: #0092D2;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  left: 10%; }

.bocadillo-cuadrado {
  position: relative;
  height: 200px;
  width: 300px;
  background: #0092D2
  /* box-shadow: 1px 12px 33px rgba(0, 0, 0, 0.5);*/ }

.bocadillo-cuadrado:before {
  border: 25px solid red;
  content: '';
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  position: absolute;
  bottom: -25px;
  left: calc(50% - 25px); }

@media(min-width:768px){
    .logosAseguradoras div{
        min-width:100px;
        display: block;
        padding:0px 1px;
        

    }
    .logosAseguradoras img{
        min-width: 100px;
        
    }
}
@media(min-width:992px){
    .logosAseguradoras div{
        min-width:130px;
        display: block;
        padding:0px 1px;
        

    }
    .logosAseguradoras img{
        min-width: 130px;
        
    }
}

@media(min-width:1200px){
    .logosAseguradoras div{
        min-width:150px;
        display: block;
        padding:0px 1px;
        

    }
    .logosAseguradoras img{
        min-width: 150px;
        
    }
}
.carrouselAseguradoras .col-md-3 {
  display: inline-block;
  margin-left: -4px; }

.carrouselAseguradoras .col-md-3 img {
  width: 100%;
  height: auto; }

.carrouselAseguradoras .carousel-indicators li {
  background-color: red; }

.carrouselAseguradoras .carousel-indicators {
  bottom: 0; }

.carrouselAseguradoras .carousel-control-prev-icon,
.carrouselAseguradoras .carousel-control-next-icon {
  background-color: red; }

.carrouselAseguradoras .no-padding {
  padding-left: 0;
  padding-right: 0; }

/*FIN ASEGURADORAS*/
/*CONTACTO*/
.divImgContacto h2 {
  position: absolute;
  z-index: 5;
  color: #003256;
  top: 30px;
  right: 10%; }

.contactoFrm {
  background-color: #003256;
  color: #FFF;
  height: 400px; }

.contactoFrm:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid #FFF;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin: 20px 0 0 0px
  /*margin-top: 13.4%;*/ }

.contactoFrm h2 {
  font-size: 1.5rem;
  margin: 1rem; }

.contactoFrm input, .contactoFrm textarea {
  border-radius: 0;
  background-color: transparent;
  color: #FFF; }

.contactoFrm .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #FFF;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
          transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

.contactoFrm .form-control::-ms-expand {
  background-color: transparent;
  border: 0; }

.contactoFrm .form-control:focus {
  color: #FFF;
  background-color: transparent;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.contactoFrm .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .form-control::placeholder {
  color: #fff;
  opacity: 1; }

.contactoFrm .btnEnviar {
  border: solid #FFF 1px;
  background-color: transparent;
  color: #fff;
  border-radius: 0; }

.btnEnviar:hover {
  border: solid #80bdff 1px; }

.datosContacto, .datosContacto span  {
  color: #4D4D4F;
  font-size: 1rem;
  line-height: 20px;
	font-weight: normal;
	
	
   }

span.contactoCiudad {
  font-size: 1.2rem; }

.sectionContacto {
  border-bottom: solid 15px #003256; }

.icDatosContacto{
	color:#003256;
	font-size:1.2rem;
}
/*FIN CONTACTO*/
/*FOOTER*/
footer .container {
  font-size: 1rem; }

footer .container a {
  color: #353434; }

footer .borderRigth {
  border-right: solid 1px #CBCBCB;
  padding: 0px 5px; }

footer .borderBottom {
  border-bottom: solid 1px #C8C8C8; }

.finPie {
  color: #C8C8C8;
  /*#D3D3D3*/
  font-size: 0.1rem;
  vertical-align: bottom; }

/*FIN FOOTER*/



/*Barra que me sigue*/


.my-fixed-item {
    position:fixed;
    /*min-height: 120px;
    width: 252px;*/
	padding: 5px;
    /*text-align: center;*/
    word-wrap: break-word;
    /*background-color:#1BD741;*/
	/*border-radius: 50%;*/
	z-index: 999;
	top:85%;
	right: 0;
	
	/*display: flex;
	flex-wrap: wrap;
	justify-content: space-around;*/
	/*padding: 0;*/
	
}

a.whatsappFlotante{
	font-size: 30px;
	display: block;
	
	/*font-size: 3em;*/
	margin-bottom: 0px;
	border-radius:50%;
	
	
	
	/*text-align: center;*/
	background-color:#1BD741;
	color: #fff;
	padding: 10px 20px;
	transition: .5s;
	/*border: 2px solid #fff;*/
	overflow: hidden;
	
	
	
}

 a.whatsappFlotante:hover{
	background: #fff;
	/*border: 2px dashed #1BD741;*/
	color: #1BD741;
	 border:solid #1BD741 2px;
}

@media (max-width:480px){
	.my-fixed-item {
		right: 5px;
	}
	
}

#modalDatosAuto .modal-content{
	background-color:#ECECEC;
	min-width: 750px;
	
}

#modalDatosSguro .modal-content{
	background-color:#ECECEC;
}

#modalDatosSguro h5{
	font-size:28px;
}

#modalDatosSguro .close {
	font-size:35px;
	color: #003256;
	opacity: 1.0;
}



h5.modal-title{
	color: #003256;
	text-transform:uppercase;
	font-weight: bold;
	text-align: center;
	width: 100%;
	
}

.frmDatosPersonales input, .frmDatosPersonales select {
	margin-bottom:5px;
	text-transform: uppercase;
}



.loader, .loader2 {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 80px;
  height: 80px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
	
	margin-right: 40%;
	margin-left: 40%;
	display: none;

}
.alertInfoLoader{
    display:none;
}

#modalMuchasGracias .modal-content{
	background-color:#003256;
	color: #FFFFFF;
	text-align: center;
	padding-bottom: 20px;
}

#modalMuchasGracias .modal-content h1, #modalMuchasGracias .close{
	color: #FFFFFF;
}

#modalMuchasGracias .modal-header, #modalDatosSguro .modal-header{
	border:none;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*.companiaMostrar{
	padding:20px 20px;
	background-color: #003256;
	color:#ffffff;
	margin-right: 30%;
	margin-left: 30%;
	text-align: center;
	margin-bottom: 10px;
}*/

.btnContratarSeguro{
	display: flex;
 	justify-content: center;
	margin-right: 25%;
	margin-left: 25%;
}

.companiaMostrar{
	font-size:24px;
}
.coberturaMostrar, .companiaMostrar{
	color: #003256;
	text-transform:uppercase;
	text-align: center;
}
.primerasCuotasMostrar, .costoMensual{
	color: #003256;
	text-align: center;
}
#costoMensual{
	font-weight: bold;
	/*float: right;*/
	margin-right: 40%;
}



/*###########################################################
MEADIAS QUERIES 
###########################################################*/
/*ESCRITORIO GRANDE (LG revisamos en 1366px en adelante)*/
@media (min-width: 1200px) {
  header .carousel, header .carousel-item{
	
	  height: 837px;
	}
	header .carousel-item img{
		margin-left:0;
	}
	
	header .carousel h2 {
    font-size: 4rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 2rem; }
	.aseguradorasCeleste {
    height: 350px; }

  .balloon:before {
    margin-top: 340px; }

  .balloon p {
    margin-top: 170px;
    padding: 0px; }

  .imgContacto {
    height: 493px; }
	
	.contactoFrm {
    height: 493px; }
	
	.datosContacto img {
    width: 30px;
    margin-top: 5px; }

  footer .finPie a img {
    width: 2rem; } }
/*ESCRITORIO MEDIANO O TABLET HORIZONTAL (MD revisamos en 1024px)*/
@media (max-width: 1199px) and (min-width: 992px) {
  header .carousel, header .carousel-item{
	
		height: 450px;
	}
	header .carousel-item img{
		margin-left:0;
	}
	
	header .carousel h2 {
    font-size: 4rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 2rem; }
	
	.flip-container, .front, .back {
    width: 300px;
    height: 382px; }

  .aseguradorasCeleste {
    height: 300px; }

  .balloon:before {
    margin-top: 290px; }

  .balloon p {
    margin-top: 120px;
    padding: 0px; }

  .imgContacto {
    height: 300px; }

  .contactoFrm {
    height: 300px; }

  .contactoFrm h2 {
    font-size: 1.2rem; }

  .contactoFrm textarea {
    height: 60px; }

  .btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    line-height: 1.3; }

  .datosContacto p {
    color: #003256;
    font-size: 1.1rem;
    line-height: 20px; }

  .datosContacto img {
    width: 35px; }

  footer .container {
    font-size: 0.9rem; }

  footer .container a {
    font-size: 0.8rem; }

  footer .finPie a img {
    width: 2rem; } 

	#modalDatosAuto .modal-content{
		min-width: 650px;
	}
}
/*ESCRITORIOS PEQUE├æO (SM revisamos en 768px ) o tablets VERTICAL*/
@media (max-width: 991px) and (min-width: 768px) {
 
	header .carousel, header .carousel-item{
	
		height: 450px;
	}
	header .carousel-item img{
		margin-left:0;
	}
	
	header .carousel-caption {
    top: 25%; }

  header .carousel h2 {
    font-size: 2rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 1rem; }
	  section.seccionCotizador {
    height:auto;
	  padding: 10px 0px;
    min-height: 25rem
    /*25rem*/ }

  .flip-container, .front, .back {
    width: 300px;
    height: 382px; }

  .aseguradorasCeleste {
    height: 300px; }

  .balloon:before {
    margin-top: 290px; }

  .balloon p {
    margin-top: 120px;
    padding: 0px; }

  .divImgContacto {
    height: 300px; }

  .imgContacto {
    width: 100%; }

  .datosContacto p {
    font-size: 0.8rem;
    line-height: 20px; }

  .datosContacto img {
    width: 30px;
    margin-top: 5px; }

  .finPie .row {
    font-size: 0.8rem; }

  .finPie a img {
    width: 1.5rem; } 
	
	#modalDatosAuto .modal-content{
		min-width: 550px;
	}
}
/*REVISAMOS 576*/
@media (max-width: 767px) and (min-width: 576px) {
  
	header .carousel, header .carousel-item{
	
		height: 350px;
	}
	header .carousel-item img{
		margin-left:-4%;
	}
	
  header .carousel-caption {
    top: 35%; }

  header .carousel h2 {
    font-size: 1.7rem;
	}

  header .carousel h4 {
    margin-bottom: 2rem;
    font-size: 1rem; }
	
	  section.seccionCotizador {
    height:auto;
	  padding: 10px 0px;
    min-height: 25rem
    /*25rem*/ }

  .flip-container, .front, .back {
    width: 250px;
    height: 318px;
    font-size: 0.8rem; }

  .backEmpresas ul li {
    line-height: 20px; }

  .aseguradorasCeleste {
    height: 300px; }

  .balloon:before {
    margin-top: 290px; }

  .balloon p {
    margin-top: 120px;
    padding: 0px; }

  .divImgContacto {
    height: 300px; }

  .imgContacto {
    width: 100%; }
	.contactoFrm {
    height: 500px; }
  .contactoFrm textarea {
    height: 120px; }

  .btn-lg, .btn-group-lg > .btn {
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    line-height: 1.3; }

  .datosContacto p {
    font-size: 1rem;
    line-height: 20px; }

  .datosContacto img {
    width: 35px;
    margin-top: 5px; }

  .finPie .row {
    font-size: 0.8rem; }

  .finPie a img {
    width: 1.5rem; } 

	#modalDatosAuto .modal-content{
		min-width: 450px;
	}
}
/*DISPOSITIVOS MOVILES (XS revisamos en 320px ) */
@media (max-width: 575px) {
	body{
		font-size:1rem;
	}
  header {
    margin-top: 20%; }

  .btnSiguiente {
    max-width: 20px; }
	
	header .carousel, header .carousel-item{
	
		height: 230px;
	}
	header .carousel-item img{
		margin-left:-8%;
	}
	
  header .carousel-caption {
    top: 18%; }

 header .carousel h2 {
    font-size: 1.4rem; }

  header .carousel h4 {
    margin-bottom: 1rem;
    font-size: 1rem; }
	
	.nosotros h3 {
  font-size: 1rem;
  }

.nosotros h4 {
  font-size:1rem; }

.iconosNosotors{
	width:60px;
	height: 60px;
}

  section.seccionCotizador h3, section.seccionCotizador p {
    font-size: 2rem; }

  section.seccionCotizador {
    height:auto;
	  padding: 10px 0px;
    min-height: 25rem
    /*25rem*/ }

  .flip-container, .front, .back {
    /*width: 280px;
     height: 356px;*/
    width: 300px;
    height: 381px; }

  .backEmpresas ul li {
    line-height: 20px; }

  .aseguradorasCeleste {
    height: 400px; }

  .balloon:before {
    margin-top: 390px; }

  .balloon p {
    margin-top: 120px;
    padding: 0px; }

  .carrouselAseguradoras .carousel-item {
    height: 120px; }

  .carrouselAseguradoras .col-md-3 img {
    width: auto;
    height: 60px; }

  .contactoFrm {
    height: 600px; }

  .datosContacto p {
    font-size: 1rem;
    line-height: 20px; }

  .datosContacto img {
    width: 20px;
    margin-top: 5px; }

  footer .container .row {
    font-size: 1rem; }

  footer .finPie .row {
    font-size: 0.7rem; }

  footer .finPie a img {
    width: 1.2rem; }

  .container {
   /* border: solid red 1px;*/ } 

#modalDatosAuto .modal-content{
		min-width: 280px;
	}
}
@media (max-width: 575px) and (min-width: 400px) {
	/*.container{border:solid orange 1px;}*/
  header .carousel, header .carousel-item{
	
		height: 270px;
	}
	header .carousel-item img{
		margin-left:-8%;
	}
	
  header .carousel-caption {
    top: 18%; }

 header .carousel h2 {
    font-size: 1.4rem; }

  header .carousel h4 {
    margin-bottom: 1rem;
    font-size: 1rem; }
	
	.flip-container, .front, .back {
    /*width: 280px;
     height: 356px;*/
    width: 380px;
    height: 483px; }

  /*.container {
    border: solid green 1px; }*/ }
.carousel-caption, .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  right: 0%;
  left: 0%; }

@media (min-width: 576px) {
	/*.container{border:solid blue 1px;}*/
  .carousel-caption, .container {
    max-width: 540px; } 

	header .carousel, header .carousel-item{
	
		height: 350px;
	}
	header .carousel-item img{
		margin-left:-4%;
	}
	
  header .carousel-caption {
    top: 35%; }

  header .carousel h2 {
    font-size: 1.7rem;
	}

  header .carousel h4 {
    margin-bottom: 2rem;
    font-size: 1rem; }
}
@media (min-width: 768px) {
	/*.container{border:solid yellow 1px;}*/
  .carousel-caption, .container {
    max-width: 720px; } 

	header .carousel, header .carousel-item{
	
		height: 450px;
	}
	header .carousel-item img{
		margin-left:0;
	}
	
	header .carousel-caption {
    top: 25%; }

  header .carousel h2 {
    font-size: 2rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 1rem; }
}
@media (min-width: 992px) {
	/*.container{border:solid green 1px;}*/
  .carousel-caption, .container {
    max-width: 960px; }
	header .carousel, header .carousel-item{
	
		height: 450px;
	}
	header .carousel-item img{
		margin-left:0;
	}	
	
	header .carousel h2 {
    font-size: 4rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 2rem; }
}
@media (min-width: 1200px) {
	/*.container{border:solid red 1px;}*/
  .carousel-caption, .container {
    max-width: 1140px; } 

	header .carousel, header .carousel-item{
	
	  height: 100%;
	}
	header .carousel-item img{
		margin-left:0;
	}
	header .carousel h2 {
    font-size: 4rem; }

  header .carousel h4 {
    margin-bottom: 1.2rem;
    font-size: 2rem; }
}

.tableCotizacion{
	
	width:100%;
	display: block;
	margin-bottom:10px;
	z-index:99;
	padding:0px;
}
.tableCotizacion, .tableCotizacion tbody, .tableCotizacion thead{
	/*background-color:rgba(255, 255, 255, 0.1);*/
	/*opacity: 0.9;*/
	/*border:solid #003256 1px;*/
	/*color:#0092D2;*/
	padding:0px;
	
}

.tableCotizacion thead{
	background-color:#FFFFFF;
}
.tableCotizacion th, .tableCotizacion td, .tableCotizacion tr{
	/*background-color: #FFFFFF;*/
	/*opacity: 0.9;*/
	/*border:solid #003256 1px;*/
	border: 2px solid rgba(255, 255, 255, 0.1);
	/*background-clip: padding-box;*/
	font-size:1.5rem;
	color:#003256;
	text-align: center;
	padding:0px;
	
}



h5.subtipoCotizacion{
	background-color:#003256;
	color:#FFFFFF;
	width: 100%;
	font-size:1.5rem;
	padding: 10px 0px;
	margin-bottom:3px;
	text-transform:uppercase;
}

section.seccionCotizador p.precioSubtipoCotizacion{
	background-color:#FFFFFF;
	color:#003256;
	width: 100%;
	font-size:1.6rem;
	padding: 10px 0px ;
	line-height: 20px;
	margin-bottom:2px;
	
}

span.txtPrecioSubtipoCotizacion{
	font-size:1rem;
}

.btnSolicitarInfo{
	padding:10px;
	margin-top:10px;
	color:#003256;
	border:solid 1px #003256;
	background-color:#FFFFFF;
	text-transform:uppercase;
	font-size:1rem;
}

.btnSolicitarInfo:hover{

	color:#FFFFFF;
	border:solid 1px #FFFFFF;
	background-color:#003256;
	
}

.btnOpenBtnDatoCotizacionCia{
	border:none;
	background-color:transparent;
	color:#003256;
	font-size:1.5rem;
	font-weight:bold;
	

}

.btnCotizarDatos:hover{
	background-color: #0092d2;
	border-color:#0092d2;
}

.btnContratarSeguro:hover{
	background-color:transparent;
		border-color:#003256;
	color:#003256;
}

.btnCotizarDatos{
	display: flex;
 	justify-content: center;
	margin-right: 30%;
	margin-left: 30%;
}


/*# sourceMappingURL=prueba.css.map */