.toast-body{

	position:absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top:0;
	left:0;
	bottom:0;
	right:0;	

}


.toast-no-body{

	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	height: inherit;
	width: inherit;		

}

.toast-container{

	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	flex-wrap: wrap;
	min-height: 59px;
	position: relative;
	background: #f9bd73f5;
	font-size: 36px;
	padding: 7px 15px 7px 15px;
	border-radius: 8px;
    margin: 0 14px 0 10px;
    box-shadow:  10px 10px 32px -16px rgb(0 0 0 / 44%);

    animation-duration: 1.0s;
    animation-fill-mode: forwards;
  	animation-name: slidein;

}


@keyframes slidein {
  from {
    transform: translateY(0px);
    opacity: 0;
  }

  to {
    transform: translateY(-50px);
    opacity: 1;
  }
}


.toast-item {
    padding-right: 16px;
    padding-bottom: 7px;
    padding-top: 7px;
}