
.shrHeader {
	position: relative;
}

.shrLanguageMenu {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 1;
}

.shrLanguageButton {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 210px;
	padding: 6px 10px;
	border: 1px solid #c7ced9;
	border-radius: 4px;
	background: #fff;
	font: inherit;
	color: #1f2937;
	cursor: pointer;
}

.shrLanguageButton:after {
	content: "\25BE";
	margin-left: auto;
	font-size: 11px;
	color: #6b7280;
}

.shrLanguageFlag {
	width: 18px;
	height: 16px;
	flex: 0 0 auto;
	border: 1px solid rgba(0, 0, 0, 0.12);
}

.shrLanguageList {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 210px;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	border: 1px solid #c7ced9;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.14);
}

.shrLanguageList[hidden] {
	display: none;
}

.shrLanguageOption {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	padding: 8px 10px;
	border: 0;
	background: transparent;
	font: inherit;
	color: #1f2937;
	text-align: left;
	cursor: pointer;
}

.shrLanguageOption:hover,
.shrLanguageOption:focus {
	background: #f3f4f6;
	outline: none;
}

.shrLanguageLabel {
	white-space: nowrap;
	font-size: 0.8rem;
}

@media (max-width: 700px) {
	.shrLanguageMenu {
		position: static;
		padding: 12px 16px 0;
		text-align: right;
	}
}