/* MODAL NO RESULTS IN SEARCHER */
.clinics-no-result-modal-container {
    position: fixed; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%; 
    background: rgba(255,255,255, 0.5);
    align-items: center; 
    justify-content: center; 
    display: none; 
    z-index: 99999;
  }
  
  .clinics-no-result-modal-container.on {
    display: flex; 
  }
  
  
  
  .clinics-no-result-modal {
    padding: 34px;
    width: 524px; 
    height: 286px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    background: #FFFFFF;
    box-shadow: 0px 2px 30px rgba(107, 119, 140, 0.08);
    border-radius: 4px;
  }
  
  .clinics-no-result-modal .text {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #000000;
    margin-bottom: 58px; 
  }
  
  .clinics-no-result-modal .btn-close-modal {
    cursor: pointer; 
    display: flex; 
    justify-content: center;
    background: #004F8B;
    border-radius: 3px;
    width: 271px; 
    height: 50px; 
  }
  
  .clinics-no-result-modal .btn-close-modal .btn-text {  
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
  }