body {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
}

input[type=range] {
    width: 100%;
    margin: 13.8px 0;
    background-color: transparent;
    -webkit-appearance: none;
    cursor: pointer;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: #333333;
    border: 0.2px solid #010101;
    border-radius: 3px;
    width: 100%;
    height: 10px;
    cursor: pointer;
    color: transparent;
  }
  input[type=range]::-moz-range-track {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    color: transparent;
    background: #333333;
    border: 0.2px solid #010101;
    border-radius: 3px;
    cursor: pointer;
  }
  input[type=range]::-ms-track {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    color: transparent;
    background: #333333;
    border: 0.2px solid #010101;
    border-radius: 3px;
    cursor: pointer;
  }
  input[type=range]::-ms-fill-lower {
  display: none;
  }
  input[type=range]::-ms-fill-upper {
    display: none;
  }
  input[type=range]::-webkit-slider-thumb {
    margin-top: -32px;
    width: 32px;
    height: 64px;
    background: #A44848;
    border: 2px solid #333333;
    border-radius: 5px;
    cursor: grab;
    -webkit-appearance: none;
  }
  button{
    background: #333333;
    color: white;
    border-radius: 16px;
  font-family: "Gill Sans", sans-serif;
  }
  button:hover{
    background: #505096;
    color: white;
  }
  button:focus{
    outline: none
  }
  .ticks {
  display: flex;
  justify-content: space-between;
  padding: 10px 0px;
  pointer-events: none;
  }
  .tick {
    position: relative;
    display: flex;
    justify-content: center;
    width: 1px;
    background: white;
    height: 10px;
    line-height: 60px;
    margin-bottom: 20px;
    color: white;
    font-size: 13px;
    font-family: "Gill Sans", sans-serif;
  }