.containter {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}
section {
    height: auto;
    display: flex;
    justify-content: center;
    flex: 1;
    min-height: 70vh;
}

section > div {
    display: flex;
    flex-direction: column;
    width: 1024px;
}

section > div > p {
    font-size: 1.8em;
    margin-top: 50px;
    margin-bottom: 50px;
    font-weight: 500;
    text-align: center;
}

.order {
    width: 100%;
    height: 70px;
    background-color: #F0F4F8;
    margin-top: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.date {
    margin-left: 30px;
}

.order-number {
    width: 250px;
    text-align: center;
}

.total-price {
    width: 100px;
    text-align: center;
}

.detail {
    margin-right: 12px;
}

.detail-btn {
    background-color: white;
    border: none;
    height: 46px;
    width: 96px;
    border-radius: 10px;
}

.detail-order-container {
    width: 1022px;
    background-color: white;
    border: 1px solid #F0F4F8;
    border-radius: 0 0 12px 12px;
    display: none;
}

.detail-order {
    width: 100%;
    height: 70px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.title {
    width: 400px;
}

.image {
    height: 50px;
}

.quantity {
    width: 100px;
}

.price {
    width: 100px;
    text-align: right
}

footer {
    margin-top: 80px;
}