/* ################################ */
/* Noty                            */
/* ################################ */
.noty.noty-box {
	position: fixed;
	overflow: hidden;
	padding-right: 20px;
	max-width: 350px;
	text-align: right;
	z-index: 999999;
}
	.noty.noty-box.noty-box-top-center {
		right: 0;
		top: 20px;
		padding: 0;
		max-width: 100% !important;
		width: 100% !important;
		text-align:center !important;
	}
.noty.noty-box.noty-box-right-top {
	right: 0;
	top: 20px;
	padding-left: 20px;
}
.noty.noty-box.noty-box-left {
	left: 0;
	padding-left: 20px;
	top: 48%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.noty.noty-box.noty-box-right-bottom {
	right: 0;
	bottom: 0;
	padding-right: 20px;
	padding-bottom: 20px;
}
.noty .noty-single {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	display: inline-block;
	margin-top: 1px;
	border-radius: 8px;
	text-align: left;
	overflow: hidden;
	background-color: rgb(48, 48, 48);
	margin-left:10px;
	margin-right:10px;
}
.noty.slide-bottom .noty-single {
	bottom: -50px;
}
.noty.slide-bottom .noty-single.noty-active {
	bottom: -0px;
}
.noty.slide-right .noty-single {
	right: -350px;
}
.noty.slide-right .noty-single.noty-active {
	right: 0;
}
.noty.noty_fade .noty-single {
	opacity: 0;
}
.noty.noty_fade .noty-single.noty-active {
	opacity: 1;
}
.noty.flip .noty-single {
	transform: rotateX(-90deg);
}
.noty.flip .noty-single.noty-active {
	transform: rotateX(0deg);
}
.noty.zoom .noty-single {
	transform: scale(0);
}
.noty.zoom .noty-single.noty-active {
	transform: scale(1);
}
.noty .noty-title {
	color: white;
	font-size: 12px;
	background: rgba(0, 0, 0, 0.3);
	padding: 4px 10px;
	font-weight: 800;
}
.noty .noty-text {
	padding: 7px 10px;
	font-size: 14px;
	line-height: 18px;
	color: white;
}
.noty .noty-text img.icon {
	height: 17px;
	width: 17px;
	object-fit: contain;
	object-position: center center;
	display: inline-block;
	vertical-align: sub;
}
.noty .noty-text img.icon.ml {
	margin-left: 6px;
}
.noty .noty-bar {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	position: relative;
	right: 0;
	background: rgba(0, 0, 0, 0.3);
	left: 0;
	bottom: 0;
	height: 4px;
}
.noty .noty-single-info {
	background: rgb(70 70 50);
}
.noty .noty-single-success {
	background: rgb(0 169 47);
}
.noty .noty-single-warning {
	background: rgb(169, 130, 0);
}
.noty .noty-single-error {
	background: rgb(169 0 0);
}
.noty .noty-buttons {
	padding: 9px;
	background: rgba(0, 0, 0, 0.5);
}
.noty .noty-buttons .noty-button {
	border: none;
	border-radius: 6px;
	font-size: 14px;
	line-height: 26px;
	padding: 0 10px;
	margin-right: 3px;
	cursor: pointer;
}
