/**
 * General
 */
html,
body {
    min-height: 100%;
    height: 100%;
}

body {
    background: #1e1e1e;
    overflow-x: hidden;
}

.container {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    background: #ffffff;
}

.page {
    position: relative;
    min-height: 100%;
    background: #1e1e1e;
    -webkit-transition: transform 0.2s ease-in-out 0s;
    transition: transform 0.2s ease-in-out 0s;
    z-index: 1;
}

.opened .page {
    -webkit-transform: translateX(240px);
    transform: translateX(240px);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.7);
}

.opened .side-nav {
    -webkit-transition: z-index 0s linear 0.17s;
    transition: z-index 0s linear 0.17s;
    visibility: visible;
    z-index: 1;
}

/**
 * Header
 */
.header {
    overflow: hidden;
}

.headerText{
    position: fixed;
    background: #000;
    max-width: 640px;
    margin: 0px auto;
    height: 40px;
    top:0;
    left:0;
    right: 0;
    opacity: 0.8;
    z-index: 3;
}

.headerText p {
    opacity: 1;
    color: white;
    text-align: center;
    line-height: 100%;
    font-size: 13px;
}

.header img {
    display: block;
    width: 100%;
}

.header .logo {
    display: block;
    width: 75px;
    height: 37px;
    background: url(../img/logo.png) center no-repeat;
    background-size: 75px 37px;
    margin: 7px auto 0;
}

.header .nav-toggle {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    background: url(../img/icon-nav.png) center no-repeat;
    background-size: 19px 10px;
}

.header .search-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 60px;
    margin-top: -30px;
    background: url(../img/icon-search.png) center no-repeat;
    background-size: 17px 17px;
}

#search {
    display: none;
    padding: 8px 10px;
    text-align: center;
}

#search .container {
    background: transparent;
}

#search input[type="text"],
#search input[type="search"] {
    width: 60%;
    border: none;
    font-size: 15px;
    background: #ffffff;
    padding: 9px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

#search .btn {
    display: inline-block;
    width: 30%;
    padding-left: 0;
    padding-right: 0;
}

/**
 * Navigation
 */

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #000000;
    overflow: hidden;
    z-index: 999;
    position: relative;
}

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

.nav ul li:after {
    content: "";
    background: url(../img/menu-bullet.png) no-repeat center;
    background-size: 5px 5px;
    width: 5px;
    height: 5px;
    display: inline-block;
}

.nav ul li.icon-home:after {
    display: none;
}

.nav ul li.icon-help:after {
    position: absolute;
    top: 13px;
    left: 24%;
}

.nav ul li.icon-impressum:after {
    position: absolute;
    top: 13px;
    left: 47%;
}

.nav ul li.icon-agb:after {
    position: absolute;
    top: 13px;
    left: 77%;
}

.nav ul li a {
    display: block;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    border-bottom: 4px solid transparent;
    padding: 10px 0;
    text-decoration: none;
}

.side-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: #1e1e1e;
    -webkit-transition: visibility 0s linear 0.17s;
    transition: visibility 0s linear 0.17s;
    visibility: hidden;
    z-index: 0;
}

.side-nav .inner {
    width: 240px;
}

.side-nav .logo {
    width: 67px;
    height: 27px;
    background: url(../img/logo-small.png) center no-repeat;
    background-size: 100%;
    margin: 10px 0 5px 15px;
}

.side-nav .user-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav .user-nav li a {
    display: block;
    padding: 13px 10px 13px 37px;
    font-size: 15px;
    font-style: italic;
    color: #ffffff;
    text-decoration: none;
    border-left: 2px solid transparent;
}

.side-nav .user-nav li.icon-home a {
    background: url(../img/sidenav-icon-home.png) 10px center no-repeat;
    background-size: 17px 17px;
}

.side-nav .user-nav li.icon-new-videos a {
    background: url(../img/sidenav-icon-new-videos.png) 10px center no-repeat;
    background-size: 17px 17px;
}

.side-nav .user-nav li.icon-categories a {
    background: url(../img/sidenav-icon-categories.png) 10px center no-repeat;
    background-size: 17px 17px;
}

.side-nav .user-nav li.icon-pornstars a {
    background: url(../img/sidenav-icon-pornstars.png) 10px center no-repeat;
    background-size: 17px 17px;
}

.side-nav .user-nav li.icon-videos a {
    background: url(../img/sidenav-icon-videos.png) 10px center no-repeat;
    background-size: 17px 17px;
}

.side-nav .user-nav li.current-menu-item {
    background: #353535;
}

.side-nav .user-nav li.current-menu-item a {
    border-left: 3px solid #ffffff;
}

.side-nav .main-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-nav .main-nav li {
    background: #111111;
    border-bottom: 1px solid #292929;
}

.side-nav .main-nav li a {
    display: block;
    padding: 14px 10px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    text-decoration: none;
    border-left: 2px solid transparent;
}

.side-nav .main-nav li.bold a {
    font-weight: bold;
    color: #FF32AC;
}

