:root {
	--gtr-z-index: 2147483647;
}

.gtr-switcher,
.gtr-menu {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.25;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.gtr-switcher *,
.gtr-menu * {
	box-sizing: border-box;
}

.gtr-switcher {
	display: inline-flex;
	position: relative;
	vertical-align: middle;
	isolation: isolate;
}

.gtr-trigger {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 84px;
	height: 44px;
	margin: 0;
	padding: 6px 14px 6px 8px;
	border: 1px solid #d2d4d7;
	border-radius: 999px;
	background: #fff;
	box-shadow: none;
	color: #090909;
	cursor: pointer;
	font: inherit;
	line-height: 1;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
	-webkit-tap-highlight-color: transparent;
}

.gtr-trigger:hover {
	border-color: #b7bbc0;
	background: #fff;
	color: #090909;
}

.gtr-trigger:focus,
.gtr-trigger:focus-visible {
	outline: none;
	border-color: #111;
	box-shadow: 0 0 0 3px rgba( 17, 17, 17, 0.14 );
}

.gtr-trigger[aria-expanded="true"] {
	border-color: #111;
	box-shadow: 0 0 0 3px rgba( 17, 17, 17, 0.09 );
}

.gtr-trigger-flag,
.gtr-option-flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	overflow: hidden;
	border-radius: 50%;
	background: #f1f1f1;
	box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.08 );
}

.gtr-trigger-flag {
	width: 30px;
	height: 30px;
}

.gtr-trigger-flag img,
.gtr-option-flag img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	object-fit: cover;
	transform: scale( 1.50 );
}

.gtr-trigger-code {
	display: inline-block;
	color: #090909;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	white-space: nowrap;
}

.gtr-menu-home {
	display: contents;
}

.gtr-menu[hidden] {
	display: none !important;
}

.gtr-menu {
	position: fixed !important;
	z-index: var( --gtr-z-index ) !important;
	min-width: 220px;
	max-width: min( 280px, calc( 100vw - 16px ) );
	margin: 0 !important;
	padding: 6px;
	overflow: hidden;
	border: 1px solid #dedfe2;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 18px 46px rgba( 0, 0, 0, 0.18 ), 0 3px 12px rgba( 0, 0, 0, 0.08 );
	color: #111;
	transform-origin: top center;
	animation: gtr-menu-in 130ms ease-out both;
	overscroll-behavior: contain;
}

.gtr-menu-scroll {
	max-height: inherit;
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
}

.gtr-option,
.gtr-option.glink {
	display: grid;
	grid-template-columns: 28px minmax( 0, 1fr ) auto;
	align-items: center;
	gap: 10px;
	min-height: 44px;
	margin: 0 !important;
	padding: 7px 10px !important;
	border: 0 !important;
	border-radius: 10px;
	background: transparent;
	box-shadow: none !important;
	color: #151515 !important;
	cursor: pointer;
	font: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
	text-align: start;
	text-decoration: none !important;
	transition: background-color 120ms ease;
	-webkit-tap-highlight-color: transparent;
}

.gtr-option:hover,
.gtr-option:focus,
.gtr-option:focus-visible {
	outline: none;
	background: #f2f3f4;
	color: #090909 !important;
}

.gtr-option.gtr-option--current,
.gtr-option[aria-checked="true"] {
	background: #eceef0;
	font-weight: 650;
}

.gtr-option-flag {
	width: 28px;
	height: 28px;
}

.gtr-option-name {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.gtr-option-code {
	display: inline-block;
	color: #6f747b;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.gtr-admin-message {
	display: inline-block;
	padding: 8px 10px;
	border: 1px solid #dba617;
	border-radius: 6px;
	background: #fff8e5;
	color: #5f4400;
	font-size: 13px;
}

.gtr-switcher .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect( 0, 0, 0, 0 ) !important;
	clip-path: inset( 50% ) !important;
	border: 0 !important;
	white-space: nowrap !important;
}

/* Hide only GTranslate's visual selectors when replacement is requested. */
html.gtr-hide-original .gtranslate_wrapper,
html.gtr-hide-original #gt_float_wrapper,
html.gtr-hide-original .gt_switcher_wrapper,
html.gtr-hide-original .gt_float_switcher {
	display: none !important;
}

@keyframes gtr-menu-in {
	from {
		opacity: 0;
		transform: translateY( -4px ) scale( 0.98 );
	}
	to {
		opacity: 1;
		transform: translateY( 0 ) scale( 1 );
	}
}

@media ( max-width: 480px ) {
	.gtr-menu {
		max-width: calc( 100vw - 16px );
		border-radius: 13px;
	}

	.gtr-option,
	.gtr-option.glink {
		min-height: 46px;
	}
}

@media ( prefers-reduced-motion: reduce ) {
	.gtr-trigger,
	.gtr-option,
	.gtr-menu {
		animation: none !important;
		transition: none !important;
	}
}
