.toast-container{
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 12000;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.toast-container .toast-item{
	opacity: 0;
	/* transform: translateY(-100%); */
	transition: all 0.8s ease;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
	min-height: 50px;
	min-width: 300px;
	max-width: 350px;
	margin-bottom: 20px;
    overflow: hidden;
    background-color: rgb(255,255,255);
    background-clip: padding-box;
    
	font-size: 1em;
	color: #555555;
	
	border: none;
	border-radius: 0.25em;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
	box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,.2);
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.toast-container .toast-item:hover {
    box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,.5);
}

.toast-container .toast-item.show{
	opacity: 1;
	/* transform: translateY(0); */
}

.toast-container .toast-item.toast-hiding {
    flex-basis: 0px;
    min-height: 0;
    margin-bottom: 0;
}

.toast-container .close{
	float: none !important;
    margin-left: auto;
}

.toast-container .toast-item .toast-header{
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
	font-size: 1.1em;
	font-weight: 600;
	color: #686868;
	border-top: 5px solid #aa6473;
	background: none;
}

.toast-container .toast-item.success .toast-header{
	border-color: #11b400;
}

.toast-container .toast-item.error .toast-header,
.toast-container .toast-item.danger .toast-header{
	border-color: #df280a;
}
.toast-container .toast-item.error,
.toast-container .toast-item.danger{
	background: #faebe7;
}

.toast-container .toast-item.warning .toast-header,
.toast-container .toast-item.notice .toast-header{
	border-color: #e26703;
}

.toast-container .toast-item .toast-body{
	padding: 5px 10px 15px 10px;
	font-weight: 500;
}

@media (max-width: 767px){
	.toast-container{
		width: 100%;
		top: 50px;
		right: 0;
	}
	.toast-container .toast-item{
		margin-left: 20px;
		min-width: 75%;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

