/*
Theme Name: WpResidence
Theme URI: https://themeforest.net/user/wpestate
Description:WP Residence is a premium & responsive WordPress theme designed for Real Estate companies and independent agents.
Version: 5.3.1
Author: wpestate
Author URI: https://www.wpestate.org
Text Domain: wpresidence
Tags: white, one-column, two-columns,left-sidebar, right-sidebar, fluid-layout , custom-menu, theme-options, translation-ready
License:
License URI: 
---------------------------------------------------------------*/ 

/*
Staring with version 5.0 we swithc to Bootstrap 5.3 and Scss code. The compiled css code is /public/css/main.css
Please review this document https://help.wpresidence.net/article/wpresidence-theme-5-0-scss-css-and-bootstrap-integration-documentation/ for more details
*/

/* === WP Residence: Limit Country Dropdown === */

/* Hide all country options first */
select[name="country"] option {
    display: none;
}

/* Show only allowed countries */
select[name="country"] option[value="Indonesia"],
select[name="country"] option[value="Maldives"],
select[name="country"] option[value="United States"] {
    display: block;
}

/* Keep placeholder / empty option visible */
select[name="country"] option[value=""],
select[name="country"] option:not([value]) {
    display: block;
}


select.gt_selector.notranslate {
    height: 40px;
    padding: 5px 5px;
}