#clock-wrapper {
  display: block;
  margin-left: auto;
  margin-right: auto;
width: 600px;
height: 360px;
  background-image: url(fon.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

#clock-divination {
  margin: 0 auto;
  width: 360px;
  height: 360px;
  position: relative;
  
  border-radius: 50%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  font-size: 24pt;
  text-align: center;
}

#clock-divination > span {
  -webkit-box-flex: 180px;
      -ms-flex: 180px 1;
          flex: 180px 1;
}

#clock-divination .hand {
  position: absolute;
  width: 180px;
  left: calc(50% - 20px);
  -webkit-transform-origin: 20px center;
          transform-origin: 20px center;
  height: 44px;
  top: calc(50% - 20px);
  -webkit-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
  -webkit-transition-timing-function: cubic-bezier(0.135, 0.015, 0.38, 0.99);
          transition-timing-function: cubic-bezier(0.135, 0.015, 0.38, 0.99);
  pointer-events: none;
  background-image: url(hand.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -0px;
}

#clock-divination .button {
  font-style: italic;
  padding: 5px;
  margin-bottom: 19px;
  cursor: pointer;
  color: white;
  z-index: 10;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#clock-divination .button.active {
  color: #fff;
}

#clock-divination .result {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 34pt;
  color: white;
  display: none;
}

#clock-divination .result.result-yes {
  background-color: rgba(14, 148, 28, 0.8);
}

#clock-divination .result.result-no {
  background-color: rgba(148, 14, 23, 0.8);
}
/*# sourceMappingURL=style.css.map */


@media only screen and (max-width : 590px) {
#clock-wrapper {width: 360px;height: 360px;background-image: url(fon-2.jpg);margin-left: -8px;}


}