tr.clickable {
    cursor: pointer;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 10px;
    background-color: rgb(16, 153, 199);
    color: white;
}

label {
    color: rgb(16, 153, 199);
    font-weight: bold;
}


/* NEW */

.card {
    padding: 10px;
    margin-bottom: 10px;
}

.carousel {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.main-image {
    height: 100%;
    width: 100%;
}

.main-image img {
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: left 1s ease-in-out, right 1s ease-in-out;
    margin: auto;
}

.main-image img.active {
    left: 0;
    right: 0;
}

.main-image img.off-screen-right {
    left: 100vw;
    right: 0;
}

.main-image img.off-screen-left {
    right: 100vw;
    left: -100vw;
}

.bottom-spacer {
    padding-bottom: 120px;
}

.thumb-nails {
    display: inline-block;
    white-space: nowrap;
    text-align: center;
    overflow-x: auto;
    overflow-y: hidden;
}

.thumb-nails img {
    width: auto;
    max-height: 75px;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
}

.fas.disabled {
    color: #ccc;
}

.carousel:hover .prev,
.carousel:hover .next {
    opacity: .08;
}

.prev,
.next {
    position: absolute;
    top: 25%;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s ease-out;
    cursor: pointer;
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover,
.next:hover {
    transform: scale(1.05);
    opacity: 1 !important;
}


/* END NEW */