@keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .animate-spin {
    animation: spin 1s linear infinite;
  }

.bg-light-indigo {
    background-color: rgb(215, 215, 245);
}

.w-16 {
    width: 16px !important;
}

.h-16 {
    height: 16px !important;
}

.w-28 {
    width: 28px !important;
}

.h-28 {
    height: 28px !important;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s;
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.page-wrapper .content {
    padding: 1.25rem;
    min-height: calc(100vh - 120px) !important;
}