body {
  font-family: "FiraGO", sans-serif;
  font-feature-settings: "tnum";
}

body.login-page {
  background: url("/theme/img/body_bg.jpg") !important;
}

.flag-icon {
  border-radius: 2px;
}

.s5o-hide {
  display: none !important;
}

.s5o-toast {
  margin: 1rem;
  min-width: 400px;
  min-height: 140px;
}

.datePlanned {
  color: red !important;
}

.iconSuccess {
  color: #4cc790;
}

.progressColStatus {
  font-weight: 700;
}

.progressPlanned {
  color: #a4a4a4;
  font-weight: normal !important;
}

.progress-cancel,
.progress-refuse {
  color: #a4a4a4;
}

.progress-done,
.progressDone {
  color: #4cc790;
}

.progress-error,
.progressError {
  color: #bf4f0b;
  font-weight: normal !important;
}

td.notice {
  font-size: 0.8rem;
  max-width: 20%;
}

/** Progress Circle **/

.prog-flex-wrapper {
  display: flex;
  flex-flow: row nowrap;
}

.prog-single-chart {
  width: 75px;
  justify-content: space-around;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
}

.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}

@keyframes progress {
  0% {
    stroke-dasharray: 0 100;
  }
}

.circular-chart.orange .circle {
  stroke: #ff9f00;
}

.circular-chart.green .circle {
  stroke: #4cc790;
}

.circular-chart.blue .circle {
  stroke: #3c9ee5;
}

.prog-percentage {
  fill: #666;
  font-size: 0.5em;
  text-anchor: middle;
}

.handle {
  cursor: move;
}