#statusSlidePopup {
  position: fixed;
  left: 20px;
  font-size: 12px;
  width: 350px;
  border: 1px solid #4c4c4c;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 99999;
  display: none;
  background-color: white;
}

.status-header {
  height: 34px;
  background: #0f081e;
  padding: 0 8px;
}

.status-header-title {
  color: #ffffff;
  display: inline-block;
  height: 100%;
  line-height: 34px;
  font-size: 14px;
}

.status-header-icon {
  color: #ffffff;
  position: absolute;
  top: 6px;
  right: 8px;
}

.status-header-icon span {
  display: inline-block;
}

.status-header-icon span i {
  margin: 0;
}

.status-body {
  transition: 0.5s;
  display: inherit;
}

.status-body.status-body-zero {
  /*height: 0;*/
  display: none;
}

.status-list-ing {
  height: 30px;
  position: relative;
  line-height: 0px;
  padding: 2px 8px;
  color: #4c4c4c;
  font-weight: bold;
  font-size: 13px;
}

.status-list-ing-progress {
  position: relative;
  display: flex;
  align-items: center;
  height: 29px;
  margin-bottom: 2px;
}
.status-list-ing-progress-finished {
  position: absolute;
  top: 19px;
}

.status-list-ing-result {
  position: relative;
  display: flex;
  align-items: center;
  height: 20px;
}
.status-list-icon {
}
.status-list-ing-button {
  cursor: pointer;
  position: absolute;
  right: 27px;
  bottom: -1px;
}

.status-list-ing-button-finished {
  position: absolute;
  right: 9px;
  top: 5px;
}
.progressBar-box {
  flex-direction: column;
  width: 100%;
  align-items: center;
  display: flex;
  height: 39px;
  background: #ddeeff;
}
.progressBar {
  width: 100%;
  height: 23px;
}
.progress {
  background: #038be5;
  width: 0;
  height: 23px;
}
.result-box {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  color: #4d4d4d;
}

.status-loader {
  position: absolute;
  right: 3px;
  bottom: 2px;

  border: 5px solid #f3f3f3;
  border-radius: 50%;
  border-top: 5px solid #3498db;
  width: 10px;
  height: 10px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}
.spinner-circle::before {
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 5px #cfd0d1;
  border-bottom-color: #1c87c9;
  border-radius: 50%;
  content: "";
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
