@media only screen and (min-width: 750px) { 
 
	#toasts {
		position: fixed;
		right: 20px;
		bottom: 70px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		min-height: 0;
	}

	#toasts .toast {
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
		padding: .6875rem 1.5rem;
		font-family: 'Roboto', sans-serif;
		font-weight: 400;
		border-radius: 4px;
		box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
		cursor: default;
		opacity: 0;
		transform: translateY(15%);
		transition: opacity .5s ease-in-out, transform .5s ease-in-out;
		will-change: opacity, transform;
		z-index: 1100;

		font-size: 18px;
		font-weight: 500;
	} 

	#toasts .toast .toast-close {
		cursor: pointer;
		font-size: 24px;
		margin-left: 10px;
	}
}

@media only screen and (max-width: 749px) { 
	#toasts {
		position: fixed;
		top: 5px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 0;
		width: 100%
	}

	#toasts .toast {
		width: 80%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		align-items: center;
		padding: .6875rem 1.5rem;
		font-family: 'Roboto', sans-serif;
		font-weight: 400;
		border-radius: 4px;
		box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
		cursor: default;
		opacity: 0;
		transform: translateY(15%);
		transition: opacity .5s ease-in-out, transform .5s ease-in-out;
		will-change: opacity, transform;
		z-index: 1100;

		font-size: 16px;
		font-weight: 500;
	} 

	#toasts .toast .toast-close {
		cursor: pointer;
		font-size: 24px;
		margin-left: 10px;
	}
}

#toasts .toast.show {
	opacity: 1;
	transform: translateY(0);
	transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}
  
#toasts .toast.hide {
	margin: 0;
	opacity: 0;
	overflow: hidden;
	transition: all .5s ease-in-out;
}
  
  
  #toasts .toast.success {
	background: rgba(38, 214, 138, 1);
	font-weight: bold;
	color: white;
  }
  
  #toasts .toast.warning {
	background: rgba(255, 165, 51, 1);
	font-weight: bold;
	color: white;
  }
  
  #toasts .toast.info {
	/* background: rgba(44, 188, 255, 1); */
	background: rgba(77, 176, 218, 1);
	font-weight: bold;
	color: white;
  }
  
  #toasts .toast.error {
	background: rgba(255,0,0,0.7);
	/* font-weight: bold; */
	color: white;
  }
  
  