/* Modal email sent */
.modal-success-email-container {
    z-index: 199999999;
    display: none; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    left: 0; 
    background: rgba(248, 249, 251, 0.5);
    align-items: center; 
    justify-content: center; 
    height: 100%;
  }
  
  .modal-success-email-container.on {
    display: flex; 
  }
  
  .modal-success-email {
    width: 60%;
    background: #004F8B;
    box-shadow: 0px 2px 30px rgba(107, 119, 140, 0.08);
    border-radius: 4px;
    padding: 44px 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .modal-success-email .content {
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    margin-bottom: 62px;
  }
  
  .modal-success-email .content .text {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
  }
  
  .modal-success-email .btn-exit {
    height: 40px;
    width: 166px;
  }