.toast-container {
  z-index: 10000;
  position: fixed;
  display: block;
  user-select: none;
  width: 280px;
  height: auto;
  top: 0;
  right: 0;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-top: 0rem;
  padding-bottom: 0rem;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
}

.toast-container .toast {
  position: relative;
  display: flex;
  top: 40px;
  width: auto;
  height: auto;
  max-width: 100%;
  min-height: 48px;
  margin: 10px 0 0 0;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: auto;
  color: #ffffff;
  background-color: #323232;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 2px;
}

.toast-container .toast .toast-action {
  position: relative;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 2px;
  color: #eeff41;
  font-weight: 500;
  transition: .2s background-color;
}

.toast-container .toast .toast-action:hover, .toast-container .toast .toast-action:focus, .toast-container .toast .toast-action:active {
  background-color: rgba(255, 255, 255, 0.1);
}
