body {
  margin: 0;
  padding: 0;
}

.watch-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.watch-band {
  position: absolute;
  background: url('rubber-bg.jpg') 0 0 repeat;
  margin: 0 auto;
  width: 200px;
  height: 100vh;
  top: 0;
  left: calc(50% - 100px);
  z-index: 0;
  background-size: 160%;
}

.watch-outer-circle {
  position: relative;
  border-radius: 100%;
  background: radial-gradient(circle at center, #cfd488 65%, #47483b 100%);
  width: 500px;
  height: 500px;
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.5);
  border: 1px solid #a5a798;
}

.watch-inner-circle {
  width: 450px;
  height: 450px;
  position: relative;
  border-radius: 100%;
  background: url('clocks-bg.jpg') 0 0 repeat;
  top: 25px;
  left: 25px;
  background-size: 33%;
  overflow: hidden;
  border: 1px solid #b7b964;
  box-shadow: inset 0 0 6px 3px rgba(0, 0, 0, 0.75);
}

.watch-inner-bg {
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 0;
}

.watch-inner-content {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}

.watch-inner-mark {
  background-color: rgb(164, 165, 158);
  box-shadow: 0 0 15px 0 rgba(164, 165, 158, 0.5);
  height: 50px;
  width: 10px;
  position: absolute;
  border-radius: 3px;
}

.watch-inner-mark.mark-12 {
  top: -2px;
  left: calc(50% - 5px);
}

.watch-inner-mark.mark-1 {
  transform: rotate(30deg);
  left: 71.3%;
  top: 5.8%;
}

.watch-inner-mark.mark-11 {
  transform: rotate(-30deg);
  right: 71.3%;
  top: 5.8%;
}

.watch-inner-mark.mark-2 {
  transform: rotate(60deg);
  left: 88%;
  top: 22%;
}

.watch-inner-mark.mark-4 {
  transform: rotate(120deg);
  left: 88%;
  bottom: 22%;
}

.watch-inner-mark.mark-10 {
  transform: rotate(-60deg);
  right: 88%;
  top: 22%;
}

.watch-inner-mark.mark-8 {
  transform: rotate(-120deg);
  right: 88%;
  bottom: 22%;
}

.watch-inner-mark.mark-3 {
  transform: rotate(90deg);
  right: 18px;
  top: calc(50% - 25px);
}

.watch-inner-mark.mark-9 {
  transform: rotate(90deg);
  left: 18px;
  top: calc(50% - 25px);
}

.watch-inner-mark.mark-5 {
  transform: rotate(150deg);
  left: 71.4%;
  bottom: 5.6%;
}

.watch-inner-mark.mark-7 {
  transform: rotate(-150deg);
  right: 71.4%;
  bottom: 5.6%;
}

.watch-inner-mark.mark-6 {
  bottom: -2px;
  left: calc(50% - 5px);
}

.help-grid-vertical {
  width: 2px;
  background-color: #000;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  top: 0;
}

.help-grid {
  display: none;
}

.help-grid-horizontal {
  width: 100%;
  background-color: #000;
  height: 2px;
  position: absolute;
  z-index: 2;
  left: 0;
  top: calc(50% - 1px);
}

.help-grid-30 {
  transform: rotate(30deg);
  width: 2px;
  background-color: #000;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  top: 0;
}

.help-grid-60 {
  transform: rotate(60deg);
  width: 2px;
  background-color: #000;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  top: 0;
}

.help-grid-120 {
  transform: rotate(120deg);
  width: 2px;
  background-color: #000;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  top: 0;
}

.help-grid-270 {
  transform: rotate(-30deg);
  width: 2px;
  background-color: #000;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: calc(50% - 1px);
  top: 0;
}

.watch-center-circle {
  width: 20px;
  height: 20px;
  background-color: #9b9e86;
  border-radius: 100%;
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  border: 1px solid rgba(122, 126, 72, 0.9);
  box-shadow: 0 0 3px 0 rgba(122, 126, 72, 0.5);
}

.watch-minute-arrow {
  position: absolute;
  height: 20%;
  width: 4px;
  background-color: #cfd488;
  left: calc(50% - 2px);
  top: calc(30% + 20px);
  opacity: 0;
  transition: 0.2s opacity;
  border: 1px solid rgba(164, 165, 158, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 15px 0 rgba(165, 164, 172, 0.5);
}

.watch-seconds-arrow {
  position: absolute;
  height: 35%;
  width: 4px;
  background-color: #cfd488;
  left: calc(50% - 2px);
  top: calc(20% + 20px);
  opacity: 0;
  transition: 0.2s opacity;
  border: 1px solid rgba(164, 165, 158, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 15px 0 rgba(165, 164, 172, 0.5);
}