* {
  font-family: sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.block-wrapper {
  width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
}

.block-name {
  align-self: start;
}

.progress-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  margin: 60px 0 90px;
  transform: rotate(-90deg);
}

.progress-ring {
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.progress-ring-value.animated {
  animation: rotate var(--rotate-duration, 2s) linear infinite;
  transform-origin: 50% 50%;
}

.progress-ring-bg {
  stroke: rgb(223, 230, 240);
  stroke-width: 7px;
}

.progress-ring-value {
  stroke: rgb(0, 93, 255);
  stroke-width: 7px;
  transition: stroke-dashoffset 0.5s ease;
}

.control-block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.value-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.value-input {
  width: 50px;
  height: 30px;
  border-radius: 30%/50%;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #000000;
}

.value-input:disabled {
  background: rgb(223, 230, 240);
}

.value-input:focus {
  border: 1px solid rgb(0, 93, 255);
  outline: none;
}

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

.animated-block,
.hidden-block {
  display: flex;
  align-items: center;
  gap: 30px;
}

.checkbox-animated,
.checkbox-hidden {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.switch-animated,
.switch-hidden {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 30px;
  border-radius: 30%/50%;
  vertical-align: top;
  background: rgb(223, 230, 240);
  transition: 0.3s;
}

.switch-animated::before,
.switch-hidden::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  display: inline-block;
  width: 26px;
  height: 26px;
  background: #ffffff;
  transition: 0.15s;
}

.checkbox-animated:checked + .switch-animated::before {
  left: calc(100% - 28px);
}

.checkbox-animated:checked + .switch-animated {
  background-color: rgb(0, 93, 255);
}

.checkbox-hidden:checked + .switch-hidden::before {
  left: calc(100% - 28px);
}

.checkbox-hidden:checked + .switch-hidden {
  background-color: rgb(0, 93, 255);
}

.checkbox-animated:disabled + .switch-animated {
  filter: grayscale(70%);
}

.progress-ring.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

@media (orientation: landscape) {
  .block-wrapper {
    flex-direction: row;
    width: 568px;
    height: 320px;
  }
  .progress-circle {
    margin: 0 80px 0 30px;
  }
}/*# sourceMappingURL=progressBlock.css.map */