/* ---------------------------------------------------------------------------------
USER CONFIG 
 --------------------------------------------------------------------------------- */

/* Banner dimensions (required first) */
.bd {width: 970px; height: 250px;}

/* Banner border (overlays content) */
.bb {border: 1px solid #999;}

/* Banner background (pre-load) */
.bc {background-color: #000;}

/* Loader colour (pre-load) */
.loader div {background-color: #104c89;}

/* ---------------------------------------------------------------------------------
DO NOT MODIFY
 --------------------------------------------------------------------------------- */

body, body * {
  border: 0 none;
  outline: 0;
  padding: 0;
  margin: 0;
}

#exit {
  cursor: pointer;
  position: absolute;
  z-index: 999;
  box-sizing: border-box;
  background-color: transparent;
}

#main-container {
  position: absolute;
  overflow: hidden;
  visibility: visible;
  background-size: 35px 35px;
}

#background {
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  visibility: hidden;
}

#video-intro {
  position: absolute;
  visibility: hidden;
}

/* ---------------------------------------------------------------------------------
Loader
 --------------------------------------------------------------------------------- */

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  -ms-transform: translate(-50%, -50%) scale(0.5, 1);
  -webkit-transform: translate(-50%, -50%) scale(0.5, 1);
  transform: translate(-50%, -50%) scale(0.5, 1);
}

.loader div {
  display: inline-block;
  position: absolute;
  left: 6px;
  width: 13px;
  animation: loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loader div:nth-child(1) {
  left: 6px;
  animation-delay: -0.24s;
}

.loader div:nth-child(2) {
  left: 26px;
  animation-delay: -0.12s;
}

.loader div:nth-child(3) {
  left: 45px;
  animation-delay: 0;
}

@keyframes loader {
  0% {
    top: 6px;
    height: 51px;
  }
  50%, 100% {
    top: 19px;
    height: 26px;
  }
}
