.material-tooltip{
	padding: 10px 15px;
	font-size: 1rem;
	z-index: 2000;
	background-color: transparent;
	border-radius: 5px;
	color: #fff;
	min-height: 36px;
	line-height: 120%;
	opacity: 0;
	position: absolute;
	text-align: center;
	max-width: calc(100% - 4px);
	overflow: hidden;
	left: 0;
	top: 0;
	pointer-events: none;
	visibility: hidden;
	background-color: #000;
}

#toast-container{
	display:block;
	position:fixed;
	z-index:10000
}

@media only screen and (max-width: 600px){
	#toast-container{
		min-width:100%;
		bottom:0%
	}
}

@media only screen and (min-width: 601px) and (max-width: 992px){
	#toast-container{
		left:5%;
		bottom:7%;
		max-width:90%
	}
}

@media only screen and (min-width: 993px){
	#toast-container{
		top:10%;
		right:7%;
		max-width:86%
	}
}

.toast{
	border-radius: 4px;
	top: 35px;
	width: auto;
	margin-top: 10px;
	position: relative;
	max-width: 100%;
	height: auto;
	min-height: 48px;
	line-height: 1.5em;
	background-color: var(--toast);
	padding: 10px 25px;
	font-size: 1.1rem;
	font-weight: 300;
	color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	cursor: default
}

.toast .toast-action{
	color:#eeff41;
	font-weight:500;
	margin-right:-25px;
	margin-left:3rem
}

.toast.rounded{
	border-radius:24px
}

@media only screen and (max-width: 600px){
	.toast{
		width:100%;
		border-radius:0
	}
}