
/** SPINNER CREATION **/


/** MODAL STYLING **/
.overlay {
    position: fixed;
    display: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 1;
    
}
.loading-modal {
    z-index: 9999;
}
.loading-overlay {
    z-index: 9998;
}
/* SHOW AND HIDE */
.show-overlay{
    animation: opacityNoneToShow 0.5s;
}
.hide-overlay{
    animation: opacityShowtoNone 2s;
}

.show-loading-modal {
    animation: opacityNoneToShow 0.5s;
}
.hide-loading-modal{
    animation: opacityShowtoNone 2s;
}
.loading-modal-content {
    background: transparent;
    border: none;
  }
.loader-modal-content {
    background-color: transparent;
}

.loader-modal-backdrop.show {
  opacity: 0.75;
}

#loader-output {
  padding: 25px 15px;
  background: #222;
  border: 1px solid #222;
  max-width: 350px;
  margin: 35px auto
}

.spinner-style{
    width: 50px;
    height: 50px;
    font-size: 20px;
    color: white;
}
/* #KEYFRAMES */
@keyframes opacityNoneToShow { 
    0% {
        display: block;
        opacity: 0;

    }
  
    100% {
      opacity: 1;
    }
  }
  
@keyframes opacityShowToNone { 
    100% {
    display: block;
    opacity: 1;
      }
    0.1% {display: none;}
    0% {
      opacity: 0;
    }
  
  
  }
  