﻿.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: #1172d3;
	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: #1172d3;
	border-top-color: transparent !important;
	border-left-color: transparent !important;
	border-right-color: transparent !important;
	margin-top: -20px;
	margin-left: 52px;
}

.comunicationsContainer:before
{
	margin-left: 343px;
}

.notificationTitle
{
	font-family: system, sans-serif;
	font-weight: bold;
	font-size: 16px;
	background-color: #1172d3;
	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;
	}

.btnNewComunicazione
{
	border: 0;
	background-color: transparent;
	width: 100%;
	height: 100%;
	cursor: pointer;
	font-family: system, sans-serif;
}

.btnComTitAll
{
	border: 0;
	background-color: transparent;
	color: white;
	font-family: system, sans-serif;
	cursor: pointer;
}

.notificationFooter button, .notificationFooter a
{
	color: white;
}

.comunicationsTitle
{
	display: flex;
}

.comTitleAll
{
	margin: auto 10px auto auto;
}

.notificationsBody
{
	min-height: 400px;
	max-height: 400px;
	overflow: auto;
}

/*.showAllref
{
	margin-left: 5px;
}

.markAllref
{
	float: right;
	margin-right: 5px;
}*/

.notificationFooter
{
	background-color: #1172d3;
	padding: 8px;
	font-size: 14px;
	border-top: 1px solid #dddddd;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	text-align: center;
	font-family: system, sans-serif;
	text-decoration: none;
}

	.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, .btnNotify:focus-visible, .btnNotify:focus
	{
		background-color: #DAE6F1;
		transition: all .3s;
	}

.notifyBody
{
	display: flex;
	flex-direction: column;
	overflow: hidden;
	flex-grow: 1;
}

	.notifyBody span
	{
		margin: 0px;
	}

	.notifyBody .notifyText p
	{
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		color: black;
	}

.notifyHead
{
	flex-grow: 1;
	margin-top: 8px;
	font-size: 14px;
	color: #3E75AC;
	text-align: left;
	margin-right: 7px;
}

	.notifyHead a
	{
		text-decoration: none;
		color: black;
	}

.notifyText
{
	margin-bottom: 4px;
	font-size: 12px;
	text-align: left;
}

	.notifyText p
	{
		margin: 5px 0px;
	}

.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;
	vertical-align: middle;
}

.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;
	}
}

.btnNotify
{
	width: 100%;
	/*background-color: transparent;*/
	border: none;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
}

	.btnNotify:focus
	{
		outline: none;
	}

	.btnNotify:focus-visible
	{
		outline: auto;
	}

.aNotifyPage
{
	display: flex;
	flex-direction: row;
	border: none;
	padding: 3px 0px;
}

	.aNotifyPage > .myNotifyBody > .notifyText
	{
		color: black;
	}

	.aNotifyPage > .myNotifyBody > .notifyHead
	{
		margin-top: 7px;
	}