/* STYLESHEET FOR THE HEADER */


#logo
{
	height:100%;
	margin-left:1%;
	display:inline-block;
}

#mainheader
{
	position:fixed;
	top:0;
	z-index: 4;
	margin-top:0;
	padding:0.5%;
	width:100%;
	height:70px;
	background-color: DarkBlue;
}

#avatar	{
	width:	100px;
	height: 100px;
	border-radius: 500px;
	padding: 5px;
	margin: 3px;
	object-fit: cover;
	shape-rendering: crispEdges;
}

#mini_avatar {
	width:	45px;
	height: 45px;
	border-radius: 500px;
	padding: 0px;
	margin: 3px;
	object-fit: cover;
	shape-rendering: crispEdges;
}

#notif { /* fix this */
	width:	45px;
	height: 45px;
	padding: 0px;
	margin: 3px;
	shape-rendering: crispEdges;
	
	/*-webkit-animation: ring 1s linear 0s infinite alternate;
	animation: ring 1s linear 0s infinite alternate;
	*/
}

#notifcount {
	background-color: red;
	color: white;
	border-radius: 10%;
}


.icons:hover {
	background-color: SteelBlue;
	border-radius: 500px;
	box-shadow: 1px 1px 5px #000000;
	cursor: pointer;
}

#profile_glimpse {
	margin-top: 0px;
	float: right;
	width: 100%;
	background-color: DarkBlue;
	height: 100%;
	transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

#view_profile {
	overflow: hidden;
	float: right;
	background-color: #FFFFFF;
	height: 55px;
	width: 300px;
	margin: 0px;
	transition-property: height;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}

#nav_bar {
	background-color: SteelBlue;
	padding: 5px;
	height: auto;
	margin-bottom:0px;
}

#nav_btn {
	color: #000000;
	font-family: "Roboto", "Roboto", sans-serif;
	font-size: 15px;
	border: none;
	cursor: pointer;
}

#close_window {
	width: 20px;
	border-radius: 500px;
	padding: 5px;
	background-color: Gainsboro;
	opacity: 0.5;
	-ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari */
    transform: rotate(90deg);
	cursor: pointer;
}

#close_window:hover {
	opacity: 0.8;
}

input[type=text], textarea {
	width: 100%;
	padding: 4%;
	font-family: Roboto,RobotoDraft,Arial,sans-serif;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	overflow: hidden;
	resize: none;
}

#view_notification {
	display: none;
	width: 300px;
	height: 0px;
	background-color: white;
	float: right;
}

#notif_header {
	text-align: center;
	background-color: 3498DB;
	font-family: 'Arial Unicode MS',Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: white;
}
#notif_container {
	width: 100%;
	height: 0px;
	background-color: F2F2F2;
	overflow-y:scroll;
}
#notif_table {
	width:100%;
}
/* -------------------------------- */

/*

#user
{
	float:right;
	font-family: "Arial Unicode MS",Arial, Helvetica, sans;
	font-size:15px;
	color:DDDCDC;
}
#user:hover
{
	cursor:pointer;
	background-color:444646;
}

#logout
{
	visibility:hidden;
	float:right;
	padding:0;
	margin:0;
	box-shadow: 0px 5px 5px 0px gray;
}
#logoutbtn {
	font-family: Roboto,RobotoDraft,Arial,sans-serif;
	font-size:15px;
	color:#f2f2f2;
	border:0;
	width:100%;
	height:50%;
	background-color:0B1116;
	border-radius:0px;
}

#logoutbtn:hover {
	background-color:white;
	color:0B1116;
	cursor:pointer;
}
*/