#toast-container {

  @media(max-width: 600px) {
    left: 0;
    padding: 8px;
    right: 0;
    top: 0;
  }

  > .toast {
    @include box-shadow($container-box-shadow);
    background-image: none !important;
    border-left: 3px solid transparent;
    border-radius: $border-radius;
    color: $text-color;
    opacity: 1;
    padding: 8px 8px 8px 36px;
    width: 435px;

    &:hover {
      @include box-shadow($popup-box-shadow);
    }

    &.toast-success {
      background-color: $notification-success-background-color;
      border-left-color: $notification-success-border-color;
    }

    &.toast-info {
      background-color: $notification-info-background-color;
      border-left-color: $notification-info-border-color;
    }

    &.toast-error {
      background-color: $notification-error-background-color;
      border-left-color: $notification-error-border-color;
    }

    &.toast-warning {
      background-color: $notification-warning-background-color;
      border-left-color: $notification-warning-border-color;
    }

    .notification-icon svg {
      fill: $notification-icon-color;
    }

    .toast-close-button {
      color: $notification-icon-color;
      font-weight: $font-weight-normal;
      height: 20px;
      line-height: 20px;
      opacity: 1;
      right: 0;
      text-shadow: none;
      top: 1px;
      width: 20px;
    }

    .toast-message,
    .toast-title {
      margin-right: 24px;
    }

    .toast-actions {
      margin-top: 8px;
      width: 100%;
    }

    .notification-icon {
      left: 5px;
      position: absolute;
      top: 7px;
    }

    @media(max-width: 600px) {
      width: 100%;
    }
  }
}
