.carousel-wrapper
{
  vertical-align: middle;
  width: 90%;
  margin: 0 4%;
  position: relative;
  height: 60vh;
}

.carousel-image-list
{
  width: 100%;
  overflow: hidden;
  position: absolute;
  height: inherit;
}

.carousel-image
{
    position: absolute;
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: transparent;
}

.carousel-image-list img
{
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: contain;
}



.carousel-arrow button img
{
  width: 4vw;
  opacity: 0.5;
}

.carousel-arrow button
{
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.arrow-right
{
  right: 0;
}



.carousel-arrow
{
  position: absolute;
  display: flex;
  top: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;
}



.carousel-i
{
    border: solid #e5c62c;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 1vw;
    margin: 0 10px;
}

.white-arrow
{
  border-color: #ffffff;
}

.carousel-i-right
{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.carousel-i-left
{
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

@media screen and (max-width: 650px)
{
  .carousel-i
  {
      padding: 2vw;
  }
}
