.noty.noty-box {
	position: fixed;
	overflow: hidden;
	padding-right: 20px;
	max-width: 420px;
	text-align: right;
	z-index: 999999;
}
.noty.noty-box.noty-box-left-top {
	left: 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: var(--border-radius);
	text-align: left;
	overflow: hidden;
	background: var(--color2);
	color: white;
}
.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.fade .noty-single {
	opacity: 0;
}
.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: 14px;
	background: rgba(0, 0, 0, 0.3);
	padding: 7px 16px;
	font-weight: 800;
}
.noty .noty-text {
	padding: 15px 10px;
	font-size: 21px;
	line-height: 20px;
	font-weight: 400;
}
.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-log {
	background: var(--darker);
	color: white;
}
.noty .noty-single-success {
	background: #006300;
	color: white;
}
.noty .noty-single-warning {
	background: rgb(150 112 34);
}
.noty .noty-single-error {
	background: var(--red);
	color: white;
}
.noty .noty-buttons {
	padding: 9px;
	background: rgba(0, 0, 0, 0.5);
}
.noty .noty-buttons .noty-button {
	border: none;
	border-radius: 6px;
	font-size: 16px;
	line-height: 30px;
	padding: 0 10px;
	margin-right: 3px;
	cursor: pointer;
	font-family: var(--font2);
	font-weight: 500;
}
.noty .noty-buttons .noty-button-true {
	color: black;
}
.noty .noty-buttons .noty-button-false {
	opacity: 0.7;
	background: var(--red);
	color: white;
	font-weight: 500;
}
@media all and (max-width: 576px) {
	.noty.noty-box.noty-box-right-bottom {
		padding-bottom: 0;
		padding-right: 0;
		width: 100%;
	}
	.noty .noty-text {
		text-align: center;
	}
	.noty .noty-buttons {
		text-align: center;
	}
}