div::-webkit-scrollbar {
  display: none;
}

.font-w-1 {
  font-weight: 100;
}

.font-w-2 {
  font-weight: 200;
}

.font-w-3 {
  font-weight: 300;
}

.font-w-4 {
  font-weight: 400;
}

.font-w-5 {
  font-weight: 500;
}

.font-w-6 {
  font-weight: 600;
}

.font-w-7 {
  font-weight: 700;
}

.font-w-8 {
  font-weight: 800;
}

body {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.loader {
  border: 16px solid #FF512F;
  border-radius: 50%;
  border-top: 16px solid #fff;
  width: 60px;
  height: 60px;
  -webkit-animation: spin 0.2s linear infinite;
  animation: spin 0.2s linear infinite;
  position: absolute;
  left: 45%;
  top: 45%;
  display: none;
  z-index: 9999;
  position: fixed;
}

/* Safari */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "-") !important;
}

