.clock-wrapper {
  
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5))), url("images/klippe.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("../../themes/RS_V1/images/klippe.jpg");
  
  /*
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.5))), url("images/hexe_uhr.png");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url("images/hexe_uhr.png");
  */
  /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("images/hg.jpg"); */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border-radius: 14px;
  -webkit-box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
}

.clock {
  width: 14rem;
  height: 14rem;
  /**/
  border: 10px solid #CFB109;
  box-shadow: -4px -4px 10px 10px rgba(200,200,200, 0.25),
                4px 4px 10px 10px rgba(200,200,200, 0.25);
  border-radius: 50%;
  margin: 10px auto;
  position: relative;
  padding: 0;
  text-align: center;
}

.outer-clock-face {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #000000;
  overflow: hidden;
}

.outer-clock-face::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.outer-clock-face::before,
.outer-clock-face::after,
.outer-clock-face .marking {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  /*background: #fa02a7;*/
  background: #ffffff;
  z-index: 0;
  left: 49%;
}

.outer-clock-face .marking {
  /*background: #a30970;*/
  background: #ffffff;
  width: 3px;
}

.outer-clock-face .marking.marking-one {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.outer-clock-face .marking.marking-two {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.outer-clock-face .marking.marking-three {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}

.outer-clock-face .marking.marking-four {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}

.inner-clock-face {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  /*background: #282828;*/
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.25))), url("images/logo-sonne-nickelbrille-150-150.jpg");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url("images/logo-sonne-nickelbrille-150-150.jpg");
  /*
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.15))), url("images/hexe_uhr.png");
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)), url("images/hexe_uhr.png");
  */
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100%;
  z-index: 1;
  /*opacity: .75;*/
}

/** Mittelpunkt */
.inner-clock-face::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 3px solid white;
  border-radius: 18px;
  margin-left: -9px;
  margin-top: -6px;
  /* background: #000000; */
  background: #f00;
  z-index: 11;
}

.hand {
  width: 50%;
  right: 50%;
  height: 6px;
  background: #ffffff;
  position: absolute;
  top: 50%;
  border-radius: 6px;
  -webkit-transform-origin: 100%;
          transform-origin: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
          transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.hand.hour-hand {
  width: 30%;
  z-index: 3;
}

.hand.min-hand {
  height: 3px;
  z-index: 10;
  width: 40%;
}

.hand.second-hand {
  background: #fff;
  width: 45%;
  height: 2px;
}
/*# sourceMappingURL=clock_panel.css.map */