/* Color Utilities and Themes */

/* Background Colors */
.red,
.black {
  color: #fff !important;
  background-color: #003282 !important;
}

.white {
  color: #000 !important;
  background-color: #fff !important;
}

.light-grey {
  color: #000 !important;
  background-color: #f1f1f1 !important;
}

.transparent {
  background-color: transparent !important;
}

/* Text Colors */
.text-green {
  color: #4caf50 !important;
}

.text-red {
  color: #003282 !important;
}

.text-grey {
  color: #757575 !important;
}

.text-yellow {
  color: #d2be0e !important;
}

/* Hover States */
.hover-white:hover {
  color: #000 !important;
  background-color: #fff !important;
}

.hover-black:hover {
  color: #fff !important;
  background-color: #000 !important;
}

.hover-none:hover {
  background-color: transparent !important;
  box-shadow: none !important;
}
