.drug__item:not(:last-child) {
  border-bottom: 1px solid #666;
}

.swipe-box {
  overflow: hidden;
}

.swipe-box__scroller {
  display: grid;
  grid-template-columns: repeat(3, 100%);
  overflow-x: auto;
  overflow-y: hidden;
}

@supports (scroll-snap-type: x mandatory) {
  .swipe-box__scroller {
    scroll-snap-type: x mandatory;
  }
  
  .swipe-box__item {
    scroll-snap-stop: always;
    scroll-snap-align: center;
  }
}

@supports (scroll-snap-points-x: repeat(100%)) and (not (scroll-snap-type: x mandatory)) {
  .swipe-box__scroller {
    scroll-snap-type: mandatory;
    scroll-snap-points-x: repeat(100%);
  }
}

.drug-action {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 24px;
  background-color: var(--drug-action-color);
}

.action--delete-right {
  justify-content: flex-start;
  --drug-action-color: tomato;
}

.action--delete-left {
  justify-content: flex-end;
  --drug-action-color: tomato;
}