.ll-mcm-switcher {
	--ll-mcm-trigger-width: auto;
	--ll-mcm-trigger-padding: 8px 12px;
	--ll-mcm-trigger-gap: 8px;
	--ll-mcm-trigger-radius: 0;
	--ll-mcm-trigger-color: #191d1e;
	--ll-mcm-trigger-color-hover: #191d1e;
	--ll-mcm-trigger-background: transparent;
	--ll-mcm-trigger-background-hover: transparent;
	--ll-mcm-trigger-font-size: 14px;
	--ll-mcm-trigger-font-weight: 500;
	--ll-mcm-trigger-border-width: 0;
	--ll-mcm-trigger-border-color: transparent;
	--ll-mcm-icon-size: 18px;
	--ll-mcm-panel-width: 280px;
	--ll-mcm-panel-offset: 10px;
	--ll-mcm-panel-padding: 12px;
	--ll-mcm-panel-radius: 0;
	--ll-mcm-panel-background: #ffffff;
	--ll-mcm-panel-border-color: transparent;
	--ll-mcm-panel-shadow: none;
	--ll-mcm-divider-color: transparent;
	--ll-mcm-title-color: #6f7477;
	--ll-mcm-item-padding: 10px 12px;
	--ll-mcm-item-gap: 10px;
	--ll-mcm-item-color: #191d1e;
	--ll-mcm-item-color-hover: #191d1e;
	--ll-mcm-item-color-active: #191d1e;
	--ll-mcm-item-background: transparent;
	--ll-mcm-item-background-hover: transparent;
	--ll-mcm-item-background-active: transparent;

	position: relative;
	display: inline-flex;
	flex: 0 0 auto;
	max-width: 100%;
	min-width: max-content;
	color: var(--ll-mcm-trigger-color);
	font-size: var(--ll-mcm-trigger-font-size);
	font-weight: var(--ll-mcm-trigger-font-weight);
	line-height: 1.2;
	opacity: 1;
	visibility: visible;
}

.ll-mcm-switcher,
.ll-mcm-switcher * {
	box-sizing: border-box;
}

.elementor-widget-ll-mcm-currency-switcher {
	min-width: fit-content;
	line-height: normal;
}

.elementor-widget-ll-mcm-currency-switcher .elementor-widget-container {
	display: inline-flex;
	max-width: 100%;
}

.ll-mcm-switcher__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--ll-mcm-trigger-gap);
	width: var(--ll-mcm-trigger-width);
	max-width: 100%;
	min-width: max-content;
	min-height: 36px;
	padding: var(--ll-mcm-trigger-padding) !important;
	border: var(--ll-mcm-trigger-border-width) solid var(--ll-mcm-trigger-border-color);
	border-radius: var(--ll-mcm-trigger-radius) !important;
	background: var(--ll-mcm-trigger-background) !important;
	color: var(--ll-mcm-trigger-color) !important;
	font-family: inherit;
	font-size: var(--ll-mcm-trigger-font-size);
	font-weight: var(--ll-mcm-trigger-font-weight);
	line-height: 1.2;
	letter-spacing: 0;
	text-decoration: none;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.ll-mcm-switcher__trigger:hover,
.ll-mcm-switcher__trigger:focus-visible,
.ll-mcm-switcher.is-open .ll-mcm-switcher__trigger {
	background: var(--ll-mcm-trigger-background-hover) !important;
	color: var(--ll-mcm-trigger-color-hover) !important;
}

.ll-mcm-switcher__trigger-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: var(--ll-mcm-icon-size);
	height: var(--ll-mcm-icon-size);
	color: currentColor;
}

.ll-mcm-switcher__trigger-icon svg,
.ll-mcm-switcher__trigger-icon i {
	display: block;
	width: var(--ll-mcm-icon-size);
	height: var(--ll-mcm-icon-size);
	font-size: var(--ll-mcm-icon-size);
	line-height: 1;
}

