.notify_container {
	position: fixed;
	right: 15px;
	margin-left: 75px;
	z-index: 9999 !important; 
	max-height: 90vh;
	padding: 5px;
	margin-top: -30px;
	overflow: hidden;
}


.cfg_ntfy_item {
	margin-top: 15px;
	margin-right: 0;
	margin-left: auto;
	min-width: 50px;
	max-width: 500px;
	display: table !important;
	position: relative;
	min-height: 80px;
	max-height: 150px;
	background: #20272E;
	box-shadow: 0 0 5px black;
	border-radius: 5px;
	animation: notify 0.4s ease;
}

.cfg_ntfy_item_hide {
	opacity: 0;
	animation: hide_notify .5s ease;
}

@keyframes notify {
	from {
		transform: rotateX(90deg);
	}
	to {
		transform: rotateX(0deg);
	}
}

@keyframes hide_notify {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.error {
	color: var(--red);
}

.success {
	color: var(--green);
}

.info {
	color: var(--blue);
}

.warning {
	color: var(--orange);
}

.cfg_ntfy_item_content {
	display: flex;
}

.cfg_ntfy_item_icon {
	width: 75px;
	min-width: 75px;
	margin: auto;
	font-size: 25px;
	text-align: center;
	color: #FF7800;
}

.cfg_ntfy_item_details {
	margin-right: 25px;
	min-height: 80px;
}

.cfg_ntfy_item_title {
	padding: 5px;
	border-bottom: 1px solid #FF7800;
	color: #FF7800;
	font-weight: 600;

}

.cfg_ntfy_item_text {
	padding: 5px;
	font-size: 15px;
	text-align: left;
}

.cfg_ntfy_item_close {
	padding: 5px 10px;
}

.cfg_ntfy_item_close i {
	cursor: pointer;
	transition: all 0.3s ease;
}

.cfg_ntfy_item_close i:hover {
	color: var(--akzentfarbe);
}


/**/

.cfg_alert {
	margin-top: -75px;
	margin-right: 0;
	margin-left: auto;
	min-width: 150px;
	max-width: 500px;
	display: table !important;
	position: relative;
	min-height: 80px;
	background: var(--ContentBG);
	box-shadow: 0 0 10px black;
}

.error {
	color: #FA1111;
}

.success {
	color: #11FA23;
}

.info {
	color: #1887d2;
}

.warning {
	color: #E5FA11;
}

.cfg_alert_titlebox {
	width: 100%;
	height: 35px;
	text-align: left;
	padding: 5px;
	background: var(--ContentTitelBG);
}

.cfg_alert_logo {
	float: left;
	margin: 0 5px 0 5px;
}

.cfg_alert_logo i {
	font-size: 20px;
	line-height: 25px;
}

.cfg_alert_title {
	float: left;
	font-size: 17px;
	line-height: 25px;
	font-weight: 600;
}

.cfg_alert_title_close {
	float: right;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	color: var(--text_color);
	margin: 2px 5px 0 20px;
	transition: all 0.5s ease;
}

.cfg_alert_title_close:hover {
	color: var(--akzentfarbe);
}

.cfg_alert_text {
	padding: 15px;
	font-size: 15px;
	font-weight: 400;
	color: var(--text_color);
	text-align: justify;
}

.cfg_alert_show {
	animation: show_slide 1.2s ease forwards;
}

@keyframes show_slide {
	0%{
		transform: translateX(100%);
	}
}

.cfg_alert_hide {
	animation: hide_fade 0.8s ease forwards;
}

@keyframes hide_fade {
	0%{
		opacity: 1;
		display: block;
	}

	100%{
		opacity: 0;
		display: none;
	}
}

@media only screen and (max-width: 425px) {

	.cfg_ntfy_item {
		padding: 25px;
	}
	
	.cfg_ntfy_item_title {
		font-size: 13px;
		margin-left: 10px;
	}

	.cfg_ntfy_item_icon {
		display: none;
	}

	.cfg_ntfy_item_text {
		padding: 5px;
		margin-left: 10px;
		font-size: 12px;
		text-align: left;
	}

}


@media only screen and (max-width: 320px) {

	.cfg_ntfy_item {
		padding: 25px;
	}
	
	.cfg_ntfy_item_title {
		font-size: 13px;
		margin-left: 10px;
	}

	.cfg_ntfy_item_icon {
		display: none;
	}

	.cfg_ntfy_item_text {
		padding: 5px;
		margin-left: 10px;
		font-size: 12px;
		text-align: left;
	}

}
