.resources-lang-switcher-wrap {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 16px;
	font-family: 'Montserrat', sans-serif;
	float: right;
	max-width: 100%;
}

.resources-lang-switcher-title {
	display: inline-block;
	margin: 0;
	flex: 0 0 auto;
	white-space: nowrap;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	color: #4a4b4c;
}

.resources-lang-switcher-buttons {
	display: inline-flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
}

.resources-lang-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 25px;
	border: 2px solid #f98e00;
	background: transparent;
	color: #4a4b4c !important;
	text-decoration: none;
	border-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition: border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
	cursor: pointer;
	white-space: nowrap;
}

.resources-lang-btn:hover,
.resources-lang-btn:focus {
	background: transparent;
	color: #4a4b4c !important;
	border-color: #4a4b4c;
	text-decoration: none;
}

.resources-lang-btn.is-active,
.resources-lang-btn.is-active:hover,
.resources-lang-btn.is-active:focus,
.resources-lang-btn:disabled {
	color: #4a4b4c !important;
	background: transparent;
	border: 2px solid #4a4b4c;
	opacity: 0.3;
	cursor: default;
	pointer-events: none;
	box-shadow: none;
}

@media (max-width: 767px) {
	.resources-lang-switcher-wrap {
		float: none;
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.resources-lang-switcher-title {
		white-space: normal;
	}
}
