/**
 * Geo/Language Suggestion Popup - centered on the screen (see geoSuggest.js)
 */
.s123-geo-suggest-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(0,0,0,0.5);
	padding: 1rem;
}
.s123-geo-suggest-popup {
	position: relative;
	width: 100%;
	max-width: 26rem;
	background-color: #fff;
	border-radius: 0.5rem;
	box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
	padding: 2rem 1.5rem 1.5rem;
	text-align: center;
}
.s123-geo-suggest-popup .s123-geo-suggest-message {
	color: #1c2a3a;
	font-size: 1.05rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}
.s123-geo-suggest-popup .s123-geo-suggest-accept {
	display: block;
	padding: 0.6rem 1rem;
	border-radius: 0.25rem;
	background-color: var(--primary_color, #3498db);
	color: #fff;
	text-decoration: none;
	margin-bottom: 0.75rem;
}
.s123-geo-suggest-popup .s123-geo-suggest-accept:hover {
	opacity: 0.9;
	color: #fff;
	text-decoration: none;
}
.s123-geo-suggest-popup .s123-geo-suggest-dismiss {
	display: inline-block;
	color: #7c8a99;
	text-decoration: underline;
	font-size: 0.9rem;
}
.s123-geo-suggest-popup .s123-geo-suggest-dismiss:hover {
	color: #1c2a3a;
}
.s123-geo-suggest-popup .s123-geo-suggest-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	color: #7c8a99;
	font-size: 1rem;
}
.s123-geo-suggest-popup[dir="rtl"] .s123-geo-suggest-close {
	right: auto;
	left: 0.75rem;
}
.s123-geo-suggest-popup .s123-geo-suggest-close:hover {
	color: #1c2a3a;
}
