.ClockWrp {
    width:70px;
    height:70px;
    display: table;
    /*bottom: 40%;
    left: 44%;
    position:absolute;*/
    float: left;
    margin-left:20px;
}

.clock {
  border-radius: 100%;
  background: #ffffff;
  font-family: "Montserrat";
  border:1px solid #c3c3c3; 
    /*box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);*/
}

.wrap {
  overflow: hidden;
  position: relative;
  width:70px;
  height:70px;
  border-radius: 100%;
}

.minute,
.hour {
  position: absolute;
  height:24px;
  width:4px;
  margin: auto;
  top: -36%;
  left: 0;
  bottom: 0;
  right: 0;
  background: black;
  transform-origin: bottom center;
  transform: rotate(0deg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.minute {
  position: absolute;
  height:31px;
  width:4px;
  top:-44%;
  left: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(90deg);
}

.second {
  position: absolute;
  height: 90px;
  width: 2px;
  margin: auto;
  top: -26%;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  background: #FF4B3E;
  transform-origin: bottom center;
  transform: rotate(180deg);
  z-index: 1;
  display:none;
}

.dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: #000;
  border: 2px solid #1b1b1b;
  border-radius: 100px;
  margin: auto;
  z-index: 1;
}