.x-feedback-banner {
  // display: none;
  &-container {
    position: relative;
    padding: 1.5rem 2rem;
    border: 1px solid $border-color;
    border-radius: $border-radius;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    box-shadow: 0 2px 2px 1px rgba(0,0,0,0.02);
    -webkit-box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.02);
    min-height: 6rem;

    &::after {
      content: '';
      display: block;
      position: absolute;
      height: 0.25rem;
      top: -1px;
      left: 0;
      right: 0;
      border-top-left-radius: $border-radius;
      border-top-right-radius: $border-radius;
      background-color: theme-color('secondary-darker');
    }
  }

  &-text {
    font-size: 1rem;
  }

  &-text-heading {
    color: theme-color('primary-lighter');
    font-size: inherit;
    font-weight: 600;
    margin: 0;
  }

  &-text-subtitle {
    color: $body-color;
    margin-top: 0.25rem;
    margin-bottom: 0;
    font-size: 0.875rem;

    &:empty {
      display: none;
    }
  }

  &-action {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: auto;

    .btn {
      &:empty {
        display: none;
      }
    }
  }
}