html body{
    margin:0;
    padding: 0;
    clear: both;
    font-family:cambria;
    height: 100%;
    min-height: 100%;
    background-color: #EBF6FF;
}
.overlay {
    margin: 0;
    min-height: 100vh;
  }
  .centered {
    min-width: 180px;
    padding: 4px;
    /* padding: 2rem; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .booking-main-container > .centered {
    position: unset;
    transform: none;
    display: flex;
    align-content: center;
    align-items: center;
    margin: 0 auto;
  }
  .separator{
    background-color: #74C3FF !important;
    border-radius: 4px;
    height: 4px;
    margin: 5px;
  }
  .popupTitle {
    text-align: center;
    font-size: 120%;
    font-weight: bold;
  }
  .inputTestSelect{
    font-size: 100%;
    font-weight: bold;
    margin-top:7px;
    text-align: center;
  }
  select {
    margin: 2px;
    width: 100%;
    height: auto;
    font-size: 100%;
    font-weight: bold;
    cursor: pointer;
    background-color: #232e34;
    border: solid 1px black;
    border-radius: 10px;
    /* border-bottom: 2px solid #962d22; */
    color: black;
    appearance: none;
    padding: 10px;
    padding-right: 38px;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: color 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease;
  }

  /* For IE <= 11 */
  select::-ms-expand {
    display: none; 
  }

  .select-icon {
    position: absolute;
    top: 4px;
    right: 4px;
    width: auto;
    height: auto;
    pointer-events: none;
    border: 2px solid #232e34;
    padding-left: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  .select-icon svg.icon {
    transition: fill 0.3s ease;
    fill: white;
  }

  select:hover,
  select:focus {
    color: #232e34;
    background-color: white;
    border-bottom-color: #DCDCDC;
  }
  select:hover ~ .select-icon,
  select:focus ~ .select-icon {
    background-color: white;
    border-color: #DCDCDC;
  }
  select:hover ~ .select-icon svg.icon,
  select:focus ~ .select-icon svg.icon {
    fill: #232e34;
  }


  .tooltip {
    position: relative;
    display: inline-block;
  }
  
  .tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: fixed;
    z-index: 1;
    bottom: 50%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 6px;
    
    box-shadow: 4px 4px 6px #555;
  }
  
  /* .tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  } */
  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }
  .legend{
    display: flex;
    flex-direction: row;
    padding: 1rem 2rem;
  }
  .legend-wrapper{
    display: flex;
    flex-direction: row;
  }
  .legend-col{
    display: flex;
    flex-direction: row;
    align-content: center;
  align-items: center;

  }
.legend-case{
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 1rem;
}
.legend-col p{
  margin: 0 0 0 1rem;
}