.anycomment-app {
  .anycomment-global-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;

    // Rating
    .anycomment-rating {
      display: flex;
      flex-direction: row;

      &__stars {
        margin-right: 10px;
        display: inline-flex;
        flex-direction: row-reverse;

        // svg element
        svg {
          color: #ddd;
          width: 22px;
          height: 22px;
          cursor: pointer;
        }

        // svg element
        svg.anycomment-rating__stars-active {
          color: #EEBA64;
          /* make hover effect work properly in IE */
          pointer-events: none;
        }
      }

      &__count {
        line-height: 2;
        font-size: $font-size - 2;
        margin-left: 12px;
        color: $semi-hidden-color;

        &-value,
        &-count {
          color: $semi-hidden-color;
        }
      }
    }
  }

  .dropdown {
    &__trigger {
      .anycomment-profile {
        margin-right: 5px;
        padding-right: 5px;
        border-right: 1px solid $semi-hidden-color;
      }
    }
  }
  @media (max-width: 425px) {
    .anycomment-global-header {
      flex-direction: column;

      .anycomment-rating {
        margin-bottom: 10px;
      }
    }
  }
}
