@charset "utf-8";
/* CSS Document */

header {
	position: fixed;
	top:0;
	width: 100%;
	height: 52px;
	margin: 0;

	font-family: 'Roboto', sans-serif;
	letter-spacing: 0.1rem;
	font-size: 0.8rem;

	background-color: #101010;

	box-shadow: 0px 0px 4px #000000;

	border-bottom: #f7cb70 solid 1px;

	z-index: 100;
}

#headerAtlux {
	position: absolute;
	top: 6px;
	left: 30px;
	cursor: pointer;
}

#headerVINZI {
	display: block;
	position: absolute;
	top: 6px;
	right: 30px;
	cursor: pointer;
}

header nav {
/*			margin-left: 300px;*/
	height: 100%;
/*
	display: flex;
	align-items: center;
*/
}
#UI_HeaderMenu {
	color: white;
}

.UI_Menu_Button, .UI_Menu_Button_Right {
	height: 52px;
	line-height: 52px;
	position: relative;
	cursor: pointer;
	padding: 0 25px;
	font-weight: 400;
	background-color: #101010;
	
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	text-decoration: none;
}

.UI_Menu_Button_Right {
	height: auto;
	line-height: normal;
	padding: 0 25px;
}

.UI_Menu_Button:hover, .UI_Menu_Button_Right:hover {
	color: #f7cb70;
}

.UI_SubMenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #111111; /* Background color for the submenu */
    z-index: -1;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
	/*border-bottom: 1px solid rgba(255,255,255,0.5);*/
	border-top: 1px solid #f7cb70;
    border-radius: 0 0 6px 6px;

	opacity: 0;      /* Start fully transparent */
    transform: translateY(-10px); /* Slightly move it up */
    transition: opacity 0.2s ease, transform 0.2s ease; /* Smooth transition for both properties */
    pointer-events: none;

	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.66);
	min-width: 100%;
}

.UI_SubMenu_Item {
	text-align: left;
	line-height: normal;
    padding: 10px 25px;
    color: #f2f2f2;
	white-space: nowrap;

    border-top: 1px solid rgba(255, 255, 255, 0);
}

.UI_SubMenu_Item:hover {
    background-color: #222;
    color: #f7cb70;
    border-top: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.1), 
                0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Show the submenu when the parent menu item is hovered over */
.UI_Menu_Button:hover .UI_SubMenu {
	opacity: 1;      /* Fully visible */
    transform: translateY(0); /* Back to its original position */
    pointer-events: auto;
}

.UI_HeaderMenu_Main {
	margin-left: 250px;
}

.UI_HeaderMenu_BuyTry {
	position: absolute;
	right: 20px;
	top: 0;
}

.UI_HeaderMenu_BuyTry a {
	position: relative;
	display: inline-block;
}

.UI_Menu_Button_Right {
	position: relative;
	display: inline-block;
	margin-top: 13px;
	padding: 5px 20px;
	border: solid 2px #f7cb70;
	border: solid 2px #000;
	border-radius: 5px;
	background-color: #202020;
	border: 1px solid #222;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.15), 
                0 4px 10px rgba(0, 0, 0, 0.5);
}

.UI_Menu_Button_Right:hover {
	border: solid 1px #f7cb70;
    color: white;
}

.Button_Try:hover {
	background-color: #333;
	border: 1px solid #fff;
}

.Button_Buy {
	background-color: #f7cb70;
	color: #222;
	font-weight: 600;
}

.Button_Buy:hover {
	background-color: #fff;
	color: #222;
}

.Button_ComingSoon {
	background-color: #f7cb70;
	color: #222;
	font-weight: 600;
	cursor: pointer;
	margin-left: 15px;

    border: 1px solid #f7cb70;
    border-top: 1px solid white;

    box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.15), 
                0 4px 10px rgba(0, 0, 0, 0.5);
}

.Button_ComingSoon:hover {
    color: #222;
    border: 1px solid white;
    box-shadow: inset 0 0 4px rgba(255, 255, 255, 1), 
                0 4px 10px rgba(0, 0, 0, 0.5);
}

.topnav .icon {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 17px !important;
	display: none;
	cursor: pointer;
}

@media (max-width: 72em) {
    .UI_SubMenu {
        display: none !important;
    }

	.UI_HeaderMenu_Main {
		padding: 0;
	}
	.UI_HeaderMenu_Main, .UI_HeaderMenu_BuyTry {
		display: none;
	}
	.topnav .icon {
		display: block;
	}
	.UI_Menu_Button {
		padding: 15px 15px;
		margin: 0;
		height: auto;
		line-height: normal;
	}

	.UI_Menu_Button_Right {
		margin: 15px;
		height: auto;
		line-height: normal;
	}
	
	.UI_HeaderMenu_BuyTry {
		right: 0;
		position: relative;
		text-align:center;
		padding: 15px;
		padding-top: 0;
		/* margin-top: -15px; */
	}

	.topnav.responsive {
		position: relative;
/*				background-color: rgba(0,0,0,0.85);*/
		margin-top: 52px;
	}
	.topnav.responsive .icon {
		top:-37px;
	}
	.topnav.responsive div {
		float: none;
		display: block;
		text-align: center;
	}

	.UI_HeaderMenu_Main {
		margin-left: 0px;
	}

	.UI_Menu_Button, .UI_HeaderMenu_BuyTry {
		background-color: rgba(0,0,0,0.85);
	}

	#headerVINZI {
		display: none;
	}

	#coverMSMenu {
		display: none;
	}
}

.header-filler {
	position: relative;
	height: 52px;
}