﻿.notification_li
{
	position: relative;
}

@keyframes fadeIn
{
	from
	{
		opacity: 0;
	}

	to
	{
		opacity: 1;
	}
}

@keyframes fadeOut
{
	from
	{
		opacity: 1;
		display: block;
	}

	to
	{
		opacity: 1;
		display: none;
	}
}

.notificationContainer
{
	background-color: #fff;
	border: 1px solid;
	border-color: #76A2CE;
	position: absolute;
	top: 30px;
	left: 300px;
	opacity: 0;
	display: none;
	border-radius: 5px;
	width: 400px;
	z-index: 10;
}

.notificationPanelShown
{
	display: block;
	opacity: 1;
	animation-name: fadeIn;
	animation-duration: .3s;
}

.notificationPanelHidden
{
	display: none;
	animation-name: fadeOut;
	animation-duration: .3s;
}

.notificationContainer:before
{
	content: '';
	display: block;
	position: absolute;
	width: 0;
	height: 0;
	color: transparent;
	border: 10px solid black;
	border-color: #76A2CE;
	border-top-color: transparent!important;
	border-left-color: transparent!important;
	border-right-color: transparent!important;
	margin-top: -20px;
	margin-left: 52px;
}

.notificationTitle
{
	font-family: system, sans-serif;
	font-weight: bold;
	font-size: 16px;
	background-color: #76A2CE;
	z-index: 1000;
	width: inherit;
	color: #fff;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	text-align: center;
}

	.notificationTitle p
	{
		margin: 0px;
		padding: 10px;
	}

.notificationsBody
{
	min-height: 400px;
	max-height: 400px;
	overflow: auto;
}

/*.showAllref
{
	margin-left: 5px;
}

.markAllref
{
	float: right;
	margin-right: 5px;
}*/

.notificationFooter
{
	background-color: #E1EBF4;
	font-weight: bold;
	padding: 8px;
	font-size: 14px;
	border-top: 1px solid #dddddd;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center
}

	.notificationFooter i
	{
		font-size: 20px;
		vertical-align: sub;
		margin-right: 5px;
	}

	.notify
	{
		display: flex;
		flex-direction: row;
		border-bottom: 1px solid #ddd;
		cursor: pointer;
		max-height: 400px;
	}

	.notify:hover
	{
		background-color: #DAE6F1;
		transition: all .3s;
	}

.notifyBody
{
	display: flex;
	flex-direction: column;
	overflow: hidden;
	flex-grow: 1;
}

	.notifyBody p
	{
		margin: 0px;
	}

	.notifyBody .notifyText p
	{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

.notifyHead
{
	flex-grow: 1;
	margin-top: 7px;
	font-size: 14px;
	color: #3E75AC;
}

.notifyText
{
	margin-bottom: 7px;
	font-size: 12px;
}

.notifyIcon
{
	padding: 10px;
}

.connectNotify
{
	color: #A71A5E;
	font-size: 32px;
}

.boardNotification
{
	color: #C09845;
}

.schedulerNotify
{
	color: #999;
}

.workflowNotify
{
	color: #76A2CE;
}

.newNotify
{
	background-color: #FBF9D0;
}

	.newNotify:hover
	{
		background-color: #F5F196;
		transition: all .3s;
	}

.notifyIcon i
{
	font-size: 30px;
}

.notificationSrvMessage
{
	text-align: center;
}

.receiveTime
{
	float: right;
	color: black;
	font-size: 12px;
	margin-right: 4px;
}

@media screen and (max-width: 600px)
{
	.notifPageCol1
	{
		display: none;
	}

	.notifPageCol2
	{
		width: 100%;
		flex-grow: 0;
	}

	.notifPageCol3
	{
		display: none;
	}

	.myNotifyBody
	{
		flex-grow: 0;
	}
}