@charset "utf-8";


/* -----------------------------------------------------------------------------------------------------
                                     ANIMATIONS STARTS
----------------------------------------------------------------------------------------------------- */


@keyframes blink01 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.35;
    }
    100% {
        opacity:0.05;
    }
}

@keyframes blink02 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.30;
    }
    100% {
        opacity:0.05;
    }
}

@keyframes blink03 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.25;
    }
    100% {
        opacity:0.05;
    }
}
@keyframes colours {
  0% {
    color: #37a262;
  }
  25% {
    color: #66fa7f;
  }
  50% {
    color: #ffef00;
  }
  75% {
    color: #4ec862;
  }
  100% {
    color: #32813e;
  }
}
@keyframes tooltip {
  0% {
    transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2, 1.2);
    opacity: 0.3;
  }
  75% {
    transform: scale(0.9, 0.9);
    opacity: 0.7;
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
@keyframes locked {
  0% {
      transform: rotate(-15deg);
  }
  100% {
      transform: rotate(15deg);
  }
}
@keyframes light01 {
  0% {
      transform: rotate(-35deg);
  }
  100% {
      transform: rotate(35deg);
  }
}
@keyframes light02 {
  0% {
      transform: rotate(35deg);
  }
  100% {
      transform: rotate(-35deg);
  }
}
@keyframes light03 {
  0% {
      transform: rotate(-35deg);
  }
  100% {
      transform: rotate(35deg);
  }
}
@keyframes light04 {
  0% {
      transform: rotate(35deg);
  }
  100% {
      transform: rotate(-35deg);
  }
}
@keyframes star01 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-500%) translateY(-250%) translateZ(0px);
  }
}
@keyframes star02 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(500%) translateY(-250%) translateZ(0px);
  }
}
@keyframes star03 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-250%) translateY(-500%) translateZ(0px);
  }
}
@keyframes star04 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(250%) translateY(-500%) translateZ(0px);
  }
}
@keyframes star05 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-50%) translateY(-750%) translateZ(0px);
  }
}
@keyframes star06 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(50%) translateY(-750%) translateZ(0px);
  }
}
@keyframes star07 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-420%) translateY(-100%) translateZ(0px);
  }
}
@keyframes star08 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(420%) translateY(-100%) translateZ(0px);
  }
}
@keyframes star09 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-300%) translateY(-275%) translateZ(0px);
  }
}
@keyframes star10 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(300%) translateY(-275%) translateZ(0px);
  }
}
@keyframes star11 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(-450%) translateY(-450%) translateZ(0px);
  }
}
@keyframes star12 {
  0% {
      transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      transform: translateX(450%) translateY(-450%) translateZ(0px);
  }
}
@keyframes starAnim {
  0% {
    opacity: 1;
      transform: scale(0) rotate(0deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
      transform: scale(1) rotate(180deg);
  }
}
/* -------------------------------------------------
                 ANIMATIONS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     WEBKIT ANIMATIONS STARTS
----------------------------------------------------------------------------------------------------- */

@-webkit-keyframes blink01 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.35;
    }
    100% {
        opacity:0.05;
    }
}

@-webkit-keyframes blink02 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.30;
    }
    100% {
        opacity:0.05;
    }
}

@-webkit-keyframes blink03 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.25;
    }
    100% {
        opacity:0.05;
    }
}
@-webkit-keyframes colours {
  0% {
    color: #37a262;
  }
  25% {
    color: #66fa7f;
  }
  50% {
    color: #ffef00;
  }
  75% {
    color: #4ec862;
  }
  100% {
    color: #32813e;
  }
}
@-webkit-keyframes tooltip {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.9, 0.9);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }
}
@-webkit-keyframes locked {
  0% {
      -webkit-transform: rotate(-15deg);
  }
  100% {
      -webkit-transform: rotate(15deg);
  }
}
@-webkit-keyframes light01 {
  0% {
      -webkit-transform: rotate(-35deg);
  }
  100% {
      -webkit-transform: rotate(35deg);
  }
}
@-webkit-keyframes light02 {
  0% {
      -webkit-transform: rotate(35deg);
  }
  100% {
      -webkit-transform: rotate(-35deg);
  }
}
@-webkit-keyframes light03 {
  0% {
      -webkit-transform: rotate(-35deg);
  }
  100% {
      -webkit-transform: rotate(35deg);
  }
}
@-webkit-keyframes light04 {
  0% {
      -webkit-transform: rotate(35deg);
  }
  100% {
      -webkit-transform: rotate(-35deg);
  }
}
@-webkit-keyframes star01 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-500%) translateY(-250%) translateZ(0px);
  }
}
@-webkit-keyframes star02 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(500%) translateY(-250%) translateZ(0px);
  }
}
@-webkit-keyframes star03 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-250%) translateY(-500%) translateZ(0px);
  }
}
@-webkit-keyframes star04 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(250%) translateY(-500%) translateZ(0px);
  }
}
@-webkit-keyframes star05 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-50%) translateY(-750%) translateZ(0px);
  }
}
@-webkit-keyframes star06 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(50%) translateY(-750%) translateZ(0px);
  }
}
@-webkit-keyframes star07 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-420%) translateY(-100%) translateZ(0px);
  }
}
@-webkit-keyframes star08 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(420%) translateY(-100%) translateZ(0px);
  }
}
@-webkit-keyframes star09 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-300%) translateY(-275%) translateZ(0px);
  }
}
@-webkit-keyframes star10 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(300%) translateY(-275%) translateZ(0px);
  }
}
@-webkit-keyframes star11 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(-450%) translateY(-450%) translateZ(0px);
  }
}
@-webkit-keyframes star12 {
  0% {
      -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -webkit-transform: translateX(450%) translateY(-450%) translateZ(0px);
  }
}
@-webkit-keyframes starAnim {
  0% {
    opacity: 1;
      -webkit-transform: scale(0) rotate(0deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
      -webkit-transform: scale(1) rotate(180deg);
  }
}
/* -------------------------------------------------
                 WEBKIT ANIMATIONS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     MOZILLA ANIMATIONS STARTS
----------------------------------------------------------------------------------------------------- */

@-moz-keyframes blink01 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.35;
    }
    100% {
        opacity:0.05;
    }
}

@-moz-keyframes blink02 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.30;
    }
    100% {
        opacity:0.05;
    }
}

@-moz-keyframes blink03 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.25;
    }
    100% {
        opacity:0.05;
    }
}
@-moz-keyframes colours {
  0% {
    color: #37a262;
  }
  25% {
    color: #66fa7f;
  }
  50% {
    color: #ffef00;
  }
  75% {
    color: #4ec862;
  }
  100% {
    color: #32813e;
  }
}
@-moz-keyframes tooltip {
  0% {
    -moz-transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    -moz-transform: scale(1.2, 1.2);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(0.9, 0.9);
    opacity: 0.7;
  }
  100% {
    -moz-transform: scale(1, 1);
    opacity: 1;
  }
}
@-moz-keyframes locked {
  0% {
      -moz-transform: rotate(-15deg);
  }
  100% {
      -moz-transform: rotate(15deg);
  }
}
@-moz-keyframes light01 {
  0% {
      -moz-transform: rotate(-35deg);
  }
  100% {
      -moz-transform: rotate(35deg);
  }
}
@-moz-keyframes light02 {
  0% {
      -moz-transform: rotate(35deg);
  }
  100% {
      -moz-transform: rotate(-35deg);
  }
}
@-moz-keyframes light03 {
  0% {
      -moz-transform: rotate(-35deg);
  }
  100% {
      -moz-transform: rotate(35deg);
  }
}
@-moz-keyframes light04 {
  0% {
      -moz-transform: rotate(35deg);
  }
  100% {
      -moz-transform: rotate(-35deg);
  }
}
@-moz-keyframes star01 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-500%) translateY(-250%) translateZ(0px);
  }
}
@-moz-keyframes star02 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(500%) translateY(-250%) translateZ(0px);
  }
}
@-moz-keyframes star03 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-250%) translateY(-500%) translateZ(0px);
  }
}
@-moz-keyframes star04 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(250%) translateY(-500%) translateZ(0px);
  }
}
@-moz-keyframes star05 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-50%) translateY(-750%) translateZ(0px);
  }
}
@-moz-keyframes star06 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(50%) translateY(-750%) translateZ(0px);
  }
}
@-moz-keyframes star07 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-420%) translateY(-100%) translateZ(0px);
  }
}
@-moz-keyframes star08 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(420%) translateY(-100%) translateZ(0px);
  }
}
@-moz-keyframes star09 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-300%) translateY(-275%) translateZ(0px);
  }
}
@-moz-keyframes star10 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(300%) translateY(-275%) translateZ(0px);
  }
}
@-moz-keyframes star11 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(-450%) translateY(-450%) translateZ(0px);
  }
}
@-moz-keyframes star12 {
  0% {
      -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -moz-transform: translateX(450%) translateY(-450%) translateZ(0px);
  }
}
@-moz-keyframes starAnim {
  0% {
    opacity: 1;
      -moz-transform: scale(0) rotate(0deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
      -moz-transform: scale(1) rotate(180deg);
  }
}
/* -------------------------------------------------
                 MOZILLA ANIMATIONS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     MICROSOFT ANIMATIONS STARTS
----------------------------------------------------------------------------------------------------- */

@-ms-keyframes blink01 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.35;
    }
    100% {
        opacity:0.05;
    }
}

@-ms-keyframes blink02 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.30;
    }
    100% {
        opacity:0.05;
    }
}

