.ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 7px;
}

.tick {
  position: relative;
  display: flex;
  justify-content: center;
  width: 1px;
  background: gray;
  height: 5px;
  line-height: 40px;
  margin-bottom: 20px;
  font-size: 0.8em;
}

.tick:nth-child(odd) {
  font-size: 0;
}

/* https://range-input-css.netlify.app/ */

/***** Thumb Styles *****/
/***** Chrome, Safari, Opera, and Edge Chromium *****/
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  margin-top: -8px; /* Centers thumb on the track */
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  height: 1.5rem;
  width: 1rem;
  cursor: pointer;
}

/***** Thumb Styles *****/
/***** Firefox *****/
input[type='range']::-moz-range-thumb {
  border: none; /*Removes extra border that FF applies*/
  background-color: var(--color-primary);
  border-radius: 0.5rem;
  height: 1.5rem;
  width: 1rem;
  cursor: pointer;
}
