ul.notification-center {
	border-collapse: seperate;
	display: table;
	margin: 0;
	padding: 0;
	width: 100%;
}

ul.notification-center > li {
	background: white;
	display: table-row;
	height: 60px;
	line-height: 16px;
	position: relative;
	-webkit-transition: background-color .5s;
	transition: background-color .5s;
	width: 100%;
}

ul.notification-center > li.unread {
	background: #e8ffd9;
}

ul.notification-center > li.just-read {
	animation: just-read 1s;
	-webkit-animation: just-read 1s;
}

@keyframes just-read {
	0% { background: #e8ffd9 }
	100% { background: white }
}

@-webkit-keyframes just-read {
	0% { background: #e8ffd9 }
	100% { background: white }
}

header nav .notifications .drop-control {
	background-color: var(--cash-color, #76b844);
	background-image: url(/shared/assets/img/icon-notifications-bell-small.min.svgz);
	background-position: center center;
	background-repeat: no-repeat;
	height: 100%;
	width: 30px;
}

.no-svg header nav .notifications .drop-control {
	background-image: url(/shared/assets/img/icon-notifications-bell-small.png);
}

header nav .notifications li:first-child,
header nav .notifications li {
	border-width: 0;
}

header .notifications .drop {
	border: 1px solid #E7E7E7;
	border-width: 0 1px;
	box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	color: #323532;
	max-height: 250px;
	overflow: hidden;
	width: 298px;
}

header .notifications .drop.hide {
	max-height: 0 !important;
}

header .notifications .notification-count {
	background: #fdba52;
	border-radius: 10px;
	color: white;
	font-family: 'Poppins Regular';
	font-size: 14px;
	height: 25px;
	line-height: 25px;
	left: 7px;
	pointer-events: none;
	position: absolute;
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform .5s, opacity .5s;
	transition: transform .5s, opacity .5s;
	text-align: center;
	top: 5px;
	width: 36px;
}

header .notifications .notification-count.hide {
	opacity: 0;
	-webkit-transform: translateY(5px);
	transform: translateY(5px);
}

header .notifications .notification-count.dismissed {
	opacity: 0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

header .notifications .notification-count::after {
	border: 10px solid transparent;
	border-top-color: #fdba52;
	content: '\00A0';
	height: 0;
	left: 7px;
	position: absolute;
	top: 20px;
	width: 1px;
}

header .notifications .drop-curtain {
	width: 300px;
}

header .notifications .see-all {
	background: white;
	border: 1px solid #E7E7E7;
	border-width: 1px 0;
	box-shadow: 0 3px 0 rgba(0, 0, 0, .1);
	display: block;
	height: 29px;
	line-height: 29px;
	padding: 0;
	text-align: center;
	width: 298px;
}

header .notifications .see-all.hide {
	display: none;
}

header nav .notifications ul {
	display: block;
	max-height: 220px;
	overflow-y: scroll;
}

header nav .notification-center > li > span
{
	border-bottom: 1px solid #E7E7E7;
	display: table-cell;
	padding: 10px 10px 10px 10px;
	vertical-align: middle;
}

header nav .notification-center > li > a
{
	border-bottom: 1px solid #E7E7E7;
	display: table-cell;
	padding: 10px 10px 10px 0px;
	vertical-align: middle;
}

.notification-center > li > * {
	border-bottom: 1px solid #E7E7E7;
	display: table-cell;
	padding: 10px 10px 10px 5px;
	vertical-align: middle;
}


header nav .notification-center > li:last-child > *,
.notification-center > li:last-child > * {
	border-bottom: none;
}

header nav .notification-center > li.empty,
.notification-center > li.empty {
	background-color: white;
	background-image: url(/shared/assets/img/icon-notifications-bell-large.min.svgz);
	background-position: center 40px;
	background-repeat: no-repeat;
	border-width: 0;
	cursor: default;
	display: block;
	font-size: 14px;
	height: 220px;
	padding: 130px 0 0;
	text-align: center;
	width: 100%;
}

header nav .notification-center > li.empty {
	height: 90px;
	padding-bottom: 0;
}

.no-svg .notification-center > li.empty {
	background-image: url(/shared/assets/img/icon-notifications-bell-large.png);
}


ul.notification-center > li.unread:hover {
	background-color: #F2F2F2;
}

.notifications .main .notification-center > li.empty::hover {
	background-color: white;
}

.notification-center > li.empty > p {
	display: block;
	margin: 0;
}

.notification-center > li img {
	margin: 0 0 0 0;
	max-width: 60px;
}

.notification-center > li a {
	color: inherit;
}

.notification-center > li .time-ago {
	color: #808080;
	display: block;
	font-size: 12px;
	line-height: 18px;
}

