.eacf7-rating {
  display: flex;
  align-items: center;

  &.style-1 {
    .eacf7-rating-star {
      box-shadow: 0px 0px 9px -2px #ddd;
      border-radius: 50%;
      transition: 0.4s;
      height: 45px;
      width: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;

      &:last-child {
        margin-right: 0;
      }

      svg {
        margin: 0;
      }
    }
  }

  &.style-2 {
    .eacf7-rating-star {
      box-shadow: 0px 0px 9px -2px #ddd;
      border-radius: 5px;
      transition: 0.4s;
      height: 45px;
      width: 45px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 10px;

      &:last-child {
        margin-right: 0;
      }

      svg {
        margin: 0;
      }
    }
  }

  &-star {

    svg,
    i {
      color: #d4d4d4;
      fill: #d4d4d4;
      vertical-align: middle;
      margin-right: 0.25rem;
      cursor: pointer;
      transition: all 0.2s ease-in-out;
      width: 22px;
      height: 22px;
      font-size: 22px;
    }

    &:hover,
    &.active,
    &.selected {

      svg,
      i {
        fill: #ffb100;
        color: #ffb100;
        transform: scale(1.1);
      }
    }

  }

}