.notification-area-popup {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	width: auto;
	text-align: center;
	max-height: 500px;
	position: absolute;
	top: 45px;
	right: 18px;
	z-index: 2;
	width: 180px;
	display: none;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.notification-area-popup p span { 
	font-weight: 600;
	color: #008642;
}

.notification-area-popup::before {
	content: "";
	position: absolute;
	top: -30px;
	left: 60%;
	z-index: 3;
	border: solid 15px transparent;
	border-bottom-color: #fff;
}

.notify-area {
	background-color: #fff;
	border-radius: 5px;
	width: 500px;
	max-height: 500px;
	position: absolute;
	display: none;
	top: 50px;
	right: 6px;
	z-index: 3;
	box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

@media screen and (max-width: 600px) {
	.notify-area {
		display: none !important;
		visibility: hidden !important;
	}
	
	.notification-area-popup {
		display: none !important;
		visibility: hidden !important;
	}
}

.notify-area  {
	
}

.notify-area::before {
	content: "";
	position: absolute;
	top: -30px;
	left: 80%;
	z-index: 4;
	border: solid 15px transparent;
	border-bottom-color: #fff;
}

.notify-header {
	display: flex;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	padding: 20px;
}

.notify-header .notify-header-buttons {
	display: grid;
	grid-template-columns: 1fr;
	width: 100%;
}

.notify-header .notify-header-buttons .notify-header-button {
	cursor: pointer;
	text-align: center;
	padding: 20px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	position: relative;
}

.notify-header .notify-header-buttons .notify-header-button:hover {
	background: #eee;
}

.notify-header .notify-header-buttons .notify-header-button.active {
	background: #008642;
	color: #fff;
}

.notify-header .notify-header-buttons .notify-header-button-badge {
	background: #ED2B2A;
	color: #fff;
	border-radius: 50%;
	width: 11px;
	font-size: .55rem;
	padding: 4px;
	position: absolute;
	top: -8px;
	right: 10px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	animation: pulse 2s infinite;
	display: none;
}

.blob.red {
	animation: pulse 2s infinite;
}

.notify-body {
	height: 350px;
	padding: 10px;
	overflow-y: auto;
}

.notify-body .sd-notify-body-post {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 2px;
	transition: .2s all;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #f1f1f1;
}

.notify-body .sd-notify-body-post:hover {
	transform: scale(1.01);
	border-radius: 10px;
	padding: 10px 2px;
	cursor: pointer;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.notify-body .sd-notify-body-post .sd-notify-body-post-img {
	height: max-content;
}

.notify-body .sd-notify-body-post .sd-notify-body-post-content .sd-notify-body-post-description {
	font-size: 0.8rem;
	color: #010101;
}

.notify-body .sd-notify-body-post .sd-notify-body-post-content .sd-notify-body-post-date {
	font-size: .7rem;
	font-weight: bold;
	color: #777;
}

.notify-body .sd-notify-body-post .sd-notify-body-post-read-more {
	border: 0;
	background: #008642;
	color: #fff;
	padding: 5px;
	border-radius: 4px;
	width: 80px;
	margin-top: 10px;
	font-weight: 600;
}

.sd-notify-body-post-title {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.tag-new, .tag-view {
	font-size: 0.7rem;
    background-color: #008642;
    color: #fff;
    padding: 2px 4px;
    border-radius: 2px;
}

.tag-view {
    background-color: #FFE17B;
    color: #333;
}

.notify-btn-tutorial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .85rem;
    background: var(--default-color);
    padding: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
    color: #008642;
	cursor: pointer;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(212, 25, 25, 0.5);
	}
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(212, 25, 25, 0);
	}
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(212, 25, 25, 0);
	}
}

@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(212, 25, 25, 0.5);
		box-shadow: 0 0 0 0 rgba(212, 25, 25, 0.5);
	}
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(212, 25, 25, 0);
		box-shadow: 0 0 0 10px rgba(212, 25, 25, 0);
	}
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(212, 25, 25, 0);
		box-shadow: 0 0 0 0 rgba(212, 25, 25, 0);
	}
}