.portal_loading {
  /* display: inline-block; */
  width: 30px;
  height: 30px;
  border: 3px solid rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  margin-left: 20px;
  display: none;
}

.portal_loading.is-loading {
  display: inline-block;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
.noClick {
  pointer-events: none;
}
