.main {
    display: flex;
    flex-direction: column;
}
.title {
    display: flex;
    font-family: serif;
    font-size: 30px;
    margin: 0 0 20px 0;
    justify-content: center;
    text-align: center;
}
.content_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px 40px 20px;
}
/* ----------------------------- */
.button_container {
    justify-content: center;
    display: flex;
    top: -50px;
}
.button_container_cart {
    justify-content: center;
    display: flex;
}
.prev_button {
    position: relative;
    background-color: transparent;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    top: 60px;
    left: -200px;
    height: 20px;
}
.prev_button:hover {
    color: DarkRed;
    font-size: 24px;
}
.add_remove_button {
    background-color: transparent;
    font-family: FontAwesome;
    font-size: 28px;
    cursor: pointer;
    border: 0;
    padding: 10px 0 0 0;
    width: 35px;
}
.add_remove_button:hover {
    color: DarkRed;
}
.cart_icon_button {
    background-color: transparent;
    padding: 10px 0 0 0;
}
.cart_icon_button:hover {
    color: DarkRed;
}
/* ----------------------------- */
.discount {
    color: White;
    background-color: DarkRed;
    font-size: 20px;
    text-align: center;
    border: 0;
    border-radius: 24px;
    margin: 20px 0 16px 0;
    padding: 16px 10px 16px 10px;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.25);
    width: 40%;
    left: 30%
}
.thumb,
.thumb_image { }
.name {
    font-family: serif;
    font-size: 24px;
    text-align: center;
    border-radius: 24px;
    border: 2px solid LightGray;
    margin: 10px 0 0 0;
    padding: 0 0 10px 0;
    width: 100%;
}
.number {
    font-size: 16px;
}
.item_description {
    margin: 40px 0 40px 0;
    font-size: 16px;
}
.price_strikethrough {
    font-size: 16px;
    text-decoration: line-through;
}
.discount_price {
    color: DarkRed;
    font-size: 24px;
    font-weight: bold;
}
.price {
    font-size: 16px;
}
.weight {
    font-size: 16px;
}
.out_of_stock {
    color: DarkRed;
    font-size: 16px;
    margin: 10px 0 0 0;
}
.alamo_link {
    background-color: #F2F2FF;
    cursor: pointer;
    font-size: 18px;
    border-radius: 24px;
    text-align: center;
    margin: 14px 0 0 0;
    padding: 12px 20px 12px 20px;
    width: 320px;
}
.alamo_link:hover {
    background-color: LightGrey;
}
/* ----------------------------- */
.slide_container {
    position: relative;
    margin: 10px 0 0 0;
    padding: 0;
    border: 0;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    justify-content: center;
}
.slide_deck {
    display: none;
}
.slide_fade {
    animation-name: slide_fade;
    animation-duration: 1.5s;
}
@keyframes slide_fade {
    from {opacity: .4}
    to {opacity: 1}
}
.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;
    padding: 8px 12px;
    font-size: 16px;
    font-style: italic;
}
.slide_text {
    font-size: 16px;
    position: relative;
    padding: 50px 0 0 0;
    height: 280px;
    font-style: italic;
}
.slide_counter {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0 0 0 20px;
    border: 0;
    top: 0px;
    left: 0px;
    width: 50px;
    text-align: left;
    z-index: 1000;
}
.slide_backward {
    cursor: pointer;
    text-align: right;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 24px;
}
.slide_pause {
    cursor: pointer;
    text-align: center;
    margin: 0;
    padding: 0;
    border: 0;
    width: 70px;
    font-size: 24px;
}
.slide_forward {
    cursor: pointer;
    text-align: left;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 24px;
}
/* ----------------------------- */
.crossref_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #F2F2FF;
    border: 2px solid LightGray;
    border-radius: 24px;
    margin: 10px 0 0 0;
    padding: 10px;
    width: 300px;
}
.crossref_link {
    font-size: 16px;
    text-align: center;
}
.crossref_container:hover {
    background-color: White;
}
