@media only screen and (max-width: 640px) {
    div.message::after {
        display: none;
    }
}

.slider-container {
    width: 100%;
  }

  /* The slider itself */
  .slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 1rem;
    border-radius: 25px;
    background: white;
    outline: none;
    opacity: 0.9;
    z-index: 15;
	display: relative;
  }

  .slider:hover {
	cursor: pointer;
  }

  .breakpoints {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    /* display: none; */
    top: -31px;
    height: 25px;
    border-radius: 25px;
    background: rgb(255, 255, 255, 0);
    outline: none;
    padding: 0 16.5px;
    z-index: 0;
  }

  .tick {
    fill: rgb(0, 0, 0, 0.25);
    /* position: relative; */
  }

  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 6px solid #fff;
    background: #6392CC;
  }

  .slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 6px solid #fff;
    background: #6392CC;
  }

  .range {
    width: 100%;
  }
  .value {
    color: white;
    position: relative;
    left: 50%;
    line-height: 2rem;
  }

  .message {
    position: relative;
    border: none;
  }

  .message::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	border-top-color: white;
	border-bottom: 0;
	margin-left: -10px;
	margin-bottom: -10px;
  }

input:checked ~ .dot {
    transform: translateX(100%);
    background-color: #BDCAE0;
  }
