#menu-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	/* background: trasparent; */
	width: 100%;
	height: 55px;
	z-index: 9999;
}

#navBar-fixed-floating {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	background: var(--primary);
	z-index: 1000;
	transition: top 0.3s;
	border-radius: 20px 0 0 20px;
	width: 75px;
}

#navBar-fixed-floating ul {
	list-style-type: none;
	padding: 0;
}

#navBar-fixed-floating ul img {
	max-height: 50px;
}

#navBar-fixed-floating>ul>li {
	margin-bottom: 10px;
	padding: 10px;
	cursor: pointer;
	text-align: center;
	position: relative;
	transition: background-color 0.3s ease-in;
}

#navBar-fixed-floating>ul li:hover {
	background-color: #0003;
}

#navBar-fixed-floating>ul>li:first-child:hover {
	border-radius: 20px 0 0 0;
}

#navBar-fixed-floating>ul>li:last-child {
	margin-bottom: 0;
	border-radius: 0 0 0 20px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

#navBar-fixed-floating>ul>li ul {
	display: none;
	background: #fdc543b8;
	position: absolute;
	top: 0;
	right: 75px;
	border-radius: 20px;
	min-width: 200px;
	padding: 10px;
	opacity: 0;
	animation: fadeIn 1s ease-in-out;
}

#navBar-fixed-floating>ul>li:hover ul {
	display: block;
	opacity: 1;
}

#navBar-fixed-floating>ul>li ul li.header {
	padding: 0;
	height: 65px;
	background-color: transparent;
	border: 0;
}

#navBar-fixed-floating>ul>li ul li {
	border-bottom: #000 1px solid;
	padding: 5px 0;
}
