.process-name {
    display: block;
    line-height: 100%;
}

.progress-bar-border {
    height: 13px;
    width: 99%;
    border: 1px solid #e3e6e7;
    display: inline-block;
}

.progress-bar {
    background-color: green; /* default color */
    height: 100%;
}

.percent {
    display: none;
    margin-left: 2%;
    margin-bottom: 20%;
}

.process-name, .progress-bar-border {
	color:#76848A;
}

.container {
    display: inline-block;
    width: 99%;
}

.kill-process {
    float: right;
    margin-top: 3%;
}

[progress-percent]:hover::before {
  content: attr(progress-percent);
  position: absolute !important;
  bottom: 25px;
  display: inline-block;
  padding: 2px 3px;
  border-radius: 3px;
  background: #76848A;
  color: #fff;
  left: 44%;
  line-height: 10px;
  font-size: 9px;
  font-family: sans-serif;
  white-space: nowrap;
}
[progress-percent]:hover::after {
  content: '';
  position: absolute !important;
  bottom: 18px;
  left: 49.5%;
  display: inline-block;
  color: #fff;
  border: 3px solid transparent;
  border-top: 5px solid #76848A;
}