.hutko-currency-switcher {
	display: inline-flex;
	vertical-align: middle;
	margin: 0;
	padding: 0;
	line-height: normal;
}

.hutko-currency-switcher label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	line-height: normal;
}

.hutko-currency-switcher select {
	min-width: 10rem;
	margin: 0;
}

.hutko-currency-switcher.is-loading select {
	opacity: 0.65;
	pointer-events: none;
}

.hutko-currency-switcher__status {
	display: inline-block;
	width: 1rem;
	height: 1rem;
}

.hutko-currency-switcher.is-loading .hutko-currency-switcher__status {
	border: 2px solid currentColor;
	border-right-color: transparent;
	border-radius: 50%;
	animation: hutko-currency-spin 0.7s linear infinite;
}

.hutko-currency-switcher__label:empty {
	display: none;
}

.hutko-shipping-due {
	display: block;
	margin-top: 0.2rem;
	font-weight: 400;
}

@keyframes hutko-currency-spin {
	to {
		transform: rotate(360deg);
	}
}
