/* Toaster */
#note {
	z-index: 9;
	display: none;
	position: fixed;
	bottom: 3rem;
	right: 3rem;
	height: 15.625rem;
	width: 15.625rem;
	border-radius: 50%;
}
button.close {
	position: absolute;
	top: 0;
	right: 0;
	width: 2rem;
	height: 2rem;
	display: block;
	cursor: pointer;
  font-size: 2rem;
  color: #fff;
  background-color: rgba(0,0,0, .5);
  border-radius: 50%;
}
button.close:hover {
  opacity: .6;
}
@media (max-width: 90rem) {
	#note {
		display: none !important;
	}
}