/*
 * Give the predictions wrapper a proper containing block.
 * The SDK renders .endereco-predictions-wrapper as position:absolute; height:0
 * so it floats over the form without pushing content down. It must be anchored
 * to the nearest .control div (wraps the input), otherwise it escapes to a
 * distant positioned ancestor and lands in the wrong place.
 */
.checkout-index-index .control,
.form-address-edit .control {
    position: relative;
}

/* Defensive z-index: the wrapper already has z-index:99001 but the inner list
   needs an explicit value so it wins any future sibling stacking conflicts. */
.endereco-predictions {
    z-index: 1;
}
