.standard-font {
  text-transform: capitalize;
  font-size: 1rem !important;
}

.capitalize {
  text-transform: capitalize;
}

.standard-text-color {
  color: var(--color-primaryText);
}

.standard-text-bold, .bold-text {
  font-weight: 700;
}

.standard-text-weight {
  font-weight: 400 !important;
}

.text-transform-none {
  text-transform: none !important;
}

.semi-bold-text {
  font-weight: 500;
}

.center-text {
  text-align: center;
}

.red-color {
  color: #f77474 !important;
}

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

.light-grey-text {
  color: lightgrey !important;
}

.blue-text {
  color: #2784B9 !important;
}

.active-tab {
  color: #2784B9 !important;
}

.white-text {
  color: white !important;
}

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

.orange-text {
  color: #FDB16C !important;
}

.green-text {
  color: #67B927 !important;
}

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

.gold-text {
  color: var(--color-primaryGold) !important;
}

.black-text {
  color: black !important;
}

.margin-right-1vw {
  margin-right: 1vw !important;
}

.margin-left-0p5vw {
  margin-left: 0.5vw !important;
}

.margin-left-1vw {
  margin-left: 1vw !important;
}

.margin-left-2vw {
  margin-left: 2vw !important;
}

.margin-top-1vh {
  margin-top: 1vh !important;
}

.margin-top-2vh {
  margin-top: 2vh !important;
}

.margin-bottom-2vh {
  margin-bottom: 2vh !important;
}

.padding-zero {
  padding: 0 !important;
}

.padding-1percent {
  padding: 1% !important;
}

.padding-bottom-2vh {
  padding-bottom: 2vh !important;
}

.width-25vw {
  width: 25vw !important;
}

.width-2vw {
  width: 2vw !important;
}

.width-50vw {
  width: 50vw !important;
}

.width-wfa {
  width: -webkit-fill-available !important;
  width: -moz-available !important;
}

.max-width-wfa {
  max-width: -webkit-fill-available !important;
  max-width: -moz-available !important;
}

.width-ftc {
  width: fit-content !important;
}

.height-wfa {
  height: -webkit-fill-available !important;
  height: -moz-available !important;
}

.display-block {
  display: block !important;
}

.border-bottom-inset-thin {
  border-bottom: inset !important;
  border-width: thin !important;
}

.border-right-inset-thin {
  border-right: inset !important;
  border-width: thin !important;
}

.border-left-outset-thin {
  border-left: outset !important;
  border-width: thin !important;
}

.border-top-outset-thin {
  border-top: outset !important;
  border-width: thin !important;
}

.zero-opacity {
  opacity: 0 !important;
}

.opacity-0p6 {
  opacity: 0.6 !important;
}

.opacity-0p4 {
  opacity: 0.4 !important;
}

.opacity-0p2 {
  opacity: 0.2 !important;
}

.opacity-1 {
  opacity: 1 !important;
}

.no-wrap {
  white-space: nowrap !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.gap-1vw {
  gap: 1vw;
}

.blue-fill {
  fill: var(--color-primaryBlue) !important;
}

.green-background {
  background: var(--color-primaryGreen) !important;
}

.red-background {
  background: var(--color-primaryRed) !important;
}

.grey-background {
  background: var(--color-primaryGrey) !important;
}

.reverse-row {
  flex-direction: row-reverse !important;
}

.border-top-grey {
  border-radius: 1vh;
}

.border-top-yellow {
  border-radius: 1vh;
}

.border-top-green {
  border-radius: 1vh;
}

.border-top-blue {
  border-radius: 1vh;
}

.blur-5 {
  filter: blur(5px) !important;
}

.is-clickable {
  cursor: pointer;
}
.is-clickable:hover {
  text-decoration: underline;
}

.is-not-clickable {
  cursor: auto !important;
}

.is-cursor-disabled {
  cursor: not-allowed !important;
}
