@charset "utf-8";
/* CSS Document */
.slider-container {
  position: relative;
  width: 100%;
  margin: 0px;
  max-width: 486px; min-width: 290px;
  overflow: hidden;
}

.cars-slider {
  display: flex;
  height: auto; /*215px;*/
  transition: transform 0.5s ease-in-out;
}

.cars-slider img {
  height: auto;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 8px;
  width: 100%; max-width: 100%;
  cursor:pointer;
  transition: 0.3s;
}

.sold-overlay {
  display: flex;  
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.5s ease-in-out;  
}

.sold-overlay img {
  width: 100%; max-width: 100%;/*  max-width: 70%;  */
  height: auto;
  border-radius: 8px;
  opacity: 0.85;
  flex-shrink: 0;
  object-fit: cover;
  cursor:pointer;
  transition: 0.3s;
}