
/* Showcase is a slideshow where you can click to see the next image. */
.showcase {
    max-width: 80%;
    height: 55vw;
    position: relative;
    margin: auto;
}
.showcase_text {
    /* color: rgb(52, 48, 48);
    font-size: 1.3em;
    padding: 8px 12px;
    position: absolute;
    top: 4px;
    right: 20px;
    width: 100%;
    text-align: right; */
}
.showcase_containers {
    width: 100%;
    background-color: rgb(51, 51, 51);
    display: none;
}
.showcase_images {
    /* max-height: 1%; */
    max-height: 55vw;
    margin-bottom: -0.55vw;
}
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 25px 12px 25px 12px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 3;
}

/* Position the "prev button" to the ;eft */
.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}


.exhibit_days {
    margin: 1% 0px 3% 0px;
    font-size: 2.5em;
}
.exhibit_calendar_box, .exhibit_calendar_box_name {
    width: 90%;
    display: inline-block;
    background-color: white;
    border: 2px solid rgb(147, 147, 147);
    padding: 1% 4% 1% 4%;
}
.exhibit_calendar_box_name {
    border-bottom: 0px;
    font-size: 2.2em;
    background-color: rgb(240, 240, 240);
    color: rgb(28, 28, 28);
}
.exhibit_calendar_text {
    /* padding: 4% 80% 0px 0px; */
    /* margin-left: -5%; */
    color: rgb(75, 75, 75);
    font-size: 1em;
    float: right;
    
}
.exhibit_calendar_text_box {
    float: right;
}
.exhibit_calendar_number {
    /* padding-bottom: 2%; */
    color: rgb(28, 28, 28);
    font-size: 2.2em;
    float: left;
}
.exhibit_calendar_text, .exhibit_calendar_number {
    display: block;
    font-family: 'Courier New', Courier, monospace;
}
  
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

#last_day {
    margin-bottom: -.7%;
    height: calc(2.4vw + 19px);
}


  
/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}
  
@keyframes fade {
    from {opacity: .6}
    to {opacity: 1}
}

@media only screen and (min-width: 667px) {

    .showcase {
        height: 42vw;

    }
    .showcase_images {
        max-height: 42vw;
        margin-bottom: -.37vw;
    }

}

