@import '~styles/config';

.toast {
  border-radius: 0;
  box-shadow: none;

  @include dotShadow();
}

.toastSuccess {
  background-color: $color-success;
}

.toastError {
  background-color: $color-warning;
}

.dismissButton {
  @include reset-button;
  margin-left: 9px;
  padding: 0 5px;
  cursor: pointer;
  color: $color-white;


  &:hover {
    font-weight: 600;
    transform: scale(1.2);
  }
}

.actionLink {
  @include reset-anchor;

  &:hover {
    font-weight: 600;
    text-decoration: underline;
  }
}
