/* GENERAL CSS RULES */
@font-face {
    font-family: "Nunito-Black";
    src: url('../../fonts/Nunito-Black.ttf') format('truetype');
}
@font-face {
    font-family: "Nunito-ExtraBold";
    src: url('../../fonts/Nunito-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: "Nunito-SemiBold";
    src: url('../../fonts/Nunito-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: "NunitoSans-Black";
    src: url('../../fonts/NunitoSans-Black.ttf') format('truetype');
}
@font-face {
    font-family: "NunitoSans-ExtraBold";
    src: url('../../fonts/NunitoSans-ExtraBold.ttf') format('truetype');
}
@font-face {
    font-family: "NunitoSans-SemiBold";
    src: url('../../fonts/NunitoSans-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: "fontawesome-webfont";
    src: url('../../fonts/fontawesome-webfont.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto-Regular";
    src: url('../../fonts/Roboto-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto-Medium";
    src: url('../../fonts/Roboto-Medium.ttf') format('truetype');
}

@font-face {
    font-family: "Roboto-Bold";
    src: url('../../fonts/Roboto-Bold.ttf') format('truetype');
}

* {
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

body {
    padding: 0;
    margin: 0;
    font-size: 100%;
    background-color: #525252;
    color: #fff;
    font-family: "Roboto-Regular", sans-serif;
    /*overflow: hidden;*/
}

img[src$=".gif"], img[src$=".png"], img[src$=".jpg"] {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1.0, 1.0);
}

ul, p {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul > li {
    list-style-type: none;
}

.clickable {
    cursor: pointer;
}

.bold {
    font-family: "Roboto-Bold", sans-serif;
}

.medium {
    font-family: "Roboto-Medium", sans-serif;
}

.imgApp {
    display: none;
}

.no-background-image {
    background-image: none !important;
}

.acceleratedElem {
    -webkit-transform: translateX(0);
    -webkit-backface-visibility: hidden;
   -webkit-perspective: 1000;
}

.fontawesome {
    font-family: "fontawesome-webfont";
}

#FPS {
    background: rgba(0, 110, 110, 0.85);
    border-radius: 0.2em;
    color: #fff;
    font-size: 2em;
    left: 64px;
    padding: 15px 30px;
    position: absolute;
    top: 35px;
    z-index: 100;
    display: none;
}

#mainAppWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px;
    height: 720px;
    overflow: hidden;
}

#appWrapper {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}

#transition, #blockMouse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
}

.appView {
    position: absolute;
    top: 0;
    left: 0;
    width: 1280px;
    height: 720px;
}

#loadingIndicatorWrapper {
    display: none;
    height: 720px;
    overflow: hidden;
    position: fixed;
    text-align: center;
    width: 1280px;
    z-index: 1000000;
}

#loadingIndicatorWrapper.visible,
#loadingIndicatorWrapper.animate {
    display: table;
}

#loadingIndicatorInner {
    display: table-cell;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

#loadingIndicator {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}

#loadingIndicatorImg {
    background-image: url(../..//images/720p/loading_sprites.png);
    position: relative;
    float: left;
    height: 100%;
    width: 3120px;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
}

#loadingIndicatorWrapper.visible #loadingIndicatorImg {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    animation: loading-x-visible 1s steps(11) forwards;
    -webkit-animation: loading-x-visible 1s steps(11) forwards;
    -moz-animation: loading-x-visible 1s steps(11) forwards;
    -ms-animation: loading-x-visible 1s steps(11) forwards;
    -o-animation: loading-x-visible 1s steps(11) forwards;
}

#loadingIndicatorWrapper.animate #loadingIndicatorImg {
	transform: translate3d(0, 0, 0);
	-webkit-transform: translate3d(0, 0, 0);
	animation: loading-x-animate 1s steps(11) forwards;
    -webkit-animation: loading-x-animate 1s steps(11) forwards;
    -moz-animation: loading-x-animate 1s steps(11) forwards;
    -ms-animation: loading-x-animate 1s steps(11) forwards;
    -o-animation: loading-x-animate 1s steps(11) forwards;
}

