/** 
 *  
 * Author: Erico 
 * File Name: Regional Selector
 */
 
/* Text Dropdown Location */

.country-flags-container {
	position: absolute;
	right: 55px;
	top: 5px;
	width: 120px;
	height: auto;
	z-index: 2;
	text-align: right;
}

.global-locations {
	width: 100px;
	height: 30px;
	text-align: center;
	display: block;
	margin: 0 auto;
	padding: 5px;
	font-size: 10px;
}

.country-flags-container .dropdown {
	list-style: none;
	cursor: pointer;
}

.country-flags-container .dropdown-toggle {
	color: #000;
	text-decoration: none;
	font-size: 14px;
	font-family: MyriadProRegular;
}

.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
	color: #fff;
	background-color: #18628c;
}

.dropdown-menu>li>a {
	font-size: 13px;
}

.dropdown-menu {
	min-width: 150px;
}

/* Font Awesome Code */

.fa {
	margin-right: 10px;
	color: #000;
} 

/* End Font Awesome Code */

/* End Text Dropdown Location */


@media (max-width: 991px) {
	.country-flags-container {
                top: 14px;
		right: 5px;	
	}
	
	.dropdown-menu {
		max-height: inherit !important;	
		left: auto !important;
		right: 0 !important;
	}
}

@media (max-width: 767px) {
	.country-flags-container {
		right: 10px;
                top: 5px;
	}	
}