.commerce-withdrawal {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1rem;
    color: #17202a;
}

.commerce-withdrawal__intro,
.commerce-withdrawal__success {
    margin-bottom: 1.5rem;
}

.commerce-withdrawal h1 {
    margin: 0 0 .75rem;
    font-size: 2rem;
    line-height: 1.2;
}

.commerce-withdrawal h2 {
    font-size: 1.25rem;
    margin: 0 0 1rem;
}

.commerce-withdrawal__form {
    display: grid;
    gap: 1rem;
}

.commerce-withdrawal fieldset,
.commerce-withdrawal__summary,
.commerce-withdrawal__orders,
.commerce-withdrawal__success {
    border: 1px solid #d7dde5;
    border-radius: 6px;
    padding: 1rem;
    background: #fff;
}

.commerce-withdrawal legend {
    font-weight: 700;
    padding: 0 .35rem;
}

.commerce-withdrawal label {
    display: grid;
    gap: .35rem;
    margin: .75rem 0;
}

.commerce-withdrawal input,
.commerce-withdrawal select,
.commerce-withdrawal textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #bac4d0;
    border-radius: 4px;
    padding: .65rem .75rem;
    font: inherit;
}

.commerce-withdrawal__check {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
}

.commerce-withdrawal__check input {
    width: auto;
    margin-top: .2rem;
}

.commerce-withdrawal button {
    border: 0;
    border-radius: 4px;
    padding: .75rem 1rem;
    background: #176d5d;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.commerce-withdrawal__alert,
.field-error {
    color: #8a1f11;
    background: #fff1ed;
    border: 1px solid #f0b5a8;
    border-radius: 4px;
    padding: .6rem .75rem;
}

.field-error {
    margin: -.35rem 0 .5rem;
}

.commerce-withdrawal__hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.commerce-withdrawal__order-list {
    display: grid;
    gap: .5rem;
}

.commerce-withdrawal__order {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: .75rem;
    align-items: center;
    padding: .65rem;
    border: 1px solid #d7dde5;
    border-radius: 4px;
}

@media (max-width: 700px) {
    .commerce-withdrawal {
        padding: 1rem;
    }

    .commerce-withdrawal__order {
        grid-template-columns: 1fr;
    }
}
