:host {
  display: inline-block;
}
.m-icon {
  text-align: center;
  display: inline-block;
}
.m-icon svg {
  display: inline-block;
  vertical-align: top;
}
.rotate {
  display: inline-block;
  -webkit-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
}
i div {
  font-style: normal;
}
@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
