/* src/icon.scss */
@keyframes rotating {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
.google-translate-select-icon-loading {
  animation: rotating 2s linear infinite;
}
.google-translate-select-icon--right {
  margin-left: 5px;
}
.google-translate-select-icon--left {
  margin-right: 5px;
}
.google-translate-select-icon {
  --color:inherit;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: inherit;
  line-height: 1em;
  color: var(--color);
  fill: currentcolor;
}
.google-translate-select-icon.is-loading {
  animation: rotating 2s linear infinite;
}
.google-translate-select-icon svg {
  width: 1em;
  height: 1em;
}