@-ms-keyframes blink03 {
    0% {
    opacity:0.05;
  }
    50% {
        opacity:0.25;
    }
    100% {
        opacity:0.05;
    }
}
@-ms-keyframes colours {
  0% {
    color: #37a262;
  }
  25% {
    color: #66fa7f;
  }
  50% {
    color: #ffef00;
  }
  75% {
    color: #4ec862;
  }
  100% {
    color: #32813e;
  }
}
@-ms-keyframes tooltip {
  0% {
    -ms-transform: scale(0, 0);
    opacity: 0;
  }
  50% {
    -ms-transform: scale(1.2, 1.2);
    opacity: 0.3;
  }
  75% {
    -ms-transform: scale(0.9, 0.9);
    opacity: 0.7;
  }
  100% {
    -ms-transform: scale(1, 1);
    opacity: 1;
  }
}
@-ms-keyframes locked {
  0% {
      -ms-transform: rotate(-15deg);
  }
  100% {
      -ms-transform: rotate(15deg);
  }
}
@-ms-keyframes light01 {
  0% {
      -ms-transform: rotate(-35deg);
  }
  100% {
      -ms-transform: rotate(35deg);
  }
}
@-ms-keyframes light02 {
  0% {
      -ms-transform: rotate(35deg);
  }
  100% {
      -ms-transform: rotate(-35deg);
  }
}
@-ms-keyframes light03 {
  0% {
      -ms-transform: rotate(-35deg);


  }
  100% {
      -ms-transform: rotate(35deg);
  }
}
@-ms-keyframes light04 {
  0% {
      -ms-transform: rotate(35deg);
  }
  100% {
      -ms-transform: rotate(-35deg);
  }
}
@-ms-keyframes star01 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-500%) translateY(-250%) translateZ(0px);
  }
}
@-ms-keyframes star02 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(500%) translateY(-250%) translateZ(0px);
  }
}
@-ms-keyframes star03 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-250%) translateY(-500%) translateZ(0px);
  }
}
@-ms-keyframes star04 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(250%) translateY(-500%) translateZ(0px);
  }
}
@-ms-keyframes star05 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-50%) translateY(-750%) translateZ(0px);
  }
}
@-ms-keyframes star06 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(50%) translateY(-750%) translateZ(0px);
  }
}
@-ms-keyframes star07 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-420%) translateY(-100%) translateZ(0px);
  }
}
@-ms-keyframes star08 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(420%) translateY(-100%) translateZ(0px);
  }
}
@-ms-keyframes star09 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-300%) translateY(-275%) translateZ(0px);
  }
}
@-ms-keyframes star10 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(300%) translateY(-275%) translateZ(0px);
  }
}
@-ms-keyframes star11 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(-450%) translateY(-450%) translateZ(0px);
  }
}
@-ms-keyframes star12 {
  0% {
      -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  }
  100% {
      -ms-transform: translateX(450%) translateY(-450%) translateZ(0px);
  }
}
@-ms-keyframes starAnim {
  0% {
    opacity: 1;
      -ms-transform: scale(0) rotate(0deg);
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
      -ms-transform: scale(1) rotate(180deg);
  }
}
/* -------------------------------------------------
                 ANIMATIONS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     STRUCTURE STARTS
----------------------------------------------------------------------------------------------------- */
/*
* {
  touch-callout: none;
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  user-drag: none;
}
*:not(input.field) {    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*/
.load * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
html {
  background: #000;
}
html,
body {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
body {
  font-size: 18px;
  background-color: #d9d7d9;
  /*background-image: url(/oddsquad/img/global/temp-bg01.jpg);
  background-size: cover;*/
  font-family: "refrigerator-deluxe", Arial, Helvetica, sans-serif;
}
.localTest {
  position: relative;
  height: 40px;
  z-index: 10000;
  background: url(/oddsquad/img/global/localHost-bg.png) repeat transparent top left;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 40px;
  font-size: 18px;
  border-bottom: 3px solid #333;
  box-shadow: 0 -2px 5px 6px rgba(0,0,0,0.5);
}
.localTest span {
  background: #333;
  border-radius: 10px;
  padding: 2px 50px;
  color: #f2bf00;
  border: 2px solid #f2bf00;
}
html.grabbing *{
}
a,
input[type="button"] {

}
.mobileNav {
  display: none;
}
.odd-wrapper {
  z-index: 1;
}
.odd-wrapper,
.odd-wrapper > header {
  position: absolute;
  
  height: 100%;
  
  /* TEMP */
  width: 100%;
}
footer {
}
footer .bg-slider {
  display: none;
  
}
.clickShield {
  background-color: rgba(0,0,0,0.45);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999;
}
.consoleNav {
  position: fixed;
  right: 1%;
  bottom: 1%;
  z-index: 98;
}
.consoleNav li {
  float: left;
  margin-left: 10px;
}
footer {
  z-index: 1000;
}
footer.collapse {
  z-index: -1;
}
footer.collapse nav .btn-close,
.collapse .clickShield {
  display: none;
}

footer nav .btn-close {
  top: auto;
  bottom: 35%;
  z-index: 1000;
  background-image: url(/oddsquad/img/global/close-bg02.png);
}
footer nav .btn-next,
footer nav .btn-prev{
  position: absolute;
  bottom: 15%;
  z-index: 1000;
  color: #fff;
  font-size: 2em;
  z-index: 1001;
}
footer nav .btn-next {
  right: -0.5%;
}
footer nav .btn-prev {
  left: -0.5%;
}
.collapse nav .btn-next,
.scrollEnd-desktop nav .btn-next {
  display: none;
}
.collapse nav .btn-prev,
.scrollStart nav .btn-prev {
  display: none;
}
.backgroudSelect {
  height: 30%;
  position: absolute;
  overflow: hidden;
  left: 0;
  bottom: 40px;
  background: rgba(0,0,0,0.75);
  z-index: 1000;
  width: 100%;
  padding: 1.5% 0;
  border-top: 10px solid #be1e2d;
  
    -ms-transition: all 500ms ease-in-out;
  -ms-transform: translateY(0) translateX(0) translateZ(0);
  
    -moz-transition: all 500ms ease-in-out;
  -moz-transform: translateY(0) translateX(0) translateZ(0);
  
    -webkit-transition: all 500ms ease-in-out;
  -webkit-transform: translateY(0) translateX(0) translateZ(0);
  
    transition: all 500ms ease-in-out;
  transform: translateY(0) translateX(0) translateZ(0);
}
.collapse .backgroudSelect {
  -ms-transform: translateY(100%) translateX(0) translateZ(0);
  -moz-transform: translateY(100%) translateX(0) translateZ(0);
  -webkit-transform: translateY(100%) translateX(0) translateZ(0);
  transform: translateY(100%) translateX(0) translateZ(0);
}
.lte9 .backgroudSelect {
    transform: translate(0px, 0%);
}
.lte9 .collapse .backgroudSelect {
    transform: translate(0px, 100%);
}
.backgroudSelect ul {
  width: 500%;
}
.backgroudSelect ul li {
  float: left;
  height: 100%;
  width: 4%;
  margin: 0 0.5%;
  overflow: hidden;
  cursor: pointer;
}

.backgroudSelect ul li img {
  height: 100%;
  width: 100%;
  border: 5px solid rgba(255,255,255,0.25);
}
html.bgImg-1 .backgroudSelect ul li:nth-child(1) img,
html.bgImg-2 .backgroudSelect ul li:nth-child(2) img,
html.bgImg-3 .backgroudSelect ul li:nth-child(3) img,
html.bgImg-4 .backgroudSelect ul li:nth-child(4) img,
html.bgImg-5 .backgroudSelect ul li:nth-child(5) img,
html.bgImg-6 .backgroudSelect ul li:nth-child(6) img,
html.bgImg-7 .backgroudSelect ul li:nth-child(7) img,
html.bgImg-8 .backgroudSelect ul li:nth-child(8) img,
html.bgImg-9 .backgroudSelect ul li:nth-child(9) img,
html.bgImg-10 .backgroudSelect ul li:nth-child(10) img,
html.bgImg-11 .backgroudSelect ul li:nth-child(11) img,
html.bgImg-12 .backgroudSelect ul li:nth-child(12) img,
html.bgImg-13 .backgroudSelect ul li:nth-child(13) img,
html.bgImg-14 .backgroudSelect ul li:nth-child(14) img,
html.bgImg-15 .backgroudSelect ul li:nth-child(15) img,
html.bgImg-16 .backgroudSelect ul li:nth-child(16) img,
html.bgImg-17 .backgroudSelect ul li:nth-child(17) img,
html.bgImg-18 .backgroudSelect ul li:nth-child(18) img,
html.bgImg-19 .backgroudSelect ul li:nth-child(19) img,
html.bgImg-20 .backgroudSelect ul li:nth-child(20) img {
  border: 5px solid #4bac26;
}
footer,
.pg-wrapper {
  height: 100%;
  width: 100%;
}
.pg-wrapper {
  position: absolute;
    
  transition: all 0ms linear;
  -ms-transition: all 0ms linear;
  -moz-transition: all 0ms linear;
  -webkit-transition: all 0ms linear;

  /*
  transition: all 0ms cubic-bezier(.61,.7,.6,.99) 750ms;
  -ms-transition: all 0ms cubic-bezier(.61,.7,.6,.99) 750ms;
  -moz-transition: all 0ms cubic-bezier(.61,.7,.6,.99) 750ms;
  -webkit-transition: all 0ms cubic-bezier(.61,.7,.6,.99) 750ms;
  */
}
.pg-wrapper.hide {
  transition: all 0ms linear 750ms;
  -ms-transition: all 0ms linear 750ms;
  -moz-transition: all 0ms linear 750ms;
  -webkit-transition: all 0ms linear 750ms;
}
.pg-wrapper > section {
  height: 100%;
  width:  500%;
  position: relative;
}
.pg-wrapper > section > article {
  height: 100%;
  width: 20%;
  position: absolute;
  text-align: center;
  
  /* NEEDS TO SET WIDTH JS 
  width: 1920px;
  */
}
.pg-wrapper > section > article:nth-child(1) {
}
.pg-wrapper > section > article:nth-child(2) {
  
  transform: translateX(100%) translateY(0px) translateZ(0px);
  -ms-transform: translateX(100%) translateY(0px) translateZ(0px);
  -moz-transform: translateX(100%) translateY(0px) translateZ(0px);
  -webkit-transform: translateX(100%) translateY(0px) translateZ(0px);
}
.pg-wrapper > section > article:nth-child(3) {
  transform: translateX(200%) translateY(0px) translateZ(0px);
  -ms-transform: translateX(200%) translateY(0px) translateZ(0px);
  -moz-transform: translateX(200%) translateY(0px) translateZ(0px);
  -webkit-transform: translateX(200%) translateY(0px) translateZ(0px);
}
.pg-wrapper > section > article.pg-home,
/*.pg-wrapper > section > article.pg-agents,*/
.pg-wrapper > section > article.pg-games,
.pg-wrapper > section > article.pg-videos {
  padding-top: 75px;
  overflow-y: auto;
}
.pg-wrapper > section > article.pg-games {
  padding-bottom: 75px;
  height:210%;
}
.pg-wrapper > section > article.pg-home {
  padding-top: 0px;
}
.pg-wrapper > section > article:nth-child(4) {
  transform: translateX(300%) translateY(0px) translateZ(0px);
  -ms-transform: translateX(300%) translateY(0px) translateZ(0px);
  -moz-transform: translateX(300%) translateY(0px) translateZ(0px);
  -webkit-transform: translateX(300%) translateY(0px) translateZ(0px);
}
.pg-wrapper > section > article:nth-child(5) {
  transform: translateX(400%) translateY(0px) translateZ(0px);
  -ms-transform: translateX(400%) translateY(0px) translateZ(0px);
  -moz-transform: translateX(400%) translateY(0px) translateZ(0px);
  -webkit-transform: translateX(400%) translateY(0px) translateZ(0px);
}

.lte9 .pg-wrapper > section > article:nth-child(2) {
  transform: translateX(100%) translateY(0px);
  -ms-transform: translateX(100%) translateY(0px);
}
.lte9 .pg-wrapper > section > article:nth-child(3) {
  transform: translateX(200%) translateY(0px);
  -ms-transform: translateX(200%) translateY(0px);
}
.lte9 .pg-wrapper > section > article:nth-child(4) {
  transform: translateX(300%) translateY(0px);
  -ms-transform: translateX(300%) translateY(0px);
}
.lte9 .pg-wrapper > section > article:nth-child(5) {
  transform: translateX(400%) translateY(0px);
  -ms-transform: translateX(400%) translateY(0px);
}
[data-genratr-wrapper] {
  position: relative;
  height: 100%;
  width: 100%;
}
.contentWrapper.videoPage {
    margin-bottom: 120px;
}
/*
[data-pagedepth="root"] .pg-wrapper > section > article.pg-home {
  height: 85%;
}
[data-pagedepth="root"] .pg-lst .copyright {
  padding-top: 15px;
  height: 15%;
  bottom: 0;
}
[data-pagedepth="root"] .copyright .sponsors li img {
  height: 30px;
}
*/
/* ----- temp lte9 load ----- */
.iecover {
  display: none;
}
.lte9 .iecover {
  display: block; 
  height: 100%;
  width: 100%;
  background: #fff;
  
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.nopbs,
.yespbs {
  display: none;
}
[data-pbs-login="true"] .nopbs,
[data-pbs-login="true"][data-agent-login="true"] .nopbs,
[data-pbs-login="false"] .yespbs,
[data-pbs-login="true"][data-agent-login="false"] .yespbs,
[data-pbs-login="false"][data-agent-login="true"] .yespbs {
  display: none;
}
[data-pbs-login="true"] .yespbs,
[data-pbs-login="false"] .nopbs,
[data-pbs-login="true"][data-agent-login="false"] .nopbs {
  display: block;
}
/* -------------------------------------------------
                 STRUCTURE ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     ICONS STARTS
----------------------------------------------------------------------------------------------------- */
i,
i:before,
i:after {
  font-family: 'oddsquad-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dir-prev i:before {
  content: "\e601";
}
.dir-next i:before {
  content: "\e602";
}
.pageNav .pg-games i:before,
.mobileNav .pg-games i:before {
  content: "\e605";
}
.pageNav .pg-agents i:before,
.mobileNav .pg-agents i:before {
  content: "\e510";
}
.pageNav .pg-videos i:before,
.mobileNav .pg-videos i:before {
  content: "\e607";
}
.pageNav .pg-oddtube i:before,
.mobileNav .pg-oddtube i:before {
  font-family: 'FontAwesome';
  content: "\f004";
}
nav.gameNav a.btn-prev i:before {
  content: "\e603";
}
nav.gameNav a.btn-next i:before {
  content: "\e600";
}
/* -------------------------------------------------
                 ICONS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     BACKGROUNDS STARTS
----------------------------------------------------------------------------------------------------- */
.backgrounds,
.backgrounds img {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.odd-wrapper > .backgrounds,
.odd-wrapper > .backgrounds img {
  min-height: 100%;
  min-width: 100%;
}
.odd-wrapper > .backgrounds img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  
  -webkit-transform: translate(-50%, -50%) translateZ(0px);
  -moz-transform: translate(-50%, -50%) translateZ(0px);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) translateZ(0px);
  
}
/* -------------------------------------------------
                 BACKGROUNDS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     SCROLL NAV STARTS
----------------------------------------------------------------------------------------------------- */
nav.scrollNav {
  width: 100%;
  height: 100%;
  position: absolute;
}
nav.scrollNav a {
  transform: translate(0px, 0px) translateZ(1px);
  -moz-transform: translate(0px, 0px) translateZ(1px);
  -ms-transform: translate(0px, 0px) translateZ(1px);
  -webkit-transform: translate(0px, 0px) translateZ(1px);
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  height: 100px;
  line-height: 100px;
  width: 100px;
  top: 50%;
  margin-top: -50px;
  /*
  background-color: #be1e2d;
  background-color: rgba(0,7,6,0.83);
  */
  background: url(/oddsquad/img/global/bg-04.png) repeat;
  border: 7px solid #be1e2d;
  box-shadow: 0 0 10px 1px rgba(0,0,0,0.5), inset 0 0 10px 1px rgba(0,0,0,0.5);
  color: #fff;
  text-align: center;
}

nav.scrollNav a:hover {
  color: #ffcf00;
  text-shadow: 0 0 10px rgba(255,207,0,0.5);
}
nav.scrollNav a span {
  display: none;
}
nav.scrollNav a.dir-prev {
  left: -30px;
  text-indent: 15px;
}
nav.scrollNav a.dir-next {
  right: -30px;
  text-indent: -15px;
}
nav.scrollNav a i:before {
  font-size: 42px;
  display: block;
  line-height: 86px;
  text-shadow: 0px 5px rgba(0,0,0,0.5);
}
[data-activestage="0"] nav.scrollNav a.dir-prev,
[data-activestage="1"] nav.scrollNav a.dir-prev {
  transform: translate(-100px, 0px) translateZ(1px);
  -ms-transform: translate(-100px, 0px) translateZ(1px);
  -webkit-transform: translate(-100px, 0px) translateZ(1px);
  -moz-transform: translate(-100px, 0px) translateZ(1px);
}
[data-activestage="1"] nav.scrollNav a.dir-next,
[data-activestage="3"] nav.scrollNav a.dir-next {
  transform: translate(100px, 0px) translateZ(1px);
  -ms-transform: translate(100px, 0px) translateZ(1px);
  -webkit-transform: translate(100px, 0px) translateZ(1px);
  -moz-transform: translate(100px, 0px) translateZ(1px);
}
/* -------------------------------------------------
                 SCROLL NAV ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     PAGE NAV STARTS
----------------------------------------------------------------------------------------------------- */
.odd-wrapper > header .main-logo {
  position: absolute;
  top: 1%;
  left: 2%;
  height: auto;
  width: 6%;
  cursor: pointer;
  z-index: 10;
  min-width: 100px;
}
.pbs-logo {
  width: 3.5%;
  position: absolute;
  top: 1.5%;
  left: 1%;
  min-width: 60px;
}
nav.pageNav {
  float: left;
  z-index: 999;

  position: absolute;
  left: 50%;
  
  width: 40%;
  height: 78px;
  
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -ms-transform: translate(-50%,0);
  transform: translate(-50%,0);

  font-weight: 900;
  text-transform: uppercase;

  background-image: url(/oddsquad/img/global/menu-02.png);
  background-repeat: repeat-x;
  background-position: 0 0;

  text-align: center;
}
nav.pageNav:before,
nav.pageNav:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 59px;
}
nav.pageNav:before {
  background-image: url(/oddsquad/img/global/menu-01.png);
  left: -58.5px;
}
nav.pageNav:after {
  background-image: url(/oddsquad/img/global/menu-03.png);
  right: -58.5px;
}
nav.pageNav li {
  display: inline-block;
  position: relative;
  line-height: 45px;
  text-align: center;
  z-index: 1;
  width: 23.5%;
  
    width: 24.5%;

  height: 53px;
  line-height: 53px;
  border-left: 1px solid rgba(0,0,0,0.5);
}
nav.pageNav li:first-child {
  border-left: none;
}
nav.pageNav li a {
  color: #fff;
  font-size: 36px;
  font-size: 0.8em;
}
nav.pageNav li:hover a {
  color: #ffcf00;
  text-shadow: 0 0 10px rgba(255,207,0,0.5);
}
nav.pageNav li a i {
  color: #ffcf00;
  font-size: 25px;
  font-size: 0.75em;
  margin-right: 5%;
}
[data-activestage="1"] nav.pageNav li:nth-child(1):hover a i,
[data-activestage="2"] nav.pageNav li:nth-child(2):hover a i,
[data-activestage="3"] nav.pageNav li:nth-child(3):hover a i {
  text-shadow: 0 0 10px rgba(59,166,244,0.5);
}
[data-activestage="1"] nav.pageNav li:nth-child(1) {
  background-color: #2a6bab;
}
[data-activestage="2"] nav.pageNav li:nth-child(2) {
  background-color: #235c2d;
}
[data-activestage="3"] nav.pageNav li:nth-child(3) {
  background-color: #61447f;
}
[data-activestage="1"] nav.pageNav li:nth-child(1) a i,
[data-activestage="1"] nav.pageNav li:nth-child(1) a span,
[data-activestage="2"] nav.pageNav li:nth-child(2) a i,
[data-activestage="2"] nav.pageNav li:nth-child(2) a span,
[data-activestage="3"] nav.pageNav li:nth-child(3) a i,
[data-activestage="3"] nav.pageNav li:nth-child(3) a span  {
  color: #fff;
}
/*
[data-activestage="1"] nav.pageNav li:nth-child(1) a i {
  color: #25ad2c;
}
[data-activestage="2"] nav.pageNav li:nth-child(2) a i {
  color: #1286da;
}
[data-activestage="3"] nav.pageNav li:nth-child(3) a i {
  color: #a55cb0;
}



*/
/* -------------------------------------------------
                 PAGE NAV ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     HEXAGON BLOCKS STARTS
----------------------------------------------------------------------------------------------------- */
.btn-hex {
  position: absolute;
  top: 0;
  left: 0;
  float: left;
  max-height: 100%;
  max-width: 100%;
  
  /* temp remove after sized */
  width: 25%;
}
.btn-hex img {
  width: 100%;
  height: auto;
}

/* ----- GLOBAL SIZING ----- */
.btn-hex-size-00 {
  width: 40%;
}
.btn-hex-size-01 {
  width: 42%;
}
.btn-hex-size-02 {
  width: 28%;
}
.btn-hex-size-03 {
  width: 22.5%;
}
.btn-hex-size-04 {
  width: 17%;
}
.btn-hex-size-05 {
  width: 14%;
}
.btn-hex-size-06 {
  width: 32%;
}
.btn-hex-size-07 {
  width: 25%;
}

/* ----- HOME ----- */
[data-activestage="0"] .pg-content {
   margin-top:30px;
}

