/* line 1, ../sass/partials/_thee.sass */
.clock {
  width: 140px;
  height: 140px;
  border: 12px solid var(--color-zarazzo-red);
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  padding: 0;
  left: 14%;
  top: 40px;
}

/* line 12, ../sass/partials/_thee.sass */
.inner-clock-face {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  z-index: 1;
}

/* line 24, ../sass/partials/_thee.sass */
.hand {
  right: 50%;
  height: 10px;
  background: var(--color-zarazzo-red);
  position: absolute;
  top: 50%;
  border-radius: 6px;
  transform-origin: 100%;
  transform: rotate(90deg);
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

/* line 35, ../sass/partials/_thee.sass */
.hand.hour-hand {
  width: 35%;
  z-index: 3;
  top: 48%;
  right: 48%;
}

/* line 39, ../sass/partials/_thee.sass */
.hand.min-hand {
  height: 10px;
  z-index: 10;
  width: 45%;
  top: 52%;
  right: 48%;
}

@media only screen and (max-width: 767px) {
  .clock {
    width: 60px;
    height: 60px;
    border-width: 4px;
    left: 10px;
    top: 20px;
  }

  .hand {
    height: 4px;
  }

  .hand.min-hand {
    height: 4px;
  }
}
