/********************* IMAGE CAROUSEL  ***************/
.carousel {
    /*
    border: 1px solid rgb(153, 153, 153);
    border-radius: 5px;
    background-color: rgb(232, 232, 232);
    */
}

/* 
    Icons to skik and previous should be dark on white bg 
    aswell as status buttons at bottom should be dark to be more seeable on white bg
*/
.carousel-icon, .carousel-indicators > li {
    filter: invert(0.75);
}

.carousel-item {
    /* Give div full size so bg image is seen */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Center the image */
    background-position: center;
    /* Do not repeat the image */
    background-repeat: no-repeat;
    /* Resize the background image to cover the entire container */
    background-size: contain;
}