


.legend {
  color: #333;
}

.speedbox {
  margin: 5em;
  height: 200px;
  width: 200px;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
  position: relative;

}
.speedbox__groove {
  height: 100px;
  width: 200px;
  background: transparent;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border: 20px solid #eee;
  border-bottom: 0;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
}
.speedbox__score {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  height: 200px;
  width: 200px;
  background: transparent;
  border-radius: 50%;
  border: 20px solid #5c6f7b;
  border-color: transparent transparent #1A3A66 #1A3A66;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1;
  transition: transform 3.3s ease;

}
.speedbox__score2 {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  height: 200px;
  width: 200px;
  background: transparent;
  border-radius: 50%;
  border: 20px solid #5c6f7b;
  border-color: transparent transparent #D3B349 #D3B349;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1;
  transition: transform 3.3s ease;
}


.speedbox__base {
  width: 240px;
  height: 100px;
  background: #fff;
  position: relative;
  top: 100px;
  z-index: 20;
  
}
.speedbox__base:before {
  content: "";
  width: 240px;
  position: absolute;
  top: 0;
  border-bottom: 1px 
  box-shadow: 1px 3px 15px rgba(0, 0, 0, 0.5);
}
.speedbox__odo {
  text-align: center;
  position: absolute;
  color: #5c6f7b;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}
.speedbox__odo i {
  font-size: 10px;
  opacity: 0.6;
}
.speedbox__odo > div {
  margin-bottom: 0;
}
.speedbox__odo span {
  font-size: 14px;
}
.speedbox__ping {
  font-size: 10px;
}
.speedbox__up {
  font-size: 10px;
  line-height: 1.5em;
}
.speedbox__down {
  font-size: 22px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  line-height: 1.2em;
}