.notify_main_wrap {
	position: fixed;
	right: 7%;
	top: 93%;
	cursor: pointer;
	z-index: 99;
}
.notification_sec {
	position: relative;
}
.notify_bell_icon {
	cursor: pointer;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	bottom: -10px;
	right: -10px;
	font-size: 20px;
	/* box-shadow: inset -2px -2px 3px rgb(130, 2, 21),inset 2px 2px 3px rgb(255, 60, 89); */
}
.notify_bell_icon p {
	position: absolute;
	background-color: #fff;
	width: 20px;
	height: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	color: var(--red);
	border-radius: 50%;
	font-weight: 500;
	top: -6px;
	right: 0px;
	margin: 0;
	font-weight: 600;
}
.notification_box_wrap {
	position: absolute;
	border-radius: 5px;
	overflow: hidden;
	bottom: 10px;
	right: 10px;
	width: 0;
	height: 0;
	z-index: -1;
	transition: all 0.2s cubic-bezier(.45,.05,.55,.95);
	transform: scale(0);
	transform-origin: bottom right;
	display: block !important;
	opacity: 0;
}
.notification_box_wrap.notify_open {
	opacity: 1;
	min-width: 300px;
	width: 100%;
	min-height: 270px;
	height: 100%;
	padding: 60px 30px 30px 30px;
	transform: scale(1);
	transition: all 0.3s cubic-bezier(.45,.05,.55,.95);
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	/* box-shadow: inset -2px -2px 3px rgb(130, 2, 21),inset 2px 2px 3px rgb(255, 60, 89); */
}
.notification_close_btn {
	position: absolute;
	top: -20px;
	left: -20px;
	width: 70px;
	height: 70px;
	border-radius: 0 50% 50% 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.notification_close_btn span {
	margin-top: 13px;
	margin-left: 12px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
}
.single_notification_wrap h2 {
	font-size: 20px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 10px;
}
.single_notification_wrap p {
	margin: 5px 0;
	color: #fff;
	font-size: 13px;
	min-height: 60px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.single_notification_wrap a {
	opacity: 0.5;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 500;
	font-family: 'Sofia Pro';
}
.single_notification_wrap a:hover {
	opacity: 1;
}
.notification_sec button span {
	display: none;
}
.notification_sec button {
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}
.notification_sec button::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "FontAwesome";
	color: #fff;
}
.notification_sec button.owl-prev::before{
	content: '\f060';
}
.notification_sec button.owl-next::before{
	content: '\f061';
}
.all_notification {
	width: 100%;
	height: 100%;
}
.single_notification_wrap.item {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	/* transform: translateY(100%); */
}
.notify_open .single_notification_wrap.item {
	opacity: 1;
	transition-delay: 0.5s;
	/* transform: translateY(0%); */
}
.notification_sec .notify_bell_icon {
	margin-right: 0 !important;
}
.notification_sec .notify_bell_icon i {
	margin-right: 0 !important;
}



@media screen and (max-width: 1650px) {
	
	.notify_main_wrap {
		top: 91%;
	}
}

@media screen and (max-width: 1024px) {
	
	.notify_bell_icon {
		width: 45px;
		height: 45px;
	}
}

@media screen and (max-width: 767px) {
	
	.notify_main_wrap {
		top: 99%;
	}
	.notify_bell_icon {
		bottom: 0;
		right: 0;
	}
	.notification_box_wrap {
		bottom: 10px;
		right: 2px;
	}
	.notification_box_wrap.notify_open {
		min-width: 270px;
	}
}