.gplaces-map-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}
.gplaces-map-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.gplaces-map-dialog {
    position: relative;
    width: min(900px, 90vw);
    max-height: 90vh;
    background: #fff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.gplaces-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    flex: 0 0 auto;
}
.gplaces-map-title {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}
.gplaces-map-close {
    background: transparent;
    border: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0 6px;
}
.gplaces-map-hint {
    padding: 8px 14px;
    font-size: 12px;
    color: #666;
    flex: 0 0 auto;
}
.gplaces-map-canvas {
    flex: 1 1 auto;
    min-height: 50vh;
}
.gplaces-map-footer {
    padding: 10px 14px;
    border-top: 1px solid #eee;
    text-align: right;
    flex: 0 0 auto;
}
.gplaces-map-apply {
    padding: 6px 16px;
    background: #3C7B9F;
    color: #fff;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
}
.gplaces-map-apply[disabled] {
    background: #aab8c0;
    cursor: not-allowed;
}
.gplaces-map-pin-btn {
    border: 1px solid #ccc;
    background: #f5f5f5;
    color: #555;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}
.gplaces-map-pin-btn:hover {
    background: #e8e8e8;
    color: #222;
}
.gplaces-map-pin-btn svg {
    display: block;
    width: 16px;
    height: 16px;
    fill: currentColor;
}
.input-group-btn > .gplaces-map-pin-btn {
    height: 100%;
}
.gplaces-pin-input {
    border-right: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.input-group > .gplaces-pin-input + .input-group-btn > .gplaces-map-pin-btn {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Bootstrap 2 (input-append) as themed by redesign.css. In this theme inputs
   are 50px tall (box-sizing: border-box) with 5px vertical margin, and the
   working "Kč" add-on is tuned to match via:
     #Account_client_delivery_price + .add-on { height:50px; padding:15px 10px;
                                                 margin:5px 0; box-sizing:border-box; }
   The pin add-on mirrors those exact metrics so it lines up with the input. */
.input-append.gplaces-pin-append {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
}
.input-append.gplaces-pin-append > .gplaces-pin-input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}
.input-append.gplaces-pin-append > .add-on[data-gplaces-pin] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    height: 50px;
    padding: 15px 10px;
    margin: 5px 0 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 20px;
    cursor: pointer;
    color: #555;
}
.input-append.gplaces-pin-append > .add-on[data-gplaces-pin]:hover {
    background-color: #e0e0e0;
    color: #222;
}
.input-append.gplaces-pin-append > .add-on[data-gplaces-pin] > svg {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    fill: currentColor;
}
