.currency-switcher {
	display: flex;
	letter-spacing: normal;
	margin: 0;
	padding: 0;
	list-style-type: none;
	align-items: center;
	margin-right: 10px;
}

@media (min-width:992px) {
	.currency-switcher {
		display: flex;
	}
}

.currency-switcher__item:not(:last-child) {
	margin-right: 10px;
}

.currency-switcher__item.active .currency-switcher__link {
	color: #F57005;
}

.currency-switcher__link {
	position: relative;
	display: inline-block;
	color: #fff;
	transition: .25s;
	font-size: 18px;
	cursor: pointer;
}

.currency-switcher__link:hover {
	color: #F57005;
	font-size: 18px;
}

.currency-switcher__link:focus {
	font-size: 18px;
}