.media-container {
  position: relative;
}
.images_row::-webkit-scrollbar {
  display: none;
}
.images_row {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.images_slider a {
  touch-action: pan-x;
}
.images_slider {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  transition: transform 0.3s ease-in-out;
}
.images_slider img {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.vehicle-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.nav-buttons-container {
  position: absolute;
  top: 50%;
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
}
.nav-button {
  /* display: none; */
  border: solid 1px rgba(255,255,255,.2);
  background-color: rgba(255,255,255,.5);
  border-radius: 50%;
  z-index: 100;
  position: absolute;
  top: 50%;
  height: 2.5rem;
  transition: transform 0.15s;
  padding: 4px;
}
.nav-button:focus {
  background-color: rgba(255,255,255,.5);
}
.nav-button:hover {
  cursor: pointer;
  background-color: rgba(255,255,255,.5);
  transform: scale(1.05);
}
.nav-button svg {
  opacity: 1;
  height: 2rem;
  width: 2rem;
  display: flex;
  fill: #fff;
  pointer-events: none;
}
.nav-button.left {
  left: 1%;
}
.nav-button.right {
  right: 1%;
}
.image_count {
  opacity: 0.4;
  position: absolute;
  bottom: 1.25rem;
  right: 0.25rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background-color: #fff;
  z-index: 1;
}