.position-fixed {
	position: fixed !important;
}

.navbar-nav .notification {}

.inapp_noti_wrapper {
    display: block;
    position: relative;
}
.inapp_noti_wrapper .aside_noti_toggle {}
.inapp_noti_wrapper .aside_noti_toggle button {
    border: 0;
    background: none;
    font-size: 1.6rem;
    color: black;
    padding: 0 5px;
}
.inapp_noti_wrapper .aside_noti_toggle button i {
    font-size: 20px;
}
.inapp_noti_wrapper .aside_noti_toggle button .num {
	position: absolute;
	top: -1px;
	right: -8px;
	width: 20px;
	height: 20px;
	background: #fc9501;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

#aside_noti {
	--size-noti-menu-top: 66px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(5%);
	position: fixed;
	left: 0px;
	bottom: 0;
	/* min-width: 215px; */
	width: 100%;
	height: 100%;
	padding: 0;
	z-index: 10000000000;
	background-color: white;
	overflow: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	transition: all 0.15s ease;
	cursor: initial;
}
#aside_noti.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
#aside_noti .in_aside {
    overflow: auto;
    background: #F0F0F0;
    padding: 20px;
	position: relative;
}
#aside_noti .noti_menu_top  {
    padding: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
}
#aside_noti .noti_menu_top .noti_menu_top_title {
    text-align: center;
    letter-spacing: 1px;
    line-height: var(--size-noti-menu-top);
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0;
}
#aside_noti .noti_menu_top #noti_menu_top_close_button {
    border: 0;
    background: none;
    color: rgb(0 0 0 / 37%);
    font-size: 25px;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translate(0, -50%);
    width: 30px;
}
#aside_noti #markAllAsRead {
    border: 0;
    background: none;
    color: #000;
    font-size: 16px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translate(0, -50%);
}
#aside_noti .notifications {
    padding-top: var(--size-noti-menu-top);
}
#aside_noti .notifications a:hover {
	color: #111;
}
#aside_noti .notifications .notification {
    position: relative;
    color: #111;
    padding: 20px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 5px;
}
#aside_noti .in_aside.no_noti {
    position: absolute;
    top: var(--size-noti-menu-top);
    left: 0;
    width: 100%;
    background: #fc9501;
    text-align: center;
}
#aside_noti .in_aside.no_noti .notifications {
    padding: 0;
}
#aside_noti .in_aside.no_noti .notifications p {
    text-align: center;
    color: #fff;
    font-size: 16px;
}
#aside_noti .in_aside.no_noti p span {
}
#aside_noti .in_aside.no_noti p i {
    display: block;
    font-size: 30px;
}
#aside_noti .notifications .notification:last-child {
    margin-bottom: 0;
}
#aside_noti .notification .noti_content .noti_content_title {
    font-size: 17px;
    font-weight: 500;
    padding: 5px 25px 5px 0px;
    line-height: 20px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #fc9501;
}
#aside_noti .notification .noti_content .noti_content_body {
    font-size: 13px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    color: #606060;
}
#aside_noti .notification .noti_content .noti_content_body.line-2 {
    /* -webkit-line-clamp: 2; */
}
#aside_noti .notification .noti_content_date {
    font-size: 12px;
    color: #A7A7A7;
    margin-top: 7px;
    display: flex;
}
#aside_noti .notification .noti_content_date p {
    margin-bottom: 0;
}
#aside_noti .notification .noti_content_share {
    margin-top: 10px;
}

/* is_read notification */
#aside_noti .notifications .notification.is_read {
	background: #d8d8d8;
}
#aside_noti .notification.is_read .noti_content .noti_content_title,
#aside_noti .notification.is_read .noti_content .noti_content_body,
#aside_noti .notification.is_read .noti_content_pushed_at,
#aside_noti .notification.is_read .noti_content_date a,
#aside_noti .notification.is_read .noti_content_date a i {
    color: rgb(0 0 0 / 50%);
}

#aside_noti .loading {
	position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
	display: none;
	color: #fc9501;
}

@media (min-width: 1024px) {
	#aside_noti {
		--thumb-size: 100px;
		transform: translateY(1%);
		position: absolute;
		width: auto;
		height: auto;
		left: auto;
		top: 35px;
		right: 100%;
		margin-right: -75px;
		bottom: unset;
		z-index: 10;
		overflow: inherit;
		box-shadow: 0px 5px 11px 0px #0000001F;
		border-radius: 8px;
	}
	#aside_noti:before {
		content: "\f0d8";
		font-family: "Font Awesome 5 Pro";
		font-weight: 600;
		position: absolute;
		font-size: 37px;
		color: #F0F0F0;
		right: 52px;
		top: -14px;
		z-index: 1111111111;
		height: 28px;
		display: flex;
		align-items: end;
		}
	#aside_noti .noti_menu_top  {
		display: none;
	}
	#aside_noti .in_aside {
	    width: 500px;
	    max-height: 600px;
	    border-radius: 8px;
	}
	#aside_noti .notifications {
	    padding-top: 0;
	}
    #aside_noti .notification .noti_content_body {
		display: flex;
	}

	#aside_noti .notification .noti_content .noti_content_body  {}

	#aside_noti .notification .noti_content {
		margin-bottom: 5px;
		width: 100%;
	}
	#aside_noti .notification .noti_content.has_thumbnail {
	    width: calc(100% - var(--thumb-size));
	}

	#aside_noti .in_aside.no_noti {
	    position: initial;
	    transform: none;
	    background: #F0F0F0;
	    width: 250px;
	}
	#aside_noti .in_aside.no_noti .notifications p {
		color: #000;
	}
}