.hide{
  display: none;
}
.show{
    display: show;
}

.img-loader {

 
  position: relative;
  animation-name: example;
  animation-duration: 10s;
  animation-iteration-count: 3;
}

@keyframes example {
  0%   { left:0px; top:0px;}
  25%  { left:0px; top:100px;}
  50%  { left:0px; top:0px;}
  75%  { left:0px; top:100px;}
  100% { left:0px; top:0px;}
}
.text-gray-420 {
  --text-opacity:1;
   color:#a02da4;
   color:rgba(160,45,164,var(--text-opacity))
 }

 .theme-dark .dark\:text-gray-420{
  --text-opacity:1;
  color: #fff;
  color:rgba(255,255,255,var(--text-opacity))
}

