.hide{
  display: none;
}
.show{
    display: show;
}

.img-loader {
  animation: rotation 2s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }

}

.loader-bg {
  background-color: #000000 !important;
}

.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))
}

