@import "mixins";

.rotate-90 svg {
  @include transform(rotate(90deg));
}

.grow {
  transition: all .2s ease-in-out;
  box-shadow: 0px 0px 10px -5px rgba(0,0,0,0.7);
  &:hover {
    transform: scale(1.025);
    box-shadow: 0px 0px 12px -5px rgba(0,0,0,0.7);
  }
}

.flip-horizontal {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.height-12 {
  height: 12px !important;
}
