body:has(#sidebar-student) .header--page {
	height: 40px;
}

body.form--grid .header--page {
	margin-left: -15px;
}

.header--page {
	--_background-color: hsl(var(--hue), var(--saturation), var(--lightness));

	background-color: var(--_background-color, var(--color-purple--dark));
	color: var(--_color, white);


	grid-area: page-header;
	display: flex;

	justify-content: center;
	align-items: center;

	border: solid 1px #ffffff;
	box-shadow: 1px 7px .5em rgba(0,0,0,.8);

	text-shadow: 0px 1px 0px rgba(0,0,0,.7);
	-moz-text-shadow: 0px 1px 0px rgba(0,0,0,.7);
	-webkit-text-shadow: 0px 1px 0px rgba(0,0,0,.7);

	margin-bottom: .5em;

	padding-top: .5em;
	padding-bottom: .5em;

	text-align: center;
	font-size: 1.45rem;
	font-weight: bold;

	z-index: 1;
}


.header--left {
	flex: 1;
	text-align: left;
}

.header--right {
	flex: 1;
}


.menu-button--toggle 	{
	cursor: pointer;
	margin-left: 5px;
	margin-right: 10px;
}


#notifications-container {
	display: none;
	height: 100%;
	width: 400px;
	position: fixed;
	z-index: 1;
	top: 1px;
	left: 1px;
	transition: 0.5s;
	border:thin solid black;
	background-color: white;
}

#notifications-container > h1{
	margin-bottom: 10px;
}

#notifications {
	overflow: auto;
	height: calc(100vh - 20px);
	padding-bottom: 1em;
}

.notification:has(.review-documents) {
	cursor: pointer;
}

.notifications-bell {
	align-self: center;
	display: inline-block;
}

.notifications-bell .fa-bell {
	font-size: 2rem;
}

.notifications-bell .fa-bell:hover {
	font-size: 3rem;
}

.notifications-bell .fa-stack[data-count]:after {
	position: absolute;
	bottom: 8px;
	right: -7px;
	font-size: 10px;
	padding: 5px;
	border-radius: 50%;
	line-height: .75em;
	color: white;
	background: black;
	text-align: center;
	font-weight: bold;
	content: attr(data-count);
}


.fa.fa-times {
	font-size: 2rem;
	transition: all 200ms ease-out;
	color: lightgrey;
}

.fa.fa-times:hover {
	transform: scale(2);
	cursor: pointer;
	color: white;
}


.fa.fa-times.notification-close {
	padding-right: 1em;
	font-size: 1.25rem;
}

.fa.fa-times.notification-close:hover {
	padding-right: 0.75em;
}


.notification {
	padding:0 15px;
	background: hsl(0, 0%, 88.24%);
	border: thin solid;
	border-radius: 16px;
	box-shadow: 1px 1px 1px 2px hsl(240, 100%, 98.627%);
	margin: 0 1em 2em;
}


.notification hr:first-of-type 	{
	border-top: black 3px solid;
	margin: 0 0 4px;
}
.notification hr:not(:first-of-type) 	{
	width: 100px;
	margin: 1px 0;
}

.notification-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: black;
	color: white;
	margin-top: 0 ;
	margin-right: -15px;
	margin-bottom: 8px;
	margin-left: -15px;

	border-top-left-radius: 10px;
	border-top-right-radius: 10px;


}

.notification-title {
	font-size: 1.25rem;
	font-weight: 500;
	width: 100%;
	text-align: left;
	padding: 9px 10px 3px;
}



.notification-container {
	display: flex;
	align-items: flex-start;
}

.notification-media {
	position: relative;
}

.notification-type-avatar {
	width: 60px;
	height: 50px;
	object-fit: scale-down;
}

.notification-reaction.fa {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: white;
	background-image: linear-gradient(45deg, #11340c, #1c4b15);
	font-size: 26px;
	position: absolute;
	bottom: -6px;
	right: -6px;
	font:normal normal normal 20px/1 FontAwesome;
}


.notification-content {
	width: calc(100% - 60px);
	padding-left: 20px;
	line-height: 1.2;
}

.notification-text {
	margin-bottom: 5px;
	padding-right: 50px;
}

.notification-timer {
	color: #11340c;
	font-weight: 600;
	font-size: 14px;
	margin-top: 5px;
}

.notification-text > div {
	margin: 0;
}


@media screen and (max-width: 575px) {

	#menu-button--toggle{
		position: fixed;
		top: 1px;
		left:0px;
		padding-right: 40px;
		z-index: 2;
		background-color: hsl(0, 0%, 0%);
		font-weight: bold;
		font-size: 1.5rem;
		text-align: center;
		height:26px;
		width: 70px;
	}

}