.main {
    display: flex;
    flex-direction: column;
}
.title {
    display: flex;
    font-family: serif;
    font-size: 30px;
    justify-content: center;
    text-align: center;
    margin: 0 0 10px 0;
}
.description {
    display: flex;
    font-size: 18px;
    justify-content: center;
}
.content_container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 20px 40px 20px;
}
/* ----------------------------- */
.button_container {
    justify-content: center;
    position: relative;
    display: flex;
    top: -115px;
    height: 0;
}
.button_cart_container {
    justify-content: center;
    display: flex;
}
.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;
}
.collase_button {
    background-color: transparent;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    margin: 10px 0 10px 0;
    height: 20px;
}
.collase_button:hover {
    color: DarkRed;
    font-size: 24px;
}
.prev_button {
    background-color: transparent;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    text-align: left;
    margin: 10px 0 10px 0;
    height: 20px;
    width: 180px;
}
.prev_button:hover {
    color: DarkRed;
    font-size: 24px;
}
.next_button {
    background-color: transparent;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 20px;
    border: 0;
    cursor: pointer;
    text-align: right;
    margin: 10px 0 10px 0;
    height: 20px;
    width: 180px;
}
.next_button:hover {
    color: DarkRed;
    font-size: 24px;
}
/* ----------------------------- */
.content {
    display: inline-flex;
    overflow: hidden;
}
.item_container  {
    flex-wrap: wrap;
    justify-content: center;
    font-family: sans-serif;
    width: 100%;
}
.item_container > div { }
.subsection {
    margin: 0 0 10px 0;
    border-radius: 24px;
    border: 2px solid LightGray;
    text-align: center;
    width: 100%;
}
.subsection_title {
    display: flex;
    justify-content: center;
    font-family: serif;
    font-size: 24px;
}
.item {
    background-color: #F2F2FF;
    border-radius: 24px;
    padding: 10px;
    margin: 0 10px 20px 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 440px) {
    .item {
        width: 100%;
    }
}
.item:hover {
    background-color: LightGray;
}
.item_selected {
    background-color: #F2F2FF;
    border-radius: 24px;
    border: 2px solid DarkRed;
    padding: 10px;
    margin: 0 10px 20px 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 440px) {
    .item_selected {
        width: 100%;
    }
}
.item_selected:hover {
    background-color: LightGray;
}
/* ----------------------------- */
.discount {
    color: White;
    background-color: DarkRed;
    border-radius: 24px;
    margin: 10px;
    padding: 10px;
    font-size: 16px;
    box-shadow: 0 8px 8px 0 rgba(0,0,0,0.25);
}
.thumb,
.thumb_image { }

.name {
    font-size: 18px;
    margin: 0 0 10px 0;
}
.notes {
    font-size: 16px;
    margin: 0 0 10px 0;
}
.number {
    font-size: 16px;
}
.price_strikethrough {
    font-size: 16px;
    text-decoration: line-through;
}
.discount_price {
    font-size: 16px;
    color: DarkRed;
    font-weight: bold;
    margin: 10px 0 0 0;
}
.price,
.weight {
    font-size: 16px;
}
.out_of_stock {
    font-size: 16px;
    color: DarkRed;
    font-weight: bold;
    margin: 10px 0 0 0;
}
.quanity {
    font-size: 18px;
    font-weight: bold;
    padding: 10px 0 0 0;
}
/* ----------------------------- */
.crossref_container {
    flex-wrap: wrap;
/*     width: 100%; */
    justify-content: center;
    background-color: #F2F2FF;
    border: 2px solid LightGray;
    border-radius: 24px;
    margin: 5px 0 0 0;
    padding: 10px;
    max-width: 125px;
/*     display: inline-block; */
}
.crossref_link {
    font-size: 16px;
    text-align: left;
}
.crossref_container:hover {
    background-color: White;
}
