body,
input,
textarea,
button,
select,
label,
p {
  font-size: 17px;
}
.app-page{
  background:#befefe;
}
button {
  display: inline-block;
  background: #0076ff;
  font-family: -apple-system,'Helvetica Neue',Helvetica,Arial,'Lucida Grande',sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  user-select: none;
  padding: 4px 10px;
  font-size: 17px;
  line-height: 32px;
  color: #fff;
  border-radius: 5px;
}
button[disabled], html input[disabled] {
    cursor: default;
    background-color: lightgray;
}
.header-bar {
  height: 44px;
  background-color: #e9e9e9;
  text-align: center;
  font-size: 0;
  display: flex;
  justify-content:space-between;
}
.header-bar .title {
  height: 44px;
  line-height: 44px;
  color: #1f1f21;
}
.header-bar .btn {
  height: 44px;
  line-height: 44px;
  padding: 0 8px;
  color: #0076ff;
}
.header-bar .search-input {
  height: 44px;
}
.header-bar ~ .content {
  margin-top: 44px;
}
.header-bar ~ .header-tabs {
  top: 44px;
}
table {
  border-collapse: separate;
  border-spacing: 2px;
}
/*
 * Circle progress
*/
.circle-progress {
  width: 36px;
  height: 36px;
  position: relative;
  text-align: center;
  display: block;
  left: 50%;
  right: 0;
  margin-left: -18px;
  z-index: 20;
  opacity: 0;
  -webkit-transition: opacity 0.65s ease;
  transition: opacity 0.65s ease;
  background-color: #fff;
  border-radius: 50%;
}
.circle-progress.center{
  top: 50%;
  left: 50%;
  margin-top: -18px;
  position: absolute;
}
.circle-progress.active {
  opacity: 1;
}
.circle-progress.active .spinner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-top: 3px solid #0084e7;
  border-right: 3px solid #0084e7;
  border-bottom: 3px solid #0084e7;
  border-left: 3px solid #eee;
  -webkit-animation: circleLoading 900ms infinite linear;
          animation: circleLoading 900ms infinite linear;
}
.circle-progress.primary,
.circle-progress.negative,
.circle-progress.positive {
  background-color: #fff !important;
}
.circle-progress.primary .spinner {
  border-top: 3px solid #0084e7;
  border-right: 3px solid #0084e7;
  border-bottom: 3px solid #0084e7;
}
.circle-progress.negative .spinner {
  border-top: 3px solid #f40b00;
  border-right: 3px solid #f40b00;
  border-bottom: 3px solid #f40b00;
}
.circle-progress.positive .spinner {
  border-top: 3px solid #0ae700;
  border-right: 3px solid #0ae700;
  border-bottom: 3px solid #0ae700;
}
.progress {
  position: relative;
  left: 0;
  right: 0;
  z-index: 20;
  height: 6px;
  display: none;
  width: 100%;
  background-color: rgba(255,255,255,0.4);
  border-radius: 2px;
  background-clip: padding-box;
  overflow: hidden;
}
.progress.center {
  top: 50%;
  margin-top: 38px;
  position: absolute;
}
.progress.active {
  display: block;
}
.progress .determinate {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: #0084e7;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}
.progress.primary .determinate {
  background-color: #0067b5 !important;
}
.progress.negative .determinate {
  background-color: #c20900 !important;
}
.progress.positive .determinate {
  background-color: #08b500 !important;
}
@-webkit-keyframes circleLoading {
  0% {
    -webkit-transform: rotate(0deg) translateZ(0);
            transform: rotate(0deg) translateZ(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0);
  }
}
@keyframes circleLoading {
  0% {
    -webkit-transform: rotate(0deg) translateZ(0);
            transform: rotate(0deg) translateZ(0);
  }
  100% {
    -webkit-transform: rotate(360deg) translateZ(0);
            transform: rotate(360deg) translateZ(0);
  }
}
