/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/*! LiteCart CSS Framework - Bootstrap Compatible */
@keyframes flasher {
  0%,
  100% {
    box-shadow: none;
  }
  50% {
    box-shadow: 0 0 10px 1px #ff0000;
  }
}
@keyframes pulsating {
  0%,
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
* {
  box-sizing: border-box;
}


/* Effects */
tr.semi-transparent td {
  opacity: 0.25;
}
.shadow {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hover-light:hover {
  box-shadow: 0 0 3px 0 #2e9cd4;
}

/* Lists - Bootstrap Compatible */

.loader {
  display: inline-block;
  background: url('../images/loader.svg');
  background-size: cover;
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
