@keyframes mx-route {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.mx-loading-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.mx-loading-container-1 {
  background-color: transparent;
  border-radius: 50%;
  border-style: solid;
  border-color: inherit;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: mx-route 1s ease-in-out infinite;
  box-sizing: border-box;
}
.mx-loading-container-2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.5;
  border-style: dotted;
  background-color: transparent;
  border-radius: 50%;
  border-color: inherit;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  animation: mx-route 1s ease-in-out infinite;
  animation-delay: 0.2s;
  box-sizing: border-box;
}
