#sitealerts {
	float: right;
	margin-right: 7px;
}
#sitealerts_opener_wrapper {
	display: flex;
	align-items: center;
}
#sitealerts_opener_wrapper a {
	margin-left: 3px;
	font-size: 11px;
	color: var(--accent);
}
#sitealerts_opener_wrapper a:hover {
	text-decoration: underline;
}
#sitealerts_opener.unread_alerts {
	font-weight: bold;
	font-size: 14px;
}
#alerts_dropdown {
	position: absolute;
	top: 25px;
	background-color: #fff;
	border: 1px solid rgba(0, 0, 0, 0.175);
	padding: 20px 5px 5px 5px;
	width: 335px;
	z-index: 5000;
	display: none;
	overflow-y: auto;
	max-height: 600px;
}
.is_bootstrap #alerts_dropdown {
	border-radius: 7px;
}
#alerts_dropdown.opened {
	display: block;
}
#alerts_dropdown ul {
	margin-left: 0;
	margin-bottom: 0;
	padding-left: 0;
}
#alerts_dropdown ul li {
	list-style-type: none;
	border: 1px solid rgba(0, 0, 0, 0.175);
	background-color: #fffdca;
	font-size: 12px;
	margin: 7px 5px;
	padding: 12px;
	padding-left: 8px;
}
.is_bootstrap #alerts_dropdown ul li {
	border-radius: 5px;
}
#alerts_dropdown ul li a {
	background-image: url("../../alerts/img/information_blue.svg");
	background-position: center left;
	background-repeat: no-repeat;
	background-size: 16px;
	padding-left: 20px;
	line-height: 1.5;
}
#alerts_dropdown ul li.read {
	background-color: #edf3fe;
	border-color: #ddd;
}
#alerts_dropdown ul li.empty {
	background-color: #edf3fe;
	border-color: #ddd;
}
#alerts_dropdown_close {
	position: absolute;
	top: 0px;
	left: 0px;
	margin-left: 0px;
}
#sitealerts_opener_image_active {
	display: none;
	width: 20px;
	height: 20px;
	filter: var(--btn_danger_filter) !important;
}
#sitealerts_opener_image_inactive {
	width: 20px;
	height: 20px;
	filter: var(--btn_secondary_filter) !important;
}

@keyframes alerts-pulsate {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.alerts_pulsating {
  animation: alerts-pulsate 1s infinite;
}
