@charset "utf-8";

.iti { width: 100%; position: relative; }

.mc--loading { font-size: 0px !important; display: flex !important; justify-content: center !important; align-items: center !important; }

.mc--loading.u-form-control-hidden { display: none !important; }

.mc--loading > * { display: none !important; }

.mc--loading::before { content: ""; display: block; width: 1.2rem; height: 1.2rem; border-width: 0.2rem; border-style: solid; border-color: rgb(243, 243, 243) rgb(153, 153, 153) rgb(153, 153, 153); border-image: initial; border-radius: 50%; animation: 1s linear 0s infinite normal none running spin; }

@keyframes spin { 
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
