/* Modal confirm simulation / hiring */

.confirm-modal-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 79, 139, 0.2);
    display:none;
    transition: all 1s;
  }  
  
  .confirm-modal-container.on {
    display: flex; 
    transition: all 1s;  
  }
  
  
  .confirm-modal-container .confirm-modal {
    position: relative; 
    width: 50%;
    height: 365px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #004F8B;
  }
  
  .confirm-modal-container .confirm-modal .btn-close {
    cursor: pointer; 
    width: 12px;
    height: 12px;
    position:absolute; 
    right: 32px;
    top: 32px; 
    background: url(../../../images/icon-close-white.svg) center no-repeat; 
    
  }
  
  .confirm-modal-container .confirm-modal .title {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;
    text-align: center;
    color: #FFAE46;
    margin-bottom: 48px;
  }
  
  .confirm-modal-container .confirm-modal .description {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: normal;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    width: 90%;
    margin-bottom: 56px; 
  }
  
  .confirm-modal-container .confirm-modal .btn.btn-simulate-modal {
    background: #FFAE46;
    box-shadow: 0px 15px 25px rgba(0, 79, 139, 0.06);
    border-radius: 2px;
    width: 220px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;  
  }
  
  .confirm-modal-container .confirm-modal .btn.btn-simulate-modal:hover {
    color: #FFAE46;
    background-color: transparent; 
    border: 1px solid #FFAE46;
  }
  
  
  @media (max-width: 768px) {
    .confirm-modal-container .confirm-modal {
      width: 90%;
      height: 45vh;
    }
    
    .confirm-modal-container .confirm-modal .title {
      font-size: 14px;
    }
    
    .confirm-modal-container .confirm-modal .description {
      font-size: 16px;
      line-height:24px; 
    }
    
    .confirm-modal-container .confirm-modal .btn.btn-simulate-modal {
      width: 90%;
      font-size: 14px;
    }
  }