/*PRE-LOAD ICON */

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  /* display: none; */
  /* display: block; */
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
  visibility: visible;
}

.preloader {
  position: fixed;

  /* or absolute */
  top: 42%;
  left: 50%;
}

/*TIMER*/

.timer {
  position: relative;
  z-index: 999;
  width: 29px;
  height: 29px;
  margin: 38px auto;
  background-color: transparent;
  box-shadow: inset 0 0 0 2px #fff;
  border-radius: 50%;
}

.timer:after,
.timer:before {
  content: "";
  position: absolute;
  background-color: #fff;
}

.timer:after {
  top: 13.5px;
  left: 13.5px;
  width: 11px;
  height: 2px;
  transform-origin: 1px 1px;
  animation: minhand 2s linear infinite;

  -webkit-animation: minhand 2s linear infinite;
  -moz-animation: minhand 2s linear infinite;
  -webkit-transform-origin: 1px 1px;
  -moz-transform-origin: 1px 1px;
}

.timer:before {
  top: 13.5px;
  left: 13.5px;
  width: 10px;
  height: 2px;
  transform-origin: 1px 1px;
  animation: hrhand 8s linear infinite;

  -webkit-animation: hrhand 8s linear infinite;
  -moz-animation: hrhand 8s linear infinite;
  -webkit-transform-origin: 1px 1px;
  -moz-transform-origin: 1px 1px;
}

@-webkit-keyframes minhand {
  0% {
    -webkit-transform: rotate(0deg);
  }

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

@-moz-keyframes minhand {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@keyframes minhand {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes hrhand {
  0% {
    -webkit-transform: rotate(0deg);
  }

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

@-moz-keyframes hrhand {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
  }
}

@keyframes hrhand {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
