.w-e-textarea-swiper-card-container {
  width: 600px;
  height: 450px;
  margin: 6px auto;
  background-color: var(--w-e-textarea-slight-bg-color);
  border-radius: 10px;
  display: flex;
  // padding: 10px;
  position: relative;
  overflow: hidden;

  &.list {
    width: 100%;
    height: 100%;
    min-height: 330px;
    overflow: scroll hidden;
    scroll-snap-align: start;

    .w-e-textarea-swiper-card-swiper-container {
      display: block;
    }

    .w-e-textarea-swiper-card-img {
      margin: 10px;
      width: 400px;
      aspect-ratio: 4 / 3;
    }

    &::-webkit-scrollbar {
      width: 7px !important;
      height: 7px !important;
    }

    &::-webkit-scrollbar-thumb {
      background: rgb(205, 205, 205) !important;
      border-radius: calc(3.5px) !important;
    }

    &::-webkit-scrollbar-track {
      background: rgba(240, 240, 240, 0) !important;
    }
  }
}


.w-e-textarea-swiper-card-swiper-container {
  // width: 300%;
  height: 100%;
  display: flex;
  position: absolute;
  left: 0;
  transition: .2s;
}

.w-e-textarea-swiper-card-swiper-button {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  user-select: none;

  &-index {
    flex: 1;
  }

  &-prev,
  &-next {
    font-size: 50px;
    padding: 0 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--w-e-textarea-slight-color);

    &:hover {
      background-color: rgba(0, 0, 0, 0.45);
    }
  }
}

.w-e-textarea-swiper-card-img {
  position: relative;
  width: 100%;
  // background-size: cover;
  object-fit: cover;
}