.ll-mcm-switcher__trigger-text {
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
	font-size: inherit;
	line-height: inherit;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ll-mcm-switcher__chevron {
	display: inline-block;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
	transition: transform 160ms ease;
}

.ll-mcm-switcher.is-open .ll-mcm-switcher__chevron {
	transform: translateY(2px) rotate(225deg);
}

.ll-mcm-switcher__panel {
	position: absolute;
	top: calc(100% + var(--ll-mcm-panel-offset));
	z-index: 9999;
	width: var(--ll-mcm-panel-width);
	max-width: min(92vw, var(--ll-mcm-panel-width));
	padding: var(--ll-mcm-panel-padding);
	border: 1px solid var(--ll-mcm-panel-border-color);
	border-radius: var(--ll-mcm-panel-radius);
	background: var(--ll-mcm-panel-background);
	color: var(--ll-mcm-item-color);
	box-shadow: var(--ll-mcm-panel-shadow);
	opacity: 0;
	transform: translate3d(0, -6px, 0);
	visibility: hidden;
	transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.ll-mcm-switcher--align-left .ll-mcm-switcher__panel {
	left: 0;
}

.ll-mcm-switcher--align-center .ll-mcm-switcher__panel {
	left: 50%;
	transform: translate3d(-50%, -6px, 0);
}

.ll-mcm-switcher--align-right .ll-mcm-switcher__panel {
	right: 0;
}

.ll-mcm-switcher.is-open .ll-mcm-switcher__panel {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	visibility: visible;
}

.ll-mcm-switcher--align-center.is-open .ll-mcm-switcher__panel {
	transform: translate3d(-50%, 0, 0);
}

.ll-mcm-switcher__panel[hidden] {
	display: none;
}

.ll-mcm-switcher__section + .ll-mcm-switcher__section {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid var(--ll-mcm-divider-color);
}

.ll-mcm-switcher__section-title {
	margin: 0 0 6px;
	color: var(--ll-mcm-title-color);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ll-mcm-switcher__list {
	display: grid;
	gap: 2px;
}

.ll-mcm-switcher__item {
	display: flex;
	align-items: center;
	gap: var(--ll-mcm-item-gap);
	width: 100%;
	min-height: 38px;
	padding: var(--ll-mcm-item-padding);
	border-radius: max(0px, calc(var(--ll-mcm-panel-radius) - 2px));
	background: var(--ll-mcm-item-background);
	color: var(--ll-mcm-item-color);
	font-family: inherit;
	font-size: var(--ll-mcm-trigger-font-size);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-decoration: none;
}

.ll-mcm-switcher__item:hover,
.ll-mcm-switcher__item:focus-visible {
	background: var(--ll-mcm-item-background-hover);
	color: var(--ll-mcm-item-color-hover);
	text-decoration: none;
}

.ll-mcm-switcher__item.is-active {
	background: var(--ll-mcm-item-background-active);
	color: var(--ll-mcm-item-color-active);
}

.ll-mcm-switcher__flag,
.ll-mcm-switcher__symbol {
	display: inline-flex;
	flex: 0 0 28px;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	color: currentColor;
	font-weight: 600;
	line-height: 1;
}

.ll-mcm-switcher__flag img {
	display: block;
	max-width: 22px;
	height: auto;
}

.ll-mcm-switcher__item-label {
	min-width: 0;
	overflow-wrap: anywhere;
}

.ll-mcm-switcher__marker {
	display: inline-block;
	flex: 0 0 auto;
	width: 8px;
	height: 14px;
	margin-left: auto;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
}

.ll-mcm-switcher--placeholder {
	min-height: 36px;
	padding: 8px 12px;
	border: 1px dashed #c9c1af;
	background: #fffaf0;
	color: #4b4438;
	font-size: 13px;
	line-height: 1.3;
}

@media (max-width: 480px) {
	.ll-mcm-switcher {
		width: auto;
	}

	.ll-mcm-switcher__panel {
		width: min(var(--ll-mcm-panel-width), 92vw);
	}
}
