@charset "UTF-8";

@import url("style-ui.css");
@import url("common.css");
@import url("layout.css");
@import url("fonts.css");

       
.loading {
  display:inline-block;
  margin-bottom:10px;
  height: 90px;
  width: 90px;
  animation: rotation 1s infinite linear;
  border: 3px solid rgba(251, 108, 7, 0.65);
  border-top-color: rgba(251, 108, 7, 1);
  border-radius: 50%;
}
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}

.loading-container .loading-text {
    font-family: 'tahoma';
    font-size: 12px;
    line-height: 1.33em;
    color: #fb6c07;
    font-weight: bold;
    text-align: center;
    margin-top:-65px;
}
.loading-container {
   /* margin: 100px 0;*/
    text-align: center;
}

.dialog_loading {
	z-index: 2000;
	width: 90px;
	height: 90px;
	display: block;
	position: fixed;
	top: calc(50% - 45px);
	left: calc(50% - 45px);
}
     
    