:root {
  --pattern-border-radius: 10px;
}

* {
  margin: 0;
  padding: 0;
}

.container-slide {
  display: flex;
  justify-content: space-between;
  width: 282px;
  height: 400px;
  background-color: black;
  margin: 10vh auto;
  border-radius: var(--pattern-border-radius);
  box-shadow: 0 20px 30px #00000088;
  border: 5px solid black;
}

.container-items {
  position: absolute;
  display: flex;
  width: 282px;
  height: 400px;
  border-radius: var(--pattern-border-radius);
  overflow: hidden;
}

.item {
  width: 282px;
  height: 400px;
  transition: all 1s;
}

.item:first-child {
  margin-left: -100%;
}

.item img {
  width: 282px;
  height: 400px;
  border-radius: var(--pattern-border-radius);
}

.action-button {
  font: bold 30px sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  color: #00000000;
  user-select: none;
  z-index: 1;
}

.action-button:hover {
  color: white;
  background-color: #00000088;
  cursor: pointer;
  transition: all 1s;
}

#previous {
  border-radius: var(--pattern-border-radius) 0px 0px
    var(--pattern-border-radius);
}

#next {
  border-radius: 0px var(--pattern-border-radius) var(--pattern-border-radius)
    0px;
}

.indicators {
  position: absolute;
  color: white;
  left: 50%;
  top: 75%;
  transform: translate(-50%);
  display: flex;
  gap: 5px;
}

.indicators span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: black;
  border-radius: 50%;
  user-select: none;
  cursor: pointer;
}

.indicators span:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 3px black;
}

.indicators .selected {
  background-color: white;
  color: black;
  box-shadow: 0 0 3px black;
}
