.ec-orderRole {
    padding: 0 20px;
}
.ec-rectHeading {
    width: 100%;
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
    margin: .5rem 0;
    background-color: var(--bs-gray-200);
}
.ec-rectHeading h2 {
    font-size: 1rem;
    line-height: 1;
    margin: 0;
}
.ec-borderedList {
    border-top: 1px dotted var(--bs-gray-400);
    margin: 0;
    padding: 0;
}
.ec-borderedList li {
    border-bottom: 1px dotted var(--bs-gray-400);
}
.ec-imageGrid {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 1rem;
    padding: .5rem 0;
}
.ec-imageGrid__img {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
}
.ec-imageGrid__img img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.ec-imageGrid__gift {
    grid-column: 1 / -1;
}
.ec-imageGrid__gift .ec-select {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}
.ec-select_body {
    flex: 1;
    max-width: 100px;
}
.ec-orderPacking__change {
    padding: 1rem 0;
}
.ec-inlineBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 1rem;
    border: 1px solid var(--bs-gray-600);
    background-color: var(--bs-gray-100);
    text-align: center;
}
.ec-radio--item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: .5rem;
}
.ec-totalBox {
    background-color: var(--bs-gray-200);
    padding: 1rem;
    margin-top: .5rem;
}
.ec-totalBox__spec {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
    margin: 0!important;
}
.ec-totalBox__spec dt {
    padding-left: 1rem;
    font-weight: 400;
}
.ec-totalBox__spec dd {
    text-align: right;
}
.ec-totalBox__total,
.ec-totalBox__paymentTotal {
    border-top: 1px dotted var(--bs-gray-500);
    text-align: right;
    display: flex;
    justify-content: flex-end;
    padding: .5rem 0 .25rem;
}
.ec-totalBox__paymentTotal {
    border-top: none;
    padding: .25rem 0;
}
.ec-totalBox__price {
    min-width: 40%;
    font-weight: 600;
    padding-right: .2rem;
}
.ec-totalBox__taxRate {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 0;
}
.ec-totalBox__taxRate dt {
    font-weight: 400;
}
.ec-totalBox__taxRate dd {
    font-weight: 600;
}
.ec-totalBox__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    gap: 1rem;
}
.ec-totalBox__btn .ec-blockBtn--action,
.ec-totalBox__btn .ec-blockBtn--cancel {
    width: 100%;
    max-width: initial!important;
}
.ec-selectGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 1rem;
}
.ec-select__delivery {
    max-width: 400px;
}
.ec-orderDelivery__edit {
    padding-top: 0;
    display: flex;
    gap: 1rem;
}
.ec-orderDelivery__item,
.ec-orderAccount__account,
.ec-orderPacking__change,
.ec-orderDelivery__address,
.ec-orderDelivery__actions,
.ec-orderDelivery__edit,
.ec-radio,
.ec-blockRadio {
    padding: .5rem 0;
}
select:disabled {
    opacity: .5!important;
}
@media (min-width: 768px) {
    .ec-orderRole {
        display: grid;
        grid-template-columns: minmax(0, 3fr) minmax(300px, 1fr);
        gap: 1.5rem;
        align-items: flex-start;
    }
    .ec-orderRole__summary {
        position: sticky;
        z-index: 2;
        top: calc(var(--header-height) + 1rem);
    }
    .ec-totalBox {
        padding: 1.5rem;
    }
    .ec-totalBox__btn {
        align-items: flex-start;
    }
}
@media (min-width: 992px) {
    .ec-orderRole {
        gap: 3rem;
    }
    .ec-orderDelivery__item,
    .ec-orderAccount__account,
    .ec-orderPacking__change,
    .ec-orderDelivery__address,
    .ec-orderDelivery__actions,
    .ec-orderDelivery__edit,
    .ec-radio,
    .ec-blockRadio {
        padding: .5rem 1rem;
    }
}