/**
Main menu CSS.
@author: LAama1
@date 9.4.2021, 2024-01-18
**/

.newmenu {
	font-family: "Trebuchet MS", Arial, san-serif;
	/*float: left;*/
	/*z-index:1000;*/
	margin-top: 1rem;
	margin-bottom: 1rem;

	border-radius: 1rem;
	border-left: 0.1rem solid rgb(138, 138, 138);
	border-top: 0.1rem solid rgb(185, 185, 185);
	/*border-right: 0.1rem solid rgb(32, 32, 32);
	border-bottom: 0.1rem solid black;*/
	width: 100%;
	height: 3rem;
	/*width: auto;*/
}

.gradientbg {
	background: linear-gradient(
		to bottom,
		rgb(125, 125, 125) 0%,
		rgb(92, 92, 92) 50%,
		rgb(59, 59, 59) 51%,
		rgb(4, 4, 4) 100%
	); /* W3C */
}

.newmenu ul {
	padding: 0;
	margin:0;
	list-style: none;
	list-style-position: inside;
}

.newmenu ul li {
	float: left;
	position: relative;
	box-sizing: border-box;
	line-height: 3rem;
	font-size: 1.5rem;
	font-variant-caps: all-small-caps;
	padding-left: 0.1rem;
	padding-right: 0.7rem;
	/*margin-left: 0.5rem;*/
}

.newmenu ul li a {
	box-sizing: border-box;
	display: block;
	text-decoration: none;
	color: #f0f0f0;
	font-weight: bold;
	text-align: center;
	/*padding-right: 0.7rem;
	padding-left: 0.7rem;*/
	margin-right: 0.3rem;
	margin-left: 0.3rem;
	width: 100%;
}

.newmenu ul li a:hover {
	text-shadow: 0.1rem 0.1rem #00000033;
}

/*li.separator {
	width: 0.1rem;
	background-color: gray;
	padding-right: 0.2rem important!;
}*/
/*.newmenu ul li:not(:last-child)::after {
	content: "";
	color: black;
	margin-left: 0.2rem;
	margin-right: 0.2rem;
	bottom: 0.9rem;
	height: 1.1rem;
}*/
.center_li::before, .right_li::before {
	content: "";
	position: absolute;
	bottom: 0.6rem;
	height: 1.5rem;
	width: 0.1rem;
	background: gray;
	margin-left: -0.2rem;
}

.newmenu ul li:hover {
	background: rgba(255, 255, 255, 0.3);
	/*background-size: 1rem 1rem;*/
	/*box-shadow: inset 0.1rem 0.1rem 0.1rem 0.1rem rgba(71, 71, 71, 0.5);*/
	box-shadow: inset 0.2rem 0.2rem 0.1rem 0.1rem rgba(0, 0, 0, 0.5);
	border-radius: 1rem;
	/*border-left: 0.1rem solid rgb(138, 138, 138);
	border-top: 0.1rem solid rgb(185, 185, 185);*/
	/*padding-left: 0.5rem;
	padding-right: 0.5rem;*/
}

.newmenu ul li:hover a {
	color:#000;
}
