.dv_set_item {
  display: block;
  width: 150px;
}
@media print, screen and (min-width: 768px) {
  .dv_set_item {
    transition-duration: 0.2s;
  }
}
.dv_set_item:hover {
  opacity: 0.8;
}
.dv_set_img {
  width: 150px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.dv_set_img img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  border-radius: 5px;
}
.dv_set_title {
  font-size: 14px;
}
.dv_set_description {
  font-size: 12px;
}
.dv_set_price {
  font-size: 12px;
  font-weight: bold;
  color: #EA9B49;
}
@media print, screen and (min-width: 768px) {
  .dv_set_carousel_container {
    max-width: 758px;
    margin: 0 auto;
  }
}
.dv_set_carousel_block {
  position: relative;
  overflow: hidden;
}
.dv_set_carousel_container {
  gap: 30px;
}
.dv_set_carousel_item {
  max-width: 300px;
}
.dv_set_carousel_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  z-index: 10;
  transition: background-color 0.2s ease;
}
.dv_set_carousel_nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  opacity: 0.5;
}
.dv_set_carousel_nav_left {
  left: 10px;
  background: url("../img/slide_prev.png") no-repeat center center/contain;
}
.dv_set_carousel_nav_right {
  right: 10px;
  background: url("../img/slide_next.png") no-repeat center center/contain;
}