.snackbar_container {
    align-items: center;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 50%;
    padding-bottom: 19px;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, 0);
    width: 93.5%;
    z-index: 10;
  }
  
  .snackbar {
    background-color: #333;
    border-radius: 12px;
    bottom: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    min-width: 100%;
    overflow: hidden;
    padding: 8px 12px;
    pointer-events: all;
    position: absolute;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05),
    0 8px 15px rgba(0, 0, 0, 0.15);
    transition: transform 150ms ease-in-out, opacity 150ms ease-in-out;
    opacity: 0;
    transform: translateY(150%);
  }

  .snackbar--visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .snackbar--wrap {
    flex-wrap: wrap;
  }
  
  .snackbar_message {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
  
    color: #fff;
    margin: 0;
  }
  
  .snackbar_actions {
    color: #b5b0e6;
    display: flex;
    flex: 1;
    justify-content: flex-end;
    white-space: nowrap;
  }
  
  .snackbar_actions button,
  .snackbar_actions a {
    color: inherit;
    margin: 0 0 0 8px;
    text-decoration: none;
    padding: 0;
    font-weight: 600;
    border: none;
    font-size: 16px;
    min-height: unset;
    text-transform: none;
    line-height: 28px;
  }
  
  @media (min-width: 592px) {
    .snackbar {
      min-width: 480px
    }
  
    .snackbar--wrap {
      flex-wrap: nowrap;
    }
  }
  