.toast {
	max-width: 350px;
	overflow: hidden;
	font-family: monospace;
	font-size: .875rem;
	background-color: rgba(255, 255, 255, .5);
	background-clip: padding-box;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: .25rem;
	box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
	backdrop-filter: blur(10px);
	display: none;
	position: relative;
	padding: .75rem 2rem .75rem .75rem;
	overflow-wrap: break-word;
	word-break: break-word
}

.toast:not(:last-child) {
	margin-bottom: .75rem
}

.toast_show {
	display: block
}

.toast__close {
	position: absolute;
	top: 0;
	right: 10px;
	padding: 0;
	background-color: transparent;
	border: 0;
	cursor: pointer;
	float: right;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	opacity: .6;
	appearance: button;
	margin: 0;
	font-family: inherit;
	border-radius: 0
}

input:not([type="checkbox"]) {
	display: block;
	font-size: 1rem;
	margin-bottom: .5rem
}

.toasts {
	top: 90px !important;
	right: -20px !important;
}

.toast {
	color: #fff !important;
	max-width: 150px;
	 border: 2px solid rgb(0, 255, 157); 
  border-radius: 10px; 
  background-color: rgba(0, 255, 157, 0.1)!important;; 
}

.toast__close {
	display: none;
}