.lang-select {
	position: relative;
	display: inline-block;
	color: #f49b00;
	font-size: 13px;
}

@media only screen and (max-width:480px) {
	.lang-select {
		top: 4px;
	}
}

.lang-select .selected,
.lang-select .option {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	background: transparent;
	color: #f49b00;
	white-space: nowrap;
}

.lang-select .option {
	padding: 5px 0;
}

.lang-select .selected {
	background: transparent;
	border: none;
}

.lang-select .options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: transparent;
	border: none;
	z-index: 100;
	min-width: 100%;
	line-height: normal;
	margin-top: -33px;
}

.lang-select.active .options {
	display: block;
}

.lang-select .option:hover {
	background: #222;
}

.lang-select .flag {
	width: 24px;
	height: 24px;
	margin-right: 5px;
	border: 2px solid #ccc;
	border-radius: 50%;
	background-size: cover;
}