/* --------- App wide scrollbar style ---------- */
* {
  scrollbar-width: thin;
  scrollbar-color: #c3c8cf transparent;
}

*::-webkit-scrollbar {
  width: 4px;
}

*::-webkit-scrollbar-thumb {
  background: #c3c8cf;
  border-radius: 99999px;
}

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

*::-webkit-scrollbar-thumb:hover {
  background: #919499;
}

/* ----------------------- App Loader START ----------------------- */

.loader-container {
  overflow: hidden;
  max-width: 100vw;
  background-color: white;
  color: black;
}

.loader-wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loader-spinner-div {
  display: flex;
  margin: 1rem;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-right: calc(1rem * 0);
  margin-left: calc(1rem * calc(1 - 0));
}

.loader-spinner {
  height: 5.5rem;
  width: 5.5rem;
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  border-width: 6.5px;
  border-style: solid;
  border-color: currentColor;
  border-top-color: transparent;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------- App Loader END ----------------------- */

.validation-star {
  color: red;
}

.character-counter {
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 16px !important;
  letter-spacing: -0.2px !important;
  color: #64748b !important;
}

.icon-button-div {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
}
