@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    font-family: 'Roboto', sans-serif;
}

:root {
  --form-control-color: rgb(4, 36, 89);
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: 100px auto;
    padding: 40px;
    width: 80%;
    min-width: 300px;
    border-radius: 10px;
  }
  
  /* Style the input fields */
  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;
  }


    
  input[type="number"]::-webkit-outer-spin-button, 
  input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
  }
  input[type="number"] {
      -moz-appearance: textfield;
  }

  textarea.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  /* 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;
  }
  
  /* Mark the active step: */
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: rgb(4, 36, 89);
  }

  .next-btn {
    padding: 15px 25px;
    cursor: pointer;
    font-size: 20px;   
    background-color: rgb(4, 36, 89);
    color: #fff; 
    border-radius: 5px;
    margin-left: auto;
  }

  .prev-btn {
    cursor: pointer;
    padding: 15px 25px;
    font-size: 20px;           
    border-radius: 5px;
  }


  .btn-container{
    display: flex;
    /* justify-content: space-between; */
  }

  .text-center{
    text-align: center;
  }

  .divider {
    width: 50%;
    background-color: #aaaaaa;
    height: 5px;
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .divider-container{    
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .radio-container{
    display: flex;
    justify-content: "space-around";
    width: "100%";
  }
  .display-none{
    display: none
  }

  .radio-group {
    display: flex;
    width: "100%";
    margin-bottom: 20px;    
    display: grid;
    grid-template-columns: 1em auto;
    gap: 1.5rem;
  }

  input[type="radio"]{
      /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin-right: 20px;    
    font: inherit;
    color: currentColor;
    width: 0.75em;
    height: 0.75em;
    border: 0.15em solid currentColor;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;  
  }

  input[type="radio"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
  }

  input[type="radio"]:checked::before {
    transform: scale(1);
  }

  .display-column{
    flex-direction: column !important;
  }

  .result-box{
    border: 1px solid #333; padding: 20px; width: 500px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px 10px #f3f3f3;
  }
  /* input[type="range"]:focus {
    outline: none;
  }
  input[type="range"]:focus::-ms-fill-lower {
    background: #2497E3;
  }
  input[type="range"]:focus::-ms-fill-upper {
    background: #2497E3;
  }
  input[type="range"] {
    height: 25px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 100%;
  }
  input[type="range"]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 0px 0px 0px #000000;
    border: 1px solid #2497E3;
    height: 18px;
    width: 18px;
    border-radius: 25px;
    background: #A1D0FF;
    cursor: pointer;
  } */


  .dass-header{
    background: #fff;
    color: #333;
  }
  .error{
    color: rgb(230, 51, 51)
  }

  .tooltip{
    background-color: orange;
    color: white;
    border-radius: 10px;
    width: max-content;
    display: inline-block;
    font-weight: bold;
    padding: 10px;
  }