@-webkit-keyframes loading-x-visible {
     from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@-moz-keyframes loading-x-visible {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@-ms-keyframes loading-x-visible {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}
@-o-keyframes loading-x-visible {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@keyframes loading-x-visible {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@-webkit-keyframes loading-x-animate {
     from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@-moz-keyframes loading-x-animate {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@-ms-keyframes loading-x-animate {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}
@-o-keyframes loading-x-animate {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

@keyframes loading-x-animate {
    from { transform:  translate3d(0, 0, 0);  }
      to { transform:  translate3d(-2860px, 0, 0); }
}

#loading {
    height: 369px;
    margin: auto;
    max-width: 260px;
    position: relative;
}

#loadingBg {
    position: absolute;
    width: 133px;
    height: 133px;
    left: 67px;
    top: 163px;
    border-radius: 50%;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    will-change: transform;
}

#loadingIndicatorWrapper.visible #loadingBg,
#loadingIndicatorWrapper.animate #loadingBg {
    -webkit-animation: bgColor 15s infinite;
       -moz-animation: bgColor 15s infinite;
        -ms-animation: bgColor 15s infinite;
         -o-animation: bgColor 15s infinite;
            animation: bgColor 15s infinite;
}

@-webkit-keyframes bgColor {
   0% {
      background: rgba(253, 83, 83, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(253, 83, 83, 0.5);
   }

   25% {
      background: rgba(239, 159, 20, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(239, 159, 20, 0.5);
   }

   50% {
      background: rgba(174, 222, 29, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(174, 222, 29, 0.5);
   }

   75% {
      background: rgba(166, 39, 225, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(166, 39, 225, 0.5);
   }

   100% {
      background: rgba(69, 126, 243, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(69, 126, 243, 0.5);
   }
}

@-moz-keyframes bgColor {
   0% {
      background: rgba(253, 83, 83, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(253, 83, 83, 0.5);
   }

   25% {
      background: rgba(239, 159, 20, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(239, 159, 20, 0.5);
   }

   50% {
      background: rgba(174, 222, 29, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(174, 222, 29, 0.5);
   }

   75% {
      background: rgba(166, 39, 225, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(166, 39, 225, 0.5);
   }

   100% {
      background: rgba(69, 126, 243, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(69, 126, 243, 0.5);
   }
}

@-ms-keyframes bgColor {
   0% {
      background: rgba(253, 83, 83, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(253, 83, 83, 0.5);
   }

   25% {
      background: rgba(239, 159, 20, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(239, 159, 20, 0.5);
   }

   50% {
      background: rgba(174, 222, 29, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(174, 222, 29, 0.5);
   }

   75% {
      background: rgba(166, 39, 225, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(166, 39, 225, 0.5);
   }

   100% {
      background: rgba(69, 126, 243, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(69, 126, 243, 0.5);
   }
}

@-o-keyframes bgColor {
   0% {
      background: rgba(253, 83, 83, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(253, 83, 83, 0.5);
   }

   25% {
      background: rgba(239, 159, 20, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(239, 159, 20, 0.5);
   }

   50% {
      background: rgba(174, 222, 29, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(174, 222, 29, 0.5);
   }

   75% {
      background: rgba(166, 39, 225, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(166, 39, 225, 0.5);
   }

   100% {
      background: rgba(69, 126, 243, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(69, 126, 243, 0.5);
   }
}

@keyframes bgColor {
   0% {
      background: rgba(253, 83, 83, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(253, 83, 83, 0.5);
      animation-timing-function: ease;
   }

   25% {
      background: rgba(239, 159, 20, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(239, 159, 20, 0.5);
      animation-timing-function: ease;
   }

   50% {
      background: rgba(174, 222, 29, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(174, 222, 29, 0.5);
      animation-timing-function: ease;
   }

   75% {
      background: rgba(166, 39, 225, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(166, 39, 225, 0.5);
      animation-timing-function: ease;
   }

   100% {
      background: rgba(69, 126, 243, 0.5);
      box-shadow: 0px 0px 95px 80px rgba(69, 126, 243, 0.5);
      animation-timing-function: ease;
   }
}

/* CONTENT WRAPPER */

.contents {
    position: relative;
    float: left;
    width: 100%;
}

.contentWrapper {
    position: relative;
    float: left;
    width: 100%;
    height: 207px;
}

.contentWrapper .contentTileWrapper {
    position: relative;
    float: left;
    width: 100%;
    display: table;
    height: 47px;
}

.contentWrapper .contentTileWrapper .contentTitle {
    display: table-cell;
    width: 100%;
    color: #fff;
    font-size: 21px;
    text-align: left;
}

.contentWrapper .contentInner {
    position: relative;
    float: left;
    width: 100%;
    margin-left: -27px;
}

.contentWrapper .contentInner .emptyInner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.contentWrapper .contentInner .contentCarousel {
    position: absolute;
    left: 0;
    top: 0;
}

.contentWrapper .contentInner .contentCarousel .content {
    position: absolute;
    width: 153px;
    margin-left: 27px;
}

.contentWrapper .contentInner .contentCarousel .content.focus,
.contentWrapper .contentInner .contentCarousel .content:hover {
    margin-left: 15px !important;
    top: -20px;
    width: 263px !important;
}

.contentWrapper .contentInner .contentCarousel .content .contentBoxShadow {
    position: absolute;
    top: -27px;
    left: -27px;
    width: 126%;
    height: 100%;
    background-image: url(../..//images/720p/categoryselection_item_shadow.png);
    background-position: -29px -8px;
    background-repeat: no-repeat;
}

.contentWrapper .contentInner .contentCarousel .content.focus .contentImageWrapper .contentImage,
.contentWrapper .contentInner .contentCarousel .content:hover .contentImageWrapper .contentImage {
    image-rendering: crisp-edges;
}

.contentWrapper .contentInner .contentCarousel .content .contentImageWrapper {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
}

.contentWrapper .contentInner .contentCarousel .content .contentImageWrapper .contentImage {
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
}

.contentWrapper .contentInner .contentCarousel .content .contentNameWrapper {
    position: relative;
    float: left;
    width: 100%;
    height: 27px;
    display: table;
    margin-top: 7px;
}

.contentWrapper .contentInner .contentCarousel .content .contentNameWrapper .contentName {
    color: #fff;
    display: table-cell;
    font-family: "Roboto-Medium";
    font-size: 21px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
}
