/* Hide element visually, keeping it focusable (with keyboard) and available for screen-readers */
.Snackbar {
  /* Set color on root of component. It can be overridden after the @include */
  color: var(--colorsTextDefault, #141414);
  /* Make sure font-family goes across entire component */
  font-family: "Nunito Sans", sans-serif;
  animation: snackbarIn 200ms cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--colorsSurfaceInverted, #2d2e31);
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.1);
  box-sizing: border-box;
  color: var(--colorsTextInverted, white);
  display: inline-flex;
  font-size: 16px;
  align-items: center;
  /** Material's width limit. Soft rule against long copy in this pattern. */
  max-width: 568px;
  min-width: 284px;
  padding: 16px;
  position: relative;
}
@media (max-width: 576px) {
  .Snackbar {
    width: calc(100% - 32px);
  }
}

.Snackbar__title {
  flex: 1;
  line-height: 1.5;
  padding-right: 32px;
}

.Snackbar__action {
  background: transparent;
  color: var(--colorsTextPrimarySubdued, #78bbfa);
  cursor: pointer;
  line-height: 1.5;
  text-align: right;
  padding-left: 16px;
}
.Snackbar__action:hover {
  text-decoration: underline;
}

.Snackbar__close.Button {
  height: auto;
  margin-left: 20px;
  margin-right: -4px;
  margin-top: -1px;
  margin-bottom: -1px;
  color: var(--colorsTextOnGreySubdued, #949596);
}
.Snackbar__close.Button .a-Icon,
.Snackbar__close.Button .a-Icon > svg {
  height: 0.85em;
  width: 0.85em;
}
.Snackbar__close.Button .a-Icon > svg {
  margin-top: 1px;
}
.Snackbar__close.Button:hover {
  background-color: transparent;
}
.Snackbar__close.Button.Button--icon-only:hover {
  color: var(--colorsTextInverted, white);
}

.Snackbar--floating {
  bottom: 0;
  left: 0;
  margin: 16px;
  position: fixed;
  z-index: 1200;
}

@keyframes snackbarIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 3px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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