.main {
    display: flex;
    flex-direction: column;
}
.description {
    font-size: 18px;
    justify-content: center;
    display: flex;
}
/* ----------------------------- */
.button_container {
    justify-content: center;
    display: flex;
    margin: 0 0 10px 0;
}
.buttons { }
.catalog_toc_button {
    background-color: #F2F2FF;
    cursor: pointer;
    border-radius: 24px;
    margin: 10px 0 0 0;
    padding: 12px 20px 12px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    width: 320px;
}
.catalog_toc_button:hover {
    color: White;
    background-color: DarkRed;
}
/* ----------------------------- */
.slide_container {
    display: flex;
    position: relative;
    justify-content: center;
    text-align: center;
    height: 450px;
    top: -25px;
}
.slide_deck {
    display: none;
}
.slide_fade {
    animation-name: slide_fade;
    animation-duration: 1.5s;
}
@keyframes slide_fade {
    from {opacity: .4}
    to {opacity: 1}
}
.slide_table {
    display: flex;
    position: relative;
    font-weight: bold;
    margin: 0 0 0 0;
    padding: 0 ;
    border: 0;
    top: 10px;
    z-index: 1000;
    justify-content: center;
}
.slide_shadow {
    position: relative;
    max-width: 100%;
    max-height: 410px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.5);
    border-radius: 24px;
    margin: 0;
}
@media only screen and (max-width: 440px) {
    .slide_shadow {
        max-width: calc(100vw - 60px);
    }
}
.slide_noshadow {
    position: relative;
    max-width: 100%;
    min-width: 320px;
    border-radius: 24px;
    margin: 0;
}
@media only screen and (max-width: 440px) {
    .slide_noshadow {
        max-width: calc(100vw - 60px);
    }
}
.slide_caption {
    position: relative;
    font-style: italic;
    font-size: 16px;
    padding: 8px 12px;
}
.slide_text {
    position: relative;
    font-style: italic;
    font-size: 16px;
    padding: 50px 0 0 0;
    height: 280px;
}
.slide_counter {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 0 20px;
    top: 10px;
    left: 20px;
    text-align: left;
    z-index: 1000;
}
/* ----------------------------- */
.slide_backward {
    text-align: right;
    margin: 0;
    padding: 0;
    border: 0;
}
.slide_backward_button {
    font-size: 24px;
    cursor: pointer;
}
.slide_backward_button:hover {
    color: DarkRed;
}
.slide_pause {
    text-align: center;
    margin: 0;
    padding: 0;
    border: 0;
    width: 70px;
}
.slide_pause_button {
    font-size: 24px;
    cursor: pointer;
}
.slide_pause_button:hover {
    color: DarkRed;
}
.slide_forward {
    text-align: left;
    margin: 0;
    padding: 0;
    border: 0;
}
.slide_forward_button {
    font-size: 24px;
    cursor: pointer;
}
.slide_forward_button:hover {
    color: DarkRed;
}
