.status_bar{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

.status_bar__item {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: conic-gradient(#005BFF 1deg, #EFF3F6 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.status_bar__item__block {
  width: 105px;
  height: 105px;
  background: #fff;
  border-radius: 50%;
}

.input_area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto 50px auto;
  width: 200px;
}

.input_area_block{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 10px;
}

.input_area_block span{
  min-width: 60px;
  font-weight: bold;
}

.input_area_block__label{
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.input{
  border: black solid 1px;
  border-radius: 15px;
  padding: 5px;
  margin: 0;
  width: 60px;
  height: 30px;
  text-align: center;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
  font-size: 16px;
  font-weight: bold;
}

.input:focus{
  outline: none;
}

.input::-webkit-outer-spin-button,
.input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  margin-right: 10px;
}

.switch input{
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}

.slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #6200ee;
}

input:checked + .slider::before {
  transform: translateX(30px);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.status_bar__item.animate {
  animation: spin 1s linear infinite;
}

.status_bar__item.hide {
  display: none;
}

.progress {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.input_area:not(.visible) {
  display: none;
}

@media (max-width: 960px) and (orientation: landscape) {
  .progress {
    flex-direction: row;
  }
}

.example-link{
  display: block;
  text-align: center;
  margin: 20px;
}