.emp-clock-container {
  flex-direction: column;
  -webkit-flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  background-color: #fafafa;
  border-radius: 0.2em;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.2);
}

.emp-clock-container:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.emp-clock-container-header {
  background-color: rgb(20, 98, 150);
  color: #fff;
  padding: 6px;
  font-size: 1.5em;
}
.emp-clock-container-content {
  display: flex !important;
  flex-direction: column;
  padding: 0.5em;
  flex-wrap: nowrap;
  align-items: center;
  font-family: Arial, sans-serif;
}
.emp-clock-container-time-date {
  display: flex;
  text-align: center;
  align-items: flex-start;
  font-family: sans-serif;
  flex-grow: 1;
  justify-content: flex-start;
  flex-direction: column;
}
.emp-clock2-container-time-date {
  display: flex;
  text-align: center;
  align-items: center;
  font-family: sans-serif;
  flex-grow: 1;
  justify-content: space-around;
  flex-direction: column;
  bottom: 1em;
  position: absolute;
}
.emp-clock-container-time-current {
  color: rgb(198, 28, 49);
  /*text-align: center;*/
  padding-left: 0.4em;
  padding-right: 0.4em;
  font-size: 3em;
}
.numeric-date {
  color: rgb(198, 28, 49);
}
.numeric-date strong {
  font-weight: 300 !important;
}
#digital-clock,
.digital-clock {
  flex-direction: column !important;
}
#digital-clock h3,
.digital-clock h3 {
  margin: 0;
}
.emp-clock-container-date-current {
  color: rgb(25, 69, 111);
  font-size: 0.8em;
  font-family: sans-serif;
  text-align: left;
}

.emp-clock-container-date-current .holiday {
  font-size: 0.7em;
}

.emp-clock-container-img {
  float: left;
  margin-left: 0.4em;
}
img.clock-img {
  height: 4em;
}
[data-gjs-type='clocks']:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.gjs-dashed [data-gjs-type='clocks'] *[data-highlightable] {
  outline: none;
}
/***neww***/

