#vs-notification-container {
	position: fixed;
	top: auto;
	right: 15px;
	bottom: 0;
	left: auto;
	z-index: 1061;
}

#vs-notification-container > .vs-notification {
	width: 100%;
	max-width: 350px;
	position: relative;
}

.vs-notification.slide-in {
	animation: slideIn 1s;
}

.vs-notification.slide-out {
	animation: slideOut 1s;
}

#vs-notification-container .vs-notification .notification-dismiss {
	background-color: transparent;
	padding: 0;
	border: none;
}

#vs-notification-container .vs-notification .notification-dismiss > svg {
	pointer-events: none;
}

#vs-notification-container .vs-notification .notification-content > .content {
	font-size: 14px;
	margin: 0;
	background-color: transparent;
}

@keyframes slideIn {
	from {
		right: -500px;
	}
	to {
		right: 0px;
	}
}

@keyframes slideOut {
	from {
		right: 0px;
	}
	to {
		right: -500px;
	}
}
