.container_snackbar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.snackbar_box {
  width: 650px;
  max-width: 80%;
  background-color: #0b1d31;
  border-radius: 5px;
  min-height: 30px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  pointer-events: all;
}
.snackbar_message {
  float: left;
  width: 80%;
  color: #FFF;
  font-weight: normal;
}
.snackbar_button {
  float: left;
  width: 20%;
  color: #FFF;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}
