@charset "utf-8";

.btn_loading_show_t { position: relative; background: rgb(155, 153, 153) !important; cursor: not-allowed !important; }

.btn_loading_icon_t { position: absolute; width: 20px; height: 20px; right: 10px; top: 50%; margin-top: -10px; display: none; }

.btn_loading_show_t .btn_loading_icon_t { display: flex; }

.btn_loading_show_t .btn_loading_icon_t .anticon-spin { width: 100%; height: 100%; animation: 1s linear 0s infinite normal none running loadingCircle; padding: 0px; }

@-webkit-keyframes loadingCircle { 
  100% { transform: rotate(1turn); }
}

@keyframes loadingCircle { 
  100% { transform: rotate(1turn); }
}