.side-nav .sep {
    margin: 15px 0 0;
    background: #111111;
    border-bottom: 1px solid #292929;
}

.side-nav .sep i {
    display: block;
    padding: 14px 10px;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    text-decoration: none;
    border-left: 2px solid transparent;
    font-weight: bold;
    color: #FF32AC;
}

#menu-extras-member .icon-home {
    display: none;
}

/**
 * Content
 */
.main {
    position: relative;
    padding-bottom: 37px;
}

.landing .logo {
    position: absolute;
    top: -60px;
    width: 100%;
    height: 141px;
    background: url(../img/logo.png) center no-repeat;
    background-size: auto 100%;
    z-index: 1;
}

.landing .slider {
    margin: 0 0 -5px;
    padding: 0;
    list-style: outside none none;
}

.landing .items {
    position: relative;
}

.landing .items .item {
    padding-top: 4px;
}

.landing .items .item img {
    display: block;
    width: 100%;
}

.landing .gif {
    position: relative;
    padding-top: 6px;
}

.landing .gif img {
    display: block;
    width: 100%;
}

.heading {
    background: #333333;
    padding: 8px 10px;
}

.heading h3 {
    display: inline-block;
    font-size: 13px;
    line-height: 19px;
    font-style: italic;
    color: #FF32AC;
    margin: 0px;
    width: 80%;
}

.page-template-newest-videos-page .heading h3, .search .heading h3, .page-template-videos-page .heading h3 {
    width: 50%;
}

.heading .more {
    float: right;
    font-size: 13px;
    line-height: 19px;
    font-style: italic;
    font-weight: bold;
    color: #FF32AC;
    padding: 0 18px 0 0;
    background: url(../img/icon-arrow.png) right center no-repeat;
    background-size: 7px 13px;
    text-decoration: none;
}

.heading .back {
    float: right;
    padding: 12px;
    margin: -8px 0 0 0;
    font-weight: 400;
    color: #fff;
    font-size: 11px;
    text-decoration: none;
    position: relative;
}

.heading .back:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 8px 4px 0;
    border-color: transparent #6b6b6b transparent transparent;
    position: absolute;
    top: 13px;
    left: -3px;
}

