/* Ocultar toda la fila del campo País en el checkout */
#checkout-addresses-step .address-form .form-group.row:has(select[name="id_country"]) {
  display: none !important;
}
#vacaciones-popup-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    z-index: 9998;
}

#vacaciones-popup {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 0;
    border-radius: 10px;
    max-width: 90%;
    z-index: 9999;
}

#vacaciones-popup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#vacaciones-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    width: 32px; height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
}