.pg-content {
  position: relative;
  width: 100%;
}
.pg-content > .sizer {
  padding-top: 50%;
}
.delayload .pg-home .btn-hex {
  opactiy: 0;
}
.pg-home .btn-hex {
  opacity: 1;
  
  transition-delay: 0;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(.61,.7,.6,.99);
  transition-timing-property: all;
  
  -ms-transition-delay: 0;
  -ms-transition-duration: 500ms;
  -ms-transition-timing-function: cubic-bezier(.61,.7,.6,.99);
  -ms-transition-timing-property: all;
  
  -moz-transition-delay: 0;
  -moz-transition-duration: 500ms;
  -moz-transition-timing-function: cubic-bezier(.61,.7,.6,.99);
  -moz-transition-timing-property: all;
  
  -webkit-transition-delay: 0;
  -webkit-transition-duration: 500ms;
  -webkit-transition-timing-function: cubic-bezier(.61,.7,.6,.99);
  -webkit-transition-timing-property: all;
  
  /*
  transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -webkit-transition: all 500ms ease-in;
  */
}
.pg-home .btn-hex a {
  float: left;
  width: 100%;
  height: 100%;
  
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.pg-home .btn-hex.btn-hex-main {
  transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
}
.pg-home .btn-hex.btn-hex-posi-1 {
  transition-delay: 750ms;
  -ms-transition-delay: 750ms;
  -moz-transition-delay: 750ms;
  -webkit-transition-delay: 750ms;
}
.pg-home .btn-hex.btn-hex-posi-2 {
  transition-delay: 850ms;
  -ms-transition-delay: 850ms;
  -moz-transition-delay: 850ms;
  -webkit-transition-delay: 850ms;
}
.pg-home .btn-hex.btn-hex-posi-3 {
  transition-delay: 950ms;
  -ms-transition-delay: 950ms;
  -moz-transition-delay: 950ms;
  -webkit-transition-delay: 950ms;
}
.pg-home .btn-hex.btn-hex-posi-4 {
  transition-delay: 1050ms;
  -ms-transition-delay: 1050ms;
  -moz-transition-delay: 1050ms;
  -webkit-transition-delay: 1050ms;
}
.pg-home .btn-hex.btn-hex-posi-5 {
  transition-delay: 250ms;
  -ms-transition-delay: 250ms;
  -moz-transition-delay: 250ms;
  -webkit-transition-delay: 250ms;
}
.delayload .pg-home .btn-hex.btn-hex-main {
  -webkit-transform: translate(-50%, -31%) scale(0);
  -moz-transform: translate(-50%, -31%) scale(0);
  -ms-transform: translate(-50%, -31%) scale(0);
  transform: translate(-50%, -31%) scale(0);
}
.delayload .pg-home .btn-hex-posi-1 {
  -webkit-transform: translate(-182.5%,-100%) scale(0) rotate(0deg);
  -moz-transform: translate(-182.5%,-100%) scale(0) rotate(0deg);
  -ms-transform: translate(-182.5%,-100%) scale(0) rotate(0deg);
  transform: translate(-182.5%,-100%) scale(0) rotate(0deg);
}
.delayload .pg-home .btn-hex-posi-2 {
  -webkit-transform: translate(86%,35%) scale(0);
  -moz-transform: translate(86%,35%) scale(0);
  -ms-transform: translate(86%,35%) scale(0);
  transform: translate(86%,35%) scale(0);
}
.delayload .pg-home .btn-hex-posi-3 {
  -webkit-transform: translate(-182.5%, 0%) scale(0);
  -moz-transform: translate(-182.5%, 0%) scale(0);
  -ms-transform: translate(-182.5%, 0%) scale(0);
  transform: translate(-182.5%, 0%) scale(0);
}
.delayload .pg-home .btn-hex-posi-4 {
  -webkit-transform: translate(60%, -65%) scale(0) rotate(0deg);
  -moz-transform: translate(60%, -65%) scale(0) rotate(0deg);
  -ms-transform: translate(60%, -65%) scale(0) rotate(0deg);
  transform: translate(60%, -65%) scale(0) rotate(0deg);
}
.delayload .pg-home .btn-hex-posi-5 {
  -webkit-transform: translate(-54%,-176%) scale(0) rotate(0deg);
  -moz-transform: translate(-54%,-176%) scale(0) rotate(0deg);
  -ms-transform: translate(-54%,-176%) scale(0) rotate(0deg);
  transform: translate(-54%,-176%) scale(0) rotate(0deg);
}

/* ----- HOME LOADED ----- */
.pg-home .btn-hex.btn-hex-main {
  /*
  overflow: hidden;
  left: 50%;
  top: 15%;
  position: relative;
  */
 
  position: absolute;
  margin-bottom: 200px;

  -webkit-transform: translate(-50%, -31%) scale(1);
  -moz-transform: translate(-50%, -31%) scale(1);
  -ms-transform: translate(-50%, -31%) scale(1);
  transform: translate(-50%, -31%) scale(1);

  width: 35%;
}
.pg-home .btn-hex.btn-hex-main img {

  transition: all 500ms ease-in;
  -ms-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -webkit-transition: all 500ms ease-in;
}
/*
.pg-home .btn-hex.btn-hex-main img.s1 {
  position: relative;
}
.pg-home .btn-hex.btn-hex-main img.s2 {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-home .btn-hex.btn-hex-main[data-img="2"] img.s1,
.pg-home .btn-hex.btn-hex-main[data-img="1"] img.s2 {
  -webkit-transform: translate(0,100%);
  -moz-transform: translate(0,100%);
  -ms-transform: translate(0,100%);
  -o-transform: translate(0,100%);
  transform: translate(0,100%);
  opacity: 0;
}
*/
/*
.pg-home .btn-hex-doubletrouble { 
  left: 66%;
  top: 10%;
}
.pg-home .btn-hex-pienado {
  left: 10%;
  top: 0;
  margin-top: 27%;
}
.pg-home .btn-hex-blobchase {
  position: relative;
  margin-top: 23.5%;
  float: left;
  margin-bottom: 110px;
  top: 4%;
  left: 66%;
}
*/
.pg-home .btn-hex,
.pg-home .btn-hex:not(.btn-hex-main) {
  top: 50%;
  left: 50%;
}
.pg-home .btn-hex-posi-1 {
  -webkit-transform: translate(-198%,-75%) scale(1) rotate(0deg);
  -moz-transform: translate(-198%,-75%) scale(1) rotate(0deg);
  -ms-transform: translate(-198%,-75%) scale(1) rotate(0deg);
  transform: translate(-198%,-75%) scale(1) rotate(0deg);
}
.pg-home .btn-hex-posi-2 {
  -webkit-transform: translate(86%,35%) scale(1);
  -moz-transform: translate(86%,35%) scale(1);
  -ms-transform: translate(86%,35%) scale(1);
  transform: translate(86%,35%) scale(1);
}
.pg-home .btn-hex-posi-3 {
  -webkit-transform: translate(-170%, 9%) scale(1);
  -moz-transform: translate(-170%, 9%) scale(1);
  -ms-transform: translate(-170%, 9%) scale(1);
  transform: translate(-170%, 9%) scale(1);
}
.pg-home .btn-hex-posi-4 {
  -webkit-transform: translate(60%, -65%) scale(1) rotate(0deg);
  -moz-transform: translate(60%, -65%) scale(1) rotate(0deg);
  -ms-transform: translate(60%, -65%) scale(1) rotate(0deg);
  transform: translate(60%, -65%) scale(1) rotate(0deg);
}
.pg-home .btn-hex-posi-5 {
  -webkit-transform: translate(-54%,-176%) scale(1) rotate(0deg);
  -moz-transform: translate(-54%,-176%) scale(1) rotate(0deg);
  -ms-transform: translate(-54%,-176%) scale(1) rotate(0deg);
  transform: translate(-54%,-176%) scale(1) rotate(0deg);
}
.pg-wrapper .pg-home .copyright {
  position: relative;
  float: left;
  width: 100%;
  clear: both;
  bottom: auto;

  /*
  margin-top: -60px;
  margin-bottom: 50px;
  */
 
  margin-top: -20px;
  margin-bottom: 55px;

  top: auto;
  font-size: 0.4em;
  display: none;
}
.pg-wrapper .pg-home .copyright .sponsors li img {
  height: 35px;
}
.pg-home .btn-hex-agents {
  top: 65%;
  left: 22%;
}

/* ----- GAMES ----- */
/*
.pg-games .btn-hex-pienado {
  left: 37.5%;
  top: 5%;
}
.pg-games .btn-hex-codebreaker {
  top: 17.5%;
  left: 10%;
}
.pg-games .btn-hex-creatureduty {
  left: 55%;
  top: 32.5%;
}
.pg-games .btn-hex-catchthecentigurps {
  top: 52.5%;
  left: 40%;
}
.pg-games .btn-hex-downthetubes {
  left: 62.5%;
  top: 5%;
}
*/
.pg-games2 .btn-hex-centigurps {
  left: 8.5%;
  top: 10%;
}
.pg-games2 .btn-hex-downthetubes {
  right: 8.5%;
  left: auto;
  top: 10%;
}


.pg-games3 .btn-hex-creatureduty {
  left: 50%;
  top: 0%;
  margin-left: -16.5%;
}
.pg-games3 .btn-hex-centigurps {
  left: 6.5%;
  top: 30%;
}
.pg-games3 .btn-hex-downthetubes {
  right: 6.5%;
  left: auto;
  top: 30%;
}

.pg-games4 .btn-hex-codebreaker {
  left: 2%;
  top: 30%;
}
.pg-games4 .btn-hex-creatureduty {
  left: auto;
  top: 30%;
  right: 24.5%;
}
.pg-games4 .btn-hex-centigurps {
  left: 24.5%;
  top: 0%;
}
.pg-games4 .btn-hex-downthetubes {
  right: 2%;
  left: auto;
  top: 0%;
}
.pg-games4 .btn-hex a {
  position: absolute;
  top: 3%;
  left: 3%;
  height: 94%;
  width: 94%;
  border-radius: 50%;
}

.pg-games5 .btn-hex-pienado {
  left: 50%;
  top: 30%;
  margin-left: -12.5%;
}
.pg-games5 .btn-hex-codebreaker {
  left: 2%;
  top: 30%;
}
.pg-games5 .btn-hex-creatureduty {
  left: auto;
  top: 0;
  right: 20%;
}
.pg-games5 .btn-hex-centigurps {
  left: 20%;
  top: 0%;
}
.pg-games5 .btn-hex-downthetubes {
  right: 2%;
  left: auto;
  top: 30%;
}
.pg-games5 .btn-hex-size-02 {
  width: 25%;
}


.pg-games8 .btn-hex-wrapper {
  width: 100%;
  float: left;
  position: relative;
}
.pg-games8 .btn-hex-wrapper .btn-hex:nth-child(1) {
  position: relative;
}
.pg-games8 .btn-hex-wrapper:nth-child(1) {

}
.pg-games8 .btn-hex-wrapper:nth-child(2) {

}
.pg-games8 .btn-hex-wrapper:nth-child(3) {

}

.pg-games8 .btn-hex-wrapper:nth-child(2),
.pg-games8 .btn-hex-wrapper:nth-child(3) {
  margin-top: -12%;
}
.pg-games8 .btn-hex-wrapper:nth-child(1) .btn-hex:nth-child(1),
.pg-games8 .btn-hex-wrapper:nth-child(3) .btn-hex:nth-child(1) {
  left: 38.75%;

}
.pg-games8 .btn-hex-wrapper:nth-child(1) .btn-hex:nth-child(2),
.pg-games8 .btn-hex-wrapper:nth-child(3) .btn-hex:nth-child(2) {
  left: 3%;

}
.pg-games8 .btn-hex-wrapper:nth-child(1) .btn-hex:nth-child(3),
.pg-games8 .btn-hex-wrapper:nth-child(3) .btn-hex:nth-child(3) {
  left: auto;
  right: 3%;

}

.pg-games8 .btn-hex-wrapper:nth-child(2) .btn-hex:nth-child(1){
  left: 20.75%;

}
.pg-games8 .btn-hex-wrapper:nth-child(2) .btn-hex:nth-child(2) {
  right: 20.75%;
  left: auto;

}

.pg-games8 .btn-hex-wrapper:nth-child(4) {
  margin-top: -12%;
  left: 20.75%;
}

.pg-games8 .btn-hex-wrapper:nth-child(4) .btn-hex:nth-child(2) {
    right: 41.75%;
    left: auto;
}

.pg-games8 .btn-hex-wrapper:nth-child(5) {
  margin-top: -55.6%;
  left: 38.75%;
}


.pg-games8 .btn-hex-wrapper:nth-child(6){
  left: 38.5%;
  top: -12vw;
}

.pg-games8 .btn-hex-wrapper:nth-child(7){
  left: 2.5%;
  top: -35vw;
}

.pg-games8 .btn-hex-wrapper:nth-child(8){
  left: 75%;
  top: -58vw;
}


.pg-games8 .btn-hex-wrapper:nth-child(9){
  left: 20.75%;
  top: -69vw;
}

.pg-games8 {
  overflow: hidden;
  height: 100vh;
}

@media (max-width:900px) {
  .pg-games8 .btn-hex-wrapper:nth-child(1),.pg-games8 .btn-hex-wrapper:nth-child(2),.pg-games8 .btn-hex-wrapper:nth-child(3), .pg-games8 .btn-hex-wrapper:nth-child(4) {
    margin-top: 0;
  }

  .pg-games8 .btn-hex-wrapper:nth-child(4) {
    left: 0;
  }

  .pg-games8 .btn-hex-wrapper:nth-child(1) {
      display: none;  
  }

  .pg-games8 .btn-hex-wrapper:nth-child(2) {
      margin-top: 150px;  
  }
}

.btn-hex-wrapper .btn-hex a span {
  display: none;
}

.pg-games8 .btn-hex-wrapper:nth-child(1) .btn-hex:nth-child(1) {
    visibility: hidden;
}

.pg-games .btn-hex > a {
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 3%;
  right: 3%;
  height: 94%;
  width: 94%;
  border-radius: 50%;
  background-color: rgba(0,0,0,0);
}
/* ----- AGENTS ----- */
.pg-agents .btn-hex-agentlocker {
  top: 17.5%;
  left: 10%;
}
.pg-agents .btn-hex-hallofdoors {
  top: 12.5%;
  left: 38.5%;
}
.pg-agents .btn-hex-wallofagents {
  left: 38.5%;
  top: 48%;
}
.pg-agents .btn-hex-trainingvideos {
  top: 30%;
  left: 54.25%;
}
.pg-agents .btn-hex-oddmoments {
  top: 55%;
  left: 69.5%;
}
/* -------------------------------------------------
                 HEXAGON BLOCKS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     HEXAGON BG STARTS
----------------------------------------------------------------------------------------------------- */
.hexbg {
  overflow: hidden;
}
[data-overlay="loading"].hide {
  display: none;
}
[data-overlay="loading"] .hexbg {
  background: #e52a37;
}
.hex {
  float: left;
  position: absolute;
  opacity: 0.1;
  
  transform: translateX(-25px) translateY(0px) translateZ(0px) rotate(90deg);
  -moz-transform: translateX(-25px) translateY(0px) translateZ(0px) rotate(90deg);
  -ms-transform: translateX(-25px) translateY(0px) translateZ(0px) rotate(90deg);
  -webkit-transform: translateX(-25px) translateY(0px) translateZ(0px) rotate(90deg);

    transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
}
.panel-top .hex {
  
}
.panel-top .hex.even {
  transform: translateX(-25px) translateY(45px) translateZ(0px) rotate(90deg);
  -moz-transform: translateX(-25px) translateY(45px) translateZ(0px) rotate(90deg);
  -ms-transform: translateX(-25px) translateY(45px) translateZ(0px) rotate(90deg);
  -webkit-transform: translateX(-25px) translateY(45px) translateZ(0px) rotate(90deg);
  /*left: -25px;*/
}
.panel-top .hex.odd {
  transform: translateX(30px) translateY(45px) translateZ(0px) rotate(90deg);
  -moz-transform: translateX(30px) translateY(45px) translateZ(0px) rotate(90deg);
  -ms-transform: translateX(30px) translateY(45px) translateZ(0px) rotate(90deg);
  -webkit-transform: translateX(30px) translateY(45px) translateZ(0px) rotate(90deg);
  /*left: 30px;*/
}
.panel-btm .hex {
  
}
.panel-btm .hex.odd {
  transform: translateX(30px) translateY(12px) translateZ(0px) rotate(90deg);
  -moz-transform: translateX(30px) translateY(12px) translateZ(0px) rotate(90deg);
  -ms-transform: translateX(30px) translateY(12px) translateZ(0px) rotate(90deg);
  -webkit-transform: translateX(30px) translateY(12px) translateZ(0px) rotate(90deg);
  /*left: 30px;*/
}
.panel-btm .hex.even {
  transform: translateX(-25px) translateY(12px) translateZ(0px) rotate(90deg);
  -moz-transform: translateX(-25px) translateY(12px) translateZ(0px) rotate(90deg);
  -ms-transform: translateX(-25px) translateY(12px) translateZ(0px) rotate(90deg);
  -webkit-transform: translateX(-25px) translateY(12px) translateZ(0px) rotate(90deg);
  /*left: -25px;*/
}



.lte9 .panel-top .hex.even {
  transform: translateX(-25px) translateY(45px) rotate(90deg);
  -ms-transform: translateX(-25px) translateY(45px) rotate(90deg);
  -moz-transform: translateX(-25px) translateY(45px) rotate(90deg);
  -webkit-transform: translateX(-25px) translateY(45px) rotate(90deg);
}
.lte9 .panel-top .hex.odd {
  transform: translateX(30px) translateY(45px) rotate(90deg);
  -ms-transform: translateX(30px) translateY(45px) rotate(90deg);
  -moz-transform: translateX(30px) translateY(45px) rotate(90deg);
  -webkit-transform: translateX(30px) translateY(45px) rotate(90deg);
}
.lte9 .panel-btm .hex.odd {
  transform: translateX(30px) translateY(12px) rotate(90deg);
  -ms-transform: translateX(30px) translateY(12px) rotate(90deg);
  -moz-transform: translateX(30px) translateY(12px) rotate(90deg);
  -webkit-transform: translateX(30px) translateY(12px) rotate(90deg);
}
.lte9 .panel-btm .hex.even {
  transform: translateX(-25px) translateY(12px) rotate(90deg);
  -ms-transform: translateX(-25px) translateY(12px) rotate(90deg);
  -moz-transform: translateX(-25px) translateY(12px) rotate(90deg);
  -webkit-transform: translateX(-25px) translateY(12px) rotate(90deg);
}


.hex {  
  transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  
    animation-timing-function: ease-in-out;
    animation-direction: normal;
    animation-iteration-count: infinite;
  
    -ms-animation-timing-function: ease-in-out;
    -ms-animation-direction: normal;
    -ms-animation-iteration-count: infinite;
  
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-direction: normal;
    -moz-animation-iteration-count: infinite;
  
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-direction: normal;
    -webkit-animation-iteration-count: infinite;
  
  opacity: 0.05;
}
.hex:nth-child(13n-12).even {
    animation-name: blink03;
  animation-delay: 500ms;
    animation-duration: 6000ms;
  
    -ms-animation-name: blink03;
  -ms-animation-delay: 500ms;
    -ms-animation-duration: 6000ms;
  
    -moz-animation-name: blink03;
  -moz-animation-delay: 500ms;
    -moz-animation-duration: 6000ms;
  
    -webkit-animation-name: blink03;
  -webkit-animation-delay: 500ms;
    -webkit-animation-duration: 6000ms;
  
}
.hex:nth-child(16n-12).odd {
    animation-name: blink02;
  animation-delay: 1000ms;
    animation-duration: 5000ms;
  
    -ms-animation-name: blink02;
  -ms-animation-delay: 1000ms;
    -ms-animation-duration: 5000ms;
  
    -moz-animation-name: blink02;
  -moz-animation-delay: 1000ms;
    -moz-animation-duration: 5000ms;
  
    -webkit-animation-name: blink02;
  -webkit-animation-delay: 1000ms;
    -webkit-animation-duration: 5000ms;
  
}
.hex:nth-child(16n-12).odd em {
}
.hex:nth-child(8n-12).even {
    animation-name: blink01;
  animation-delay: 1500ms;
    animation-duration: 4000ms;
  
    -ms-animation-name: blink01;
  -ms-animation-delay: 1500ms;
    -ms-animation-duration: 4000ms;
  
    -moz-animation-name: blink01;
  -moz-animation-delay: 1500ms;
    -moz-animation-duration: 4000ms;
  
    -webkit-animation-name: blink01;
  -webkit-animation-delay: 1500ms;
    -webkit-animation-duration: 4000ms;
  
}
.hex:nth-child(8n-12).even em {
}
.hex:nth-child(21n-18).odd {
    animation-name: blink01;
  animation-delay: 5000ms;
    animation-duration: 5000ms;
  
    -ms-animation-name: blink01;
  -ms-animation-delay: 5000ms;
    -ms-animation-duration: 5000ms;
  
    -moz-animation-name: blink01;
  -moz-animation-delay: 5000ms;
    -moz-animation-duration: 5000ms;
  
    -webkit-animation-name: blink01;
  -webkit-animation-delay: 5000ms;
    -webkit-animation-duration: 5000ms;
  
}
.hex:nth-child(21n-18).odd em {
}
.hex:nth-child(25n-16).even {
  opacity: 0.35;
}
.hex:nth-child(25n-16).even em {
}
.hex:nth-child(15n-18).odd {
  opacity: 0.15;
}
.hex:nth-child(25n-18).odd {
  opacity: 0.30;
}
.hex:nth-child(15n-18).odd em {
}
.hex:nth-child(8n).even {
  opacity: 0.2;
}
.hex:nth-child(8n).even em {
}
.panel-top .hex:nth-child(11n).odd {
  opacity: 0.25;
}
.panel-btm .hex:nth-child(11n-6).odd {
  opacity: 0.30;
}
.hex:nth-child(11n).odd em {
}
.hex:nth-child(18n).even {
  opacity: 0.1;
}
.hex:nth-child(18n).even em {
}
.hex:nth-child(25n).even {
  opacity: 0.28;
}
.hex:nth-child(25n).even em {
}
.hex:nth-child(5n) {
  opacity: 0.1;
}
.hex:nth-child(8n) {
  opacity: 0.15;
}
.hex:nth-child(8n-5) {
  opacity: 0.12;
}
/*
.hex:nth-child(12n-8) {
  opacity: 0.09;
}
.hex:nth-child(8n-7) {
  opacity: 0.15;
}
.hex:nth-child(12n-10) {
  opacity: 0.12;
}
*/
.hex:nth-child(6n-6) {
  opacity: 0.03;
}
.hex:nth-child(3n-6) {
  opacity: 0.02;
}
.hex:nth-child(3n-6) {
  opacity: 0.07;
}
.hex em{
  display: block;
  width: 60px;
  height: 37px;
  background-color: #FFF;
  margin-top: -1px;
  margin-bottom: -1px;
}
.hex em:before,
.hex em:after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent
}
.hex em:before {
  bottom: -15px;
  border-top: 15px solid #FFF;
}
.hex em:after {
  bottom: 36px;
  border-bottom: 15px solid #FFF;
}
/*
.hex em:nth-child(1) {
  width: 0;
  border-bottom: 15px solid #FFF;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent
}
.hex em:nth-child(2) {
  width: 60px;
  height: 37px;
  background-color: #FFF;
  margin-top: -1px;
  margin-bottom: -1px;
}
.hex em:nth-child(3) {
  width: 0;
  border-top:   15px solid #FFF;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
}
*/
/* -----------  Highlight -----------  */

.hex.highlight {
  opacity: 0.2;
}
:not([data-scene="home"]) .hex.highlight {
  opacity: 0.15;
}

