@keyframes fadeout {
  0%   {
     opacity: 1;
  }
  /* 99% {
    opacity: 0;
      z-index: 10;
  } */
  100% { 
    opacity: 0;
    visibility: hidden;
    /* z-index: -50 !important; */
  }
}
.hideWithTransition {
  animation: fadeout 0.5s ease-in; 
  animation-fill-mode: forwards;
  animation-delay: 250ms;
}

.quickHideWithTransition {
  animation: fadeout 0.3s ease-in; 
  animation-fill-mode: forwards;
  animation-delay: 50ms;
}

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

.showWithTransition {
  animation: fadein 0.5s ease-in; 
  animation-fill-mode: forwards;
  animation-delay: 250ms;
}

.quickShowWithTransition {
  animation: fadein 0.3s ease-in; 
  animation-fill-mode: forwards;
  animation-delay: 50ms;
}

/* DOT PULSE */
/**
 * ==============================================
 * Dot Pulse https://codepen.io/nzbin/pen/GGrXbp
 * ==============================================
 */
.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  color: white;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
}
.dot-pulse::before, .dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  color: white;
}
.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
}
.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }
  30% {
    box-shadow: 9984px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9984px 0 0 -5px;
  }
}
@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }
  30% {
    box-shadow: 9999px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 9999px 0 0 -5px;
  }
}
@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }
  30% {
    box-shadow: 10014px 0 0 2px;
  }
  60%, 100% {
    box-shadow: 10014px 0 0 -5px;
  }
}