/*
 * Copyright (c) 2021. Deparadox LLC
 */
.carousel-title {
    align-items: flex-end;
    justify-content: space-between;
    display: flex;
    margin-bottom: 1rem;
}

.carousel-navigation {
    word-spacing: -.25em;
}

.carousel-title .carousel-next,
.carousel-title .carousel-previous {
    display: inline-block;
    width: 18px;

    margin-left: 2px;
    margin-top: 3px;
    margin-bottom: 3px;
    border-radius: 2px;

    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    text-align: center;
    text-decoration: none;

    font-size: 1.5rem;
    line-height: 18px;
    background: #333;
    color: #fff;

    speak: none;
    overflow: hidden;
    word-spacing: -.25em;
}

/* */
.carousel-item {
    height: 370px;
    max-height: 90vh;
}

/* Carousel image */
.carousel-thumbnail {
    display: flex;
}
.carousel-thumbnail:hover span.overlay {
    background: rgba(0, 0, 0, .3);
    display: block;
    position: absolute;
}

.carousel-thumbnail,
.carousel-thumbnail span.overlay {
    width: 305px;
    max-width: 90vw;
    height: 305px;
    max-height: 90vh;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}

.slick-slide .carousel-thumbnail img {
    position: absolute;
    width: 305px;
    height: 305px;
    object-fit: cover;
}

/* Carousel text */
.carousel-details {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

