.main {
    display: flex;
    flex-direction: column;
}
.title {
    display: flex;
    font-family: serif;
    font-size: 30px;
    margin: 0 0 20px 0;
    justify-content: center;
}
.description {
    display: flex;
    font-size: 18px;
    margin: 0 0 20px 0;
    justify-content: center;
}
.content_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 20px 40px 20px;
}
/* ----------------------------- */
.button_container {
    justify-content: center;
    display: flex;
    margin: 0 0 20px 0;
}
.proceed_button {
    background-color: #F2F2FF;
    cursor: pointer;
    font-size: 18px;
    border: 0;
    border-radius: 24px;
    text-align: center;
    margin: 14px 0 0 0;
    padding: 12px 20px 12px 20px;
    width: 320px;
}
.empty_button {
    background-color: #F2F2FF;
    cursor: pointer;
    border: 0;
    border-radius: 24px;
    margin: 12px 0 0 0px;
    padding: 12px 20px 12px 20px;
    font-size: 18px;
    width: 360px;
}
.continue_button {
    background-color: #F2F2FF;
    cursor: pointer;
    border: 0;
    border-radius: 24px;
    margin: 12px 0 0 0px;
    padding: 12px 20px 12px 20px;
    font-size: 18px;
    width: 360px;
}
.empty_button:hover,
.proceed_button:hover,
.continue_button:hover {
    color: White;
    background-color: DarkRed;
}
.add_remove_button {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    font-family: FontAwesome;
    font-size: 22px;
}
.add_remove_button:hover {
    color: DarkRed;
}
/* ----------------------------- */
.add_remove {
    white-space: wrap;
    vertical-align: top;
}
.item_header {
    font-family: serif;
    font-size: 20px;
    width: 200px;
    text-align: left;
    white-space: wrap;
    padding: 0 0 10px 10px;
}
.item {
    width: 200px;
    text-align: left;
    white-space: wrap;
    vertical-align: top;
    padding: 0 10px 0 10px;
}
.item_row {
    height: 80px;
}
.total {
    width: 200px;
    text-align: left;
    white-space: wrap;
    padding: 10px 5px 0 0;
}
.price_header {
    font-family: serif;
    font-size: 20px;
    width: 80px;
    text-align: left;
    white-space: nowrap;
    padding: 0 0 10px 0;
}
.price {
    width: 80px;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    padding: 0;
}
.unit_price {
    width: 80px;
    text-align: left;
    white-space: nowrap;
    padding: 0 0 10px 0;
}
.weight_header {
    font-family: serif;
    font-size: 20px;
    width: 80px;
    text-align: left;
    white-space: nowrap;
    padding: 0 0 10px 0;
}
.weight {
    width: 80px;
    text-align: left;
    white-space: nowrap;
    vertical-align: top;
    padding: 0;
}
.empty_label {
    font-size: 18px;
    font-weight: normal;
    margin: 0 0 20px 20px;
    border: 0;
    text-align: left;
}
