@import url('https://fonts.googleapis.com/css?family=Roboto');

#snackbar {
  position: fixed;
  bottom: 0;
  background-color: #323232;
  font-size: 14px;
  font-family: 'Roboto Regular', sans-serif;
  min-width: 288px;
  max-width: 568px;
  color: white;
  border-radius: 2px;
  line-height: 1.5;
  vertical-align: center;
  box-sizing: border-box;
  display: block;
  transform: translateY(100%);
  z-index: 9999;
}

#snackbar.center-style {
  left: 0;
  right: 0;
  margin: auto;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 14px 24px 14px 24px;
  text-align: center;
}

#snackbar.left-style {
  bottom: 15px;
  left: 15px;
  padding: 14px 48px 14px 24px;
  text-align: left;
}

#snackbar.opened {
  transform: translate(0, 0);
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

#snackbar.closed {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}

#snackbar.left-style.closed {
  opacity: 0;
}