
/* Center content of unknown dimensions */

html, body {
  text-size-adjust: none;
  -o-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-family: sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
}

body { background-color: #fafafa; }

.centered {
  text-align: center;
  white-space: nowrap;
  width: 100%;
  height: 100%;
}

.centered:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
/* Adjusts for spacing */ }

.centered > * {
  display: inline-block;
  vertical-align: middle;
}

.wheel {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  background-color: lightgray;
  position: relative;
}

.wheel .wheel-handle {
  -webkit-tap-highlight-color: transparent;
  background-color: dodgerblue;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  height: 20px;
  left: 50%;
  margin: -10px 0 0 -10px;
  outline: 0;
  position: absolute;
  top: 10px;
  width: 20px;
}

.wheel .wheel-center {
  text-align: center;
  white-space: nowrap;
  background-color: white;
  border-radius: 80px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  height: 160px;
  left: 20px;
  position: relative;
  top: 20px;
  width: 160px;
}

.wheel .wheel-center:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
/* Adjusts for spacing */ }

.wheel .wheel-center > * {
  display: inline-block;
  vertical-align: middle;
}

.wheel .wheel-progress {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.wheel .wheel-progress:after {
  border-radius: 100px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) inset;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.wheel .wheel-progress-fill { fill: #9dcfff; }

/*# sourceMappingURL=main.css.map */
