.vue-notifications {
	position: fixed;
	bottom: 1.4rem;
	right: 1.4rem;
	left: auto;
	z-index: 10000;
	max-width: 100%;
}

.vue-notifications>div {
	display: flex;
	flex-direction: column;
}

.vue-notifications-item {
	display: flex;
	border-radius: 0.6rem;
	background: #fff;
	color: #717f96;
	font-size: 0.9rem;
	margin: 0 auto 0.7rem;
	padding: 0.5rem 1rem;
	line-height: 1.4rem;
	box-shadow: 0 0 4px 0 rgba(44, 34, 34, .15), 1px 4px 7px 0 rgba(0, 0, 0, .07);
	cursor: default;
	position: relative;
	border-left: none;
	box-sizing: border-box;
	align-items: center;
	align-content: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 23rem;
	max-width: 100%;
	border-left: #717f96 3.6rem solid;
	padding-right: 1rem;
}

.glass .vue-notifications-item {
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.8);
	color: #535f72;
	backdrop-filter: blur(4px);
}

.vue-notifications-item>div {
	flex-grow: 1;
	overflow: hidden;
	max-height: 100%;
}

.vue-notifications-item>div.closer {
	flex-grow: 0;
	flex-shrink: 0;
	width: 1rem;
	height: 2rem;
	position: relative;
	overflow: visible;
	opacity: 0.3;
}

.vue-notifications-item h1 {
	text-align: left;
	margin: 0;
	padding: 0.1rem 0;
	font-size: 1rem;
	font-weight: bold;
	color: #3d4247;
	opacity: 1;
}

.vue-notifications-item:before,
.vue-notifications-item>div.closer:after {
	content: "\19699";
	color: #ffffff;
	background: transparent;
	display: flex !important;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: -3.6rem;
	width: 3.6rem;
	speak: none;
	font-family: 'icofont';
	font-size: 1.3rem;
	padding: 0;
	overflow: hidden;
	max-height: 100%;
	flex-grow: 1;
	flex-shrink: 0;
}

.vue-notifications-item>div.closer:hover {
	opacity: 1;
}

.vue-notifications-item>div.closer:after {
	content: "\19717";
	cursor: pointer;
	color: #3b4557;
	background: transparent;
	left: 0.2rem;
	opacity: 1;
	font-size: 1.1rem;
	top: 0;
	height: 2rem;
	width: 1.5rem;
}

.vue-notifications-item.confirm {
	border-left-color: #ffbc00;
}

.vue-notifications-item.confirm h1 {
	color: #eeae00;
}

.vue-notifications-item.confirm .closer {
	display: none !important;
}

.vue-notifications-item.confirm:before {
	content: "\194ac";
}

.vue-notifications-item.confirm:after {
	display: none !important;
	padding-left: 1rem;
}

.vue-notifications-item.confirm .message-footer {
	width: 100%;
	padding: 0.7rem 0 0.4rem;
	text-align: right;
}

.vue-notifications-item.confirm .message-footer button {
	border: none !important;
	border-radius: 0.3rem !important;
	vertical-align: middle !important;
	margin: 0 0 0 0.5rem !important;
	padding: 0.4rem 0.5rem !important;
	font-size: 0.9rem !important;
	outline-style: none !important;
	cursor: pointer !important;
	background: #e0e0e0 !important;
	color: #444444 !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	user-select: none !important;
	display: inline-flex !important;
	align-content: center !important;
	flex-wrap: nowrap !important;
	flex-direction: row !important;
	justify-content: center !important;
	align-items: center !important;
	display: inline-flex !important;
	align-content: center !important;
	flex-wrap: nowrap !important;
}

.vue-notifications-item.confirm .message-footer button:before {
	speak: none;
	font-family: 'icofont';
	text-align: center;
	vertical-align: middle;
	background: transparent;
	margin-right: 0.5rem;
}

.vue-notifications-item.confirm .message-footer button.ok {
	background: #6db356 !important;
	color: white !important;
}

.vue-notifications-item.confirm .message-footer button.ok:before {
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	speak: none;
	font-family: 'icofont';
	content: "\19714";
}

.vue-notifications-item.confirm .message-footer button:hover {
	opacity: 0.8;
}

.vue-notifications-item.ok {
	border-left-color: #68af25;
}

.vue-notifications-item.ok:before {
	content: "\194b1";
}

.vue-notifications-item.ok h1 {
	color: #60a520;
}

.vue-notifications-item.info {
	border-left-color: #4897bb;
}

.vue-notifications-item.info:before {
	content: "\194a4";
}

.vue-notifications-item.info h1 {
	color: #4897bb;
}


.vue-notifications-item.error {
	border-left-color: #f56565;
}

.vue-notifications-item.error h1 {
	color: #f56565;
}

.vue-notifications-item.error:before {
	content: "\194b2";
}


.vue-notifications-item hr {
	border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
	border-top: none;
}

@media (max-width: 25rem) {
	.vue-notifications-item {
		width: 90%;
	}

	.vue-notifications {
		right: 0;
		width: 100%;
	}
}