/*!
 * simpleSnackbar.js v1.0.0
 * https://github.com/tomhrtly/simpleSnackbar.js
 *
 * Copyright 2019 Tom Hartley
 * Released under the MIT license
 */
* {
  box-sizing: border-box;
}

*::after, *::before {
  box-sizing: border-box;
}

.ss-snackbars {
  display: none;
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: 350px;
}

.ss-snackbars.ss-snackbars-active {
  display: block;
}

.ss-snackbar-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
}

.ss-icon {
  color: rgba(0, 0, 0, 0.4);
  display: inline-flex;
  height: 1rem;
  width: 1rem;
}

.ss-icon svg {
  height: 100%;
  width: 100%;
}

.ss-close {
  -webkit-appearance: button;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  overflow: visible;
  padding: 0;
  text-transform: none;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  margin: -1.5rem -1rem;
  padding: 1.5rem 1rem;
}

.ss-close:hover .ss-icon {
  color: rgba(0, 0, 0, 0.8);
}

.ss-snackbar {
  backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.9);
  border-left-style: solid;
  border-left-width: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 6px rgba(0, 0, 0, 0.04);
  color: #4a4a4a;
  display: flex;
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 1.5rem 1rem;
  pointer-events: auto;
  transform: translate3d(110%, 0, 0);
  visibility: hidden;
}

.ss-snackbar:not(:last-child) {
  margin-bottom: 1rem;
}

.ss-snackbar.ss-snackbar-active {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.ss-snackbar.ss-snackbar-default {
  border-left-color: #c7c7c7;
}

.ss-snackbar.ss-snackbar-default .ss-snackbar-icon .ss-icon {
  color: #c7c7c7;
}

.ss-snackbar.ss-snackbar-success {
  border-left-color: #23d160;
}

.ss-snackbar.ss-snackbar-success .ss-snackbar-icon .ss-icon {
  color: #23d160;
}

.ss-snackbar.ss-snackbar-info {
  border-left-color: #209cee;
}

.ss-snackbar.ss-snackbar-info .ss-snackbar-icon .ss-icon {
  color: #209cee;
}

.ss-snackbar.ss-snackbar-warning {
  border-left-color: #ffdd57;
}

.ss-snackbar.ss-snackbar-warning .ss-snackbar-icon .ss-icon {
  color: #ffdd57;
}

.ss-snackbar.ss-snackbar-danger {
  border-left-color: #ff3860;
}

.ss-snackbar.ss-snackbar-danger .ss-snackbar-icon .ss-icon {
  color: #ff3860;
}

.ss-snackbar-body {
  flex-grow: 1;
}

/*# sourceMappingURL=simpleSnackbar.css.map */