.snackbar-wrapper {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  bottom: -250px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.snackbar-content {
  background: #2C4063;
  color: #fff;
  font-size: 14px;
  z-index: 1000;
  width: 100%;
  max-height: 80px;
  box-sizing: border-box;
  line-height: 22px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.snackbar-wrapper.active {
  bottom: 0;
  z-index: 9999;
}

.snackbar-msg {
  margin: 0;
}

.snackbar-btn {
  text-decoration: none;
  margin-left: 24px;
}
.snackbar-content {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  min-width: 0;
  max-width: 568px;
  height: 48px;
}
.snackbar-msg {
  min-width: 0;
  max-width: 80%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}
