/* Import css reset rules */
@import url("reset.css");

html {
    height: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #1E1E1E;
}

:focus {
    outline: 0;
    border: none;
    color: rgba(0, 0, 0, 0);
}

*, :after, :before {
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

.wrapper {
    position: relative;
    min-height: 100%;
    padding-bottom: 45px;
   -webkit-transition: transform 0.2s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s;
    z-index: 1;
}

.container {
    position: relative;
    max-width: 768px;
    margin: 0 auto;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

.header {
    position: relative;
    height: 40px;
    background: #1E1E1E;
}

.header .container {
    height: 100%;
}

.header .nav-toggle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 45px;
    height: 40px;
    border-right: 1px solid #121212;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header .nav-toggle.no-border {
    border-right: none;
}

.header .nav-toggle span,
.header .nav-toggle span:before,
.header .nav-toggle span:after {
    content: '';
    display: block;
    width: 23px;
    height: 3px;
    background: #FF40FF;
    position: absolute;
    left: 0;
}

.header .nav-toggle span {
    top: 18px;
    left: 11px;
}

.header .nav-toggle span:before {
    top: -7px;
}

.header .nav-toggle span:after {
    bottom: -7px;
}

.header .search-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 45px;
    height: 40px;
    background: url(../img/search.png) center no-repeat;
    background-size: 23px 23px;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.video--player {
    position: relative;
    border-bottom: 1px solid #000;
}

.video--player:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(rgba(0,0,0,0) 8%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(rgba(0,0,0,0) 8%, rgba(0,0,0,1) 100%);
    background: linear-gradient(rgba(0,0,0,0) 8%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}

.video--player .play {
    width: 69px;
    height: 60px;
    background: url(../img/play.png) center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -60px 0 0 -35px;
    z-index: 1;
}

.video--player img {
    width: 100%;
    height: auto;
}

.video--player .title {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 50px;
    z-index: 1;
}

.video--player .title p {
    font-size: 12px;
    font-weight: bold;
    line-height: 18px;
    color: #ffffff;
    margin: 0px;
    text-align: center;
}

.video--player .title p span {
    font-size: 16px;
}

.video--player .controls {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 21px;
    background: url(../img/player-controls.png) center no-repeat;
    background-size: 282px 21px;
    z-index: 1;
}

.video--title {
    border-top: 1px solid #313131;
    border-bottom: 1px solid #000;
    padding: 8px 15px;
}

.video--title h1 {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.video--toolbar {
    border-top: 1px solid #313131;
    border-bottom: 1px solid #000;
    overflow: hidden;
    padding: 4px 0;
}

.video--toolbar li {
    float: left;
    width: 20%;
    text-align: center;
    cursor: pointer;
}

.video--toolbar li i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 20px;
}

.video--toolbar li .icon-like {
    background-image: url(../img/like.png);
}

.video--toolbar li .icon-dislike {
    background-image: url(../img/dislike.png);
}

.video--toolbar li .icon-add {
    background-image: url(../img/add.png);
}

.video--toolbar li .icon-share {
    background-image: url(../img/share.png);
}

.video--toolbar li .icon-download {
    background-image: url(../img/download.png);
}

.video--toolbar li span {
    display: block;
    font-size: 10px;
    color: #A7A7A7;
    margin-top: 2px;
}

.video--meta {
    border-top: 1px solid #313131;
    border-bottom: 1px solid #000;
    padding: 5px 15px 7px;
    overflow: hidden;
}

.video--meta .rating {
    position: relative;
    width: 155px;
    height: 4px;
    background: #FF0000;
}

.video--meta .rating .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #29DB25;
}

.video--meta .info {
    margin-top: 5px;
}

.video--meta .views {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
}

.video--meta .views-positive {
    font-size: 11px;
    color: #999999;
    background: url(../img/views.png) left center no-repeat;
    background-size: 15px 15px;
    padding-left: 17px;
    margin-left: 5px;
}

.video--meta .price {
    font-size: 11px;
    color: #ffffff;
}

.banner {
    border-top: 1px solid #313131;
    padding: 5px 10px;
    text-align: center;
}

.banner img {
    max-width: 100%;
}

.disclaimer {
    padding: 0px 15px;
}

.disclaimer p {
    font-size: 11px;
    font-weight: 300;
    line-height: 16px;
    color: #ffffff;
    margin: 0px;
}

.disclaimer p a {
    color: #ffffff;
}

.sms-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.article {
    text-align: center;
    padding: 20px;
}

.article p {
    color: #ffffff;
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 20px;
}

.article p a {
    color: #ffffff;
}

.headline {
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px;
}

.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    border-top: 1px solid #000000;
    z-index: 11;
}

