.items {
  position: absolute;
  transform: translate(-50%, -50%);
  user-select: none;
}

.items .item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; /* Adjust the width */
  height: 400px; /* Adjust the height */
  border-radius: 10px; /* Adjust border-radius if necessary */
  overflow: hidden;
  transition: all 300ms ease-in-out;
  z-index: -1;
  opacity: 0;
}

.item img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.item.active {
  opacity: 1;
  z-index: 99;
  box-shadow: 0px 0px 105px -35px rgba(0, 0, 0, 0.75);
}

.item.prev {
  z-index: 2;
  opacity: 0.50;
  transform: translate(-170%, -50%);
  filter: blur(2px);
}

.item.next {
  z-index: 2;
  opacity: 0.50;
  transform: translate(60%, -50%);
  filter: blur(2px);
}

.items .button-container {
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 1100px;
  z-index: 100;
}

.button-container .button {

  color: #ffffff;
  width: 32px;

  cursor: pointer;
  position: relative;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
}

.button-container .button:hover {
  opacity: 1;
}

.button-container .button:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 100%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 1);
  border-radius: 50%;
  z-index: -99;
}

.button-container .button:nth-child(1) {
  float: left;
}

.button-container .button:nth-child(2) {
  float: right;
}

/* Remove border-radius from .item */
.items .item.active,
.items .item.prev,
.items .item.next {
  border-radius: 0;
}

#ArrowBut{

width: 10px;
display: flex;
position: relative;

}
