#payment {
    padding: 40px 15px;
}

#paymentBody {
    max-width: 540px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: .3s ease;
}

.paymentBodyItem {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    border: 2px solid lightgray;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
}

.paymentBodyItemTitle {
    font-weight: 700;
}

.paymentBodySubtitle {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    text-align: center;
}

#paymentElement {

}

#paymentBodyUpdate {
    margin: 32px auto 0;
}