body {
  color: #28a290;
  background-color: #d3d3d3;
  margin: 0;
}
body main {
  width: 710px;
  padding: 10px;
  margin: auto;
  background-color: #fff;
}
body main .game {
  display: flex;
  margin-bottom: 20px;
}
body main .game #board {
  width: 400px;
  height: auto;
  border: 1px solid #808080;
  border-collapse: collapse;
}
body main .game #board td {
  background-color: #fff;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
body main .game #board .live {
  background-color: #28a290;
}
body main .game #controls {
  padding-left: 10px;
  width: 300px;
}
body main .game #controls .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
body main .game #controls .container div.slider {
  margin: 10px;
  flex: 1 1 100px;
}
body main .game #controls .container .label {
  width: 50px;
  height: 40px;
  line-height: 40px;
}
@-moz-keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}
@-webkit-keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}
@-o-keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}
@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1, 1);
  }
}
.standart-button {
  position: relative;
  width: 118px;
  height: 32px;
  box-sizing: border-box;
  border-radius: 3px;
  border-style: solid;
  border-width: 1px;
  outline: none;
  background-color: #fff;
  font-family: 'test';
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  vertical-align: middle;
  border-color: #4eb7a8;
  box-shadow: 0 3px 0 #28a290;
  color: #4eb7a8;
}
.standart-button:hover {
  background-color: #4eb7a8;
  color: #fff;
  cursor: pointer;
}
.standart-button:active {
  bottom: -4px;
  box-shadow: none;
  border-style: solid;
  border-width: 1px;
}
.standart-button_small {
  width: 78px;
  height: 22px;
  font-size: 10px;
  box-shadow: 0 2px 0 #28a290;
}
.standart-button_orange {
  border-color: #e75735;
  box-shadow: 0 3px 0 #bf3e1f;
  color: #e75735;
}
.standart-button_orange:hover {
  background-color: #e75735;
}
.standart-button_orange-small {
  box-shadow: 0 2px 0 #bf3e1f;
}
.standart-button:disabled {
  border-color: #a9a9a9;
  box-shadow: 0 3px 0 #808080;
  color: #a9a9a9;
}
.standart-button:disabled:hover {
  background-color: #a9a9a9;
  color: #fff;
}
#ripple {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: #fff;
  animation: ripple 0.5s forwards;
}
div.slider {
  position: relative;
  font-family: lato-r;
}
.slider__view {
  position: absolute;
  width: 35px;
  height: 24px;
  background-color: #4eb7a8;
  border-radius: 5px;
  top: 0px;
  left: 32.5%;
  color: #fff;
  text-align: center;
  line-height: 24px;
}
.slider__view::after {
  content: '';
  bottom: -2px;
  left: 15.7px;
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: inherit;
  transform: rotate(-45deg);
}
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 40px 0 0 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: #d3d3d3;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  margin-top: -7.5px;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #4eb7a8;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: #d3d3d3;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  margin-top: -7.5px;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #4eb7a8;
  cursor: pointer;
}
input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background-color: #d3d3d3;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 20px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #ff0;
  border-radius: 10px;
}
input[type=range]::-ms-fill-upper {
  background: #d3d3d3;
  border-radius: 10px;
}
input[type=range]::-ms-thumb {
  margin-top: -7.5px;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: #4eb7a8;
  cursor: pointer;
}
.slider-percentage {
  position: relative;
  font-family: lato-r;
}
.slider-percentage__full-line {
  background-color: #d3d3d3;
  width: 100%;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 40px;
  left: 0;
}
.slider-percentage__line {
  background-color: #4eb7a8;
  width: 10px;
  height: 5px;
  border-radius: 5px;
  position: absolute;
  top: 40px;
  left: 0;
}
.slider-percentage input {
  background-color: transparent;
}
.slider-percentage input::-webkit-slider-runnable-track {
  background-color: transparent;
}
.slider-percentage__percent {
  margin: 0 -10px;
  color: #d3d3d3;
  font-size: 10px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsImZpbGUiOiJpbmRleC5jc3MiLCJzb3VyY2VSb290IjoiIn0=*/