.clock {
  position: absolute;
  margin: auto;
  top: -1.6em;
  right: 0.5em;
  height: 8em;
  width: 8em;
  background-color: #213c56;
  border-radius: 50%;
  border: 0.6em solid #efefef;
  background-image: radial-gradient(circle at center, #ffffff 0.3em, transparent 0.2em),
    radial-gradient(circle at center, #213c56 50%, transparent 50%, transparent 65%, #213c56 65%),
    linear-gradient(to right, transparent 49%, #ffffff 49%, #ffffff 51%, transparent 51%),
    linear-gradient(to bottom, transparent 49%, #ffffff 49%, #ffffff 51%, transparent 51%),
    linear-gradient(-30deg, transparent 49.8%, #ffffff 49.8%, #ffffff 50.2%, transparent 50.2%),
    linear-gradient(30deg, transparent 49.8%, #ffffff 49.8%, #ffffff 50.2%, transparent 50.2%),
    linear-gradient(60deg, transparent 49.8%, #ffffff 49.8%, #ffffff 50.2%, transparent 50.2%),
    linear-gradient(-60deg, transparent 49.8%, #ffffff 49.8%, #ffffff 50.2%, transparent 50.2%);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hour-hand {
  position: inherit;
  height: 30%;
  width: 0.25em;
  margin: auto;
  top: -37%;
  left: 3%;
  bottom: -9%;
  right: 0;
  border-radius: 4px;
  background-color: #ffffff;
  transform-origin: bottom;
  transform: rotate(0deg);
}

.minute-hand {
  position: inherit;
  height: 40%;
  width: 0.22em;
  margin: auto;
  top: -48%;
  left: 3%;
  bottom: -8%;
  right: 0;
  border-radius: 4px;
  background-color: #ffffff;
  transform-origin: bottom;
  transform: rotate(90deg);
}

.second-hand {
  position: inherit;
  height: 40%;
  width: 2px;
  margin: auto;
  top: -40%;
  left: 3%;
  bottom: 0;
  right: 0;
  border-radius: 4px;
  background-color: #ffffff;
  transform-origin: bottom;
  transform: rotate(180deg);
}
/*******clock2*****/

.icon-large {
  width: 5em;
  height: 5em;
  border-radius: 1em;
  position: absolute;
  top: -2.5em;
}

.icon-clock {
  overflow: hidden;
  background: #000;
  pointer-events: none;
}

.clock2 {
  width: 4.5em;
  height: 4.5em;
  border-radius: 50%;
  background: #f1f1f1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.clock2 ol {
  list-style-type: none;
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  padding: 0;
}
.clock2 ol li {
  counter-increment: labelCounter;
  position: absolute;
  font-size: 0.6em;
}
.clock2 ol li:before {
  font-family: 'Helvetica';
  content: counter(labelCounter) '';
}
.clock2 ol li:nth-child(1) {
  right: 2.1em;
  top: 0.6em;
}
.clock2 ol li:nth-child(2) {
  right: 1em;
  top: 1.6em;
}
.clock2 ol li:nth-child(3) {
  right: 0.6em;
  top: 3.2em;
}
.clock2 ol li:nth-child(4) {
  right: 0.9em;
  top: 4.7em;
}
.clock2 ol li:nth-child(5) {
  right: 2.1em;
  top: 5.7em;
}
.clock2 ol li:nth-child(6) {
  right: 3.6em;
  top: 6em;
}
.clock2 ol li:nth-child(7) {
  right: 5em;
  top: 5.7em;
}
.clock2 ol li:nth-child(8) {
  right: 6.1em;
  top: 4.6em;
}
.clock2 ol li:nth-child(9) {
  right: 6.5em;
  top: 3.2em;
}
.clock2 ol li:nth-child(10) {
  right: 5.8em;
  top: 1.6em;
}
.clock2 ol li:nth-child(11) {
  right: 4.8em;
  top: 0.6em;
}
.clock2 ol li:nth-child(12) {
  right: 3.3em;
  top: 0.3em;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.clock2 #hour,
.clock2 .hour {
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: #303030;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.22em;
  margin-left: -0.22em;
  transform-origin: initial;
}
.clock2 #hour:before,
.clock2 .hour:before,
.clock2 #hour:after,
.clock2 .hour:after {
  content: '';
  display: block;
  position: absolute;
}
.clock2 #hour:before,
.clock2 .hour:before {
  width: 0.15em;
  height: 1.5em;
  border-radius: 4px;
  background: #303030;
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.clock2 #min,
.clock2 .min {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #303030;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: initial;
  right: initial;
  transform-origin: initial;
}
.clock2 #min:before,
.clock2 .min:before,
.clock2 #min:after,
.clock2 .min:after {
  content: '';
  display: block;
  position: absolute;
}
.clock2 #min:before,
.clock2 .min:before {
  width: 0.1em;
  height: 2em;
  border-radius: 4px;
  background: #303030;
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.clock2 #sec,
.clock2 .sec {
  width: 0.14em;
  height: 0.14em;
  border-radius: 50%;
  background: #dd3e1c;
  border: 0.05em solid #e13e1b;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -0.1em;
  margin-left: -0.1em;
  transform-origin: initial;
}
.clock2 #sec:before,
.clock2 .sec:before,
.clock2 #sec:after,
.clock2 .sec:after {
  content: '';
  display: block;
  position: absolute;
}
.clock2 #sec:before,
.clock2 #sec:after {
  width: 0.05em;
  height: 2.5em;
  border-radius: 4px;
  background: #e13e1b;
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.emp-clock-container-content.analog2 .emp-clock-container-date-current {
  padding-left: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.22em;
}

.emp-clock-container-content.analog2 .emp-clock-container-date-current .date-analog2 {
  margin-bottom: 0.5em;
}

.emp-clock-container-content.analog2 .emp-clock-container-date-current .holiday {
  background-color: #1d466d;
  color: #ffffff;
  padding: 0.2em 0.8em;
  border-radius: 1.5em;
  font-size: 0.6em;
}
