/* Style the form */
#regForm {
  background-color: #ffffff;
  font-family: Arial;
  padding-bottom: 40px;
}

.inputform {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Arial;
  border: 1px solid #aaaaaa;
  margin-top: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.inputformmandatory {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    font-family: Arial;
    border: 1px solid #aaaaaa;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* 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: rgb(18, 123, 178);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Arial;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 15px;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
	 
  height: 25px;
  width: 25px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.2;
  background: url(../images/bola.png) no-repeat top center;
}

.step.active {
  opacity: 1;
  background: url(../images/bola.png) no-repeat top center;
  height: 25px;
  width: 25px;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  opacity: 0.5;
  background: url(../images/bola.png) no-repeat top center;
  height: 25px;
  width: 25px;
}

/* ESTILOS PARA EL RADIO BUTTON PERSONALIZADO */
/* Customize the label (the container) */
.container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	font-family: "opensansRegular";
}

/* Hide the browser's default radio button */
.container input {
    position: absolute;
    opacity: 0;
}

/* Create a custom radio button */
.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #d0d0d0;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .radiomark {
    background-color: #1692d0;
}

/* When the radio button is radioed, add a blue background */
.container input:checked ~ .radiomark {
    background-color: #1692d0;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .radiomark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.container .radiomark:after {
    top: 5px;
    left: 5.5px;
    width: 6.5px;
    height: 6.5px;
    border-radius: 50%;
    background: white;
}

/* FIN DE ESTILOS PARA EL RADIO */

/* DE ESTILOS PARA EL CHECK */
/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 17px;
    width: 17px;
    background-color: #d0d0d0;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #1692d0;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #1692d0;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/* FIN DE ESTILOS PARA EL CHECK */