.slide-wrapper {
  position: relative;
  width: 100vw;
  overflow: hidden;
}

.slide {
  display: flex;
  justify-content: space-between;
  width: 70vw;
  height: auto;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

.slide-wrapper button {
  position: absolute;
  top: 50%;
  cursor: pointer;
  background: none;
  border: none;
}

#prev-pc,
#next-pc {
  position: absolute;
  top: 50%;
  width: 3vw;
  height: 3vw;
  transform: translate(-50%, -50%);
}

#prev-pc {
  left: 5vw;
}

#next-pc {
  left: 95vw;
}

#prev-pc,
#next-pc,
#prev-sp,
#next-sp {
  z-index: 3;
  pointer-events: auto;
  opacity: 1;
  transition: 0.3s;
}

#prev-pc.hidden,
#next-pc.hidden,
#prev-sp.hidden,
#next-sp.hidden {
  pointer-events: none;
  opacity: 0;
  transition: 0.3s;
}

.dot-container {
  margin-top: 2%;
  text-align: center;
}

.dot {
  box-sizing: border-box;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 1.2rem;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #0c91f1;
  border-radius: 50%;
}

.dot.active {
  background-color: #0c91f1;
}

@media (width <= 800px) {
  .slide {
    width: 80vw;
    height: 100%;
  }

  .dot-prev-next-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
  }

  .dot-prev-next-content button {
    cursor: pointer;
    background: none;
    border: none;
  }

  #prev-pc,
  #next-pc,
  #prev-sp,
  #next-sp {
    transform: none;
  }

  #prev-pc img,
  #prev-sp img,
  #next-pc img,
  #next-sp img {
    position: inherit;
    width: 3.6vw;
    height: 3.6vw;
    transform: none;
  }

  #prev-pc img,
  #prev-sp img {
    margin-right: 3.6vw;
  }

  #next-pc img,
  #next-sp img {
    margin-left: 7.2vw;
  }

  .dot-container {
    margin-top: 0%;
  }

  .dot {
    width: 3.6vw;
    height: 3.6vw;
    margin-left: 3.6vw;
  }
}
