:root {
  --brand-col-1: #014137;
  --brand-col-2: #00C189;
  --brand-col-3: #FFB718;
  --brand-col-4: #588571;
  --gray-col-1: #C0C0C0;
  --gray-col-2: #EAEAEA;
  --dark-col-1: #353737;
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: "Poppins", sans-serif;
}

/* Add generic styles here! */
/* CROSS BROWSER SCROLL BAR */
/* The emerging W3C standard that is currently Firefox-only */
*.no-scrollbar {
  scrollbar-width: none;
}

*.no-scrollbar::-webkit-scrollbar {
  width: 0px;
}

*.no-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

*.no-scrollbar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border: 1px solid transparent;
}

::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: var(--generic-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--generic-black);
  border: 1px solid var(--generic-white);
}