.footer ul {
    border-top: 1px solid #313131;
    overflow: hidden;
}

.footer ul li {
    float: left;
    width: 25%;
}

.footer ul li a {
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: #FF40FF;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 12px 0;
}

.loader {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.loader .animation {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.7) url(../img/preloader.gif) center no-repeat;
    background-size: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -40px 0 0 -40px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.items .item .title {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: 15px;
    bottom: 10px;
    padding: 5px 7px;
    width: 75%;
    text-align: left;
    z-index: 2;
    overflow: hidden;
}

.items .item .play-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px;
    color: #fff;
    z-index: 2;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
}

@media (max-width: 630px) {
    .items .item .title {
        width: 70%;
    }
}

@media (max-width: 500px) {
    .items .item .title {
        width: 65%;
    }
}

@media (max-width: 410px) {
    .items .item .title {
        width: 60%;
    }
}

@media (max-width: 350px) {
    .items .item .title {
        width: 50%;
    }
}

.items .item .title span {
    white-space: nowrap;
}

.members .items {
    position: relative;
}

.members .carousel {
    width: auto;
}

.members .items .item {
    position: relative;
    text-align: center;
    max-height: 250px;
    overflow: hidden;
    margin: 0 10px 10px;
    opacity: 1;
    height: auto;
}

.members .items .item.hidden {
    opacity: 0;
    height: 0;
    margin: 0;
}

.members .items .item:last-child {
    margin-bottom: 0px;
}

.members .items .item a {
    text-decoration: none;
}

.items .item .title {
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    position: absolute;
    left: 10px;
    bottom: 10px;
    padding: 5px 7px;
    max-width: 65%;
    text-align: left;
    z-index: 2;
    overflow: hidden;
}

.members .items .item .title span {
    white-space: nowrap;
}

.members .items .item img {
    display: block;
    width: 100%;
    margin-top: -10%;
}

.members .banner {
    position: absolute;
    top:0;
    left:0;
    right:0;
    z-index: 3;
    padding: 0px;
    border: none;
}

.hoverbox-container {
    text-align: center;
}

.hoverbox {
    position: relative;
    display: inline-block;
    background: rgba(0,0,0, 0.8);
    padding: 0 10px;
    max-width: 80%;
    text-align: center;
    z-index: 2;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.hoverbox p {
    width: 100% !important;
}

.categoryNav {
    overflow: hidden;
    padding-top: 10px;
}

.categoryNav span {
    float:left;
    font-size:14px;
    color:#969696;
    text-shadow:0px 1px 0px #FFF;
    margin:10px 20px;
}

.categoryNav a {
    display:block;
    font-weight:bold;
    color:#ffffff;
    line-height: 40px;
    font-size: 14px;
    text-decoration:none;
    padding:0 20px;
}

.categoryNav a.prev {
    float: left;
}

.categoryNav a.next {
    float:right;
}

.clear {
    clear: both;
    height: 1px;
    line-height: 1px;
    margin: -1px 0 0;
}

.owl-carousel .owl-item img {
    width: 100%;
}

.parallax-item {
    position: absolute;
    width: 100%;
    height: 200%;
    top:0;
    left:0;
    background-position: top center;
    background-size: cover;
}

.noVideos {
    font-size: 12px;
    color: #F9A804;
    text-align: left;
    margin-top: 20px;
    padding: 0px 5px;
}

input#un-mute {
  display: none;
}

.mute img {
  display: none;
}

input#un-mute:checked ~ .unmute img {
  display: none;
}

input#un-mute:checked ~ .mute img {
  display: initial;
}

.volume-icon {
	width: 28px !important;
	position: absolute;
    bottom: 25px; /* 10 */
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    padding: 6px;
    color: #fff;
    z-index: 2;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 20px;
    border: 1px solid #ffffff;
}

.video--player video {
    width: 100%;
    height: auto;
}

.grecaptcha-badge {
	display: none;
}