


@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeOut {
  0% { opacity: 1;}
  99% { opacity: 0.01;}
  100% { opacity: 0;margin-top: -600px;}
}

.animation-fade-in-out {
  animation: fadeIn 0.5s ease-out , fadeOut 1s ease-in ;
  animation-delay: 0s, 5s;
}










.wrapper {
    display: flex !important;
    justify-content: center !important;
    position: fixed !important;
    top: 10% ;
    z-index: 10000 !important;
    width: 500px !important;
    /* max-width: 500px !important; */
    border-radius: 5px !important;
    color: #000 !important;
    font-size: 1rem !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .3) !important;
    border: 1px solid #808080 !important;
    background-color: #ffffff !important;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden !important;
}

.custom-alert.success {
    background-color: #28a745;
}

.custom-alert.info {
    background-color: #17a2b8;
}

.custom-alert.warning {
    background-color: #ffc107;
    color: #212529;
    /* Change text color for better readability */
}

.custom-alert.error {
    background-color: #dc3545;
}

.custom-alert .close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
}

.custom-alert p {
    margin: 0;
}

#btnXclose {
    position: absolute;
    margin-left:auto !important;
    margin-right: 0px !important;
    right: 0;
}

  .image{
    top: 0%;
    left:0%;
    margin-left:0px;
    margin-right:auto;
    height: 100px;
    width: 100px;
    object-fit:contain;
  }
  .img{
    display:absolute !important;
    height: 100%;
    overflow: hidden;
  }
  .wrapper{
    display:flex;
    justify-content:flex-start;
  }
  .message{
    display: flex;
    justify-content: flex-start;
    text-align:left;
    width:100%;
    padding: 5px ;
    align-items: center;
    overflow: hidden;
    flex-wrap: wrap;
  }
  .text{
    font-weight: lighter;
    width: auto;
    font-size:16px;
    margin-top:auto;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:auto;
  }

/* Responsive adjustments */
@media (max-width: 768px) {
    .wrapper {
        width: 400px !important;
    }
}

@media (max-width: 480px) {
    .wrapper {
        width: 300px !important;
    }
}
