/* ---------------- #GLOBAL ---------------- */
:root {
  /* HEXA */
  --txt-blue-color: #00A4EA !important;
  --txt-red-color: #DC2D33 !important;
  --txt-gray-color: #EAEAEA !important;
  --txt-purple-color: #7932B3 !important;

  /* RGBA */
  --bg-blue-color: rgb(0, 164, 234) !important;
  --bg-red-color: rgb(231, 73, 78) !important;
  --bg-purple-color: rgb(121, 50, 179) !important;
  --bg-green-color: rgb(128, 179, 23) !important;
  --bg-gray-color: rgb(246, 246, 246) !important;

}

.txt-white-color {
  color: #fff !important;
}

.txt-gray-color {
  color: var(--txt-gray-color);
}

.txt-purple-color {
  color: var(--txt-purple-color);
}

.txt-orange-color {
  color: var(--txt-red-color);
}

.txt-blue-color {
  color: var(--txt-blue-color);
}