#siteblock.site-block {
  display: none;
  z-index: 10000;
  padding-top: 100px;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

#siteblock.site-block .siteblock-content {
  margin: auto;
  display: table;
  position: relative;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
  max-width: 660px;
}
#siteblock.site-block .siteblock-content img {
  position: relative;
}
#siteblock.site-block .block-close {
  background: #f8f8f8;
  opacity: 1;
  top: -10px;
  right: -10px;
  position: absolute;
  width: 26px;
  height: 26px;
  line-height: 27px;
  -webkit-box-shadow: 0px 0px 0px 5px #cccccc;
  -moz-box-shadow: 0px 0px 0px 5px #cccccc;
  -o-box-shadow: 0px 0px 0px 5px #cccccc;
  box-shadow: 0px 0px 0px 5px #cccccc;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  font-size: 18px;
}
#siteblock.site-block .block-close:hover, #siteblock.site-block .block-close:focus {
  color: #fff;
  background: #000;
  text-decoration: none;
  cursor: pointer;
}

#adTimeCountdown {
  color: #fff;
  z-index: 1;
  font-weight: bold;
  font-size: 25px;
  top: -40px;
  left: 50%;
  right: 39px;
  position: absolute;
  transform: translateX(-50%);
  text-shadow: 1px 2px 2px #000;
}

/* Add Animation */
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
  }
}
@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

