.slider {
  width: 100%;
  padding: 20px;
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  overflow-x: auto;
  background-color: #2c2f33;
  background: linear-gradient(-90deg, rgb(48.7242105263, 52.0463157895, 56.4757894737) 0%, #2c2f33 100%);
}
.slider::-webkit-scrollbar {
  display: none;
}
.slider__title {
  background-color: #23272a;
  color: white;
  padding: 10px;
}

.movie__card {
  width: 175px;
  height: 260px;
  flex-shrink: 0;
  flex-grow: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #000;
  box-shadow: 5px 5px 10px #111;
}
.movie__card__box {
  max-width: 175px;
  height: 100px;
  margin-top: auto;
  padding: 10px;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.movie__card__title {
  overflow-wrap: break-word;
  text-align: center;
}

.AddToWatchlist__form {
  display: flex;
  justify-content: center;
  box-shadow: 5px 5px 15px -5px black;
}
.AddToWatchlist__btn {
  width: 100%;
  padding: 5px;
  background-color: #8a6fd1;
  color: #fff;
  border: none;
}
.AddToWatchlist__btn:hover {
  background-color: rgb(169.4052631579, 149.6526315789, 221.3473684211);
}/*# sourceMappingURL=movie_card.css.map */