/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600&display=swap');


#spinCanvas {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
}

#spinner {
   display: none;
   position: absolute;
   left: 50%;
   top: 50%;
   height:100px;
   width:100px;
   margin:0px auto;
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
   border-left:6px solid rgba(0,174,239,.15);
   border-right:6px solid rgba(0,174,239,.15);
   border-bottom:6px solid rgba(0,174,239,.15);
   border-top:6px solid rgba(0,174,239,.8);
   border-radius:100%;
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}


label, input{
  font-size: 16px;
  font-weight: 500;
}
input, textarea, select{
  background-color: #f2f2f2 !important;
}
.form-control{
/*  height: calc(1.5em + .75rem + 16px);*/
  border: 0px solid #ced4da;
  font-size: 15px;
  font-weight: 500;
  color: #909090;
    font-family: 'Titillium Web',sans-serif;
}
.portada{
  background-image: url("../images/fondo.jpg");
  color: #fff;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  margin-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.portada p{
  font-size: 16px;
  font-weight: 500;
  
}
.portada h1{
  font-size: 40px;
}
.formulario{
  background-color: #fff;
  border-radius: 30px;
  padding-top: 100px;
  padding-left: 200px;
  padding-right: 200px;
}

#formulario.load{
    opacity: .5;
    pointer-events: none;
}

.formulario form h2{
  color: #212121;
}
.checkbox{
  margin-right: 20px;
}
.detalle{
  font-size: 16px;
    color: #909090;
    text-align: justify;
}
.terminos{
  font-size: 16px !important;
  color: #909090;
}
.enviar{
  background-color: #e4002b !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-size: 16px !important;
  max-width: 174px !important;
  width: 100%;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  padding-left: 25px !important;
  padding-right: 25px !important;
  border: none;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
  outline: none;
  border: 2px solid transparent !important;
}
.is-required:after {
  content: '*';
  margin-left: 3px;
  color: red;
  font-weight: bold;
}
input[type=file]{
  width: 100% !important;
  padding: 20px;
  background-color: #fff !important;
  border-radius: 0px !important;
  outline: none;
  border: 2px solid transparent !important;
}
input[type=file]::file-selector-button{
  border: none;
  color: #fff;
  border: 2px solid transparent !important;
  border-radius: 20px;
  padding: 10px;
  margin-right: 20px;
  background-color: #e4002b;
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  outline: none;
  cursor: pointer;
}

.wrap{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap .conta {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  margin-right: 20px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.wrap .conta input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.wrap .checkmark {
  position: absolute;
  border: 2px solid red !important;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  border-color: #e4002b !important;
}

/* On mouse-over, add a grey background color */
.wrap .conta:hover input ~ .checkmark {
  background-color: #f8f8f8;
}

/* When the radio button is checked, add a blue background */
.wrap .conta input:checked ~ .checkmark {
  background-color: #fff;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.wrap .conta input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.wrap .conta .checkmark:after {
 	top: 2px;
	left: 2px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e4002b;
}
select{
  background: url("../img/down-arrow.png") no-repeat right #ddd;
  -webkit-appearance: none;
  background-size: 10px;
  background-position-x: 93%;
}

#cbox1{
    margin-right: 8px;
}
@media only screen and (max-width: 1179px) {
  .formulario{
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 639px) {

  nav img{
    height:45px;
  }
    .portada h1{
    font-size: 8vw;
  }
  .formulario{
    padding-left: 20px;
    padding-right: 20px;
  }
  .terminos{
    padding-left: 20px;
    padding-right: 20px;
  }
  .portada{
    border-radius: 0px;
    margin-top: 10px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 45px;
    padding-bottom: 45px;
  }
} 


button.button.alt  {
    vertical-align: middle;
    font-weight: bold;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}
button.button.alt  {
    line-height: 50px!important;
    padding: 0 25px!important;
    border: 0;
    border-radius: 8px!important;
}

button.button.alt {
    background-color: #e70033;
    -webkit-font-smoothing: antialiased;
}

/* CSS for the spinner icon */
