.fenix-pos-currency-box {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 8px 0 12px;
	padding: 10px 12px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.82);
}

.fenix-pos-currency-label {
	font-size: 13px;
	font-weight: 700;
	color: #30343a;
}

.fenix-pos-currency-buttons {
	display: inline-flex;
	gap: 5px;
	padding: 3px;
	border-radius: 8px;
	background: #eef0f2;
}

.fenix-pos-currency-buttons button {
	min-height: 32px;
	padding: 6px 11px;
	border: 0;
	border-radius: 6px;
	background: transparent;
	color: #30343a;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}

.fenix-pos-currency-buttons button.is-active {
	background: var(--wkwcpos-primary-color, #f4a000);
	color: #fff;
	box-shadow: 0 2px 7px rgba(0, 0, 0, 0.13);
}

.fenix-pos-currency-buttons button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.fenix-pos-currency-rate {
	color: #626a73;
	font-size: 12px;
}

body.rs-theme-dark .fenix-pos-currency-box,
body.dark .fenix-pos-currency-box {
	border-color: rgba(255, 255, 255, 0.15);
	background: rgba(30, 33, 38, 0.88);
}

body.rs-theme-dark .fenix-pos-currency-label,
body.dark .fenix-pos-currency-label,
body.rs-theme-dark .fenix-pos-currency-buttons button,
body.dark .fenix-pos-currency-buttons button {
	color: #f5f5f5;
}

@media (max-width: 760px) {
	.fenix-pos-currency-box {
		align-items: flex-start;
		flex-direction: column;
	}
}
