.btn_central{
  color: #DE1C24;
  text-decoration: none;
  border: 2px solid #DE1C24;
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 3rem;
}
.rrss_image{
  background: #DE1C24;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50px;
  margin-left: 5px;
  margin-top: -5px;
}.rrss_image_ig{
  background: #DE1C24;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50px;
  margin-left: 5px;
  margin-top: -5px;
  padding: 4px;
}
.blue{
  color:#116ee8;
}
.red{
  color:#DE1C24;
}
.branding{
  font-family: "Branding";
}
.pointer{
  cursor: pointer;
  font-family: inherit;
}
.footer{
  left: 0;
  bottom: 0;
  top: 30px;
  width: 100%;
  background-color: #e8e8e8;
  color: rgb(0, 0, 0);
  height: 130px;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 3rem;
  font-family: 'Branding';
}
.logo_mid{
  width: 15%;
  margin-top: -30px;
}
.footer_content{
  display: inline-block;
}
.modal_rayos{
  margin-top: -20px;
  width: 35;
}
.mb_8px{
  margin-bottom: 8px;
}
.mb_4rem{
  margin-bottom: 4rem;
}
.header {
  overflow: hidden;
  background-color: #fff;
  padding: 25px 10px;
}
.textos{
  padding: 60px;
}
label,span {
    font-family: 'Lato', sans-serif;
    color: #4D4D4D;
    font-size: .89em;
  }
  .error{
    color: #DE1C24;
    line-height: 15px;
  }
  .red-border{
    border-color: #DE1C24;
    line-height: 15px;
  }

  .hidden{
    display: none;
  }
  .terminos:hover{
    color:#116ee8;
    cursor: pointer;
  }
  .terminos_title{
    position: relative;
    color: #0071CE;
    font-family: 'Branding';
    text-transform: uppercase;
    font-size: 1.7em;
  }
  /* =================================================================
           Lets get rid of the ugly default checkbox
=================================================================*/

[type="checkbox"] {
  position: absolute;
  display: none;
}

/* =================================================================
           This is where you create the new checkbox square
=================================================================*/

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 1.95em;
  cursor: pointer;
}

[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
  border: 2px solid #000;
  background: transparent;
}

/* =================================================================
 Now have to make our checkmark visable when the checkbox is checked
=================================================================*/

[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25em;
  height: 1.25em;
}

/* =================================================================
                   Magic that turns the square into a checkmark
=================================================================*/

[type="checkbox"]:not(:checked) + label:before {
  border: 1;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

[type="checkbox"]:checked + label:before {
  width: 0.4em;
  height: 1.25em;
  left: 10px;
  top: -4px;
  transform: rotate(40deg);
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #116ee8;
  border-bottom: 2px solid #116ee8;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/* =================================================================
                   Some extra spin on th second box
=================================================================*/

[type="checkbox"]#checkbox-2:checked + label:before{
  transform: rotate(400deg);
}

/* =================================================================
        no logic behind this one, it just spins like crazy
=================================================================*/

[type="checkbox"]#checkbox-3:checked + label:before{
  transform: rotate(2200deg);
    -webkit-transition: all 1s;
  transition: all 1s;
}