.container-slider {
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  height: 357px;
  border: 2px solid white;
  margin: 50px auto 0;
}
.container-slider .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slider {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 100%;
  background: rgba(242, 242, 242, 0.3);
  outline: none;
  margin: 0;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider:hover {
  background: rgba(242, 242, 242, 0.1);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 357px;
  background: white;
  cursor: pointer;
}

.slider-button {
  pointer-events: none;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  left: calc(50% - 18px);
  top: calc(50% - 18px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-button:after {
  content: "";
  padding: 3px;
  display: inline-block;
  border: solid #5D5D5D;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
}
.slider-button:before {
  content: "";
  padding: 3px;
  display: inline-block;
  border: solid #5D5D5D;
  border-width: 0 2px 2px 0;
  transform: rotate(135deg);
}

@media screen and (min-width: 641px) and (max-width: 767px) {
  .background-img {
    background-repeat: no-repeat;
  }
  .container-slider {
    width: 89%;
  }
}
@media screen and (min-width: 0px) and (max-width: 640px) {
  .background-img {
    background-repeat: no-repeat;
  }
  .container-slider {
    width: 100%;
  }
}/*# sourceMappingURL=slider.css.map */