.cmdl-city-widget {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.cmdl-city-button {
    border: 0;
    border-bottom: 1px dashed currentColor;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.cmdl-delivery-date,
.cmdl-product-delivery,
.cmdl-cart-delivery {
    color: #23803b;
    font-weight: 600;
}

.cmdl-product-delivery {
    margin-top: 6px;
    font-size: 14px;
}

.cmdl-cart-delivery {
    margin-top: 4px;
    font-size: 13px;
}

.cmdl-modal[hidden] {
    display: none;
}

.cmdl-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.cmdl-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.cmdl-modal__dialog {
    position: relative;
    width: min(760px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    padding: 24px;
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .2);
}

.cmdl-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cmdl-modal__search {
    width: 100%;
    margin: 14px 0 18px;
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
}

.cmdl-region {
    border-top: 1px solid #ededed;
    padding: 10px 0;
}

.cmdl-region summary {
    cursor: pointer;
    font-weight: 700;
}

.cmdl-city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 8px;
    padding-top: 10px;
}

.cmdl-city-choice {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 9px 10px;
    background: #fafafa;
    text-align: left;
    cursor: pointer;
}

.cmdl-city-choice:hover {
    border-color: #23803b;
    background: #f2fbf4;
}
