body {
  color: #fff;
  background: black;
  padding: 20px;
}
.box {
  color: #fff;
  height: 30px;
  width: 30px;
  border: 1px solid red;
  position: absolute;
  font-size: 12px;
  border-radius: 50%;
  transition: all 0.5s;
}
.line {
  position: absolute;
  border-top: 1px solid red;
  height: 0px;
  width: 150px;
}
#circle {
  font-size: 12px;
  color: #fff;
  position: absolute;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-align: center;
  line-height: 30px;
  transform: scale(1);
  z-index: 2;
  color: #00fa9a;
}
button {
  outline: none;
  border: none;
  height: 20px;
  width: 100px;
  background: #fff;
  border-radius: 5px;
  background: linear-gradient(to right, #05fbff, #1e00ff);
  border-radius: 8px;
  display: inline-block;
  padding: 1px;
  text-decoration: none;
}
input {
  border: 1px solid #fff;
  border-radius: 5px;
  outline: none;
}
.jump {
  animation: jump 1s;
}
.button-group {
  margin-top: 20px;
}
@keyframes jump {
  15% {
    transform: scale(3);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(3);
  }
  100% {
    transform: scale(1);
  }
}
.console-wrapper {
  width: 500px;
  margin: 20px auto;
}
#console {
  display: inline-block;
}
.item {
  margin-left: 10px;
  font-size: 20px;
}
.button-item {
  margin-top: 30px;
}
label {
  font-size: 12px;
}
.height-light {
  background: rgb(171, 92, 31);
}
.height-light > .text-wrap {
  background: rgb(171, 92, 31);
}

.info {
  color: #00fa9a;
  position: absolute;
  top: -19px;
  left: -24px;
  width: 200px;
}

.sorted {
  background: #fff;
  color: black;
}
.sorted .text-wrap {
  background: #fff;
}
.text-wrap {
  z-index: 2;
  background: black;
}
.feature-item {
  margin-top: 20px;
  width: 400px;
}
.adjust {
  float: right;
}
.move-line {
  position: fixed;
  border-top: 1px solid red;
  transform-origin: left top;
}
/**  white theme **/

.white-theme {
  color: black;
  background: #fff;
}
.white-theme input {
  border-color: black;
}
.white-theme #circle {
  border-color: black;
  background: rgba(0, 0, 0, 0.6);
}
.white-theme .text-wrap {
  background: #fff;
  color: black;
}

.white-theme .box {
  border-color: black;
}

.white-theme .line {
  border-color: black;
  transition: all 1s;
}

.white-theme .sorted {
  background: mediumspringgreen;
}

.white-theme .sorted .text-wrap {
  background: mediumspringgreen;
}

.white-theme .height-light > .text-wrap {
  background: rgb(171, 92, 31);
}

.white-theme .move-line {
  border-color: black;
}
