/*
    Overrides for Fabric types.

    These should be used as a last resort.

    Use type classes like "ms-font-m" wherever possible.

    Sometimes we wish to override Fabric styling, and it is impossible to use
    native type classes. In those cases, these can be used.
*/
.starbutton {
  font-family: "bowtie";
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0px;
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
}

.starbutton.bowtie-favorite {
  color: rgba( 214, 127, 60 ,  1 );
  color: rgba( var(--palette-accent3,214, 127, 60) ,  1 );
}

.starbutton.bowtie-favorite-outline:hover, .starbutton.bowtie-favorite-outline:focus {
  color: rgba( 214, 127, 60 ,  1 );
  color: rgba( var(--palette-accent3,214, 127, 60) ,  1 );
}
