body.ej-logged-in .account-nav .menu-header-account-container {
	position: relative;
	left: -45px;
}

#notifications-wrapper {
	position: absolute;
	left: -160px;
	top: 0px;
}

#notifications-wrapper a.notifications-icon {
	display: block;
	height: 25px;
	width: 25px;
	position: relative;
	cursor: pointer;
}

#notifications-wrapper a.notifications-icon i {
	font-size: 24px;
	color: #555;
}

#notifications-wrapper a.notifications-icon .count {
	display: block;
	position: absolute;
	top: -7px;
	right: -8px;
	background: #e94f0b;
	color: #FFF;
	border-radius: 50%;
	height: 20px;
	width: 20px;
	font-size: 11px;
	font-weight: bold;
	line-height: 16px;
	text-align: center;
	border: 2px solid #FFF;
}

#notifications-wrapper a.notifications-icon .count.large {
    height: 20px;
    width: 20px;
    font-size: 9px;
    line-height: 16px;
}

#notifications-wrapper .notifications-list {
	min-height: 140px;
	width: 380px;
	background: #FFF;
	border: 1px solid #AAA;
	position: absolute;
	left: -300px;
	top: 45px;
	display: none;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 998;
}

#notifications-wrapper.open:before {
	content: " ";
	display: block;
	width: 20px;
	height: 20px;
	border-left: 1px solid #AAA;
	border-top: 1px solid #AAA;
	transform: rotate(45deg);
	position: absolute;
	top: 35px;
	right: 4px;
	background: #FFF;
	z-index: 999;
}

#notifications-wrapper .notifications-list .loading {
	display: block;
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	height: 30px;
	text-align: center;
}

#notifications-wrapper .notifications-list .loading.loading-more {
	position: relative;
	top: 0;
	height: 75px;
}

#notifications-wrapper .notifications-list .loading i {
	opacity: 0.5;
}

#notifications-wrapper .notifications-list .loading span {
	font-size: 10px;
	line-height: 20px;
	color: #AAA;
    animation-name: fade;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-duration: 1s;
    animation-direction: alternate-reverse;  
	display: block;
	margin-bottom: 10px;
}

#notifications-wrapper .notifications-list .no-notifs {
	display: block;
	width: 90%;
	margin: 30px auto;
	padding: 10px;
	color: #888;
	font-size: 14px;
	line-height: 18px;
}

#notifications-wrapper .notifications-list .loadmore {
	text-align: center;
}

@keyframes fade{
    0% {
      opacity: 0.25;
}
    100%{
      opacity: 1;
  }
}

.notif-wrap {
	padding: 25px;
}

.notif-wrap {
	transition: 300ms;
	cursor: pointer;
}

/*.notif-wrap:hover {
	background-color: rgba(0,0,0,0.05);
	transition: 300ms;
}*/

.notif-wrap hr {
	width: 100%;
	background-color: #dedfe4;
	height: 1px;
	display: block;
	position: relative;
	top: 20px;
}

.notif-wrap.last hr {
	display: none;
}

.ej-notification {
	position: relative;
}

.ej-notification .fresh {
	display: inline-block;
	color: #FFF;
	padding: 0 3px;
	font-size: 9px;
	background: #e94f0b;
	border-radius: 3px;
	margin-left: 10px;
	font-weight: bold;
	position: relative;
	top: -4px;
}

.ej-notification .icon {
	display: inline-block;
	margin: 0 7px 0 0;
}

.ej-notification .date {
	display: inline-block;
	margin: 0;
	color: #666;
	font-size: 12px;
	line-height: 12px;
	position: relative;
	top: -4px;
	font-style: italic;
}

.ej-notification .icon img {
	width: 20px; 
	height: auto;
}

.ej-notification.post-id-notification .notif-copy {
	width: calc(100% - 60px);
	float: left;
	padding: 0;
	margin: 0;
	font-size: 12px;
	line-height: 17px
	color: #303030;
}

.ej-notification.post-id-notification .thumb {
	width: 45px;
	float: right;
}

.ej-notification.post-id-notification .thumb img {
	width: 100%;
	height: auto;
}

.ej-notification.comment-id-notification .notif-copy {
	width: calc(100% - 60px);
	float: right;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 19px
}

.ej-notification.comment-id-notification .avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	overflow: hidden;
	float: left;
}

.ej-notification.comment-id-notification .avatar img {
	width: 100%;
	height: auto;
}

#notifications-wrapper .notifications-list .close {
	display: none;
}

@media screen and (max-width: 768px){
	body.ej-logged-in .account-nav .menu-header-account-container {
		left: 0px;
	}
	#notifications-wrapper {
		left: -40px;
		top: 8px;
	}
	#notifications-wrapper .notifications-list {
		min-height: 100%;
		height: 100%;
		width: 100%;
		border: 0px;
		position: fixed;
		left: 0px;
		top: 0px;
		z-index: 99999;
		overflow-y:scroll;
	    overflow-x:hidden;
		padding-top: 20px;
	}
	#notifications-wrapper .notifications-list .close {
		display: block;
		position: absolute;
		top: 10px;
		right: 15px;
		color: #666;
		font-weight: bold;
		font-size: 12px;
		line-height: 12px;
	}
	#notifications-wrapper .notifications-list .uptick {
		display: none !important;
	}
}