/* -----------  Copyright & Sponsors -----------  */
.copyright {
  float: left;
  position: absolute;

  font-size: 12px;
  font-size: 0.35em;

  color: #fff;
  text-align: center;
  width: 100%;
  bottom: 12%;
  z-index: 99;
}
.pg-lst .copyright  {
  float: left;
  position: absolute;
  font-size: 0.35em;
  color: #fff;
  text-align: center;
  width: 25%;
  bottom: 50px;
  margin-bottom: auto;
  z-index: inherit;
  left: 0;
  z-index: 99;
}
.copyright .sponsors {
  display: inline-block;
}
.copyright .sponsors li {
  display: inline-block;
  float: left;
  margin: 10px 25px; 
}
.pg-home .copyright .sponsors li {
  margin: 2px 25px;
}
.copyright .sponsors li img {
  height: 45px;
  width: auto;
}
/* -------------------------------------------------
                 HEXAGON BG ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     BG SLIDER STARTS
----------------------------------------------------------------------------------------------------- */
.bg-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20% 25%;
}
.bg-slider li {
  position: relative;
  float: left;
  margin: 0 8%;
  background-color: #000;
  border: 1px solid #000;
  width: 8%;
  height: 100%;
  top: 0;
  border-radius: 5px;
}
.bg-slider li span {
  position: absolute;
  display: block;
  z-index: 2;
  background-color: #00a8ff;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  margin-left: -6px;
  margin-bottom: -10px;
  border: 1px solid #000;
  cursor: pointer;

}
.bg-slider li em {
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #00e4ff;
}
.bg-slider li[data-value="3"] em,
.bg-slider li.level-3 em {
  top: 0%;
}
.bg-slider li[data-value="2"] em,
.bg-slider li.level-2 em {
  top: 33%;
}
.bg-slider li[data-value="1"] em,
.bg-slider li.level-1 em {
  top: 66%;
}
.bg-slider li[data-value="0"] em,
.bg-slider li.level-0 em {
  top: 100%;
}
.backgrounds img {
    transition: all 0.25s ease-out;
    -ms-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -webkit-transition: all 0.25s ease-out;
  opacity: 0;
}
html.bgImg-NaN .backgrounds img:nth-child(1),
html.bgImg-0 .backgrounds img:nth-child(1),
html.bgImg-1 .backgrounds img:nth-child(1),
html.bgImg-1 .backgrounds img.loadImg-1,
html.bgImg-2 .backgrounds img.loadImg-2,
html.bgImg-3 .backgrounds img.loadImg-3,
html.bgImg-4 .backgrounds img.loadImg-4,
html.bgImg-5 .backgrounds img.loadImg-5,
html.bgImg-6 .backgrounds img.loadImg-6,
html.bgImg-7 .backgrounds img.loadImg-7,
html.bgImg-8 .backgrounds img.loadImg-8,
html.bgImg-9 .backgrounds img.loadImg-9,
html.bgImg-10 .backgrounds img.loadImg-10,
html.bgImg-11 .backgrounds img.loadImg-11,
html.bgImg-12 .backgrounds img.loadImg-12,
html.bgImg-13 .backgrounds img.loadImg-13,
html.bgImg-14 .backgrounds img.loadImg-14,
html.bgImg-15 .backgrounds img.loadImg-15,
html.bgImg-16 .backgrounds img.loadImg-16,
html.bgImg-17 .backgrounds img.loadImg-17,
html.bgImg-18 .backgrounds img.loadImg-18,
html.bgImg-19 .backgrounds img.loadImg-19,
html.bgImg-20 .backgrounds img.loadImg-20,
html.bgImg-21 .backgrounds img.loadImg-21,
html.bgImg-22 .backgrounds img.loadImg-22,
html.bgImg-23 .backgrounds img.loadImg-23,
html.bgImg-24 .backgrounds img.loadImg-24,
html.bgImg-25 .backgrounds img.loadImg-25,
html.bgImg-26 .backgrounds img.loadImg-26,
html.bgImg-27 .backgrounds img.loadImg-27,
html.bgImg-28 .backgrounds img.loadImg-28,
html.bgImg-29 .backgrounds img.loadImg-29,
html.bgImg-30 .backgrounds img.loadImg-30,
html.bgImg-31 .backgrounds img.loadImg-31,
html.bgImg-32 .backgrounds img.loadImg-32,
html.bgImg-33 .backgrounds img.loadImg-33,
html.bgImg-34 .backgrounds img.loadImg-34,
html.bgImg-35 .backgrounds img.loadImg-35,
html.bgImg-36 .backgrounds img.loadImg-36,
html.bgImg-37 .backgrounds img.loadImg-37,
html.bgImg-38 .backgrounds img.loadImg-38,
html.bgImg-39 .backgrounds img.loadImg-39,
html.bgImg-40 .backgrounds img.loadImg-40 {
  opacity: 1;
}
/* -------------------------------------------------
                 BG SLIDER ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     AGENTS STARTS
----------------------------------------------------------------------------------------------------- */
.pg-agents .agents-wrapper {
  height: 80%;

  margin: 5% 0;
  width: 100%;

  margin: 5% 10%;
  width: 80%;
  position: relative;
}
.pg-agents .agents-wrapper > section {
  width: 100%;
  height: 300%;
  position: relative;
}
.pg-agents .agents-wrapper > section article {
  width: 100%;
  height: 33.3%;
  position: absolute;
}
.pg-agents .agents-wrapper > section article .backgrounds img{
  opacity: 1;
}
.pg-agents .agents-wrapper > section article > p {
  margin: 300px 0;
  font-size: 98px;
}
.pg-agents .agents-wrapper > section article:nth-child(1) {
  transform: translateX(0) translateY(0%) translateZ(0px);
  -ms-transform: translateX(0) translateY(0%) translateZ(0px);
  -moz-transform: translateX(0) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(0%) translateZ(0px);
}
.pg-agents .agents-wrapper > section article:nth-child(2) {
  transform: translateX(0) translateY(100%) translateZ(0px);
  -ms-transform: translateX(0) translateY(100%) translateZ(0px);
  -moz-transform: translateX(0) translateY(100%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(100%) translateZ(0px);
}
.pg-agents .agents-wrapper > section article:nth-child(3) {
  transform: translateX(0) translateY(200%) translateZ(0px);
  -ms-transform: translateX(0) translateY(200%) translateZ(0px);
  -moz-transform: translateX(0) translateY(200%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(200%) translateZ(0px);
}
.pg-agents .agents-wrapper > section article:nth-child(4) {
  transform: translateX(0) translateY(300%) translateZ(0px);
  -ms-transform: translateX(0) translateY(300%) translateZ(0px);
  -moz-transform: translateX(0) translateY(300%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(300%) translateZ(0px);
}
/* -------------------------------------------------
                 AGENTS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     AGENTS DASHBOARD STARTS
----------------------------------------------------------------------------------------------------- */
.agent-dashboard {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  display: block;
}
.agent-dashboard > li {
  position: relative;
  width: 50%;
  height: auto;
  float: left;
  display: block;
}
.agent-dashboard > li.agent-profile {
  width: 55%;
}
.agent-dashboard > li.agent-profile > .sizer {
  padding-top: 80%;
}
.agent-dashboard > li.agent-sections {
  width: 45%;
}
.floodLights {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.floodLights > li {
  position: absolute;
  width: 25.9%;
  bottom: 28%;
}
.floodLights > li img {
  width: 100%;
  height: auto;
}
.floodLights > li:nth-child(1) {  
  animation: light01 3s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;  
  transform-origin: center bottom 0;
    
  -ms-animation: light01 3s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center bottom 0;
    
  -moz-animation: light01 3s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center bottom 0;
    
  -webkit-animation: light01 3s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center bottom 0;
  
  left: 20%
}
.floodLights > li:nth-child(2) {
  animation: light02 2s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;  
  transform-origin: center bottom 0;
  
  -ms-animation: light02 2s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center bottom 0;
  
  -moz-animation: light02 2s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center bottom 0;
  
  -webkit-animation: light02 2s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center bottom 0;
  
  left: 30%
}
.floodLights > li:nth-child(3) {
  animation: light03 3.5s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;  
  transform-origin: center bottom 0;
  
  -ms-animation: light03 3.5s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center bottom 0;
  
  -moz-animation: light03 3.5s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center bottom 0;
  
  -webkit-animation: light03 3.5s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center bottom 0;
  
  right: 30%
}
.floodLights > li:nth-child(4) {
  animation: light04 2.5s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;  
  transform-origin: center bottom 0;
  
  -ms-animation: light04 2.5s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center bottom 0;
  
  -moz-animation: light04 2.5s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center bottom 0;
  
  -webkit-animation: light04 2.5s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center bottom 0;
  
  right: 20%;
}
.stage {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.stage > li {
  position: absolute;
}
.stage > li.banner {
  left: 50%;
  width: 54.55%;
  margin-left: -27.275%;
  top: 15%;
  text-shadow: 0 2px rgba(0,0,0,0.5);
}

.stage > li.banner,
.stage > li.platform {
  left: 50%;
  width: 85%;
  margin-left: -42.5%;
    font-size: 0.5em;
}
[data-overlay="awards"] .stage > li.banner {
  width: 100%;
  margin-left: -50%;
}
.stage > li.banner span {
  position: absolute;
  
  height: 50%;
  top: 15%;

  width: 100%;
  left: 0;

  font-weight: 900;
  text-transform: uppercase;
  color: #ffcf00;
}
.stage > li.banner span {
  font-size: 1.65em;
}
[data-overlay="awards"] .stage > li.banner span { 
  font-size: 1.5em;
}
.stage > li.banner img {
  width: 100%;
  height: auto;
}
.stage > li.platform {
  bottom: 37%;
  left: 50%;  
  width: 73.75%;
  
  margin-left: -35.475%;
  height: auto;

  left: 50%;
  
    width: 100%;
    margin-left: -50%;
}
.stage > li.platform img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.stars {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.stars li {
  width: 6.65%;
  position: absolute;
  left: 50%;
  margin-left: -3.5%;
  bottom: 25%;
}
.stars li img {
  width: 100%;
  height: auto;
}
.stars li:nth-child(1) {
  animation-name: star01;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-name: star01;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-name: star01;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-name: star01;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li img {
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(2) {
  animation-delay: 250ms;
  animation-name: star02;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 250ms;
  -ms-animation-name: star02;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 250ms;
  -moz-animation-name: star02;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 250ms;
  -webkit-animation-name: star02;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(2) img {
  animation-delay: 250ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 250ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 250ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 250ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(3) {
  animation-delay: 500ms;
  animation-name: star03;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 500ms;
  -ms-animation-name: star03;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 500ms;
  -moz-animation-name: star03;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 500ms;
  -webkit-animation-name: star03;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(3) img {
  animation-delay: 500ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 500ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 500ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 500ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(4) {
  animation-delay: 750ms;
  animation-name: star04;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 750ms;
  -ms-animation-name: star04;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 750ms;
  -moz-animation-name: star04;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 750ms;
  -webkit-animation-name: star04;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(4) img {
  animation-delay: 750ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 750ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 750ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 750ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(5) {
  animation-delay: 1000ms;
  animation-name: star05;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1000ms;
  -ms-animation-name: star05;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1000ms;
  -moz-animation-name: star05;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1000ms;
  -webkit-animation-name: star05;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(5) img {
  animation-delay: 1000ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1000ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1000ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1000ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(6) {
  animation-delay: 1250ms;
  animation-name: star06;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1250ms;
  -ms-animation-name: star06;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1250ms;
  -moz-animation-name: star06;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1250ms;
  -webkit-animation-name: star06;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(6) img {
  animation-delay: 1250ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1250ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1250ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1250ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(7) {
  animation-delay: 250ms;
  animation-name: star07;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 250ms;
  -ms-animation-name: star07;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 250ms;
  -moz-animation-name: star07;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 250ms;
  -webkit-animation-name: star07;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(7) img {
  animation-delay: 250ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 250ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 250ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 250ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(8) {
  animation-delay: 500ms;
  animation-name: star08;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 500ms;
  -ms-animation-name: star08;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 500ms;
  -moz-animation-name: star08;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 500ms;
  -webkit-animation-name: star08;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(8) img {
  animation-delay: 500ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 500ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 500ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 500ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(9) {
  animation-delay: 750ms;
  animation-name: star09;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 750ms;
  -ms-animation-name: star09;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 750ms;
  -moz-animation-name: star09;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 750ms;
  -webkit-animation-name: star09;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(9) img {
  animation-delay: 750ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 750ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 750ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 750ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(10) {
  animation-delay: 1000ms;
  animation-name: star10;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1000ms;
  -ms-animation-name: star10;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1000ms;
  -moz-animation-name: star10;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1000ms;
  -webkit-animation-name: star10;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(10) img {
  animation-delay: 1000ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1000ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1000ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1000ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(11) {
  animation-delay: 1250ms;
  animation-name: star11;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1250ms;
  -ms-animation-name: star11;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1250ms;
  -moz-animation-name: star11;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1250ms;
  -webkit-animation-name: star11;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(11) img {
  animation-delay: 1250ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 1250ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 1250ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 1250ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(12) {
  animation-delay: 0ms;
  animation-name: star12;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 0ms;
  -ms-animation-name: star12;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 0ms;
  -moz-animation-name: star12;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 0ms;
  -webkit-animation-name: star12;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stars li:nth-child(12) img {
  animation-delay: 0ms;
  animation-name: starAnim;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;  
  transform-origin: center center 0;
  
  -ms-animation-delay: 0ms;
  -ms-animation-name: starAnim;
  -ms-animation-duration: 2.5s;
  -ms-animation-timing-function: ease-in-out;
  -ms-animation-iteration-count: infinite;  
  -ms-transform-origin: center center 0;
  
  -moz-animation-delay: 0ms;
  -moz-animation-name: starAnim;
  -moz-animation-duration: 2.5s;
  -moz-animation-timing-function: ease-in-out;
  -moz-animation-iteration-count: infinite; 
  -moz-transform-origin: center center 0;
  
  -webkit-animation-delay: 0ms;
  -webkit-animation-name: starAnim;
  -webkit-animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;  
  -webkit-transform-origin: center center 0;
  
}
.stage .photo {
    width: 46.75%;
    left: 50%;
    bottom: 1%;
    margin-left: -25%;
    height: 100%;
}
[data-pbs-login="false"] .stage .photo {
  left: 50%;
  width: 32%;
  margin-left: -15%;
  
    width: 56%;
    margin-left: -28%;
}
.stage .photo img {
  width: 100%;
  height: auto;
  position: absolute;
}

.stage .photo canvas {
  width: 120%;
  height: auto;
  position: absolute;
  top:27%;
  left:-12%;
}

.stage .photo img.yespbs {
  bottom: 28%;
}
.stage .photo img.nopbs {
  bottom: 34%;
}
.stage .badge {
  background-image: url(/oddsquad/img/agents/shield-01.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 46%;
    position: absolute;
    bottom: 4%;
    left: 50%;
    margin-left: -23%;
}
.stage .join {
  width: 100%;
  position: absolute;
  bottom: 16%;
  left: 0;
  font-size: 2rem;
}
.stage .join .btn-enter .sizer {
    padding-top: 38.5%;
}
.stage .join .btn-enter {
  width: 54%;
  left: 50%;
  margin-left: -27%;

    position: relative;
    display: block;
}
.stage .join .btn-enter .sized {
    background-size: cover;
    color: #b51617;
    text-shadow: 2px 2px 0 rgba(255,255,255,0.3);
    background-image: url(/oddsquad/img/createagent/btn-yellow.png);
}

.stage .edit {
  width: 25%;
  max-width: 75px;
  float: left;
  top: 58%;
  right: 20%;
}
.stage .edit .btn-edit {
  width: 100%;
  position: relative;
  float: left;
  margin: 5px 0;
}
.stage .edit .btn-edit .sizer {
  padding-top: 78.571428571428571428571428571429%;
}
.stage .edit .btn-edit .sized {
  background-image: url(/oddsquad/img/global/btn-bg-sm.png);
  background-size: 100% 100%;
  background-position: center center;
}
.stage .edit .btn-edit i {
  position: absolute;
  top: calc(50% - 9px);
  left: 50%;
  transition: all 0.20s ease-out;
  -ms-transition: all 0.20s ease-out;
  -moz-transition: all 0.20s ease-out;
  -webkit-transition: all 0.20s ease-out;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.stage .edit .btn-edit i:before {
  font-family: 'FontAwesome';
  content: '\f040';
  font-weight: 900;
  font-size: 0.65em;
  color: #b51617;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.3);
}
.stage .join .btn-enter .sized span {
  white-space: nowrap;
  position: absolute;
  top: 49%;
  left: 50%;
  width: 100%;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  font-weight: 900;
  text-transform: uppercase;
}
/*
.stage .join .btn-enter .sized:before {
    content: '';
    display: inline-block;
    height: 96%;
    vertical-align: middle;
    margin-right: -0.25em;
}
*/
.stage .badge .sizer {
  padding-top: 109%;
}
.stage .badge span {
  font-weight: 900;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  
  margin-top: 20%;
  display: block;
}
.stage .badge span em {
  display: block;
  width: 100%;
  line-height: 0.85em;
  font-size: 3em;
}
.agent-sections ul {
  height: 80%;
  margin: 5% 10% 10% 0;
}
.agent-sections li {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 53px;
  opacity: 0;
  transform: translateX(0px) translateY(50px) translateZ(0px);
  -ms-transform: translateX(0px) translateY(50px) translateZ(0px);
  -moz-transform: translateX(0px) translateY(50px) translateZ(0px);
  -webkit-transform: translateX(0px) translateY(50px) translateZ(0px);
}
.agent-sections li .sizer {
  padding-top: 25.5%;
}
.agent-sections li .sized {
  margin-top: 43px;
}
.agent-sections li.sec-hod .featured {
  width: auto;
  height: 120%;
  position: absolute;
  top: -10%;
  right: 8%;
}
.agent-sections li.sec-awards .featured {
  width: auto;
  //height: 100%;
  height: 150%;
  position: absolute;
  //top: 0;
  //right: -3%;
  top: -25%;
  right: -9%;
}
.agent-featured {
  width: 50%;
  left: 10%;
  height: 100%;
  position: absolute;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-family: "refrigerator-deluxe", Arial, Helvetica, sans-serif;
  text-align: left;
}
.agent-sections li .content {
  background-image: url(/oddsquad/img/agents/bg-02.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;  
}
.agent-sections li.sec-woa .content h5 {
  font-size: 0.75em;
  font-weight: 900;
  color: #7df051;
  margin-top: 9%;
}
.agent-sections li.sec-woa .content span {
  font-size: 1.5em;
  text-shadow: 0 0 20px #fff;
  margin-top: -5%;
  display: block;
  text-align: center;
}
.agent-sections li.sec-woa .content img {
  width: auto;
  height: 80%;
  position: absolute;
  bottom: 15%;
  right: 11%;
}
.agent-sections li i {
  color: #ffcf00;
  margin: 0 5px;
  font-size: 0.85em;
}
.agent-sections li.sec-woa .content {
  background-image: url(/oddsquad/img/agents/bg-02-woa.png);
}
.agent-sections li.sec-woa i:before { 
  content: "\e606";
}
.agent-sections li.sec-hod .content {
  background-image: url(/oddsquad/img/agents/bg-02-hod.png);
}
.agent-sections li.sec-hod i:before { 
  content: "\e50e";
}
.agent-sections li.sec-awards .content {
  background-image: url(/oddsquad/img/agents/bg-02-awards.png);
}
.agent-sections li.sec-awards i:before {  
  content: "\e515";
}
.agent-sections li h4 {
  height: 43px;
  min-width: 35%;
  position: absolute;
  background: url(/oddsquad/img/agents/title-02.png);
  top: 5px;
  left: 17%;
  color: #fff;
  font-size: 0.6em;
  padding-top: 17px;
  text-transform: uppercase;
  font-weight: 900;
  
/* default speed and position */
    transition: all 0ms ease-in-out 0ms;
  transform: translateX(0px) translateY(0px) translateZ(0px);
    -ms-transition: all 0ms ease-in-out 0ms;
  -ms-transform: translateX(0px) translateY(0px) translateZ(0px);
    -moz-transition: all 0ms ease-in-out 0ms;
  -moz-transform: translateX(0px) translateY(0px) translateZ(0px);
    -webkit-transition: all 0ms ease-in-out 0ms;
  -webkit-transform: translateX(0px) translateY(0px) translateZ(0px);
}

.agent-sections li h4 ~ div {
  position: absolute;
}
/* stager the display animation */
.active .agent-sections li:nth-child(1) {
    transition: all 500ms ease-in-out 0ms;
    -ms-transition: all 500ms ease-in-out 0ms;
    -moz-transition: all 500ms ease-in-out 0ms;
    -webkit-transition: all 500ms ease-in-out 0ms;  
}
.active .agent-sections li:nth-child(1) h4 {
    transition: all 250ms ease-in-out 200ms;
    -ms-transition: all 250ms ease-in-out 200ms;
    -moz-transition: all 250ms ease-in-out 200ms;
    -webkit-transition: all 250ms ease-in-out 200ms;
}
.active .agent-sections li:nth-child(2) {
    transition: all 500ms ease-in-out 300ms;
    -ms-transition: all 500ms ease-in-out 300ms;
    -moz-transition: all 500ms ease-in-out 300ms;
    -webkit-transition: all 500ms ease-in-out 300ms;  
}
.active .agent-sections li:nth-child(2) h4 {
    transition: all 250ms ease-in-out 500ms;
    -ms-transition: all 250ms ease-in-out 500ms;
    -moz-transition: all 250ms ease-in-out 500ms;
    -webkit-transition: all 250ms ease-in-out 500ms;
}
.active .agent-sections li:nth-child(3) {
    transition: all 500ms ease-in-out 600ms;
    -ms-transition: all 500ms ease-in-out 600ms;
    -moz-transition: all 500ms ease-in-out 600ms;
    -webkit-transition: all 500ms ease-in-out 600ms;  
}
.active .agent-sections li:nth-child(3) h4 {
    transition: all 250ms ease-in-out 800ms;
    -ms-transition: all 250ms ease-in-out 800ms;
    -moz-transition: all 250ms ease-in-out 800ms;
    -webkit-transition: all 250ms ease-in-out 800ms;
}
/* apply the new position to animate into */
.active .agent-sections li {
  opacity: 1;
  transform: translateX(0px) translateY(0px) translateZ(0px);
  -ms-transform: translateX(0px) translateY(0px) translateZ(0px);
  -moz-transform: translateX(0px) translateY(0px) translateZ(0px);
  -webkit-transform: translateX(0px) translateY(0px) translateZ(0px);
}
.active .agent-sections li h4 {
  transform: translateX(0px) translateY(-43px) translateZ(0px);
  -ms-transform: translateX(0px) translateY(-43px) translateZ(0px);
  -moz-transform: translateX(0px) translateY(-43px) translateZ(0px);
  -webkit-transform: translateX(0px) translateY(-43px) translateZ(0px);
}
.agent-sections li h4 {
  top: 5px;
}
.agent-sections li h4:before,
.agent-sections li h4:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  
  height: 43px;
  width: 31px;
}
.agent-sections li h4:before {
  left: -31px;
  background:url(/oddsquad/img/agents/title-01.png);
}
.agent-sections li h4:after {
  right: -31px;
  background:url(/oddsquad/img/agents/title-03.png);
}
.agent-sections li img.bg-img {
  width: 100%;
  height: auto;
  position: relative;
}


/* ----- AWARD STATS HEX ----- */
header .user-stats {
  position: absolute;
  top: 2%;
  left: 5%;
  
  z-index: 99;
  /*
  width: 10.65%;
  */
  width: 15%;
}
header .user-stats .sizer {
  padding-top: 87%;
}
header .user-stats .sized h5,
header .user-stats .sized span {
  width: 100%;
  position: relative;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
  display: block;
}
header .user-stats h5 {
  color: #fff;
  font-size: 0.95em;
  line-height: 0.85em;
  padding-top: 17%;
}
header .user-stats span {
  color: #ffcc00;
}
.agent-sections .user-stats {
  width: 30%;
  right: 19%;
  position: absolute;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-family: "refrigerator-deluxe", Arial, Helvetica, sans-serif;
  text-shadow: 0 0 20px #fff;
}
.agent-sections .user-stats h5 {
  font-weight: 900;
  font-size: 0.75em;
  margin-top: 17%;
}
.agent-sections .user-stats span {
  margin-top: -10%;
  display: block;
}
.agent-sections .user-stats span big {
  font-size: 1.75em;
}
.agent-sections .user-stats span small {
  font-size: 0.5em;
  top: -15px;
}
.user-stats span big,
.user-stats span small {
  display: inline-block;
  position: relative;
}
header .user-stats span big {
  font-size: 2em;
}
header .user-stats span small {
  font-size: 0.75em;
  top: -15px;
}
.award-container {
  width: 90%;
  margin: 0 5%;
  position: relative;
  float: left;
  clear: both;
}
.award-container > .sizer {
  padding-top: 40%;
}
.award-details{
  position: relative;
  left: 50%;
  top: -10%;
  width: 32%;
  margin-left: -19%;
  float: left;
  clear: both;
}
.award-details .sizer {
  padding-top: 30%;
}
.award-details .sized .game-hex img {
  height: 150%;
  width: auto;
  position: absolute;
}
.award-details .sized .game-hex {
  height: 100%;
  top: -25%;
  display: block;
  position: absolute;
  right: 25%;
}
.award-details .sized {
  padding: 5.5% 0 0;
}
.award-details .sized > .sized-bg {
  height: 100%;
}
.award-details .sized h4,
.award-details .sized p {
  width: 65%;
  margin-left: 10%;
  text-align: center;
  font-weight: 600;
}
.award-details .sized h4 {
  text-transform: uppercase;
  font-size: 0.8em;
  color: #ffcc00;
  display: none;
}
.award-details .sized p {
  color: #fff;
  font-size: 0.65em;
}
/* -------------------------------------------------
                 AGENTS DASHBOARD ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     AGENTS SUB-SECTION STARTS
----------------------------------------------------------------------------------------------------- */
.pg-agents .agents-section-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 99;
  
  width: 75%;
  margin: 0 13.5%;
}
.pg-agents .agents-section-wrapper > section {
  height: 100%;
  position: relative;
  z-index: 99;
  
  /* 4 sub-sections */
  width: 400%;
}
.pg-agents .agents-section-wrapper > section article {
  height: 100%;
  position: absolute;
  z-index: 99;
  
  /* 4 sub-sections */
  width: 25%;
}
.pg-agents .agents-section-wrapper > section article > p {
  margin: 300px 0;
  
  font-size: 38px;
  font-size: 1em;
  
  color: #62fa7b;
  
  text-shadow: 0 0 10px #63f46a;
  margin: 100px 0 0;
}
.pg-agents .agents-section-wrapper > section article:nth-child(1) {
  transform: translateX(0%) translateY(0%) translateZ(0px);
  -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
  -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
}
.pg-agents .agents-section-wrapper > section article:nth-child(2) {
  transform: translateX(100%) translateY(0%) translateZ(0px);
  -ms-transform: translateX(100%) translateY(0%) translateZ(0px);
  -moz-transform: translateX(100%) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(100%) translateY(0%) translateZ(0px);
}
.pg-agents .agents-section-wrapper > section article:nth-child(3) {
  transform: translateX(200%) translateY(0%) translateZ(0px);
  -ms-transform: translateX(200%) translateY(0%) translateZ(0px);
  -moz-transform: translateX(200%) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(200%) translateY(0%) translateZ(0px);
}
.pg-agents .agents-section-wrapper > section article:nth-child(4) {
  transform: translateX(300%) translateY(0%) translateZ(0px);
  -ms-transform: translateX(300%) translateY(0%) translateZ(0px);
  -moz-transform: translateX(300%) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(300%) translateY(0%) translateZ(0px);
}
.pg-agents .agents-section-wrapper > section article img.bg-image {
  width: 90%;
  margin: 0 5%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.pg-agents .agents-section-wrapper > section article h5{
  z-index: 99;
  position: relative;

  font-size: 46px;
  font-size: 1.25em;
  
  font-weight: 900;
  text-transform: uppercase;
  top: 10%;
  color: #fff;
  text-shadow: 0 0 10px #63f46a;
}
.pg-villans .villans-section-wrapper > section article dl,
.overlay.overlay-villans .agent-details,
.pg-agents .agents-section-wrapper > section article dl,
[data-overlay="wallofagents"] .agent-details {
  position: absolute;
  z-index: 0;
  color: #62fa7b;
  text-align: left;
  font-size: 1em;
}
.pg-agents .agents-section-wrapper > section article dl {
  left: 45%;
  top: 15%;
  width: 40%;
  
}
.overlay.overlay-villans .villan-details {
  cursor: pointer;
}
.overlay.overlay-villans .villan-details.show,
[data-overlay="wallofagents"] .agent-details.show {
  opacity: 1;
}
.overlay.overlay-villans .villan-details figure,
[data-overlay="wallofagents"] .agent-details figure {
  position: absolute;
  width: 25%;
  float: left;
  margin-left: 15%;
  top: 13%;
}
.overlay.overlay-villans .villan-details figure {
  top: 8%;
}
.overlay.overlay-villans .villan-details figure img,
[data-overlay="wallofagents"] .agent-details figure img {
  width: 100%;
  height: auto;
  border: 10px solid rgba(255,255,255,0.85);
  box-shadow: 0 0 10px #f00044;
}

.overlay.overlay-villans .villan-details a.close-villan,
[data-overlay="wallofagents"] .agent-details a.close-agent {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  bottom: 0;
  position: relative;
  float: left;
  clear: both;
  font-size: 0.5em;
  width: 25%;
  margin-left: -12.5%;
  left: 65%;
  text-align: center;
  margin-top: 20px;
}
.agent-details a.close-agent.btn-green .sizer,
.villan-details a.close-villan.btn-green .sizer {
  padding-top: 38.5%;
}
.agent-details a.close-agent.btn-green .sized {
  background-image: url(../img/hexagons/btn-hex.png);
  background-size: cover;
}
.villan-details a.close-villan.btn-green .sized {
  background-image: url(../img/hexagons/btn-hex-red.png);
  background-size: cover;
}
.agent-details a.close-agent.btn-green .sized:before,
.villan-details a.close-villan.btn-green .sized:before {
  content: '';
  display: inline-block;
  height: 96%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.agent-details a.close-agent.btn-green .sized span,
.villan-details a.close-villan.btn-green .sized span {
  font-size: 1.5em;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255,255,255,0.25), 0 0 10px rgba(255,255,255,0.25), 0 0 10px rgba(255,255,255,0.25), 0 0 10px rgba(255,255,255,0.25), 0 0 10px rgba(255,255,255,0.25), 0 0 10px rgba(255,255,255,0.25);
}
.overlay.overlay-villans .villan-details a.close-villan {
  margin-top: 50px;
}
.overlay.overlay-villans .villan-details,
[data-overlay="wallofagents"] .agent-details {
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  -ms-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -webkit-transition: opacity 500ms ease-in-out;
  /*
  left: 38%;
  width: 44%;
  top: 20%;
  height: 65%;
  padding: 3%;
  */
}
.pg-villans .villans-section-wrapper > section article dl dt.name,
.overlay.overlay-villans .villan-details dt.name,
.pg-agents .agents-section-wrapper > section article dl dt.name,
[data-overlay="wallofagents"] .agent-details dt.name{
  text-shadow: 0 0 10px #63f46a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 2em;
}
.overlay.overlay-villans .villan-details dt.name,
[data-overlay="wallofagents"] .agent-details dt.name {
  margin-top: 2.5%;
  width: 50%;
}
.overlay.overlay-villans .villan-details dt.name {
  text-shadow: 0 0 10px #f00044;
  color: #fff;
  margin-top: 7.5%;
}
.pg-villans .villans-section-wrapper > section article dl dt,
.pg-villans .villans-section-wrapper > section article dl dd,
.overlay.overlay-villans .villan-details dt,
.overlay.overlay-villans .villan-details dd,
.pg-agents .agents-section-wrapper > section article dl dt,
.pg-agents .agents-section-wrapper > section article dl dd,
[data-overlay="wallofagents"] .agent-details dt,
[data-overlay="wallofagents"] .agent-details dd {
  float: left;
  margin-top: 1%;
  /*
  line-height: 60px;
  */
  position: relative;
  left: 45%;
  width: 15%;
  font-size: 0.75em;
}
.pg-villans .villans-section-wrapper > section article dl dt,
.overlay.overlay-villans .villan-details dt,
.pg-agents .agents-section-wrapper > section article dl dt,
[data-overlay="wallofagents"] .agent-details dt {
  font-weight: 300;
  clear: both;
  left: 45%;
  position: relative;
}

.pg-villans .villans-section-wrapper > section article dl dd,
.overlay.overlay-villans .villan-details dd,
.pg-agents .agents-section-wrapper > section article dl dd,
[data-overlay="wallofagents"] .agent-details dd {
  font-weight: 600;
  padding-left: 10px;
  left: 40%;
  width: 30%;
}
.pg-villans .villans-section-wrapper > section article dl dt,
.overlay.overlay-villans .villan-details dt,
.pg-villans .villans-section-wrapper > section article dl dd,
.overlay.overlay-villans .villan-details dd {
  color: #fff;
  text-shadow: 0 0 10px #f00044;
}
.pg-agents .agents-section-wrapper > section article img.agent-photo {
  position: absolute;
  z-index: 0;
  right: 60%;
  top: 20%;
}

.pg-agents .agents-section-wrapper > section article figure {
  float: left;
  position: relative;
  left: 10%;
  width: 30%;
  top: 15%;
}
.pg-agents .agents-section-wrapper > section article figure img {
  width: 100%;
  height: auto;
}
/* ----- AGENT NAV ----- */
.agentNav,
.awardsNav,
.doorsNav,
.wallofagentsNav {
  position: absolute;
  top: 1%;
  right: 2.5%;
  width: 100%;
  z-index: 999;
}
.agents-wrapper .awardsNav,
.agents-wrapper .agentNav {
  right: 0;
  top: 45%;
}
.awardsNav a,
.doorsNav a,
.wallofagentsNav a,
.agentNav a {
  z-index: 999;
  display: block;
  height: 100%;
  line-height: 50px;
  text-align: center;
  width: 150px;
  float: left;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.5;
  color: #62ff7a;
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 0px 2px rgba(0,0,0,0.25);
    transition: opacity 500ms ease-out;
}
.awardsNav a:hover,
.agentNav a:hover,
.doorsNav a:hover,
.wallofagentsNav a:hover {
  opacity: 1;
}
.awardsNav a.btn-prev,
.agentNav a.btn-prev,
.doorsNav a.btn-prev,
.wallofagentsNav a.btn-prev {
  left: 7.5%;
}
.awardsNav a.btn-next,
.agentNav a.btn-next,
.doorsNav a.btn-next ,
.wallofagentsNav a.btn-next {
  right: 7.5%;
}
.awardsNav a.btn-prev:before,
.awardsNav a.btn-next:before,
.agentNav a.btn-prev:before,
.agentNav a.btn-next:before,
.doorsNav a.btn-prev:before,
.doorsNav a.btn-next:before,
.wallofagentsNav a.btn-prev:before,
.wallofagentsNav a.btn-next:before {
  font-family: 'oddsquad-icons';
  font-size: 124px;
  text-shadow: 0 0 10px #63f46a;
}
.awardsNav a.btn-prev:before,
.agentNav a.btn-prev:before,
.doorsNav a.btn-prev:before,
.wallofagentsNav a.btn-prev:before,
footer nav a.btn-prev i:before {
  content: "\e60b"
}
.awardsNav a.btn-next:before,
.agentNav a.btn-next:before,
.doorsNav a.btn-next:before,
.wallofagentsNav a.btn-next:before,
footer nav a.btn-next i:before {
  content: "\e60a"
}
/* ----- AWARDS ----- */
.agents-section-wrapper-2 .btn-green {
  right: 5%;
  left: auto;
  margin-left: 0;
  width: 500px;
}
.agents-section-wrapper-2 .btn-green.btn-signup {
  left: 5%;
  margin-left: 0;
  width: 500px;

}
/* ----- DOORS ----- */
.agents-section-wrapper-3 .btn-green {

}
.keyexample {
  text-align: center;
  width: 300px;
  display: inline-block;
  margin-right: 100px;
}
.keyexample img {
  margin: 15px 0;
}
.keyexample span {
  display: block;
  width: 100%;
/*
  color: #62fa7b;
*/
  font-size: 26px;
  font-weight: 900;
  text-shadow: 0 0 10px #63f46a;
  color: #fff;
  text-transform: uppercase;
}
.keyexample span em {
  font-weight: 400;
}
/* -------------------------------------------------
                 AGENTS SUB-SECTION ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     TEMP STARTS
----------------------------------------------------------------------------------------------------- */
.doors-wrapper,
.woa-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
}
.woa-wrapper section,
.doors-wrapper section {
  width: 100%;
  height: 100%;
  position: relative;
}
.doors-wrapper section article,
.woa-wrapper section article {
  top: 0;
  left: 0;
  height: 100%;
  position: absolute;
}
.doors-wrapper section article,
.woa-wrapper section article {
  width: 100%;
}
.woa-wrapper section article:nth-child(2) {
  transform: translateX(100%) translateY(0) translateZ(0px);  
  -ms-transform: translateX(100%) translateY(0) translateZ(0px);  
  -moz-transform: translateX(100%) translateY(0) translateZ(0px); 
  -webkit-transform: translateX(100%) translateY(0) translateZ(0px);  
}
/* ----- AWARDS LISTING ----- */
[data-overlay="awards"] .awardsNav {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

[data-overlay="awards"] .awardsNav .btn-prev,
[data-overlay="awards"] .awardsNav .btn-next,
[data-overlay="doors"] .doorsNav .btn-prev,
[data-overlay="doors"] .doorsNav .btn-next {
  top: 50%;
}


.doors-wrapper section article {
  height: 25%;
}
.doors-wrapper section article:nth-child(1) {
  transform: translateX(0) translateY(0%) translateZ(0px);
  -ms-transform: translateX(0) translateY(0%) translateZ(0px);
  -moz-transform: translateX(0) translateY(0%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(0%) translateZ(0px);
}
.doors-wrapper section article:nth-child(2) {
  transform: translateX(0) translateY(100%) translateZ(0px);
  -ms-transform: translateX(0) translateY(100%) translateZ(0px);
  -moz-transform: translateX(0) translateY(100%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(100%) translateZ(0px);
}
.doors-wrapper section article:nth-child(3) {
  transform: translateX(0) translateY(200%) translateZ(0px);
  -ms-transform: translateX(0) translateY(200%) translateZ(0px);
  -moz-transform: translateX(0) translateY(200%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(200%) translateZ(0px);
}
.doors-wrapper section article:nth-child(4) {
  transform: translateX(0) translateY(300%) translateZ(0px);
  -ms-transform: translateX(0) translateY(300%) translateZ(0px);
  -moz-transform: translateX(0) translateY(300%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(300%) translateZ(0px);
}
.doors-wrapper section {
  height: 400%;
}
.doors-wrapper section article figure {
  width: 100%;
  height: 100%;
  position: absolute;
  text-align: center;
}
/* -------------------------------------------------
                 TEMP ENDS
------------------------------------------------- */
/* -----------------------------------------------------------------------------------------------------
                                     AWARDS OVERLAY STARTS
----------------------------------------------------------------------------------------------------- */
[data-overlay="awards"] .floodLights,
[data-overlay="awards"] .stars {
    transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
  opacity: 0;
}
[data-overlay="awards"].animate .floodLights,
[data-overlay="awards"].animate .stars {
  opacity: 1;
}
.doors-wrapper {
  float: left;
  min-height: 10px;
  position: relative;
  width: 25%;
  
  bottom: -10%;
  left: 50%;
  margin-left: -12.5%;
}
.doors-lst {
  position: absolute;
  width: 2700%;
}
.doors-lst > li {
  overflow: hidden;
  position: relative;
  width: 3.703%;
  height: 100%;
  display: block;
  float: left;
  text-align: center;
  cursor: pointer;
}
.doors-lst > li h4 {
  background-image: url(../img/doors/title-bg.png);
  background-size: 100% 100%;
  height: 49px;
  width: 80%;
  position: absolute;
  left: 50%;
margin-left: -40%;
  color: #0ebd23; 
  font-size: 24px;
  line-height: 48px;
  text-transform: uppercase;
  top: 5%;
}
.doors-lst > li div {
  transition: all 500ms ease-in-out 250ms;
  -ms-transition: all 500ms ease-in-out 250ms;
  -moz-transition: all 500ms ease-in-out 250ms;
  -webkit-transition: all 500ms ease-in-out 250ms;
}
.doors-lst > li div.sizer {
  padding-top: 140%;
}
.doors-lst > li .award-lock {
  position: absolute;
  bottom: 130px;
  left: 50%;
  margin-left: -50px;
}
.doors-lst > li .award-lock img {
  width: 100%;
  height: auto;
  top: 0;
  position: absolute;
  opacity: 0;
}
.doors-lst > li[data-status="locked"] .award-lock .key-locked{
  opacity: 1;
}
.doors-lst > li[data-status="unlocked"] .award-lock .key-unlocked{
  opacity: 1;
}
.doors-lst > li[data-status="viewed"] .award-lock {
  opacity: 0;
}
.doors-lst > li[data-status="locked"] .door-open,
.doors-lst > li[data-status="unlocked"] .door-open {
  opacity: 0;
}
.doors-lst > li[data-status="locked"] .door-closed,
.doors-lst > li[data-status="unlocked"] .door-closed {
  opacity: 1;
}
.doors-lst > li[data-status="viewed"] .door-closed {
  opacity: 0;
}
.doors-lst > li[data-status="viewed"] .door-open {
  opacity: 1;
  
}
.doors-lst .door-door img {
  height: auto;
  position: absolute;
  width: 66%;
  bottom: 0;
  left: 50%;
  margin-left: -33%;
}
.doors-lst .door-door  {
  bottom: 0%;
  height: 100%;
  position: absolute;
  width: 100%;
}
.award-wrapper {
  float: left;
  min-height: 10px;
  position: relative;
  width: 15%;
  
  bottom: -10%;
  left: 50%;
  margin-left: -7.5%;
}
.award-lst {
  position: absolute;
  width: 2700%;
}
.award-lst > li {
  overflow: hidden;
  position: relative;
  width: 3.703%;
  height: 100%;
  display: block;
  float: left;
  text-align: center;
}
.award-lst > li {
  opacity: 0;
  transform:  translateX(0) translateY(40%) translateZ(0px) scale(0.5);
    transition: all 600ms ease-in-out;
  
  -ms-transform:  translateX(0) translateY(40%) translateZ(0px) scale(0.5);
    -ms-transition: all 600ms ease-in-out;
  
  -moz-transform:  translateX(0) translateY(40%) translateZ(0px) scale(0.5);
    -moz-transition: all 600ms ease-in-out;
  
  -webkit-transform:  translateX(0) translateY(40%) translateZ(0px) scale(0.5);
    -webkit-transition: all 600ms ease-in-out;
  
}
.award-lst > li.next3,
.award-lst > li.prev3 {
  opacity: 0.25;
    transition: all 500ms ease-in-out;
  transform: translateX(0) translateY(20%) translateZ(0px) scale(0.7);
  
    -ms-transition: all 500ms ease-in-out;
  -ms-transform: translateX(0) translateY(20%) translateZ(0px) scale(0.7);
  
    -moz-transition: all 500ms ease-in-out;
  -moz-transform: translateX(0) translateY(20%) translateZ(0px) scale(0.7);
  
    -webkit-transition: all 500ms ease-in-out;
  -webkit-transform: translateX(0) translateY(20%) translateZ(0px) scale(0.7);
  
}
.award-lst > li.next2,
.award-lst > li.prev2 {
  opacity: 0.5;
    transition: all 400ms ease-in-out;
  transform: translateX(0) translateY(15%) translateZ(0px) scale(0.85);
  
    -ms-transition: all 400ms ease-in-out;
  -ms-transform: translateX(0) translateY(15%) translateZ(0px) scale(0.85);
  
    -moz-transition: all 400ms ease-in-out;
  -moz-transform: translateX(0) translateY(15%) translateZ(0px) scale(0.85);
  
    -webkit-transition: all 400ms ease-in-out;
  -webkit-transform: translateX(0) translateY(15%) translateZ(0px) scale(0.85);
  
}
.award-lst > li.next1,
.award-lst > li.prev1 {
  opacity: 0.75;
    transition: all 300ms ease-in-out;
  transform: translateX(0) translateY(10%) translateZ(0px) scale(1);
  
    -ms-transition: all 300ms ease-in-out;
  -ms-transform: translateX(0) translateY(10%) translateZ(0px) scale(1);
  
    -moz-transition: all 300ms ease-in-out;
  -moz-transform: translateX(0) translateY(10%) translateZ(0px) scale(1);
  
    -webkit-transition: all 300ms ease-in-out;
  -webkit-transform: translateX(0) translateY(10%) translateZ(0px) scale(1);
  
}
.award-lst > li.active {
  color: red;
  opacity: 1;
    transition: all 200ms ease-in-out;
  transform: translateX(0) translateY(0px) translateZ(0px) scale(1.5);
  
    -ms-transition: all 200ms ease-in-out;
  -ms-transform: translateX(0) translateY(0px) translateZ(0px) scale(1.5);
  
    -moz-transition: all 200ms ease-in-out;
  -moz-transform: translateX(0) translateY(0px) translateZ(0px) scale(1.5);
  
    -webkit-transition: all 200ms ease-in-out;
  -webkit-transform: translateX(0) translateY(0px) translateZ(0px) scale(1.5);
  
}
.lte9 .award-lst > li.next2,
.lte9 .award-lst > li.prev2 {
    transform: scale(0.85) translate(0, 0%);
}
.lte9 .award-lst > li.next1,
.lte9 .award-lst > li.prev1 {
    transform: scale(1) translate(0, 10%);
}
.lte9 .award-lst > li.active {
    transform: scale(1.5) translate(0, 20%);
}

.award-lst > li div {
    transition: all 500ms ease-in-out 250ms;
    -ms-transition: all 500ms ease-in-out 250ms;
    -moz-transition: all 500ms ease-in-out 250ms;
    -webkit-transition: all 500ms ease-in-out 250ms;
}
.award-lst > li div img{
  width: 100%;
  height: auto;
}
.award-lst > li div.award-lid,
.award-lst > li div.award-box {
  float: left;
  position: absolute;
  width: 73%;
  left: 50%;
  margin-left: -36.5%;
  opacity: 1;
}
.award-lst > li div.award-box {
  bottom: 10%;
}
.award-lst > li div.award-lid {
  top: 35%;
}
.award-lst > li div.award-award {
  transform: translateX(0) translateY(5%) translateZ(0px) scale(0.25);
  -ms-transform: translateX(0) translateY(5%) translateZ(0px) scale(0.25);
  -moz-transform: translateX(0) translateY(5%) translateZ(0px) scale(0.25);
  -webkit-transform: translateX(0) translateY(5%) translateZ(0px) scale(0.25);
  opacity: 0;
}
.award-lst > li div.award-lock {
  float: left;
  width: 34%;
  position: absolute;
  bottom: 10%;
  right: 15%;
}
.award-lst > li[data-status="locked"] div.award-lock {
  opacity: 1;
}
.award-lst > li[data-status="locked"].active div.award-lock { 
  animation: locked 750ms ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transform-origin: top center;
  
  -ms-animation: locked 750ms ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: top center;
  
  -moz-animation: locked 750ms ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: top center;
  
  -webkit-animation: locked 750ms ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: top center;
  
}
.award-lst > li[data-status="viewed"] div.award-lock,
.award-lst > li[data-status="unlocked"] div.award-lock {
  opacity: 0;
}
.award-lst > li[data-status="viewed"] div.award-box,
.award-lst > li[data-status="unlocked"].animate div.award-box {
  transform: translateX(0) translateY(5%) translateZ(0px);
  -ms-transform: translateX(0) translateY(5%) translateZ(0px);
  -moz-transform: translateX(0) translateY(5%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(5%) translateZ(0px);
  opacity: 0;
}
.award-lst > li[data-status="viewed"] div.award-lid,
.award-lst > li[data-status="unlocked"].animate div.award-lid {
  transform: translateX(0) translateY(-125%) translateZ(0px);
  -ms-transform: translateX(0) translateY(-125%) translateZ(0px);
  -moz-transform: translateX(0) translateY(-125%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(-125%) translateZ(0px);
  opacity: 0;
}
.award-lst > li[data-status="viewed"] div.award-award,
.award-lst > li[data-status="unlocked"].animate div.award-award {
  transform: translateX(0) translateY(25%) translateZ(0px) scale(1);
  -ms-transform: translateX(0) translateY(25%) translateZ(0px) scale(1);
  -moz-transform: translateX(0) translateY(25%) translateZ(0px) scale(1);
  -webkit-transform: translateX(0) translateY(25%) translateZ(0px) scale(1);
  opacity: 1;
}

.award-lst > li div.sizer {
  padding-top: 126%;
}
.award-lst > li div.sized {
  
}
[data-overlay="awards"] .stage,
[data-overlay="awards"] .stars,
[data-overlay="awards"] .floodLights {
  position: absolute;
  width: 50%;
  left: 50%;
  margin-left: -25%;
  /*
  bottom: -10%;
  */
  height: 100%;
  top: 0;
}
[data-overlay="awards"] .stage > li.banner {
  top: 0;
}
[data-overlay="awards"] .floodLights {
  bottom: -7.5%;
}
[data-overlay="awards"] .floodLights > li:nth-child(1) {
  left: 35%;
  animation: light01 3s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transform-origin: center bottom 0;
  
  -ms-animation: light01 3s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: center bottom 0;
  
  -moz-animation: light01 3s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: center bottom 0;
  
  -webkit-animation: light01 3s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: center bottom 0;
  
}
[data-overlay="awards"] .floodLights > li:nth-child(2) {
  left: 42%;
  animation: light02 3s ease-in-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transform-origin: center bottom 0;
  
  -ms-animation: light02 3s ease-in-out;
  -ms-animation-direction: alternate;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: center bottom 0;
  
  -moz-animation: light02 3s ease-in-out;
  -moz-animation-direction: alternate;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: center bottom 0;
  
  -webkit-animation: light02 3s ease-in-out;
  -webkit-animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: center bottom 0;
  
}
[data-overlay="awards"] .stage .banner {
  font-size: 0.65em;
  text-align: center;
}
/* -------------------------------------------------
                 AWARDS OVERLAY ENDS
------------------------------------------------- */
/* -----------------------------------------------------------------------------------------------------
                                     ALERT OVERLAY STARTS
----------------------------------------------------------------------------------------------------- */
.alert-wrapper {
  width: 500px;
  height: 500px;
  left: 50%;
  top: 50%;
  position: absolute;
  margin-top: -250px;
  margin-left: -250px;
  float: left;
  padding: 40px 50px 50px 40px;
  text-align: center;
}
.alert-wrapper .btn-green {
  /*
  width: 320px;
  */
  top: 60px;
}
.alert-wrapper .alertNav {
  position: absolute;
  top: 55px;
  right: 65px;
  z-index: 5;
}
.alert-wrapper .alertNav a {
  color: #fff;
  text-shadow: 0 0 15px #4ed25c;
}
.alert-wrapper .backgrounds,
.alert-wrapper .backgrounds img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 1;
}
.alert-wrapper h4,
.alert-wrapper h5,
.alert-wrapper figure,
.alert-wrapper a {
  position: relative;
  z-index: 2;
}
.alert-wrapper figure {
  width: 100%;
  display: inline-block;
}
.alert-wrapper figure img {
  width: 60%;
  height: auto;
}
.alert-wrapper figure p,
.alert-wrapper h4,
.alert-wrapper h5 {
  display: block;
  width: 100%;
  color: #fff;
  text-shadow: 0 0 15px #4ed25c;
  font-weight: 900;
  text-transform: uppercase;
}
.alert-wrapper h4 {
  font-size: 48px;
}
.alert-wrapper h5 {
  font-size: 26px;
}
.alert-wrapper figure p {
  color: #47cb54;
  font-size: 36px;
}
/* -------------------------------------------------
                 ALERT OVERLAY ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     LOCKERS STARTS
----------------------------------------------------------------------------------------------------- */

/* -------------------------------------------------
                 LOCKERS ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     TEMP STARTS
----------------------------------------------------------------------------------------------------- */
#pbs-ga-overlay {
  display: none !important;
}
.comingSoon {
  top: 40%;
  position: absolute;
  width: 50%;
  left: 50%;
  margin-left: -25%;
  font-size: 150px;
  text-transform: uppercase;
  font-weight: 900;
  border: 7px solid #be1e2d;
  box-shadow: 0 0 10px 1px rgba(0,0,0,0.5), inset 0 0 10px 1px rgba(0,0,0,0.5);
  background-image: url(/oddsquad/img/global/bg-04.png);
  display: block;
  float: left;
  text-shadow: 0px 5px rgba(0,0,0,0.5);
  color: #ffcf00;
  transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -moz-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
}
.hiddenKey {
  position: absolute;
  top: 30%;
}
/* -------------------------------------------------
                 TEMP ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     DEBUG BOX STARTS
----------------------------------------------------------------------------------------------------- */

.info-box ::scrollbar {
    width: 12px;
}
 
.info-box ::scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
}
 
.info-box ::scrollbar-thumb {
    border-radius: 10px;
  background-color: #fff;
    /*
  box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
  */
}
.info-box {
  position: absolute;
  bottom: 50px;
  left: 20px;
  height: 400px;
  width: 400px;
  background-color: #046C9F;
  z-index: 999;
  border: 5px solid #494E68;
  color: #111F2F;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
  border-radius: 25px;
  padding: 25px;
  
  font-size: 0.4em;
  
    transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -webkit-transition: all 500ms ease-in-out;
}
.info-box.collapse {
  transform: translateX(0) translateY(95%) translateZ(0px);
  -ms-transform: translateX(0) translateY(95%) translateZ(0px);
  -moz-transform: translateX(0) translateY(95%) translateZ(0px);
  -webkit-transform: translateX(0) translateY(95%) translateZ(0px);
}
.info-box p {
  text-transform: uppercase;
  text-align: center;
  font-size: 20px;
}
.info-box dl {
  margin-top: 10px;
  color: #fff;  
  overflow-y: scroll;
  height: 70%;
}
.info-box dl dt {
  text-transform: uppercase;
  margin-top: 10px;
}
.info-box dl dd {
  text-indent: 20px;
}
.info-box dl dd:before {
  content: "-  ";
}


.info-box ul {
  width: 100%;
}
.info-box ul li {
  width: 50%;
  float: left;
  text-align: center;
}
.info-box ul li:nth-child(2n) {
  border-left: 1px solid #494E68;
}
.info-box ul li label {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin: 5px 0;
}
.info-box ul li [type="number"] {
  width: 40px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-weight: 900;
}
.info-box ul li input {
  display: inline-block;
  margin: 5px 2.5px;
}
/* -------------------------------------------------
                 DEBUG BOX ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     DEBUG BOX STARTS
----------------------------------------------------------------------------------------------------- */
.oddMember {
  z-index: 10;
  float: left;
  height: 35px;
  line-height: 35px;
  position: absolute;
  padding-left: 20px;
  padding-right: 10px;
  text-align: center;
  right: 2%;
  top: 2%;
  color: #ccc;
  text-align: center;
  background: url(/oddsquad/img/global/mem-bg01.png) left top no-repeat transparent;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;

  opacity: 0;
  
    transition: all 500ms ease-in-out;
  transform: translateX(0) translateY(-150%) translateZ(0px);
  
    -ms-transition: all 500ms ease-in-out;
  -ms-transform: translateX(0) translateY(-150%) translateZ(0px);
  
    -moz-transition: all 500ms ease-in-out;
  -moz-transform: translateX(0) translateY(-150%) translateZ(0px);
  
    -webkit-transition: all 500ms ease-in-out;
  -webkit-transform: translateX(0) translateY(-150%) translateZ(0px);
}
.oddMember:after {
  content: "";
  display: block;
  right: -10px;
  top: 0;
  bottom: 0;
  position: absolute;
  background: url(/oddsquad/img/global/mem-bg02.png) left top no-repeat transparent;
  height: 35px;
  width: 10px;
}
.oddMember em,
.oddMember i,
.oddMember i:before {
  color: #ffcf00;
}
.oddMember i,
.oddMember i:before {
  font-size: 18px;
}
.oddMember i {
  margin: 0 5px;
}
.oddMember a {
  color: #ccc;
  margin-left: 15px;
}
.oddMember a:first-child {
  margin-left: 0;
}
.oddMember a.oddMem-signout {
  color: #333;
  font-size: 18px;
  margin-left: 10px;
}
.oddMember a.oddMem-join i:before {
  content: "\e60c";
}

.oddMem-signin {
  display: inline-block;
  cursor: pointer;
  z-index: 999;
}

.oddMember a.oddMem-signin i:before {
  content: "\e60d";
}
[data-pbs-login] .oddMember {
  opacity: 1;
  transform: translateX(0) translateY(0) translateZ(0px);
  -ms-transform: translateX(0) translateY(0) translateZ(0px);
  -moz-transform: translateX(0) translateY(0) translateZ(0px);
  -webkit-transform: translateX(0) translateY(0) translateZ(0px);
}
.agentNo,
.pbsNo,
.agentYes,
.pbsYes {
  display: none;
}
/* is NOT logged into pbs  */

[data-pbs-login="false"][data-agent-login="true"] .agentNo.pbsNo,
[data-pbs-login="false"][data-agent-login="false"] .agentNo.pbsNo {
  display: inline-block;
}

/* is logged into pbs but not an agent */

[data-pbs-login="true"][data-agent-login="false"] .agentNo.pbsYes {
  display: inline-block;
}

/* is logged into pbs & HAS agent */

[data-pbs-login="true"][data-agent-login="true"] .agentYes.pbsYes {
  display: inline-block;
}

/* -------------------------------------------------
                 DEBUG BOX ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     VIDEO PLAYER STARTS
----------------------------------------------------------------------------------------------------- */
.videoPlayer-wrapper,
.videoPlaylist-wrapper {
  position: absolute; 
  top: 90px;
  float: left;
}
.videoPlayer-wrapper {
  background: url(/oddsquad/img/video/bg-03.png) center top repeat-y transparent;
  width: 60%;
  left: 12.5%;

  margin-bottom: 90px;
}
.videoPlaylist-wrapper {
  width: 10%;
  right: 12.5%;
}

.videoBrowse-wrapper {
  z-index: 1;
  position : absolute;
  top : 15%;
  top: 120px;
  left : 10%;
  width : 80%;
  height : 70%;
  background: url(/oddsquad/img/video/bg-04.gif) left top repeat-y transparent;
  background-size: 100% auto;
}

.scrubberRow {
  position: relative;
  height: 30px;
  background: #4a285c;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRhMjg1YyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM3YjQyOWEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  #4a285c 0%, #7b429a 100%);
  background: gradient(linear, left top, right top, color-stop(0%,#4a285c), color-stop(100%,#7b429a));
  background: linear-gradient(left,  #4a285c 0%,#7b429a 100%);
  background: -o-linear-gradient(left,  #4a285c 0%,#7b429a 100%);
  background: -ms-linear-gradient(left,  #4a285c 0%,#7b429a 100%);
  background: linear-gradient(to right,  #4a285c 0%,#7b429a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a285c', endColorstr='#7b429a',GradientType=1 );
}
.scrubberRow .scrubber {
  position: relative;
  width: 90%;
  height: 100%;
}
.scrubberRow .scrubber .scrubber-track {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  overflow: hidden;
}
.scrubberRow .scrubber .scrubber-thumb:before {
  content: "";
  display: block;
  position: absolute;
  right: 22px;
  height: 100%;
  top: 0;
  bottom: 0;
  width: 1000px;
  
  background: #ffb000;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmYjAwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmNmMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #ffb000 0%, #ffcf00 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffb000), color-stop(100%,#ffcf00));
  background: -webkit-linear-gradient(top,  #ffb000 0%,#ffcf00 100%);
  background: -o-linear-gradient(top,  #ffb000 0%,#ffcf00 100%);
  background: -ms-linear-gradient(top,  #ffb000 0%,#ffcf00 100%);
  background: linear-gradient(to bottom,  #ffb000 0%,#ffcf00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffb000', endColorstr='#ffcf00',GradientType=0 );

}
.scrubberRow .scrubber .scrubber-thumb {
  background-color: #fff;
  float: left;
  width: 20px;
  height: 100%;
  position: absolute;
}
.scrubberRow .timeCurrent {
  color: #fff;
  position: absolute;
  right: 10px;
  float: right;
  top: 7px;
  font-size: 0.45em;
}
.controlsRow {
  position: relative;
  float: left;
  clear: both;
  width: 100%;
  font-size: 36px;
  color: #fff;
  text-shadow: 0 0 15px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65);
  padding: 10px 0;
}
.controlsRow .enterFullScreen {
  position: absolute;
  left: 10px;
  top: 20px;
  font-size: 24px;
  z-index: 99999;
}
.controlsRow .prevVideo i:before {
  content: "\e610";
}
.controlsRow .nextVideo i:before {
  content: "\e60e";
}
.controlsRow .playPause.playing i:before {
  content: "\e619";
}
.controlsRow .playPause.paused i:before {
  content: "\e60f";
}
.controlsRow .enterFullScreen i:before {
  content: "\e613";
}
.controlsRow .closedCaptions {
  background-color: #fff;
  border-radius: 5px;
  padding: 2px 10px;
  text-shadow: none;
  color: #61447f;
  font-weight: 900;
  font-size: 24px;
  position: absolute;
  right: 15px;
  bottom: 14px;
}
.controlsRow .closedCaptions i:before {
  font-family: "refrigerator-deluxe", Arial, Helvetica, sans-serif;
}
.controlsRow .closedCaptions i:before {
  content: "\e510";
  content: "CC";
  font-weight: 900;
}
.controlsRow .playbackControls > div {
  margin: 0 5px;
}
.browsePlaylistsCloseBtn {
  position: absolute;
  right: -40px;
  top: -70px;
  padding: 5px 40px;
  margin: 5px 0;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  background: url(/oddsquad/img/video/bg-05.png) center top repeat-y transparent;
  text-shadow: 0 0 15px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65); 
}
.browsePlaylistsCloseBtn i {
  font-size: 18px;
}
.browsePlaylistsBtn i:before {
  content: "\e614";
}
.scrollPlaylist_up i:before {
  content: "\e618";
}
.scrollPlaylist_down i:before {
  content: "\e615";
}
.browsePlaylistsCloseBtn i:before {
  content: "\e604";
}


.browsePlaylistsBtn i:before {
  content: "\e614";
}
.scrollPlaylist_down,
.scrollPlaylist_up {
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;

  font-size: 30px;
  font-size: 0.75em;
  
  padding: 5px 0;
  margin: 5px 0;
  
  background: url(/oddsquad/img/video/bg-03.png) center top repeat-y transparent;
  text-shadow: 0 0 15px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65), 0 0 5px rgba(202,107,253,0.65); 
}
.browsePlaylistsBtn i {
  margin-right: 10px;
}

.browsePlaylistsBtn {
  display: block;
  color: #785700;

  font-size: 0.5em;
  text-transform: uppercase;
  font-weight: bold;

  width: 50%;
  display: inline-block;
  padding: 7px 0;
  border-radius: 3px;
  margin: 5px 0;
  
  border: 3px solid #f7d02f;
  
  background: #e7bd13;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2U3YmQxMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlZWM4MmQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  #e7bd13 0%, #eec82d 100%);
  background: gradient(linear, left top, right top, color-stop(0%,#e7bd13), color-stop(100%,#eec82d));
  background: linear-gradient(left,  #e7bd13 0%,#eec82d 100%);
  background: -o-linear-gradient(left,  #e7bd13 0%,#eec82d 100%);
  background: -ms-linear-gradient(left,  #e7bd13 0%,#eec82d 100%);
  background: linear-gradient(to right,  #e7bd13 0%,#eec82d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7bd13', endColorstr='#eec82d',GradientType=1 );
}
#nowPlayingList {
  position: relative;
}
#nowPlayingList .playlistItem,
#pl-nowPlaying .plItem {
  width: 100%;
  position: relative;
  margin: 10px 0;
}
#nowPlayingList .playlistItem {
  height: 100px;
}
#nowPlayingList .thumb-container {
  
}
.thumb-container,
.thumb-container img {
  height: auto;
  height: 100%;
  width: 100%;
}
/* ----- BROWSE ----- */
.browserPlaylist,
#browserWrapper .plWrapper {
  position: relative;
  width: 100%;
  height: 20%;
  border-bottom: 1px solid #744e91;
}
#browserWrapper .scrollWrapper {
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
#browserWrapper .plWrapper .playlistTitleTile {
  font-weight: 900;
  line-height: 30px;
}
#browserWrapper .plWrapper .playlistTitleTile:before {
  content: '';
  display: inline-block;
  height: 96%;
  vertical-align: middle;
  margin-right: -0.25em;
}
#browserWrapper .plWrapper .playlistTitleTile span {
  display: inline-block;
  vertical-align: middle;
}
.browserPlaylist,
#browserWrapper .plWrapper.plTheme-purple {
  background: #4e3562;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRlMzU2MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMzODI2NDYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #4e3562 0%, #382646 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4e3562), color-stop(100%,#382646));
  background: -webkit-linear-gradient(top,  #4e3562 0%,#382646 100%);
  background: -o-linear-gradient(top,  #4e3562 0%,#382646 100%);
  background: -ms-linear-gradient(top,  #4e3562 0%,#382646 100%);
  background: linear-gradient(to bottom,  #4e3562 0%,#382646 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e3562', endColorstr='#382646',GradientType=0 );  
}
#browserWrapper .plWrapper.plTheme-green {
  background: #368c43;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzM2OGM0MyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMjU4MmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #368c43 0%, #22582a 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#368c43), color-stop(100%,#22582a));
  background: -webkit-linear-gradient(top,  #368c43 0%,#22582a 100%);
  background: -o-linear-gradient(top,  #368c43 0%,#22582a 100%);
  background: -ms-linear-gradient(top,  #368c43 0%,#22582a 100%);
  background: linear-gradient(to bottom,  #368c43 0%,#22582a 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#368c43', endColorstr='#22582a',GradientType=0 );

}
#browserWrapper .plWrapper.plTheme-green .playlistTitleTile {
  color: #79f691;
  text-shadow: 0 0 20px #a5ffb6, 0 0 5px #19401f;
}
#browserWrapper .plWrapper.plTheme-orange {
  background: #ec7f00;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VjN2YwMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMDY5MDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(top,  #ec7f00 0%, #e06900 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ec7f00), color-stop(100%,#e06900));
  background: -webkit-linear-gradient(top,  #ec7f00 0%,#e06900 100%);
  background: -o-linear-gradient(top,  #ec7f00 0%,#e06900 100%);
  background: -ms-linear-gradient(top,  #ec7f00 0%,#e06900 100%);
  background: linear-gradient(to bottom,  #ec7f00 0%,#e06900 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec7f00', endColorstr='#e06900',GradientType=0 );
}
#browserWrapper .plWrapper.plTheme-orange .playlistTitleTile {
  color: #f9d900;
  text-shadow: 0 0 20px #f9d800, 0 0 5px #d87400;
}
.playlistTitleTile {
  position: relative;
  width: 20%;
  height: 100%;
  padding: 0 1%;
  color: #fff;
  text-align: center;
  display: table-cell;
  text-transform: uppercase;
  vertical-align: middle;
  font-weight: 600;
  float: left;
  line-height: 118px;
  border-right: 1px solid #744e91;
}
#browserWrapper .plWrapper .iScrollContainer,
.browserPlaylistWrapper {
  position: relative;
  height: 100%; 
  width: 70%;
  margin: 0 5%;
  top: 0;
  float: left;
  text-align: left;
}
.browserPlaylistWrapper ul {
  width: 100%;
  height: 100%;
  padding : 0px;
  margin : 0px;
  overflow : hidden;
}
.browserPlaylistWrapper > div > div,
.browserPlaylistWrapper > div {
  width : 100%;
  height : 100%;
  padding : 0px;
  margin : 0px;
  white-space : nowrap;
  overflow : auto;
  display : inline-block;
}

.browserPlaylist .playlistItem {
  list-style : none;
  width : 18%;
  height: 100%;
  padding : 10px 0;
  display : inline-block;
  margin: 0 1%;
}
.browserPlaylist .playlistItem .thumb-container{
  width: 100%;
  height: 100%;
  position: relative;
}
.browserPlaylist .playlistItem .littlevideothumbnail {
  width: 100%;
  height: 100%;
  
}
.btn-vid,
.scrollPlaylist_left,
.scrollPlaylist_right {
  position: absolute;
  top: 35%;
  color: #fff;
  font-size: 0.85em;
  z-index: 5;
}
.btn-vid-prev,
.scrollPlaylist_left {
  left: 21.5%;
}
.btn-vid-next,
.scrollPlaylist_right {
  right: 1.5%;
}
.btn-vid-prev i:before,
.scrollPlaylist_left i:before {
  content: "\e612";
}
.btn-vid-next i:before,
.scrollPlaylist_right i:before {
  content: "\e611";
}
.plWrapper.start .btn-vid-prev,
.plWrapper.end .btn-vid-next {
  /*display: none;*/
}
/* -------------------------------------------------
                 VIDEO PLAYER ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     BORDERS STARTS
----------------------------------------------------------------------------------------------------- */
.borders {
  height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}
.borders .border {
  position: absolute;
  left: 0;
  right: 0;
  height: 28px;
}
.borders .border-top {
  top: -28px;
}
.borders .border-btm {
  bottom: -28px;
}
.borders:before,
.borders:after,
.borders .border:before,
.borders .border:after {
  content: "";
  display: block;
  position: absolute;
}
.borders:before,
.borders:after {
  top: 0;
  bottom: 0;
  width: 28px;
}
.borders:before {
  left: -28px;
}
.borders:after {
  right: -28px;
}
.borders .border:before,
.borders .border:after {
  height: 28px;
  width: 28px;
}
.borders .border-top:before,
.borders .border-btm:before {
  left: -28px;
}
.borders .border-top:after,
.borders .border-btm:after {
  right: -28px;
}
/* ----- THEMES ----- */

/* -- purple -- */
.borders-purple:before {
  background-image: url(/oddsquad/img/video/side-l.png);
}
.borders-purple:after {
  background-image: url(/oddsquad/img/video/side-r.png);
}
.borders-purple .border-top {
  background-image: url(/oddsquad/img/video/side-t.png);
}
.borders-purple .border-btm {
  background-image: url(/oddsquad/img/video/side-b.png);
}

.borders-purple .border-top:before {
  background-image: url(/oddsquad/img/video/corner-tl.png);
}
.borders-purple .border-top:after {
  background-image: url(/oddsquad/img/video/corner-tr.png);
}
.borders-purple .border-btm:before {
  background-image: url(/oddsquad/img/video/corner-bl.png);
}
.borders-purple .border-btm:after {
  background-image: url(/oddsquad/img/video/corner-br.png);
}
/* -------------------------------------------------
                 BORDERS ENDS
------------------------------------------------- */

/* WOA */


.agents-details li.agent-1,
.agents-details li.agent-2,
.agents-details li.agent-3,
.agents-details li.agent-4,
.villans-details li.villan-1,
.villans-details li.villan-2,
.villans-details li.villan-3,
.villans-details li.villan-4 {
  top: 10%;
  left: 18%;
}
.agents-details li,
.villans-details li {
  width: 16%;
  position: relative;
  float: left;
  margin-left: -15px;
  margin-top: -15px;
}
.agents-details div.img-wrap,
.villans-details div.img-wrap {
transition: all 750ms ease-in-out 0ms;
-ms-transition: all 750ms ease-in-out 0ms;
-moz-transition: all 750ms ease-in-out 0ms;
-webkit-transition: all 750ms ease-in-out 0ms;

}
.agents-details li div.sizer,
.villans-details li div.sizer {
padding-top: 100%;
}
.agents-details div.img-wrap,
.villans-details div.img-wrap {
transition: all 750ms ease-in-out 0ms;
opacity: 1;
}
.agents-details li figure.agent-hex-1,
.villans-details li figure.villan-hex-1 {
transform: rotate(120deg);
-ms-transform: rotate(120deg);
-moz-transform: rotate(120deg);
-webkit-transform: rotate(120deg);
}
.agents-details li figure.agent-hex-2,
.villans-details li figure.villan-hex-2 {
transform: rotate(60deg);
-ms-transform: rotate(60deg);
-moz-transform: rotate(60deg);
-webkit-transform: rotate(60deg);
}
.agents-details li figure,
.villans-details li figure {
width: 86.6025%;
height: 50%;
overflow: hidden;
position: absolute;
top: 25%;
left: 6.7%;
}



.agents-wrapper ul,
.agents-wrapper dl,
.villans-wrapper ul,
.villans-wrapper dl {
  height: 100%;
  width: 100%;
  position: absolute;
}
.villans-wrapper ul,
.villans-wrapper dl {
  height: auto;
  float: left;
  padding-bottom: 10%;
}
.agents-wrapper ul.agents-bgs,
.villans-wrapper ul.agents-bgs {
  opacity: 0.2;
}
.agents-wrapper ul.disp-desktop li,
.villans-wrapper ul.disp-desktop li {
  width: 16%;
  
  position: relative;
  float: left;
  
  margin-left: -15px;
  margin-top: -2%;
}
.villans-wrapper ul.disp-desktop li {
  width: 13.5%;
}
.agents-wrapper li div.sizer,
.villans-wrapper li div.sizer {
  padding-top: 100%;
}
.agents-wrapper li[data-agentid] figure div.sizer,
.villans-wrapper li[data-villanid] figure div.sizer{
  padding-top: 58%;
}
.agents-wrapper li.hide,
.villans-wrapper li.hide {
  opacity: 1;
}
.agents-wrapper div.img-wrap,
.villans-wrapper div.img-wrap {
    transition: all 750ms ease-in-out 0ms;
    -ms-transition: all 750ms ease-in-out 0ms;
    -moz-transition: all 750ms ease-in-out 0ms;
    -webkit-transition: all 750ms ease-in-out 0ms;
  opacity: 1;
}
.agents-wrapper li.hide div.img-wrap {
  opacity: 0;
}
.villans-wrapper li.hide div.img-wrap {
  opacity: 0.2;
}
.agents-wrapper li:nth-child(4n-2) div.img-wrap,
.villans-wrapper li:nth-child(4n-2) div.img-wrap {
    transition: all 750ms ease-in-out 200ms;
    -ms-transition: all 750ms ease-in-out 200ms;
    -moz-transition: all 750ms ease-in-out 200ms;
    -webkit-transition: all 750ms ease-in-out 200ms;
},
.agents-wrapper li:nth-child(5n) div.img-wrap,
.villans-wrapper li:nth-child(5n) div.img-wrap {
    transition: all 750ms ease-in-out 300ms;
    -ms-transition: all 750ms ease-in-out 300ms;
    -moz-transition: all 750ms ease-in-out 300ms;
    -webkit-transition: all 750ms ease-in-out 300ms;
}
.agents-wrapper li:nth-child(3n) div.img-wrap,
.villans-wrapper li:nth-child(3n) div.img-wrap {
    transition: all 750ms ease-in-out 100ms;
    -ms-transition: all 750ms ease-in-out 100ms;
    -moz-transition: all 750ms ease-in-out 100ms;
    -webkit-transition: all 750ms ease-in-out 100ms;
}
.agents-wrapper li .border-hex {

}
.agents-lst.disp-mobile,
.villans-lst.disp-mobile {
  display: none;
}
.agents-wrapper li .bg-hex,
.villans-wrapper li .bg-hex {
  display: block;
  background-color: #5ef275;
  
  width: 105% !important;
  height: 61% !important;
  top: 20.5% !important;
  left: -2% !important;
}
.villans-wrapper li .bg-hex {
  background-color: #200206;
  background-color: #49012d;
}
.agents-wrapper li .bg-hex,
.agents-wrapper ul.disp-desktop li figure,
.villans-wrapper li .bg-hex,
.villans-wrapper ul.disp-desktop li figure {
  width: 86.6025%;
  /*
  height: 50%;
  */
  overflow: hidden;
  
  position: absolute;
  top: 25%;
  left: 6.7%;
}
.agents-wrapper ul.disp-desktop li figure,
.villans-wrapper ul.disp-desktop li figure {
  cursor: pointer;
}
.agents-wrapper ul.disp-desktop li figure img,
.villans-wrapper ul.disp-desktop li figure img {
  width: 113.4%;
  width: 115.541%;
  height: auto;
  left: -7.7%;
  top: -50%;
  top: -50.55%;
  position: absolute;
}
.agents-wrapper li .bg-hex-2,
.agents-wrapper li figure.agent-hex-2,
.villans-wrapper li .bg-hex-2,
.villans-wrapper li figure.villan-hex-2 {
  transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  -moz-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
}
.agents-wrapper li figure.agent-hex-2 img,
.villans-wrapper li figure.villan-hex-2 img {
  transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  -moz-transform: rotate(-60deg);
  -webkit-transform: rotate(-60deg);
  top: -52.3%;
  left: -7.25%;
}
.agents-wrapper li .bg-hex-1,
.agents-wrapper li figure.agent-hex-1,
.villans-wrapper li .bg-hex-1,
.villans-wrapper li figure.villan-hex-1 {
  transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  -moz-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
}
.agents-wrapper li figure.agent-hex-1 img,
.villans-wrapper li figure.villan-hex-1 img {
  transform: rotate(-120deg);
  -ms-transform: rotate(-120deg);
  -moz-transform: rotate(-120deg);
  -webkit-transform: rotate(-120deg);
  left: -8.25%;
  top: -50.5%;
}
/*
.agents-wrapper ul.disp-desktop li.agent-1,
.agents-wrapper ul.disp-desktop li.agent-2,
.agents-wrapper ul.disp-desktop li.agent-3,
.agents-wrapper ul.disp-desktop li.agent-4,
.agents-wrapper ul.disp-desktop li.agent-5 {
  top: 0%;
  left: 12%;
}
.agents-wrapper ul.disp-desktop li.agent-6 {
  clear: both;
}
.agents-wrapper ul.disp-desktop li.agent-6,
.agents-wrapper ul.disp-desktop li.agent-7,
.agents-wrapper ul.disp-desktop li.agent-8,
.agents-wrapper ul.disp-desktop li.agent-9 {
  top: -3%;
  left: 19.5%;
}
*/

.agents-wrapper ul.disp-desktop li.agent-1,
.agents-wrapper ul.disp-desktop li.agent-2,
.agents-wrapper ul.disp-desktop li.agent-3,
.agents-wrapper ul.disp-desktop li.agent-4,
.agents-wrapper ul.disp-desktop li.agent-5,
.agents-wrapper ul.disp-desktop li.agent-6 {
  top: 0%;
  left: 5%;
}
.villans-wrapper ul.disp-desktop li.villan-1,
.villans-wrapper ul.disp-desktop li.villan-2,
.villans-wrapper ul.disp-desktop li.villan-3,
.villans-wrapper ul.disp-desktop li.villan-4,
.villans-wrapper ul.disp-desktop li.villan-5,
.villans-wrapper ul.disp-desktop li.villan-6,
.villans-wrapper ul.disp-desktop li.villan-7 {
  top: 0%;
  left: 9%;
}
.agents-wrapper ul.disp-desktop li.agent-7,
.villans-wrapper ul.disp-desktop li.villan-8 {
  clear: both;
}
.villans-wrapper ul.disp-desktop li.villan-8,
.villans-wrapper ul.disp-desktop li.villan-9,
.villans-wrapper ul.disp-desktop li.villan-10,
.villans-wrapper ul.disp-desktop li.villan-11,
.villans-wrapper ul.disp-desktop li.villan-12,
.villans-wrapper ul.disp-desktop li.villan-13,
.villans-wrapper ul.disp-desktop li.villan-14 {
  top: -6%;
  left: 2.65%;
}
.agents-wrapper ul.disp-desktop li.agent-7,
.agents-wrapper ul.disp-desktop li.agent-8,
.agents-wrapper ul.disp-desktop li.agent-9,
.agents-wrapper ul.disp-desktop li.agent-10,
.agents-wrapper ul.disp-desktop li.agent-11 {
  top: -3%;
  left: 12.5%;
}
.agents-wrapper ul.disp-desktop li.agent-12,
.villans-wrapper ul.disp-desktop li.villan-15 {
  clear: both;
}
.agents-wrapper ul.disp-desktop li.agent-12,
.agents-wrapper ul.disp-desktop li.agent-13,
.agents-wrapper ul.disp-desktop li.agent-14,
.agents-wrapper ul.disp-desktop li.agent-15,
.agents-wrapper ul.disp-desktop li.agent-16,
.agents-wrapper ul.disp-desktop li.agent-17 {
  top: -6%;
  left: 5%;
}
.villans-wrapper ul.disp-desktop li.villan-15,
.villans-wrapper ul.disp-desktop li.villan-16,
.villans-wrapper ul.disp-desktop li.villan-17,
.villans-wrapper ul.disp-desktop li.villan-18,
.villans-wrapper ul.disp-desktop li.villan-19,
.villans-wrapper ul.disp-desktop li.villan-20,
.villans-wrapper ul.disp-desktop li.villan-21 {
  top: -6%;
  left: 9%;
}

.game-nav {
  position: relative;
  z-index: 999;
  top: 40px;
}
.game-nav .btn-clos{
  background-image: url(/oddsquad/img/global/close-bg02.png);
}
.notification {
  height: 200px;
  width: 100%;
  position: absolute;
  z-index: 99999;
  left: 0;
  bottom: 0;
    transition: all 250ms ease-in-out 750ms;
    transform: translateX(0%) translateY(100%) translateZ(0px);
  
    -ms-transition: all 250ms ease-in-out 750ms;
    -ms-transform: translateX(0%) translateY(100%) translateZ(0px);
  
    -moz-transition: all 250ms ease-in-out 750ms;
    -moz-transform: translateX(0%) translateY(100%) translateZ(0px);
  
    -webkit-transition: all 250ms ease-in-out 750ms;
    -webkit-transform: translateX(0%) translateY(100%) translateZ(0px);
  
}
.notification.show {
    transform: translateX(0%) translateY(0%) translateZ(0px);
    -ms-transform: translateX(0%) translateY(0%) translateZ(0px);
    -moz-transform: translateX(0%) translateY(0%) translateZ(0px);
    -webkit-transform: translateX(0%) translateY(0%) translateZ(0px);
  
}
.notification.centigurps .avatar {
  background-image: url(../img/notification/centigurps/avatar-running.png);
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: 0 0;
  position: absolute;
  height: 164px;
  width: 162.111px;
    transition: left 6000ms ease-in 1500ms;
    -ms-transition: left 6000ms ease-in 1500ms;
    -moz-transition: left 6000ms ease-in 1500ms;
    -webkit-transition: left 6000ms ease-in 1500ms;
  left: -10%;
}
.notification.centigurps.show .avatar {
    left: 100%;
  
}

#colorbox {
  margin-left: -300px;
  left: 50% !important;
}
.init-overlay [data-overlay] {
  overflow-y: scroll;
}
[data-overlay="hod"] {
  overflow-y: hidden;
  padding: 0;
  height: 100%;
}
.browsePlaylistsBtn {
  display: inline-block;
  width: 100%;
}

.soundCheck-wrapper {
  width: 100%;
  max-width: 1024px;
  float: left;
  margin-left: -512px;
  position: relative;
  left: 50%;
  font-family: arial, Georgia, Verdana;
}
.soundCheck-wrapper li {
  position: relative;
  float: left;
  min-height: 20px;
  display: block;
}
.soundCheck-wrapper .header,
.soundCheck-wrapper .footer {
  width: 100%;
  clear: both;
}
.soundCheck-wrapper .header .sizer {
  padding-top: 50%;
}
.soundCheck-wrapper .footer .sizer {
  padding-top: 25%;
}
.soundCheck-wrapper .header img {
  width: 115%;
  left: -12%;
  height: auto;
}
.soundCheck-wrapper .footer img{
  width: 100%;
  height: auto;
}
.soundCheck-wrapper .footer {
  margin-bottom: 60px;
  margin-top: 60px;
}
.soundCheck-wrapper .footer img{
  position: absolute;
  bottom: 0;
}
.soundCheck-wrapper .left,
.soundCheck-wrapper .right {
  
}
.soundCheck-wrapper .left {
  width: 55%;
}
.soundCheck-wrapper .left .videoContainer {
  position: relative;
}

.soundCheck-wrapper .left .videoContainer video {
  width: 100%;
  height: 100%;
  background: black;
}


.soundCheck-wrapper .left .sizer {
  padding-top: 62%;
}
.soundCheck-wrapper .left iframe {
  width: 100%;
  height: 100%;
}
.soundCheck-wrapper .right {
  width: 45%;
}
.soundCheck-wrapper .right img {
  width: 100%;
  height: auto;
}

.soundCheck-wrapper dl {
  width: 90%;
  margin: 10px 5%;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  padding: 20px;
}
.soundCheck-wrapper dl dt {
  text-transform: uppercase;
  font-size: 0.75em;
}
.soundCheck-wrapper dl dd {
  padding: 40px 0;
  border-top: 1px solid #fff;
  font-size: 0.5em;
}
.soundCheck-wrapper dl dd p {
  font-weight: bold;
  line-height: 20px;
}
.soundCheck-wrapper dl dd span {
  line-height: 25px;
}
@media (max-width: 1024px) {
  .soundCheck-wrapper {
    width: 100%;
    margin-left: 0;
    left: 0;
  }
  .soundCheck-wrapper dl dt {
    font-size: 1.5em;
  }
  .soundCheck-wrapper dl dd {
    font-size: 1em;
  }
}
.userAlert {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  overflow-y: scroll;
}
.userAlert .clickShield {
  background-color: rgba(0,0,0,0.75);
}
.userAlert .userAlert-wrapper {
  position: absolute;
  z-index: 999;
  width: 50%;
  left: 50%;
  margin-left: -25%;
  top: 50%;
  margin-top: -15%;
}
.userAlert .userAlert-wrapper .alertMsg .sizer {
  padding-top: 38.9%;
}
.userAlert .userAlert-wrapper .alertMsg .sized img {
  width: 100%;
  height: auto;
}
.userAlert .btn-green,
.userAlert .btn-grey {
  width: 35%;
  margin: 0 7.5%;
  float: left;
}
.userAlert .btn-green .sized span,
.userAlert .btn-grey .sized span {
  text-align: center;
  width: 100%;
  font-size: 0.6em;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.25);
}
.userAlert .btn-green.btn-signin {
  margin: 0 2.5% 0 12.5%;
}
.userAlert .btn-green.btn-guest {
  margin: 0 12.5% 0 2.5%;
}
.userAlert .btn-green.btn-guest .sized {
  background-image: url("/oddsquad/img/hexagons/btn-hex-grey.png");
}
.odd_squad_centigurps #videoPlayer {
  z-index: 99;
}

@media (max-width: 800px) {
    
.userAlert .userAlert-wrapper {
  width: 100%;
  left: 0%;
  margin-left: 0;
}
.userAlert .btn-green.btn-signin,
.userAlert .btn-green.btn-guest {
  width: 65%;
  font-size: 3.5em;
  margin: 0 17.5%;
}
.userAlert .userAlert-wrapper {
  top: 10%;
  margin-top: 0;
}
  
}

/* -----------------------------------------------------------------------------------------------------
                                     QA FIXES STARTS
----------------------------------------------------------------------------------------------------- */
nav.pageNav:before, nav.pageNav:after {
  background-repeat: no-repeat;
}
.award-lst li {
  cursor: pointer;
}
.stage .badge span em {
  font-size: 2.65em;
  font-size: 3em;
}
.pbs-logo {
  z-index: 9;
}
.pbs-logo img {
  width: 100%;
  height: auto;
}
.btn-hex {
  max-height: inherit;
  z-index: 1;
}
.pg-games .btn-hex .sizer {
  padding-top: 100%;
}
/*
(min-width: 0px) and (max-width: 800px) {
    
}
*/

* {
  scrollbar-base-color: rgba(255,255,255,0);
  scrollbar-3dlight-color:  rgba(255,255,255,0);
  scrollbar-highlight-color:  rgba(255,255,255,0);
  scrollbar-track-color:  rgba(255,255,255,0);
  scrollbar-arrow-color:  rgba(0,0,0,0);
  scrollbar-shadow-color:  rgba(0,0,0,0);
  scrollbar-dark-shadow-color:  rgba(0,0,0,0);
}
.geoTxt {
  display: block;
  visibility:hidden;
}
.geoGood .geoTxt {
  /*
  display: none;
  */
}
.geoError + #playlistWrapper {
  /*height: auto !important;*/
}
.geoTxt .sizer {
  padding-top: 56%;
}
.geoTxt .sized {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.75);
  padding: 10%;
  font-size: 1em;
}
#videoContainer #player,
#videoContainer #player object,
#videoContainer #player video {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100% !important;
}
.tvschedules {
  position: fixed;
  bottom: 10px;
  left: 10px;
  background-color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 14px;
  padding: 10px 30px;
  border-radius: 5px;
  color: #919091;
  font-weight: bold;
  text-align: center;
}

[data-activestage="3"] .tvschedules {
  z-index: -1;
}
.tvschedules a {
  color: #be1e2d;
}
.tvschedules img {
  height: 20px !important;
  width: auto !important;
}
body.has-headband .odd-wrapper {
  height: auto;
  top: 40px;
  bottom: -40px;
}


/* -----------------------------------------------------------------------------------------------------
                                     HOD OVERLAY STARTS
----------------------------------------------------------------------------------------------------- */
[data-overlay="door"] {
  padding: 0;
}
[data-overlay="door"] h3 {
  margin-top: 0;
}
[data-overlay="door"] .btn-close {
  background-image: url(/oddsquad/img/global/close-bg02.png); 
}
/* -------------------------------------------------
                 HOD OVERLAY ENDS
------------------------------------------------- */

/* -----------------------------------------------------------------------------------------------------
                                     ODDSTAGRAM STARTS
----------------------------------------------------------------------------------------------------- */

.wallpapers-wrapper {
  float: left;
  min-height: 80%;
  position: relative;
  width: 100%;
  top: 20px;
}
.wallpapers-lst {
  position: absolute;
  width: 700%;
  bottom: 0;
  height: 100%;
}
.wallpapers-lst > li {
  position: relative;
  width: 14.25%;
  height: 100%;
  display: block;
  float: left;
  text-align: center;
  cursor: pointer;
  height: auto;
}
.wallpapers-lst > li .sizer {
  padding-top: 51.2%;
  position: relative;
}
.wallpapers-lst > li img {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  width: auto;
  max-width: 100%;
  height: 90%;
  float: left;
  clear: both;
}
.wallpapers-lst > li .hashs {
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 1em;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  white-space: nowrap;
  
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  
  left: 50%;
  -webkit-transform: translateX(-50%);
}
.wallpapers-lst > li .hashs em ~ em {
  margin-left: 30px;
}
.wallpapers-lst > li .hashs:before,
.wallpapers-lst > li .hashs:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.wallpapers-lst > li .hashs:before {
  left: -10px;
  border-right: 10px solid rgba(0,0,0,0.5);
}
.wallpapers-lst > li .hashs:after {
  right: -10px;
  border-left: 10px solid rgba(0,0,0,0.5);
}
.door1-open a.btn-next,
.door1-open a.btn-prev {
  position: absolute;
  top: 50%;
  font-size: 3em;
  -webkit-transform: translateY(-50%);
  z-index: 9999;
} 
.door1-open a.btn-next {
  right: 5%;
}
.door1-open a.btn-prev {
  left: 5%;
}
nav.scrollEnd a.btn-next {
  right: -5%;
  opacity: 0;
}
nav.scrollStart a.btn-prev {
  left: -5%;
  opacity: 0;
}
.door1-open a.btn-prev i:before,
.door1-open a.btn-next i:before {
  color: rgba(255,255,255,0.75);
}
.door1-open a.btn-next i:before {
  content: "\e60a";
}
.door1-open a.btn-prev i:before {
  content: "\e60b";
}
/* -------------------------------------------------
                 ODDSTAGRAM ENDS
------------------------------------------------- */
.wallpapers-lst > li img.set-background {
  position: absolute;
  width: 42px;
  height: 33px;
  bottom: 20%;
  left: 50%;
}

.overlay-minimize {
  z-index: 999;
  cursor: pointer;
  float: left;
  position: absolute;
  right: 20px;
  top: 15px;
  color: #fff;
  font-weight: 900;
  font-size: 1.85rem;
  text-transform: uppercase;
}
.overlay-minimize i {
    margin-left: 10px;
    font-size: 24px;
}
.overlay-minimize i:before {
    font-family: 'oddsquad-icons';
    content: "\e604";
}

#mobile_ordering {
  display: none;
}

@media (max-width: 900px) {
  .btn-hex-wrapper {
    display: none;
  }

  #mobile_ordering {
    display: block;
  }
}

.btn-hex-wrapper a > span, #mobile_ordering a > span {
  display: none;
}