#wrapper {
  width: 750px;
  max-width: 750px;
  position: relative;
}

#carousel {
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

#carousel::-webkit-scrollbar {
  height: 0;
}

#content {
  display: grid;
  grid-gap: 0px;
  grid-auto-flow: column;
  margin: auto;
  box-sizing: border-box;
}

#prev,
#next {
  display: flex;
  justify-content: center;
  align-content: center;
  border: none;
  padding: 8px;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  position: absolute;
  z-index: 999;
}

#prev {
  top: 75px;
  left: 0px;
  transform: translate(50%, -50%);
  background: red;
  opacity: 40%;
  /* display: none; */
}

#next {
  top: 75px;
  right: 0px;
  transform: translate(-50%, -50%);
  background: green;
  opacity: 40%;
}

table#decorators {
  width: 750px;
}

table#decorators td {
  /* height: 100px; */
}