.fancy-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.fancy-slider::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.fancy-slider {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 75%;
  padding: 1em;
  border-radius: 1.5em;
}
.fancy-slider:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

/* Special styling for WebKit/Blink */
.fancy-slider::-webkit-slider-thumb {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  -webkit-appearance: none;
  border: 2px solid var(--logoGrey);
  height: 2.5em;
  margin-top: -1.1em; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  width: 1.25em;
  border-radius: 1.5em;
  background: var(--lightGrey);
  cursor: pointer;
}

.fancy-slider::-webkit-slider-runnable-track {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
  width: 100%;
  height: 0.25em;
  cursor: pointer;
  background: var(--logoGrey);
}

#tierPricing {
  text-align: center;
}
#priceMessage {
  padding: 1em 0;
  font-size: 150%;
}
#price {
  font-weight: bold;
}
