/* line 1, app/assets/stylesheets/snackbar.scss */
.snackbar {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 2147483648;
  box-shadow: 4px 4px 8px #00000063;
  background: #e1f0ff;
  color: #006cd8;
  min-width: 200px;
  max-width: 400px;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  visibility: visible;
  opacity: 100;
  transition: opacity 300ms;
}

/* line 22, app/assets/stylesheets/snackbar.scss */
.snackbar._hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms, visibility 0ms linear 300ms;
}

/* line 28, app/assets/stylesheets/snackbar.scss */
.snackbar.error {
  background: #ff3939;
  color: white;
}

/* line 33, app/assets/stylesheets/snackbar.scss */
.snackbar.success {
  background: #589522;
  color: #edffdc;
}
