﻿/* LAYOUT */
/* COLORS */
/* FONT SIZES */
/* CONSTANTS */
/* CLASSES */
/* MIXINS */
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

.hidden {
  display: none !important;
}

.visibility-hidden {
  visibility: hidden;
}

.btn-link-danger {
  color: #dc3545;
}

.blink-me {
  animation: blinker 0.5s step-start infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.qty-alert {
  text-decoration: underline;
  animation: qty-alert-flash 1s step-start infinite;
}

@keyframes qty-alert-flash {
  50% {
    color: #ffc107;
  }
}
