:root {
	--mp-toasts-background 		: #ffffff;
	--mp-toasts-shadow 			: 0 0 7px rgba(255,255,255,0);
	--mp-toasts-border 			: 2px solid #813c4e;
	--mp-toasts-border-radius 	: 0px;
	--mp-toasts-text-color 		: #66321c;
	--mp-toasts-hover-color 	: #000000;
	--mp-toasts-widht 			: 280px;
	--mp-toasts-font-size 		: 12px;
}
.mp-toasts__wrapper {
	pointer-events: none;
}
.mp-toasts__item {
	pointer-events: all;
	position: relative;
	background: var(--mp-toasts-background);
	box-shadow: var(--mp-toasts-shadow);
	border: var(--mp-toasts-border);
	border-top-left-radius: 18px;
	border-bottom-right-radius: 18px;
	padding: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	width: var(--mp-toasts-widht);
	margin: 0 auto;
	margin-top: 15px;
	min-height: 40px;
	animation: visibleIn .5s;
}
@keyframes visibleIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes visibleIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.mp-toasts__item.remove {
	animation: visibleOut .5s;
	opacity: 0;
}
@keyframes visibleOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@-webkit-keyframes visibleOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.mp-toasts__item ._close {
	width: 10px;
	height: 10px;
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
}
.mp-toasts__item ._close::after, 
.mp-toasts__item ._close::before {
	content: "";
	display: block;
	width: 120%;
	height: 2px;
	background: var(--mp-toasts-text-color);
	position: absolute;
	top: 50%;
	left: -10%;
	transition: background .6s;
}
.mp-toasts__item ._close::after {
	transform: translateY(-50%) rotate(-45deg);
}
.mp-toasts__item ._close::before {
	transform: translateY(-50%) rotate(45deg);
}
.mp-toasts__item ._close:hover:after, 
.mp-toasts__item ._close:hover:before {
	background: var(--mp-toasts-hover-color);
}
.mp-toasts__item .message {
	width: 100%;
	color: var(--mp-toasts-text-color);
	font-size: var(--mp-toasts-font-size);
	text-align: center;
}
.mp-toasts__item .message a {
	text-decoration: none;
	font-weight: bold;
	color: var(--mp-toasts-hover-color);
	transition: .6s;
}
.mp-toasts__item .message a:hover {
	color: var(--mp-toasts-text-color);
}
@media (min-width: 410px) {
	:root {
		--mp-toasts-widht 		: 350px;
		--mp-toasts-font-size 	: 14px;
	}	
}
@media (min-width: 768px) {
	:root {
		--mp-toasts-font-size 	: 16px;
	}
	.mp-toasts__wrapper {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.mp-toasts__item {
		margin: 0;
		margin-top: 15px;
		margin-right: 30px;
	}

}