.relative {
  position: relative;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.flex {
  display: flex;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.items-center {
  align-items: center;
}
.cursor-pointer {
  cursor: pointer;
}
.gap-2\.5 {
  gap: 10px;
}
.text-black {
  color: black;
}
.text-gray-600 {
  color: var(--gray-600);
}
.hidden {
  display: none !important;
}
