.stlms-notification-wrap {
  ul {
    li {
    }
  }
  .stlms-notification-card {
    padding: 20px;
    display: flex;
    gap: 12px;
    background-color: $gray;
    border-bottom: 1px solid $white;

    &:hover {
      .stlms-notification-icon {
        opacity: 1;
      }
    }

    @include breakpoint(max, $md) {
      padding: 15px;
    }

    &.read-notification {
      background-color: transparent;
      border-bottom: 1px solid $gray;
    }

    .stlms-notification-image {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }

    .stlms-notification-content {
      width: 100%;
    }

    .stlms-notification-heading {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .stlms-notification-title {
      font-size: 14px;
      line-height: 20px;
      color: $gray_dark;

      strong {
        font-weight: 700;
        color: $primary_dark;
      }

      a {
        color: $primary;
        text-decoration: none;
      }
    }

    .stlms-notification-time {
      font-size: 14px;
      line-height: 20px;
      color: $gray_light;
    }

    .stlms-notification-desc {
      padding-top: 10px;
      font-size: 14px;
      line-height: 20px;
      color: $gray_dark;

      ol {
        list-style: number;
        padding-left: 16px;
      }
      ul {
        list-style: disc;
        padding-left: 16px;
      }
    }

    .stlms-notification-icon {
      opacity: 0;
      flex-shrink: 0;
      margin-left: auto;
      @include transition(all 0.3s ease-in-out);
      
      &.hide {
        display: none;
      }

      button {
        background-color: transparent;
        border: 0;
        cursor: pointer;
        width: 30px;
        height: 30px;
        color: $gray_dark;

        @include transition(all 0.3s ease-in-out);
        &:hover {
          color: $primary_dark;
        }
      }
    }
  }
}

.stlms-filter-toggle-wrap {
  .stlms-container {
    display: flex;
    justify-content: center;
  }
  @include breakpoint(max, $md) {
    padding-top: 30px;
  }
}
