.carousel-container{
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.carousel-image-wrapper{
    margin: 0 auto;

}
.carousel-image-wrapper img{
    margin-right: -4px;
    margin-bottom: -4px;
}

#left-button, #right-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 10vw;
    max-width: 40px;
}


.carousel-container{
    margin-bottom: 20px;
}

#right-button{
    right: 0;
}

#image-control{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
}

#image-control .dot {
    height: 2vw;
    width: 2vw;
    margin-right: 10px;
    background-color: #717171;
    /* border: 2px solid #000; */
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    max-height: 12px;
    max-width: 12px;
}

#image-control .dot.selected{
    background: transparent;
    background-color: #bbb;
  }