@charset "utf-8";
/*///////////////////////////////////////////////////////////

  um

//////////////////////////////////////////////////////////*/
.um_slider_container {
  position: relative;
}
.um_slider_container {
  li {
    position: relative;
    .note {
      position: absolute;
      bottom: 12px;
      left: 12px;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
    }
    .txt {
      margin-top: 12px;
      text-align: center;
      font-size: 16px;
      color: #6b7280;
    }
  }
}
.um_slider_container .swiper-pagination {
  position: static;
  margin: 12px 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 18px;
  row-gap: 0px;
  .swiper-pagination-bullet {
    display: block;
    height: 15px;
    width: 15px;
    margin: 0;
    border-radius: 9999px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(209 213 219);
    background-color: rgb(255 255 255);
    box-sizing: border-box;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background-color: rgb(196 0 0);
  }
}
.um_slider_container {
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 45%;
    display: block;
    width: 40px;
    height: 40px;
    margin-top: 0;
    border-radius: 50%;
    background: url(/public/img/global/icon_arrow_thin-white.svg) center center no-repeat #333;
    background-size: 12px auto;
    text-indent: 100%;
    white-space: nowrap;
    overflow:hidden;
    z-index: 50;
    outline: none;
    transition: transform 0.25s ease-in-out;
    cursor: pointer;
  }
  .swiper-button-prev {
    left: -20px;
    background: url(/public/img/item/estimate/item_image/icon_prev.svg) center center no-repeat rgba(51, 51, 51, 0.7);
  }
  .swiper-button-next {
    right: -20px;
    background: url(/public/img/item/estimate/item_image/icon_next.svg) center center no-repeat rgba(51, 51, 51, 0.7);
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    transform: scale(2);
  }
}