/****** RADIOS DE FORMULARIO ******/
    .radio-section{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    border: solid 1px #000;
    padding: 0;
}
.radio-item [type="radio"]{
    display: none;
}

.radio-item + .radio-item{
    margin-top: 15px;
}
.radio-item label{
  width: 100%;
    display: block;
    padding: 20px 60px;
    background: #478ac9;
    border:2px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    min-width: 250px;
    white-space: nowrap;
    position: relative;
    color: #FFF;
}
.radio-item label:after,
.radio-item label:before{
    content: "";
    position: absolute;
    border-radius: 50%;
}

.radio-item label:after{
    height: 20px;
    width: 20px;
    border:2px solid #FFF;
    left: 20px;
    top: calc(50% - 12px);
}
.radio-item label:before{
    background: #FFF;
    height: 10px;
    width: 10px;
    left: 25px;
    top: calc(50% - 5px);
    transform: scale(5);
    transition: .4s ease-in-out 0s;
    opacity: 0;
    visibility: hidden;
}
.radio-item [type="radio"]:checked ~ label{
    background: #ec1d79;
    border-color: #ec1d79;
}

.radio-item [type="radio"]:checked ~ label:before{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


#regForm {
        background-color: #ffffff;
        margin: 10px auto;
        font-family: Raleway;
        padding: 40px;
        width: 100%;
        min-width: 50px;
      }

      /*h1 {
        text-align: center;  
      }*/

      input {
        padding: 10px;
        width: 100%;
        font-size: 17px;
        font-family: Raleway;
        border: 1px solid #aaaaaa;
      }

      /* Mark input boxes that gets an error on validation: */
      input.invalid {
        background-color: #ffdddd;
      }

      /* Hide all steps by default: */
      .tab {
        display: none;
      }

      /*button {
        background-color: #04AA6D;
        color: #ffffff;
        border: none;
        padding: 10px 20px;
        font-size: 17px;
        font-family: Raleway;
        cursor: pointer;
      }

      button:hover {
        opacity: 0.8;
      }*/

      #prevBtn {
        background-color: #bbbbbb;
      }

      /* Make circles that indicate the steps of the form: */
      .step {
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbbbbb;
        border: none;  
        border-radius: 50%;
        display: inline-block;
        opacity: 0.5;
      }

      .step.active {
        opacity: 1;
      }

      /* Mark the steps that are finished and valid: */
      .step.finish {
        background-color: #04AA6D;
      }


      #regForm2 {
        background-color: #ffffff;
        margin: 10px auto;
        font-family: Raleway;
        padding: 40px;
        width: 100%;
        min-width: 50px;
      }


      .Montserrat-ExtraBold {
        font-family: Montserrat-ExtraBold;
      }
      .botom-comprar {
        background: #ec1d79;
        color: #FFF;
        padding: 20px 50px;
      }
      @media (max-width: 575px) {
        .botom-comprar {
          position: relative;
          margin: -20px auto;
          display: block;
          background: #ec1d79;
          color: #FFF;
          padding: 15px 30px;
        }
      }