
.hd-range-slider {
  position: relative;
  height: 20px;
  margin: 0 8px;
  cursor: pointer;
  touch-action: none;
}
.hd-range-slider__rail {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 2px;
  background-color: #dbe0e3;
}
.hd-range-slider__fill {
  position: absolute;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 2px;
  background-color: #007bff;
}
.hd-range-slider__handle {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  border: 1px solid #c3ccd2;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  cursor: grab;
}
.hd-range-slider__handle:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.35);
}
.hd-range-slider__handle:active {
  cursor: grabbing;
}


.hd-toast__region {
  position: fixed;
  z-index: 1080;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 90vw;
  pointer-events: none;
}
.hd-toast__region--top-center {
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.hd-toast__region--top-right {
  top: 16px;
  right: 16px;
  align-items: flex-end;
}
.hd-toast__region--top-left {
  top: 16px;
  left: 16px;
  align-items: flex-start;
}
.hd-toast__region--bottom-center {
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
}
.hd-toast__region--bottom-right {
  bottom: 16px;
  right: 16px;
  align-items: flex-end;
}
.hd-toast__region--bottom-left {
  bottom: 16px;
  left: 16px;
  align-items: flex-start;
}
.hd-toast__stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hd-toast__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 4px;
  background-color: #353535;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}
.hd-toast__message {
  flex: 1 1 auto;
}
.hd-toast__action {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: none;
  color: #6cb2eb;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
.hd-toast__action:hover {
  text-decoration: underline;
}
.hd-toast-enter-active,
.hd-toast-leave-active {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.hd-toast-enter,
.hd-toast-leave-to {
  opacity: 0;
  transform: translateY(-8px);
}


/*# sourceMappingURL=map_init-4e440115.css.map*/