/* ---------------- #GLOBAL ---------------- */
:root {
  /* HEXA */
  --txt-blue-color: #435EA9 !important;
  --txt-orange-color: #EB6123 !important;
  --txt-green-color: #80B317 !important;
  --txt-gray-color: #9c9c9c !important;
  --txt-purple-color: #5E5872 !important;

  /* RGBA */
  --bg-blue-color: rgba(67, 94, 169, 1) !important;
  --bg-orange-color: rgba(235, 97, 35, 1) !important;
  --bg-green-color: rgba(128, 179, 23, 1) !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-orange-color);
}

.txt-blue-color {
  color: var(--txt-blue-color);
}