.md-delivery,
.md-delivery * {
    box-sizing: border-box;
}

.md-delivery {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 14px;
    line-height: 20px;
}

.c-product-cart-form__dp-container > .md-delivery + .c-product-cart-form__dp-spinner {
    display: none !important;
}

.md-delivery__header {
    padding: 15px 18px 13px;
    text-align: center;
}

.md-delivery__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.md-delivery__city {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 5px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f2994a;
    cursor: pointer;
    font: inherit;
    line-height: 18px;
    text-decoration: none;
}

.md-delivery__city-text {
    overflow: hidden;
    border-bottom: 1px dashed #f2994a;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.md-delivery__city:hover .md-delivery__city-text {
    border-bottom-color: transparent;
}

.md-delivery__pin {
    flex: 0 0 auto;
    width: 10px;
    height: 14px;
    margin-right: 7px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg width='10' height='14' fill='%23f2994a' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 6.65c-.474 0-.928-.184-1.263-.513A1.732 1.732 0 0 1 3.214 4.9c0-.464.188-.91.523-1.237.335-.329.79-.513 1.263-.513.474 0 .928.184 1.263.513A1.732 1.732 0 0 1 6.65 5.57c-.09.212-.221.405-.387.567A1.789 1.789 0 0 1 5 6.65zM5 0a5.052 5.052 0 0 0-3.536 1.435A4.85 4.85 0 0 0 0 4.9C0 8.575 5 14 5 14s5-5.425 5-9.1a4.85 4.85 0 0 0-1.464-3.465A5.052 5.052 0 0 0 5 0z'/%3E%3C/svg%3E") center / 10px 14px no-repeat;
}

.md-delivery__content {
    min-height: 170px;
    padding: 15px 18px 16px;
    border-top: 1px solid #e0e0e0;
}

.md-delivery__group-title {
    margin-bottom: 11px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.md-delivery__rows {
    display: grid;
    gap: 8px;
}

.md-delivery__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content 22px;
    gap: 2px 9px;
    align-items: baseline;
    padding: 7px 0;
    border-bottom: 1px solid #f2f2f2;
}

.md-delivery__row:last-child {
    border-bottom: 0;
}

.md-delivery__row-title {
    min-width: 0;
    font-weight: 500;
}

.md-delivery__row-value {
    max-width: 220px;
    color: #828282;
    text-align: right;
}

.md-delivery__row-value_price {
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}

.md-delivery__row_unavailable .md-delivery__row-title {
    font-weight: 500;
}

.md-delivery__row_unavailable .md-delivery__row-value {
    display: none;
}

.md-delivery__row_unavailable .md-delivery__row-note {
    color: #828282;
}

.md-delivery__details-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    padding: 0;
    border: 1px solid #b8c4cc;
    border-radius: 50%;
    background: #fff;
    color: #7a8790;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.md-delivery__details-toggle:hover,
.md-delivery__details-toggle[aria-expanded="true"] {
    border-color: #f2994a;
    color: #f2994a;
}

.md-delivery__details-toggle[hidden] {
    display: none;
}

.md-delivery__row-note {
    grid-column: 1 / -1;
    color: #9b9b9b;
    font-size: 13px;
    line-height: 18px;
}

.md-delivery__row[data-reserve-note="1"] .md-delivery__row-note {
    min-height: 18px;
}

.md-delivery__row-details {
    display: none;
    grid-column: 1 / -1;
    margin-top: 3px;
    padding: 8px 10px;
    border-left: 2px solid #f2994a;
    background: #fafafa;
}

.md-delivery__row-details_active {
    display: block;
}

.md-delivery__detail-line {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    color: #686868;
    font-size: 13px;
    line-height: 18px;
}

.md-delivery__detail-line + .md-delivery__detail-line {
    margin-top: 5px;
}

.md-delivery__detail-label {
    min-width: 0;
}

.md-delivery__detail-value {
    flex: 0 0 auto;
    color: #333;
    font-weight: 600;
    text-align: right;
}

.md-delivery__note {
    margin-top: 12px;
    color: #828282;
    font-size: 13px;
    line-height: 18px;
}

.md-delivery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, .45);
}

.md-delivery-modal_active {
    display: flex;
}

.md-delivery-modal__dialog {
    width: min(440px, 100%);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.md-delivery-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px 12px;
}

.md-delivery-modal__title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
}

.md-delivery-modal__close {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #828282;
    cursor: pointer;
    font-size: 26px;
    line-height: 32px;
}

.md-delivery-modal__body {
    padding: 0 20px 20px;
}

.md-delivery-modal__hint {
    margin-bottom: 14px;
    color: #828282;
    font-size: 14px;
    line-height: 20px;
}

.md-delivery-modal__search {
    width: 100%;
    height: 38px;
    margin: 0;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    outline: none;
    font: inherit;
}

.md-delivery-modal__search:focus {
    border-color: #f2994a;
}

.md-delivery-modal__results {
    max-height: 260px;
    margin-top: 10px;
    overflow-y: auto;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
}

.md-delivery-modal__item,
.md-delivery-modal__empty {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #f2f2f2;
    background: #fff;
    color: #333;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.md-delivery-modal__item:last-child,
.md-delivery-modal__empty:last-child {
    border-bottom: 0;
}

.md-delivery-modal__item:hover {
    background: #fafafa;
}

.md-delivery-modal__item-region,
.md-delivery-modal__empty {
    display: block;
    color: #828282;
    font-size: 13px;
}

@media (min-width: 768px) {
    .md-delivery-modal {
        align-items: flex-start;
        padding-top: 9vh;
    }

    .md-delivery-modal__results {
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .md-delivery {
        border-radius: 5px;
    }

    .md-delivery__header {
        padding-right: 15px;
        padding-left: 15px;
    }

    .md-delivery__content {
        min-height: 170px;
        padding-right: 15px;
        padding-left: 15px;
    }

    .md-delivery__row {
        grid-template-columns: minmax(0, 1fr) max-content 22px;
        gap: 2px 8px;
    }

    .md-delivery__row-value {
        max-width: none;
        text-align: right;
    }

    .md-delivery-modal {
        align-items: flex-start;
        padding: 16px;
    }
}
