::-webkit-scrollbar {
    width: 10px;
    background-color: #f9f9fd3b;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #223c50;
  }
  html {
    scrollbar-color: #223c50 #f9f9fd3b; /* «цвет ползунка» «цвет полосы скроллбара» */
    scrollbar-width: thin;  /* толщина */
}

.uk-label {
  background: #f9f9fd3b;
}

.progress {
  display: block;
  position: relative;
  width: 500px;
  height: 20px;
  background-color: #f9f9fd3b;
}
.bar {
  display: block;
  width: 30%;
  height: 100%;
  background-color: #223c50;
}
.bar::after {
  content: attr(data-value) "%";
  color: #f8f8f8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-size: 15px;
}

.hide {
  display: none;
}

.uk-button {
  padding: 0 10px;
}

form {
  display: inline;
}

.uk-form-width-medium {
    width: 150px;
}