.carousel-container{
  display: flex;
  max-width: 100%;
  min-height:130px;
}

.carousel-container .carousel {
  background-color: white;
  display: flex;
  overflow: auto;
  margin-left: 5px;
  margin-right: 5px;
  align-items: stretch;
  position:relative;
  align-items:center;
}


.carousel-container .inner {
  min-width: 130px;
  margin-left: 5px;
  margin-right: 5px;
  width: 130px;
  height: 100%;
  border: 1px solid black;
  display: inline-block;
  padding: 10px;
  border: 1px solid #dcdcdc;
}

.carousel-container .inner a{
  text-decoration: none;
}

.carousel-container .inner .mythumbnail {
  display: inline-block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.carousel-container .inner img{
  max-height: 80%; /* causes slight stretch */
  width: 100%;
  /* object-fit: cover; /* Ensure the image covers the entire 120x120 area without stretching */*/
  object-fit: cover; /* Ensure the image covers the entire 120x120 area without stretching */

}



.featured-auctions .carousel-container .inner .caption{
  font-size: 1em;
}

.carousel-container .inner .caption{
  height: 20%;
  font-size:.7em;
  font-weight: normal;
  font-weight: bold;
  text-wrap: nowrap;
  overflow: hidden;
  display: flex;
  align-items:center;
  padding-left: 5px;
  background-color: whitesmoke;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
  /*
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  */
}

.carousel-container .carousel-arrow{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  border:1px solid #bbbbbb;
  color:  #666666;
  cursor: pointer;
}

.carousel-container .carousel-arrow .fa{
  font-size: 2em;
}

.carousel-container .carousel-arrow:hover{
  background-color: #d6d0d0;
}


.carousel-container .carousel-arrow[data-direction="left"]{
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.carousel-container .carousel-arrow[data-direction="right"]{
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.carousel-container .carousel::-webkit-scrollbar {
  display: none;
}

.carousel-container .carousel {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  width:100%;
}

.carousel-center{
  display: flex;
  justify-content: center;
  align-items:center;
}
