.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    opacity: 0;
    z-index: -100;
    transition: all 0.1s ease-out;
  }
  
  .overlay.opened {
    opacity: 0.6;
    z-index: 100;
  }
  
  .menu-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 400px;
    min-height: 100vh;
    transform: translateX(102%);
    transition: all 0.2s ease-out;
    border-left: 1px solid #00000017;
    z-index: 9999;
  }
  
  @media screen and (max-width: 400px) {
    .menu-wrapper {
      width: 100%;
      max-width: 100%;
    }

    .position-fixer{
      position: absolute;
    }
  }
  
  
  .menu-wrapper.opened {
    transform: translateX(0);
  }
  
  .menu-wrapper .menu-container {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    background-color: #ffffff;
  }
  
  .menu-wrapper .top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .menu-wrapper .button-close {
    position: relative;
    color: #ff7300;
    background-color: #ffeee0;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    float: right;
  }

  #go-back{
      float: left;
  }


  
  .menu-wrapper .button-close span {
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .menu-wrapper .content h1 {
    color: #ff7300;
    font-size: 20px;
    margin-top: 10px;
  }
  
  .menu-wrapper .bottom {
    width: 100%;
  }
  
  .menu-wrapper .bottom .button-continue {
    width: 100%;
    background-color: #ff7300;
    border: none;
    color: #ffffff;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    border: none;
    outline:none;
  }
  
  .label-float {
    position: relative;
    padding-top: 13px;
  }
  
  .label-float input {
    border: none;
    border-bottom: 1px solid lightgrey;
    outline: none;
    min-width: 250px;
    padding: 15px 0;
    font-size: 16px;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    -webkit-appearance: none;
    width: 100%;
  }
  
  .label-float input:focus {
    border-bottom: 2px solid #ff7300;
  }
  
  .label-float input::placeholder {
    color: transparent;
  }
  
  .label-float label {
    pointer-events: none;
    position: absolute;
    top: calc(50% - 8px);
    left: 0;
    transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    background-color: white;
    padding: 5px 0;
    box-sizing: border-box;
  }
  
  .label-float input:required:invalid + label {
    color: red;
  }
  .label-float input:focus:required:invalid {
    border-bottom: 2px solid red;
  }
  .label-float input:required:invalid + label:before {
    content: "*";
  }
  .label-float input:focus + label,
  .label-float input:not(:placeholder-shown) + label {
    font-size: 13px;
    top: 0;
    color: #ff7300;
  }
  
  .phase-error{
    display:none;
    color:red;
    font-size: 14px;
  }
  
  
  input[type="radio"]:checked + label {
    color: #0B4DB7;
  }
  
  
  .spinner {
    border: 3px solid #f3f3f3;
    border-radius: 100%;
    border-top: 3px solid #ff7300;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    display: none;
  }
  
  /* Safari */
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    12% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }