:root {
  --black: #000000;
  --primary: #ff8906;
  --grey-bg: #fbfbfb;
  --grey: #cecece;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  background: rgb(68, 63, 114);
}

.filter {
  position: absolute;
  background-color: black;
  opacity: 0.9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 667px;
  width: 100%;
  padding: 16px;
  gap: 24px;
  z-index: 2;
}

.slider {
  width: 100%;
  height: 18px;
  -webkit-appearance: none;
  background: rgba(48, 127, 226, 0.3);
  border-radius: 12px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 55px;
  height: 55px;
  background-color: #ff8906;
  border-radius: 50%;
  transition: 450ms;
}

.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0px 25px rgba(255, 137, 6, 0.4);
}

.slider::-webkit-slider-thumb:active {
  box-shadow: 0 0 0px 25px rgba(255, 137, 6, 0.7);
}
