#network-list {
  background-color: #F8FAFC;
  border: 1px solid #D2DCE6;
  border-radius: 3px;
  padding: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

#network-list .device-item {
  border-bottom: 1px solid #D2DCE6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  display: flex;
}
#network-list .device-item > div {
  flex: 1;
}
#network-list .device-item:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
#network-list .device-item .name {
  font-weight: bold;
}
#network-list .device-item .connection {
  color: #0088c2;
}
#network-list .device-item .mac-address {
  color: #0088c2;
}
#network-list .device-item .mac-address::before {
  content: "Linux";
  color: #000000;
  width: 50px;
  display: inline-block;
}
#network-list .device-item .ip-address {
  color: #0088c2;
}
#network-list .device-item .ip-address::before {
  content: "IPv4";
  color: #000000;
  display: inline-block;
  width: 50px;
}
#network-list .device-item .speed .arrow {
  width: 30px;
  height: 16px;
}
#network-list .device-item .speed .arrow.up {
  fill: #0088c2;
}
#network-list .device-item .speed .arrow.down {
  transform: rotate(180deg);
  fill: #55B01E;
}
#network-list .device-item .speed .text {
  display: inline-block;
  vertical-align: top;
  min-width: 80px;
  text-align: right;
}
#network-list .device-item .speed .text::after {
  content: "Mb/s";
  font-size: 0.7em;
}
#network-list .device-item .speed .graph-bg {
  height: 0.9em;
  width: 100%;
  background: lightgrey;
  margin-left: 10px;
  border-radius: 3px;
  overflow: hidden;
}
#network-list .device-item .speed .graph-now {
  height: 0.9em;
  width: 0%;
  transition: width 0.4s;
}
#network-list .device-item .speed .graph-now.up {
  background: #0088c2;
}
#network-list .device-item .speed .graph-now.down {
  background: #55B01E;
}
#network-list .device-item .name,
#network-list .device-item .connection,
#network-list .device-item .mac-address,
#network-list .device-item .ip-address,
#network-list .device-item .up-speed,
#network-list .device-item .down-speed {
  display: flex;
  align-items: center;
  height: 25px;
}

.identity .icon {
  float: left;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  margin-top: 10px;
}

@media only screen and (max-width: 650px) {
  .address {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .graph-bg {
    display: none;
  }

  .up-speed,
.down-speed {
    justify-content: flex-end;
  }
}