.simulador-form {
    background-color: #eee;
    height: 446px;
    border: 3px solid #eee;
    padding: 40px;
}

.simulador-form input[type="text"] {
    padding: 25px 10px;
}

.simulador-form input[type="submit"] {
    display: block;
    width: 100%;
    font-size: 2rem;
    background-color: #4bc04e;
    padding: 12px 20px;
    border: 0;
}

.simulador-form input[type="submit"]:hover {
    transition: 0.4s;
    background-color: #48b14a;
}

.simulador-mapa {
    padding: 0;
    border: 3px solid #eee;
}



#result {
    background-color: #000066;
    color: #FFF;
    padding: 0 20px 20px 20px;
    text-align: center;
}

#result div {
  margin-top: 30px;
}

#result span {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

#result p {
    font-size: 3rem;
    font-weight: bold;
    margin: 4px 0 0 0;
    color: #FFF;
}



/* CHECKBOX */
.radio-check_container {
    padding: 12px 0;
}


/* The container */
.radio-container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    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 */
  .radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  /* Create a custom radio button */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #666;
    border-radius: 50%;
  }
  
  /* On mouse-over, add a grey background color */
  .radio-container:hover input ~ .checkmark {
    background-color: #666;
  }
  
  /* When the radio button is checked, add a blue background */
  .radio-container input:checked ~ .checkmark {
    background-color: #4bc04e;
  }
  
  /* Create the indicator (the dot/circle - hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the indicator (dot/circle) when checked */
  .radio-container input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the indicator (dot/circle) */
  .radio-container .checkmark:after {
       top: 9px;
      left: 9px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: white;
  }