.btn {
    display: block;
    border: none;
    font-size: 15px;
    font-weight: bold;
    line-height: 18px;
    color: #ffffff;
    outline: none;
    padding: 9px 10px;
    background-color: #FF32AC;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FF80CA), to(#FF32AC));
    background-image: -webkit-linear-gradient(top, #FF80CA, #FF32AC);
    background-image: -moz-linear-gradient(top, #FF80CA, #FF32AC);
    background-image: -ms-linear-gradient(top, #FF80CA, #FF32AC);
    background-image: -o-linear-gradient(top, #FF80CA, #FF32AC);
    background-image: linear-gradient(top, #FF80CA, #FF32AC);
    filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr='#FF80CA', EndColorStr='#FF32AC');
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-decoration: none;
}

.tos {
    padding: 10px;
    background-color: #111111;
}

.tos p {
    font-size: 11px;
    font-style: italic;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0px;
}

.tos p a {
    color: #525252;
    text-decoration: none;
}

.tos.fixed {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.tos.fixed p {
  color: #ffffff;
}

.videos {
    padding: 5px;
    font-size: 0;
}

.videos .item {
    position: relative;
    display: inline-block;
    width: 48%;
    margin: 1%;
    vertical-align: top;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.videos .item img {
    display: block;
    width: 100%;
}

.videos .item .icon-hd {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 36px;
    height: 12px;
    background: url(../img/icon-hd.png) center no-repeat;
    background-size: 100%;
}

.videos .item .icon-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: url(../img/icon-play.png) center no-repeat;
    background-size: 100%;
    margin: -30px 0 0 -25px;
}

.videos .item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 7px;
}

.videos .item .title h2 {
    font-size: 13px;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.videos .item .title .time {
    display: block;
    font-size: 11px;
    font-weight: bold;
    font-style: italic;
    color: #16D0FF;
}

.videos .item .title .icon-time {
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url(../img/icon-time.png) center no-repeat;
    background-size: 100%;
    vertical-align: top;
    margin: 0 2px 0 0;
}

.article {
    padding: 20px;
}

.article h1 {
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 20px;
}

.article p {
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin: 0 0 20px;
    text-align: center;
}

.overlay {
    /*position: fixed;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: 0;*/
    /*right: 0;*/
    z-index: 2;
}

.overlay .popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: -320px;
    top: 250px;
    width: 321px;
    height: 110px;
    background: url(../img/popup-background1.png) no-repeat center;
    background-size: 321px 110px;;
    text-align: center;
    padding: 10px;
}

.overlay .popup p {
    font-size: 10px;
    line-height: 12px;
    color: #ffffff;
    margin: 30px 110px 0 75px;
}

.overlay .popup p a {
    color: #fff;
    text-decoration: none;
}

.overlay .popup .play-btn {
    width: 92px;
    height: 92px;
    border: 3px solid #FFFFFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 0 !important;
}

.overlay .popup .play-btn .glossy {
    background: url(../img/glossy-effect.png) no-repeat center;
    background-size: 90px 59px;
    width: 90px;
    height: 59px;
}

.overlay .popup .play-btn .text {
    position: absolute;
    top: 18px;
    left: 11px;
}

.overlay .popup .play-btn .text p {
    margin: 0;
    font: 10px Arial;
    text-transform: uppercase;
    text-shadow: 1px 1px #000000;
}

.overlay .popup .play-btn .text p.play {
    font-size: 28px;
}

.form input[type="text"],
.form input[type="email"],
.form input[type="tel"] {
    width: 100%;
    background: #ffffff;
    font-size: 14px;
    color: #333333;
    text-align: center;
    padding: 10px;
    border: none;
    margin: 0 0 15px;
    outline: none;
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.form .btn {
    font-size: 16px;
    width: 100%;
}

.videoWrapper {
    margin: 0;
    /*
        background: #fff;
        float:left;
        width:94%;
        display:block;
        margin:10px 3%;
    */
}

.videoWrapper .video {
    width: 100%;

    /*
        float:left;
        border-radius:5px;
    */
}

.videoFooter {
    margin-top: 0;
    float: left;
    width: 100%;
    display: block;
    background: rgb(227, 227, 227);
    background: -moz-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(227, 227, 227, 1)), color-stop(100%, rgba(207, 207, 207, 1)));
    background: -webkit-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%);
    background: -o-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%);
    background: -ms-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%);
    background: linear-gradient(to bottom, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#cfcfcf', GradientType=0);
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #c3c3c3;
    margin-bottom: 15px;
}

.videoFooter a {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    float: left;
    width: 50%;
    text-align: center;
    display: block;
    font-weight: 700;
    color: #6b6b6b;
    text-shadow: 0px 1px 0px #FFF;
    padding: 10px 0;
    font-size: 14px;
    text-decoration: none;
    border-right: 1px solid #c1c1c1;
    border-left: 1px solid #eee;
}

.threeGicon {
    width: 20px;
    height: 15px;
    display: inline-block;
    background: url(../img/3g.png);
    background-size: 20px 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 5px 0 0;
}

.wifiIcon {
    width: 20px;
    height: 15px;
    display: inline-block;
    background: url(../img/wifi.png);
    background-size: 20px 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 5px 0 0;
}

.videoThumbnailsCarousel {
    border-radius: 5px;
}

.videoThumbnailsCarousel .owl-prev {
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.videoThumbnailsCarousel .owl-next {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.videoThumbnailsCarousel .owl-prev i, .videoThumbnailsCarousel .owl-next i {
    width: 24px;
    height: 22px;
    display: block;
    background: url(../img/carouselArrows.png);
    background-size: 48px 22px;
    background-position: 0px 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -11px auto auto -12px;
}

.videoThumbnailsCarousel .owl-next i {
    background-position: -22px 0px;
}

.categoryNavHeader {
    float: right;
}

.categoryNavHeader a {
    width: 40px;
    height: 20px;
    display: block;
    float: left;
    /*border-left:1px solid #b0b0b0;*/
}

.categoryNavHeader a i {
    color: #FF32AC;
    width: 20px;
    height: 20px;
    display: block;
    float: left;
    background-size: 20px 20px !important;
    background-repeat: no-repeat;
    margin: 0 10px;
}

.categoryNavHeader > a.prev i {
    background: url(../img/back_ico.svg);
}

.categoryNavHeader > a.next i {
    background: url(../img/next_ico.svg);
}

.categoryNav {
    float: left;
    width: 100%;
    display: block;
    background: rgb(227, 227, 227); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(227, 227, 227, 1)), color-stop(100%, rgba(207, 207, 207, 1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%); /* IE10+ */
    background: linear-gradient(to bottom, rgba(227, 227, 227, 1) 0%, rgba(207, 207, 207, 1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e3e3e3', endColorstr='#cfcfcf', GradientType=0); /* IE6-9 */
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #c3c3c3;
}

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

.categoryNav a {
    float: right;
    display: block;
    font-weight: 700;
    color: #6b6b6b;
    text-shadow: 0px 1px 0px #FFF;
    border-left: 1px solid #c1c1c1;
    line-height: 40px;
    font-size: 14px;
    text-decoration: none;
    padding: 0 20px;
}

.categoryNav a.prev {
    padding-left: 40px;
    background: url(../img/arrowLeft.png) 15px center no-repeat;
    background-size: 15px;

}

.categoryNav a.next {
    padding-right: 25px;
    background: url(../img/arrowRight.png) center right no-repeat;
    background-size: 15px;
    margin-right: 15px;
}

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

.age-verification {
    bottom: 47px;
}

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

.footer {
    bottom: 0;
    position: fixed;
    width: 100%;
	z-index: 10000;
}

.landing > img {
    width: 100%;
    height: auto;
    display: block;
}

.fsk-footer{
    position:relative;
    width: 100%;
}

.no-margin{
    margin-bottom: 0px !important;
}

.grecaptcha-badge {
	display: none;
}