/* message */

body {
    position: relative;
}

.main_div {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* background-color: #0005; */
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 10000;
  }
  
  .midle_div {
    border: 0 !important;
    box-shadow: 0px 0px 20px #0005;
    border-radius: .3rem !important;
    transform: scale(0);
    opacity: 0;
    animation: popUp .3s ease-out forwards;
    position: relative;
    border-radius: .3rem !important;
    overflow: hidden;
  }
  
  .midle_div.fadout {
    animation: fadeOut .3s ease-in forwards;
  }
  
  /* Pop-up animation (scale up and fade in) */
  @keyframes popUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    70% {
        transform: scale(1.1); 
        opacity: 1; 
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
  }
  
  /* Fade-out animation (fade out and scale down) */
  @keyframes fadeOut {
    0% {
        transform: scale(1); 
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(0);
        opacity: 0;
    }
  }
  
  .msg_icon {
    font-size: 50px;
    color: green;
    margin-top: 0;
  }
  
  .msg_icon.error {
    color: red;
  }
  
  .msg_icon.info {
    color: #0dcaf0;
  }
  
  .msg_icon.warning {
    color: orange;
  }
  
  .btn-no-radious {
    border-radius: 0 !important;
  }
  
  .card-title {
    text-shadow: 0px 0px 20px #0005;
  }
  
  .progressBar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    animation: progressbar 2s .3s linear forwards;
  }
  
  @keyframes progressbar {
    0% {
        width: 100%;
    }
     100% {
        width: 0%;
     }
  }