/* One compact spinner for loading messages, including native modal content. */
.gmx-is-loading::before {
  content:"";
  display:inline-block;
  width:1em;
  height:1em;
  min-width:1em;
  box-sizing:border-box;
  border:2px solid #ff5a1438;
  border-top-color:#ff5a14;
  border-right-color:#ff5a14;
  border-radius:50%;
  margin-inline-end:.55em;
  vertical-align:-.12em;
  flex:none;
  animation:gmx-loading-spin-r65 .8s linear infinite;
  pointer-events:none;
}
button.gmx-is-loading::before,[role="button"].gmx-is-loading::before {
  border-color:currentColor;
  border-right-color:transparent;
}
.gmx-result-notice .gmx-is-loading::before {
  display:block;
  width:36px;
  height:36px;
  border-width:3px;
  margin:0 auto 16px;
}
@keyframes gmx-loading-spin-r65 {to{transform:rotate(360deg)}}
@media(prefers-reduced-motion:reduce) {
  .gmx-is-loading::before{animation:none}
}
