@media only screen and (max-width: 720px) {
    .breadcrumbs {
      text-align:center;
      *{
        color:#1F1F1F
      }
      .breadcrumbs i{
        color:#D9D9D9;
      }
    }
    .breadcrumbs span[itemscope]:last-of-type{
      text-decoration:underline;
    }
    .product-info .breadcrumbs {
      display:none;
    }
}

@media only screen and (min-width: 721px) {
  .dsk-hide{
    display:none;
  }
}

.product-info__volume_selector .volume-swatches{
  display:block;
  .volume-swatch {
    margin-bottom:0.6rem;
    padding:0.6rem;
  }
  .volume-swatch.active{
    border:2px solid #000;
  }
  .volume-swatch-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
  }
  .swatch-inner-info{
    display:flex;
    align-items:center;
    gap:1.2rem;
  }
  .swatch-price{
    font-weight:500;
  }
}



.mslider-container {
  width: 80%;
  overflow: hidden;
  margin: 20px auto;
  position: relative;
}

.mslider {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
  cursor: grab;
}

.mslide {
  flex: 0 0 calc(100% / 1.2);
  height: 200px;
  background-color: lightblue;
  border: 2px solid #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

