.products_shown {
  transform: translateX(100%);
  opacity: 100%;
}

.products_shown-left {
  transform: translateX(-100%) !important;
}

@media not all and (min-width: 768px) {
  .products_shown,
  .products_shown-left {
    transform: translate(0%) !important;
    z-index: 12;
  }
}

.product_link {
  position: relative;
}

.product_link::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  opacity: 0%;
  background-color: #005fc1;
  transition: all 0.5s;
}

.product_link:hover::after {
  width: 100%;
  opacity: 80%;
}

img {
  -webkit-user-drag: none;
  -webkit-app-region: no-drag;
  user-select: none;
}
