/* Location field — native <select> with a single small flag icon of the
 * selected country. We attach to Elementor's own select wrapper (position:
 * relative) and never wrap the <select>, so its full width and bottom border
 * line stay exactly like every other field. */

.efmt-loc {
    position: relative;
}

.efmt-loc-flag {
    position: absolute;
    left: 0.1em;
    top: 50%;
    transform: translateY(-50%);
    width: 1.15em;
    height: 0.82em; /* ~4:3 */
    pointer-events: none; /* clicks fall through to the native select */
    z-index: 2;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

/* Room for the flag only when one is shown; nothing else about the select
 * changes, so it matches the other selects on the form. */
.efmt-loc.has-flag select {
    padding-left: 1.7em !important;
}
