/* Language selection menu box styles */
.language_menu_box {
	position: absolute;
	left: 100%;
	margin-left: 8px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 1001;
}

.language_menu_box.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.language_menu_list {
	list-style: none;
	margin: 0;
	padding: 8px 0;
	max-height: 400px;
	overflow-y: auto;
}

.language_menu_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	cursor: pointer;
	transition: background-color 0.15s ease;
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	line-height: 1.4;	
}
.language_menu_item.on {
	background-image:url(/common/css/import/icons/check.svg); background-repeat:no-repeat; background-position: calc(100% - 15px) 
}
.language_menu_item:hover {
	background-color: #f5f5f5;
}

.language_menu_item:first-child {
	border-radius: 12px 12px 0 0;
}

.language_menu_item:last-child {
	border-radius: 0 0 12px 12px;
}


/* Help menu box styles */
.help_menu_box {
	position: absolute;
	left: 100%;
	margin-left: 8px;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
	z-index: 1001;
}

.help_menu_box.show {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.help_menu_list {
	list-style: none;
	margin: 0;
	padding: 5px 0;
}

.help_menu_item {
	display: flex;
	align-items: center;
	padding: 7px 16px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.help_menu_item:hover {
	background-color: #f5f5f5;
}

.help_menu_item:first-child {
	border-radius: 12px 12px 0 0;
}

.help_menu_item:last-child {
	border-radius: 0 0 12px 12px;
}

.help_menu_item i.icon {
	width: 20px;
	height: 20px;
	margin-right: 12px;
	flex-shrink: 0;
}

.help_menu_item span {
	font-size: 14px;
	color: #333333;
	font-weight: 400;
	line-height: 1.4;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.help_menu_box {
		bottom: 70px;
		right: 10px;
		width: 220px;
	}

	.help_menu_item {
		padding: 10px 14px;
	}

	.help_menu_item span {
		font-size: 13px;
	}
}
