/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Custom styles for the application */
html {
  font-family: 'Gabarito', sans-serif !important;
}

.multi-range-slider {
  position: relative;
}

.multi-range-slider input[type="range"] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.multi-range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 9999px;
  background: #1d4ed8;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #1d4ed8;
}

.multi-range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  height: 16px;
  width: 16px;
  border-radius: 9999px;
  background: #1d4ed8;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #1d4ed8;
}

.multi-range-slider input[type="range"]::-ms-thumb {
  pointer-events: auto;
  height: 16px;
  width: 16px;
  border-radius: 9999px;
  background: #1d4ed8;
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 1px #1d4ed8;
}