.country-select--native-hidden {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.country-combobox {
	position: relative;
	width: 100%;
}

.country-combobox::after {
	position: absolute;
	top: 50%;
	right: 14px;
	width: 0;
	height: 0;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 6px solid #334e68;
	content: '';
	pointer-events: none;
	transform: translateY(-25%);
}

.country-combobox__input.form-control {
	width: 100%;
	padding-right: 36px;
	background: #fdfefe;
	cursor: text;
}

.country-combobox__input:focus {
	border-color: #0068a9;
	box-shadow: 0 0 0 2px rgba(0, 104, 169, 0.18);
	outline: none;
}

.country-combobox__list {
	position: absolute;
	z-index: 10000;
	top: calc(100% + 4px);
	right: 0;
	left: 0;
	max-height: 260px;
	margin: 0;
	padding: 4px 0;
	overflow-y: auto;
	border: 1px solid #9fb3c8;
	border-radius: 3px;
	background: #fdfefe;
	box-shadow: 0 8px 20px rgba(16, 42, 67, 0.18);
	color: #102a43;
	list-style: none;
}

.country-combobox__list.has-no-results::after {
	display: block;
	padding: 10px 12px;
	color: #627d98;
	content: 'No countries found';
}

.country-combobox__option {
	padding: 8px 12px;
	cursor: pointer;
}

.country-combobox__option:hover,
.country-combobox__option.is-active,
.country-combobox__option[aria-selected='true'] {
	background: #0068a9;
	color: #fdfefe;
}

.country-combobox__option[hidden],
.country-combobox__list[hidden] {
	display: none;
}
