.custom-modal {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    height: 400px;
    width: 470px;
  }
  
  .modal-header-section {
    background-color: #ffffff;
  }
  
  .modal-body-section {
    background-color: #53a0f1;
    padding: 1rem 2rem;
  } 
  
  .continer-tittle {
    font-weight: 700;
    font-size: 25px;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
    
  } 
  
  .continer-text {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  /* Entrada Modal*/
  @keyframes modalFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
  /* Salida Modal */
  @keyframes modalFadeOut {
    from {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    to {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }
  }
  
  .modal.fade-in .modal-dialog {
    animation: modalFadeIn 0.5s ease-out;
  }
  
  .modal.fade-out .modal-dialog {
    animation: modalFadeOut 0.4s ease forwards;
  }