.switch_container_wh {
    /* position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%); */
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.switch_wh {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .switch_wh input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider_wh {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #ccc; */
    border: 2px solid #a8e863;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider_wh:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: #a8e863;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider_wh {
    background-color: transparent;
    border: 2px solid #a8e863;
  }
  
  input:focus + .slider_wh {
    box-shadow: 0 0 1px #a8e863;
  }
  
  input:checked + .slider_wh:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded slider_whs */
  .slider_wh.round {
    border-radius: 34px;
  }
  
  .slider_wh.round:before {
    border-radius: 50%;
  }



  .switch_wh .particulier_wh,
  .switch_wh .entreprise_wh {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -80px;
    font-weight: bolder;
    color: #777 !important;
  }
  .switch_wh .entreprise_wh {
    left: unset;
    right: -80px;
  }

  /* .switch_wh .particulier_wh.active,
  .switch_wh .entreprise_wh.active {
    color: #fff;
  } */

  input:checked ~ .entreprise_wh {
    color: #fff !important;
    /* background: coral; */
    /* transform: translateX(26px); */
  }
  input:not(:checked) ~ .particulier_wh {
    color: #fff !important;
    /* background: chocolate; */
  }