*{
	margin:0px;
	padding:0px;
}

body{
	font-family: 'Open Sans', sans-serif;
	background:#f5f5f5;
	color:#000;
	font-size:12px;
	font-weight: 400;
}

.container{
	width:1251px;
	margin:0 auto;
	position: relative;
}

.clear{
	clear:both;
	width:100%;
	height:0px;
}

a, em{

    color:#d21173;
}

h1{
	font-weight: 600;
	margin-bottom:15px;
}

h2{
	margin-bottom:15px;
    font-size: 2em;
}

	h2.inline{
		display:inline-block;
	}

input:focus {
    outline: none;
}

/* Language */

.languagepicker {
    display: inline-block;
    padding: 0;
    height: 30px;
    overflow: hidden;
    transition: all .3s ease;
    margin: 10px 5px 0 0;
    vertical-align: top;
    float: left;
    position: relative;
    z-index: 9999;

    list-style-type: none;
}

.languagepicker:hover {
    height: 60px;
    background: #fff;
}

.languagepicker a{
    color: #000;
    text-decoration: none;
}

.languagepicker li {
    display: block;
    padding: 6px 10px;
    line-height: 30px;
    list-style-type: none;
}

.languagepicker li:hover{
    background-color: #ef1c87;
}


.languagepicker li img {
    vertical-align: middle;
    width:20px;
    border: 2px solid #fff;
}

.languagepicker.desktop{
    position: absolute;
    right: 0px;
    bottom: 36px;
}


/*-- HEADER --*/

header{
	background:#1d1d1d;
    background: -moz-linear-gradient(-45deg, #ffffff 1%, #f7bbd8 42%, #fadaba 100%);
    background: -webkit-linear-gradient(-45deg, #ffffff 1%,#f7bbd8 42%,#fadaba 100%);
    background: linear-gradient(135deg, #ffffff 1%,#f7bbd8 42%,#fadaba 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fadaba',GradientType=1 );
	color:#1d1d1d;
	position: fixed;
	max-height:190px;
	width:100%;
	padding-bottom:47px;
	z-index:9;
}

	#logo{
		display:block;
		width:161px;
		height:112px;
		background:url(../images/logo.png) no-repeat;
		background-size:100%;
		margin:12px 0 19px 19px;
		transition: all 0.2s linear;
	}
	
		#logo.small{
			width:101px;
			height:70px;
		}

    .menu-button{
        font-size:2.4em;
        float:left;
        margin:12px 0 0 12px;
        color:#fff
    }

    .menu-button-search{
        font-size:2.4em;
        float:right;
        margin:12px 12px 0 0;
        color:#fff
    }

    .header-search.mobile {
        position: relative;
        bottom: 0;
        right: 0;
        height: 35px;
        border-bottom: 1px solid #a7a7a7;
    }

    .header-search.mobile .header-search-input {
        width: calc(100% - 40px);
        text-indent: 15px;
        font-size: 1.1em;
        height: 35px;
    }

    .header-search.mobile .header-search-submit {
        font-size: 1.5em;
        margin-right: 5px;
        width: 35px;
        height: 35px;
    }
		
	.header-search{
		position: absolute;
		bottom:36px;
		right:56px;
		background:#fff;
		height:29px;
	}

		.header-search-input{
			width:300px;
			border:0px;
			height:29px;
			text-indent:7px;
			display:block;
			float:left;
			font-size:1em;
		}
	
		.header-search-submit{
			color:#d21173;
			font-size:1.1em;
			border:0px;
			background:none;
			width:29px;
			height:29px;
			transition: all 0.2s linear;
			cursor: pointer;
		}
		
			.header-search-submit:hover{
				color:#000;
			}
	
	.header-account{
		position: absolute;
		right:16px;
		bottom:0px;
	}
	
		.header-account li{
			display:inline-block;
			list-style: none;
			margin-left:10px;
		}
		
			.header-account li:first-child{
				margin-left:0px;
			}
		
			.header-account li span{
				cursor:pointer;
				transition: all 0.2s linear;
                font-size: 16px;
			}
			
				.header-account li span:hover{
					color:#d21173;
				}
			
				.header-account li span i{
					color:#1d1d1d;
					margin-right:3px;
				}
				
				.header-account li a{
					color:#1d1d1d;
					text-decoration: none;
					transition: all 0.2s linear;
				}
				
					.header-account li a:hover{
						color:#d21173;
					}
		

	nav{
		width:100%;
		position: absolute;
		bottom:0px;
		left:0px;
		background:#d21173;
		height:47px;
	}
	
		nav ul{
			width:100%;
			display: flex;
		}
	
			nav ul li{
				list-style: none;
				border-left:solid 1px #e36da9;
				text-align: center;
				width:100%;
			}
			
				nav ul li:last-child{
					border-right:solid 1px #e36da9;
				}
			
				nav ul li a{
                    font-size:1.3em;
					color:#fff;
					line-height: 47px;
					text-decoration: none;
					display:block;
					width:100%;
					background:rgba(244,34,141,0);
					transition: all 0.2s linear;
				}
				
					nav ul li a:hover{
						background:rgba(244,34,141,1);
					}

.header-spacer{
	height:190px;
}

.pending-credits i{
	color:#f00!important;
	border-radius: 100%;
	border:solid 2px #fff;
	animation: bounce 2s infinite;
	background:#f00;
	font-size:0.9em;
	
}

	@keyframes bounce {
		0%{
			transform: translate(10px, -10px);
		}
		30%{
			transform: translate(10px, -10px);
		}
		50%{
			transform: translate(10px, -20px);
		}
		70%{
			transform: translate(10px, -10px);
		}
		100%{
			transform: translate(10px, -10px);
		}
	}

/*-- LIGHTBOX --*/

.lightbox-bg{
	position: fixed;
	bottom:0px;
	top:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0.8);
	opacity: 0;
	transition: all 0.2s linear;
	display:none;
	z-index:99;
}

.lightbox-bg1{
	position: fixed;
	bottom:0px;
	top:0px;
	left:0px;
	right:0px;
	background:rgba(0,0,0,0.8);
	opacity: 0;
	transition: all 0.2s linear;
	display:none;
	z-index:99;
}

	.lightbox-bg.active, .lightbox-bg1.active{
		opacity: 1;
	}

	#window{
		position: absolute;
		top:50%;
		left:50%;
		background:#fff;
		transform: translate(-50%,-50%);
		width:500px;
	}
	
		.lightbox-title, .lightbox-title1{
			color:#fff;
			text-align: center;
			background:#d21173;
			height:116px;
			line-height:116px;
			font-size:2.5em;
			font-weight: 300;
		}
		
		.lightbox-nav{
			width:100%;
			display:flex;
			height:58px;
		}
		
			.lightbox-nav li{
				list-style: none;
				text-align: center;
				width:100%;
				line-height:55px;
				border-bottom:solid 3px #ececec;
				transition: all 0.2s linear;
				cursor: pointer;
			}
			
				.lightbox-nav li i{
					font-size:1em;
					margin-right:3px;
				}
			
				.lightbox-nav li:hover, .lightbox-nav li.active{
					border-bottom:solid 3px #d21173;
					color:#d21173;
				}
				
		#window form{
			padding:20px;
		}
		
			.lightbox-subwindow{
				display:none;
			}
		
			#window form input[type="text"], #window form input[type="password"]{
				font-size:1em;
				width:calc(100% - 25px);
				display:block;
				border:0px;
				border-bottom: solid 1px #d6d6d6;
				margin-bottom:35px;
				font-weight: 300;
				height:30px;
				text-indent: 5px;
				float:right;
			}
			
			#window form input[type="checkbox"]{
				border: solid 2px #737373;
				margin-right:7px;
				height:16px;
				width:16px;
			}
			
				#window form span{
					display:block;
					clear:both;
				}
			
				#window form span i{
					margin-top:8px;
					font-size:1em;
					color:#8e8e8e;
				}
			
			#window form label{
				color:#8e8e8e;
				font-weight: 300;
				font-size:1.1em;
			}
			
			#window form input[type="submit"]{
				color:#fff;
				font-size:16px;
				font-weight: 300;
				background:#d21173;
				border: solid 1px #d21173;
				float:right;
				padding:10px 30px;
				border-radius: 3px;
				transition: all 0.2s linear;
			}
			
				#window form input[type="submit"]:hover{
					cursor: pointer;
					background:#fff;
					color:#d21173;
				}
			
		#error-msg{
			color:#f00;
		}
		
	.lb-main{
		width:calc(100% - 80px);
		height:400px;
		margin:20px auto 0 0;
		position: relative;
		overflow:hidden;
	}
	
		.lb-main-container{
			height:400px;
			position: absolute;
			top:0px;
			left:0px;
			transition: all 0.2s linear;
		}
		
			.lb-block{
				float:left;
			}
			
	.lb-back{
		width:40px;
		float:left;
		text-align: center;
		height:40px;
		margin-top:100px;
		font-size:30px;
		cursor:pointer;
        transition: all 0.2s linear;
		opacity: 0;
	}
	
		.lb-back:hover{
			color:#d21173;
		}

/*-- CONTENT --*/

.order{
	float:right;
}

.select{
	border:solid 1px #d21173;
	border-radius: 0px;
	height:30px;
	font-size:14px;
}

.main{
	background:#fff;
}

	.front-search{
		width:100%;
		height:274px;
        background-size: cover;
        background-position: center left;
        background-image: url(../images/search-bg.jpg);
		position: relative;
		margin-bottom:20px;
	}
	
		.front-search-text{
			text-align: center;
			font-size:30px;
			font-weight: bold;
			margin:25px 0 20px;
			float:left;
			width:100%;
		}
	
		.front-search-box{
			border:solid 2px #d21173;
			background:#fff;
			margin:0 auto;
			width:527px;
			height:60px;
			clear:both;
		}
		
			.front-search-input{
				width:calc(100% - 65px);
				text-indent:15px;
				font-size:30px;
				border:0px;
				height:60px;
				font-weight: 300;
			}
		
			.front-search-submit{
				font-size:50px;
				background:none;
				border:0px;
				color:#d21173;
				cursor: pointer;
				width:60px;
				height:60px;
				display:block;
				float:right;
				transition: all 0.2s linear;
			}
			
				.front-search-submit:hover{
					color:#000;
				}
			
	.content-left{
		float:left;
		width:calc(100% - 373px);
		margin-left:30px;
	}
	
		.top{
			margin-top:30px;
		}
	
	.content-right{
		float:right;
		width:282px;
		margin-right:30px;
	}
	
	.front-newest{
	}
	
		.front-newest-block{
            display: flex;
            margin-bottom: 30px;
            font-size: 1.2em;

            margin-left: 30px;
            margin-right: 30px;
        }
		
			.front-newest-item{
                flex: 1.85;
			}
			
				.front-newest-item img{
					width:100%;
				}

                .front-newest-item-banner-new {
                    background: #d21173;
                    color: #fff;
                    text-align: center;
                    padding: 10px;
                    font-size: 1.5em;
                }

                .front-newest-item-info {
                    flex: 1;
                    padding: 10px;
                    box-sizing: border-box;
                    background: #f5f5f5;
                    position: relative;
                }
				
				.front-newest-item-info a{
                    text-decoration: none;
                    font-weight: bold;
                    font-size: 1.4em;
				}

					.front-newest-item-info:hover a{
                        text-decoration: underline;
					}

                .front-newest-item-banner-watch {
                    background: #f08b23;
                    color: #fff;
                    text-align: center;
                    padding: 10.5px;
                    position: absolute;
                    width: calc(100% - 20px);
                    margin-left: -10px;
                    bottom: 0;
                }



			
		.front-newest-all-link{
			background:#f08b24;
			color:#fff;
			border:solid 1px #f08b24;
			text-decoration: none;
			height:36px;
			line-height: 36px;
			display:block;
			transition: all 0.2s linear;
			margin:0 auto 30px;
			width:100%;
			text-align: center;
            border-radius: 3px;
            font-size: 1.3em;
		}
		
			.front-newest-all-link:hover{
				color:#f08b24;
				background:#fff;
			}
			
	.front-models{
		width:100%;
		margin-bottom:30px;
	}
	
		.front-model-item{
            width: calc(25% - 20px);
            margin-right: 20px;
            text-align: center;
            border: solid 1px #f3f3f3;
            border-bottom: solid 4px #d21173;
            position: relative;
            padding-bottom: 20px;
            display: inline-block;
            margin-bottom: 30px;
            border-radius: 0 0 5px 5px;
		}
		
			.front-model-item:nth-child(4n+4){
				margin-right:0px;
			}
			
			.front-model-pink{
				position: absolute;
				top:-1px;
				left:-1px;
				right:-1px;
				height:65px;
				background:#d21173;
				border-bottom:solid 1px #f3f3f3;
				z-index: 0;
			}
			
			.front-model-image-link{
				position: relative;
				z-index:1;
				display:inline-block;
				border:solid 3px #f3f3f3;
				border-radius: 3px;
				margin:10px 0;
				transition: all 0.2s linear;
			}
			
				.front-model-image-link img{
                    object-fit: cover;
					object-position: 50% 10%;
					width:180px;
					aspect-ratio: 1.78;
					height: auto;
				}
			
				.front-model-image-link:hover{
					border:solid 3px #d21173;
				}
			
			.front-model-name-link{
				font-weight: bold;
				text-decoration: none;
				color:#616161;
				transition: all 0.2s linear;
                font-size: 1.2em;
			}
			
				.front-model-name-link:hover{
					color:#d21173;
				}
				
		.front-categories-link{
			color:#d21173;
			text-decoration: none;
			font-weight: bold;
			font-size:22px;
			text-transform: capitalize;
			margin-bottom:10px;
			display:inline-block;
		}
		
	.shop-items{
		margin-bottom:30px;
	}
	
		.shop-item{
			width:150px;
			float:left;
			margin-right:20px;
		}
		
			.shop-item img{
				width:150px;
				height:150px;
			}
		
			.shop-item:nth-child(4){
				margin-right:0px;
			}
			
			.shop-item-text-link{
				display:block;
				text-decoration: none;
				color:#d21173;
				height:44px;
				margin-bottom:10px;
				margin-top:10px;
				overflow: hidden;
			}
			
	.search-page-search{
		border:solid 2px #d21173;
		margin-bottom:30px;
		height: 29px;
	}
	
		.search-page-search-input{
			width:calc(100% - 45px);
			border:0px;
			height:29px;
			line-height: 29px;
			font-size:16px;
			margin-left:10px;
		}
	
		.search-page-search button{
			color:#d21173;
			font-size:20px;
			border:0px;
			background:0px;
			height:29px;
			width:29px;
			text-align: center;
			line-height: 29px;
			margin:0px;
			padding:0px;
			float:right;
			cursor:pointer;
		}
		
	.categorie-block{
		display:block;
        font-size: 1.2em;
        width: calc((100% - 90px) / 4);
		display:block;
		float:left;
		margin-right:30px;
		margin-bottom:30px;
		text-decoration: none;
		transition: all 0.3s linear;
	}

        .categorie-block img{
            width: 100%;
        }
	
		.categorie-block span{
			color:#fff;
			background:#d21173;
			display:block;
			height:29px;
			line-height: 29px;
			text-indent: 7px;
			text-transform: capitalize;
			border:solid 1px #d21173;
			transition: all 0.3s linear;
		}
		
			.categorie-block:hover span{
				color:#d21173;
				background:#fff;
			}
	
		.categorie-block:nth-child(4n+4){
			margin-right:0px;
		}
		
	.model-block{
		padding-bottom:15px;
		margin-bottom:30px;
	}
	
	.model-age{
		color:#d21173;
		font-weight: bold;
		margin-top:-20px;
		margin-bottom:15px;
	}
	
	.model-description{
		max-width: 350px;
	}

.cammodels {
    padding: 10px 0px 10px;
    margin-bottom: 30px;
    overflow-y: auto;
    border: 1px solid #f4f4f4;
    border-bottom: 4px solid #f08b24;
}
	
.cammodel{
	float:left;
    width: calc((100% - (4 * 7px)) /5 );
	margin-right:7px;
	text-decoration: none;
}

    .cammodel img{
        width:100%;
    }

	.cammodel:last-child{
		margin-right:0px;
	}
			
	.cammodel-info{
        background: #d21173;
        padding: 0px 2px;
        display: block;
        height: 18px;
        color: #fff;
        transition: all 0.2s linear;
	}
	
		.cammodel:hover .cammodel-info{
			background:#fff;
            color: #d21173;
            text-decoration: underline;
		}
		
		.cammodel-name{
			text-transform: capitalize;
		}

        .dot {
            height: 8px;
            width: 8px;
            background-color: #56ae35;
            border-radius: 50%;
            display: inline-block;
            margin-left: 3px;
        }

        .cam-header {
            display: block;
            width: 100%;
            background: #d21072;
            font-size: 1.2em;
            font-weight: bold;
            color: #fff;
            padding: 3px 15px;
            box-sizing: border-box;
        }
		
/*-- SIDERBAR --*/

.sidebar-title{
	color:#fff;
    font-size: 1.2em;
	background:#d21173;
	margin-bottom:10px;
	text-indent: 10px;
    font-weight: bold;
	height:31px;
	line-height:31px;
}

.sidebar-item{
    margin-bottom: 30px;
    border: 1px solid #f4f4f4;
    border-bottom: 4px solid #f08b24;
    border-radius: 0 0 5px 5px;
    display: block;
    text-decoration: none;
}

.sidebar-item-desc{
    color: #333;
    padding: 5px 10px;
}

.sidebar-newsletter{
	width:282px;
	height:327px;
	background:url(../images/sidebar-newsletter-bg-new.png) no-repeat;
	margin-bottom:30px;
}

	.sidebar-newsletter-content{
		display:block;
		float:left;
		width:100%;
		text-align: center;
		margin-top:185px;
		font-weight: bold;
        font-size: 1.3em;
	}
	
		.sidebar-newsletter-input{
			width:90%;
			font-size: 16px;
			padding:5px;
			margin:10px 0 10px;
		}
		
		.sidebar-newsletter-submit{
			padding:7px 20px;
			font-size:16px;
			color:#fff;
			background:#f08b24;
			border:solid 1px #f08b24;
			border-radius: 0px;
			cursor: pointer;
			transition: all 0.2s linear;
            border-radius: 3px;
		}
		
			.sidebar-newsletter-submit:hover{
				background:#fff;
				color:#f08b24;
			}

.blog-items{}
	
	.blog-item{
        margin-bottom: 30px;
        border: 1px solid #f4f4f4;
        border-bottom: 4px solid #f08b24;
        border-radius: 0 0 5px 5px;
        display: block;
        text-decoration: none;
	}
        .blog-item a {
            text-decoration: none;
        }

		.blog-item img{
			width:100%;
		}

        .blog-item-text{
            padding: 5px 10px;
        }

		.blog-item-text-link{
			text-decoration: none;
            color: #d21173;
            font-weight: bold;
		}
		
			.blog-item:hover .blog-item-text-link{
                text-decoration: underline;
			}

        .blog-item-desc{
            color: #333;
        }

        .blog-item-date{
            font-size: 0.9em;
            color: #7d7d7d;
            float:right;
        }
				
/*-- MOVIE ITEMS --*/

	.movie-item{
        width: calc((100% - 30px) / 2);
		float:left;
		margin-right:30px;
		margin-bottom:20px;
        border: 1px solid #dcdcdc;
        box-sizing: border-box;
	}
	
		.movie-item:nth-child(2n+2){
			margin-right:0px;
		}
		
		.movie-item a:first-child{
			display:block;
		}
		
		.front-newest-item a:first-child{
			display:block;
		}
		
		.movie-item img{
			width:100%;
			display:block;
		}

        .movie-item-date {
            padding: 0 5px;
            margin-top: -5px;
            color: #585858;
            display: block;
        }
		
		.movie-item-text-link{
			padding:5px;
			display:block;
			height:50px;
			text-decoration: none;
            font-size: 1.3em;
		}
		
			.movie-item:hover a{
                text-decoration: underline;
			}

/*-- MOVIE ITEMS WITH DESCRIPTION --*/

.movie-item-search{
    margin-bottom:20px;
    display:flex;
}

.movie-item-search-image{
    flex:1
}

.movie-item-search-date {
    padding: 0 0 5px 0;
    color: #585858;
    display: block;
}

.movie-item-search img{
    width:100%;
    display:block;
}

.movie-item-search-text-link{
    margin: 5px 0;
    display: block;
    text-decoration: none;
    font-size: 1.3em;
}
.movie-item-description{
    flex:2;
    padding-left: 15px;
}

.movie-item-search:hover a{
    text-decoration: underline;
}
			
/*-- PLAYER --*/

#player-title{
	margin:30px 30px 20px;
	max-width: 100%;
	float:left;
}

#video-player{
	margin-bottom:15px;
}

	#my-video{
		width: 100%;
	}
	
	.video-js .vjs-big-play-button{
		left:50%!important;
		top:50%!important;
		transform: translate(-50%,-50%);
	}
	
	.player-description{
		margin-bottom:15px;
		clear:both;
	}
	
	.player-cat-link{
		color:#d21173;
		text-decoration: none;
	}
	
		.player-cat-link:hover{
			text-decoration: underline;
		}
		
	.share-title{
		font-size:30px;
		position: relative;
		color:#d21173;
		float:right;
		margin-bottom:15px;
		cursor:pointer;
	}
		
	.share-block{
		background:rgba(0,0,0,0.7);
		border-radius: 5px;
		padding:8px;
		display:inline-block;
		position: absolute;
		bottom:-65px;
		right:-9px;
		display:none;
		opacity: 0;
		transition: all 0.3s linear;
		width:110px;
	}
	
	
		.share-block.active{
			opacity: 1;
		}
	
		.share-block a{
			color:#fff;
			text-decoration: none;
			font-size:26px;
			display:inline-block;
			margin-right:7px;
			transition: all 0.3s linear;
		}
		
			.share-block a:hover{
				color:#d21173;
			}
		
			.share-block a:last-child{
				margin-right:0px;
			}
	
		.share-triangle{
			width: 0; 
			height: 0; 
			border-left: 15px solid transparent;
			border-right: 15px solid transparent;
			border-bottom: 15px solid rgba(0,0,0,0.7);
			position: absolute;
			top:-15px;
			right:7px;
		}
		
	.player-categories{
		margin-bottom:30px;
	}

    .needaccess {
        color: #ff4242;
        background: #fff;
        text-align: center;
        padding: 2px 0;
    }


/*-- Movie Photo Gallery --*/
.gallery-container {
    margin-bottom: 30px;
}

.movie-photo-gallery figure {
    display: block;
    float: left;
    width: calc((100% - 30px) / 4);
    margin: 5px 0;
    margin-right: 10px;
}

.movie-photo-gallery figure:last-of-type{
    margin-right:0px;
}

.movie-photo-gallery img {
    max-width: 100%;
}
	
.payment-right{
	margin-bottom:100px;
}

.videotabs div {
    width: calc(50% - 2px);
    display: inline-block;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    padding: 10px 0;
    background: #fff;
    color: #333;
    border: 1px solid #d8d8d8;
}

    .videotabs div.active {
        font-weight: bold;
        color: #fff;
        background: #f08b24;
        border: 1px solid #f08b24;
    }

    .videotabs div:hover {
        background: #f5b371;
        border: 1px solid #f5b371;
    }

#watch-minute, #watch-time, #watch-subscription{
	display:block;
	background:#f08b24;
	text-align:left;
	color:#fff;
	line-height: 65px;
	margin-bottom:7px;
	transition: all 0.3s linear;
	font-size:19px;
	cursor: pointer;
	padding:0 15px;
	text-decoration: none;
}

#watch-time{
	margin-bottom:10px;
}

	#watch-time:hover, #watch-minute:hover, #watch-subscription:hover, #watch-time.active, #watch-minute.active, #watch-minute.subscription{
		background:#20bc24;
	}

#container-minute{
	font-size:13px;
	line-height: normal;
}

	.call-number{
		font-size:28px;
		font-weight: bold;
		margin-bottom:13px;
		color:#000;
		margin-top:4px;
	}
	
		.call-number span{
			color:#fff;
			font-size:12px;
			font-weight: 300;
			font-style: italic;
		}
		
	.call-input{
		height:40px;
		font-size:16px;
		width:130px;
		margin-right:5px;
		margin-top:2px;
		padding:0 0 0 7px;
		vertical-align: top;
		display:inline-block;
		margin-top:5px;
		border:0px;
		margin-bottom:24px;
	}
		
	.call-submit{
		color:#fff;
		background:#000;
		border:solid 1px #000;
		font-size:16px;
		cursor: pointer;
		transition: all 0.2s linear;
		width:100px;
		height:40px;
		vertical-align: top;
		display:inline-block;
		margin-top:5px;
	}
	
		.call-submit:hover{
			color:#000;
			background:#fff;
		}

#container-time{
	display:none;
	/*display:block;*/
}

	.player-email, .container-time-block input[type="password"] {
		width:calc(100% - 8px);
		display:block;
		margin-bottom:7px;
		font-size:14px;
		padding:3px;
		border:solid 1px #ccc;
	}
	
		.container-time-block input[type="text"]:focus, .container-time-block input[type="password"]:focus{
			border:solid 1px #d21173;
		}
	
	#pl_submit{
		width:100%;
		border:0px;
		font-size:14px;
		text-align: center;
		background:#f08b24;
		color:#fff;
		transition: all 0.2s linear;
		cursor: pointer;
		padding:10px 0;
		font-size:18px;
	}
	
		#pl_submit:hover{
			background:#d21173;
		}

	#container-time ul{
		list-style: none;
	}
	
.subtitle{
	font-weight: bold;
	margin-bottom:10px;
	
}

	.subtitle span{
		float:left;
		width: calc(100% - 50px);
        font-size: 18px;
	}

.container-time-block{
	margin-bottom:20px;
}

	#bundle li{
		background:#81a6f6;
		padding-left:25px;
		color:#fff;
		margin-bottom:5px;
		height:50px;
		line-height: 50px;
		transition: all 0.3s linear;
		cursor: pointer;
	}
	
		#bundle li:nth-child(2){ background:#507cdc;}
		#bundle li:nth-child(3){ background:#2c60ce;}
		#bundle li:nth-child(4){ background:#1847a3;}
		
		#bundle li.active, #bundle li:hover{
			background:#1fbc23;
		}
		
		#bundle li span{
			display:inline-block;
			width:160px;
		}
		
	#lb-bundle li{
		background:#81a6f6;
		padding-left:25px;
		color:#fff;
		margin-bottom:5px;
		height:50px;
		line-height: 50px;
		transition: all 0.3s linear;
		cursor: pointer;
		list-style: none;
	}

		#lb-bundle li:nth-child(2){ background:#507cdc;}
		#lb-bundle li:nth-child(3){ background:#2c60ce;}
		#lb-bundle li:nth-child(4){ background:#1847a3;}
		
		#lb-bundle li.active, #lb-bundle li:hover{
			background:#1fbc23;
		}
		
		#lb-bundle li span{
			float:right;
			margin-right:20px;
		}
		
		.paymethod{
			width:80px;
			height:80px;
            display: block;
            float: left;
			margin:0 16px 16px 0;
			background-repeat: no-repeat;
			cursor: pointer;
			transition: all 0.3s linear;
            border: 3px solid transparent;
            border-radius: 5px;
		}

            .paymethod img {
                max-width: 100%;
                display: block;
                position: relative;
                top: 50%;
                transform: translateY(-50%);
            }
		
			.paymethod:last-child{
				margin-right:0px;
			}
			
			.paymethod:hover, .paymethod.active{
                border: 3px solid #d21073;
			}

        ul#lb-issuer, ul#issuer{
            display: flex;
            flex-wrap: wrap;
            flex-direction: row;
        }

		.pay-bank{
            width: 50%;
            cursor: pointer;
            transition: all 0.3s linear;
            color: #141414;
            font-size: 12px;
            height: 78px;
            position: relative;
            background-position: center 15px;
            background-repeat: no-repeat;
            background-size: unset;
            list-style: none;
            margin: 0 auto;
		}

            ul#lb-issuer .pay-bank{
                width: 33%;
            }
			
			.pay-bank:hover, .pay-bank.active{
				color:#1fbc23;
                background-color: #f7eff3;
			}
			
			.pay-bank span{
                width: 100%;
                display: block;
                position: absolute;
                top: 48px;
                text-align: center;
			}
			
			#abnamro{				background:url(../images/logo-abn.png) no-repeat;}
			#rabobank{				background:url(../images/logo-rabobank.png) no-repeat;}
			#ing{					background:url(../images/logo-ing.png) no-repeat;}
			#snsbank{				background:url(../images/logo-sns.png) no-repeat;}
			#asnbank{				background:url(../images/logo-asn.png) no-repeat;}
			#knab{					background:url(../images/logo-knab.png) no-repeat;}
			#regiobank{				background:url(../images/logo-regiobank.png) no-repeat;}
			#triodosbank{			background:url(../images/logo-triodos.png) no-repeat;}
			#vanlanschotbankiers{	background:url(../images/logo-vanlanschot.png) no-repeat;}

		.account-submit, .account-submit1{
			display:block;
			background:#1fbc23;
			color:#fff;
			text-align: center;
			height:48px;
			line-height:48px;
			border:solid 1px #1fbc23;
			cursor: pointer;
			transition: background 0.3s linear, color 0.3s linear;
		}
		
		.account-submit1{
			display:none;
		}
		
			.account-submit:hover, .account-submit1:hover{
				background:#fff;
				color:#1fbc23;
			}
			
	 #account-s2, #account-s3, #account-s4, .account-submit{
		display:none;
	}
	
	#account-s2.visible{
		display:block;
	}


    #method li {
        width: 72px;
        height: 72px;
    }
	
	
/*-- PAGING --*/

.paging{
	display:block;
	text-align: center;
	list-style: none;
	margin-bottom:30px;
}

	.paging ul li, .paging .next, .paging .prev{
		display:inline-block;
		list-style: none;
	}

	.paging ul li a, .paging .next a, .paging .prev a{
		display:inline-block;
		width:37px;
		height:37px;
		text-align: center;
		line-height: 37px;
		border:solid 1px #d21173;
		border-radius: 50%;
		margin:0 7px;
		transition: all 0.3s linear;
		font-size:14px;
	}
	
		.paging .selected a{
			background:#d21173;
		}
		
			.paging .selected a{
				color:#fff;
			}
	
		.paging ul li:hover a, .paging .next:hover a, .paging .prev:hover a{
			background:#d21173;
		}
		
			.paging ul li:hover a, .paging .next:hover a, .paging .prev:hover a{
				color:#fff;
			}
	
		.paging a{
			color:#d21173;
			text-decoration: none;
			transition: all 0.3s linear;
		}

	
	.paging .numbers{
		display:inline-block;
	}
	
	.paging ul{
		display:inline-block;
	}

/*-- FOOTER --*/

.footer{
	border-top:solid 3px #d21173;
	background:#fff;
	padding-bottom:30px;
	text-align: center;
	font-size:14px;
	color:#fff;
}

	.footer-logo{
		width:139px;
		height:83px;
		background:url(../images/footer-logo.jpg) no-repeat;
		margin:30px auto;
	}
	
	.footer-link{
		color:#d21173;
		text-decoration: none;
	}

.mobile{
	display:none;
}

@media screen and (max-width: 1266px){
    .container {
        width: 1051px;
    }
}

@media screen and (max-width: 1066px) {
	.container{
		width:860px;
	}
	
	.front-newest-item{
	}
	
		.front-newest-item:first-child{
		}

    .front-newest-block {
        font-size: 1.0em;
    }
		
	.content-left{
		width:calc(100% - 60px);
		margin-left:30px;
	}
	
		.movie-item{
			width:246px;
		}

        .movie-item:nth-child(3n+3){
            margin-right:0px;
        }

    .movie-item:nth-child(2n+2){
        margin-right:30px;
    }


    .front-categories-block  .movie-item:last-child, .front-favorite  .movie-item:last-child, .front-newest .movie-item:last-child{
            display:none;
        }
		
	.content-right{
		width:calc(100% - 60px);
	}
	
	.blog-item{
		width:246px;
		margin-right:28px;
		float:left;
	}
	
		.blog-item:last-child{
			margin-right:0px;
		}
		
		.blog-item-text-link{
			overflow: hidden;
		}
		
	#container-minute{
		font-size:19px;
	}
	
	#video-player{
		margin-bottom:0px;
	}
	
	.payment-right{
		margin-bottom:20px;
	}
	
	.cammodel:nth-child(4){
		display:none;
	}

    .cammodel {
        width: calc((100% - (3 * 7px)) /4 );
    }

    .front-search{
        height: 220px;
        margin-bottom: 10px;
    }

    .front-search-text{
        font-size:25px;
        margin:20px 0 15px;
    }

    .front-search-box{
        height:50px;
    }

    .front-search-input{
        text-indent:15px;
        font-size:25px;
        height:50px;
    }

    .front-search-submit{
        font-size:40px;
        width:50px;
        height:50px;
    }


}


@media screen and (max-width: 1266px) {

    .categorie-block {
        width: calc((100% - 60px) / 3);
    }

    .categorie-block:nth-child(4n+4) {
        margin-right: 30px;
    }

    .categorie-block:nth-child(3n+3) {
        margin-right: 0px;
    }
}

@media screen and (max-width: 890px) {
	
	nav ul li a{
		font-size:14px;	
		font-weight: bold;
	}
	
	.container{
		width:768px;
	}
	
	.front-newest-item{
	}
	
	.blog-item, .movie-item{
		width:215px;
	}
    .front-newest-block {
        font-size: 0.9em;
    }

}

@media screen and (max-width: 785px){
	.desktop{
		display:none;
	}
	
	.mobile{
		display:block;
	}
	
	nav{
		height: auto;
		position: relative;
	}
	
		nav ul{
			display:block;
			clear:both;
		}
		
			nav ul li{
				border-right: 0px;
				border-bottom:solid 1px #e36da9;
			}
					
				nav ul li a{
					display: inherit;
					font-size:16px;
					font-weight: normal;
				}
		
			.header-account{
				position: relative;
				right:0px;
			}

            .header-account.desktop{
                display: block;
            }

            .header-account.desktop li {
                line-height: 30px;
                text-align: center;
            }

            .header-account.desktop li.pending-credits {
                color: #fff!important;
                background: rgb(69, 76, 87);
                font-weight: bold;
            }

				.header-account li{
					display:block;
					color: #fff;
				    line-height: 47px;
				    text-decoration: none;
				    width: 100%;
				    background: rgba(244,34,141,0);
				    transition: all 0.2s linear;
				    margin:0px;
				}

                .header-account li.desktop {
                    display: none;
                }

					.header-account li:hover{
						color:#fff!important;
						background:rgba(244,34,141,1)
					}
					
					.header-account li span:hover{
						color:#fff;
					}

                    .header-account li a {
                        color: #fff;
                    }
	
	header{
		position: relative;
		padding-bottom:0px;
		max-height: inherit;
        background: #d21173;
	}

    .header-account li span:hover {
        color: #d21173;
    }
    .header-account li span i {
        color: #fff;
    }


	
	
		#logo{
			display:inline-block;
            max-height: 49px;
            max-width: 70px;
            margin: 3px 0 ;
            position: relative;
            left: calc(50vw - 83px);
		}
	
	.menu{
		display:none;
	}
	
	.header-spacer{
		display:none;
	}
	
	.container{
		width:100%;
	}
	
	.front-models{
		display:block;
	}
	
	.front-model-item{
		width:calc(50% - 17px);
		float:left;
		margin-bottom: 30px;
	}
	
		.front-model-item:nth-child(2n+2){
			margin-right:0px;
		}
		
	.front-newest-item{
	}


    .front-newest-block {
        font-size: 1em;
    }
	
	.movie-item, .blog-item{
		width:calc(50% - 17px);
		margin-right:30px;
	}
	
		.movie-item:nth-child(3n+3){
			margin-right:30px;
		}
	
		.movie-item:nth-child(2n+2), .blog-item:nth-child(2n+2){
			margin-right:0px;
		}

        .front-categories-block  .movie-item:last-child, .front-favorite  .movie-item:last-child, .front-newest .movie-item:last-child{
            display:block;
        }

		.blog-item:nth-child(3){
			display:none;
		}

    .front-search{
        height: 180px;
        margin-bottom: 10px;
    }

    .front-search-text{
        font-size:20px;
        margin: 15px 0 10px;
    }

    .front-search-box{
        height:40px;
        width:calc(100% - 10px);
        max-width: 440px;
    }

    .front-search-input{
        text-indent:10px;
        font-size:20px;
        height:40px;
    }

    .front-search-submit{
        font-size:30px;
        width:40px;
        height:40px;
    }

    .front-newest-block {
        display: block;
    }

    .front-newest-item-banner-watch {
        position: relative;
        width: 100%;
        margin: 10px -10px -10px;
    }

}

@media screen and (max-width: 630px) {
    .movie-photo-gallery figure {
        width: calc((100% - 10px) / 2);
    }

    .movie-photo-gallery figure:nth-child(2n+2) {
        margin-right: 0px;
    }
}

@media screen and (max-width: 550px){
	.movie-item, .blog-item{
		display:block;
		width:100%;
		margin-right:0px;
	}

    .movie-item-search{
        display:block;
        width:100%;
    }
    .movie-item-description {
        padding-left: 0px;
    }
	
	.front-categories-block .movie-item:nth-child(3), .front-favorite .movie-item:nth-child(3), .blog-item:nth-child(3){
		display:none;
	}
	
	.model-block{
		background:none!important;
	}
	
	#window{
		width:320px;
	}
	
	.lightbox-nav-button span{
		display:none;
	}
	
	.shop-item{
		width:100%;
		margin-right:0px;
	}
	
	.front-newest-item{
	}


    .front-search{
        height: 150px;
        margin-bottom: 5px;
    }

    .front-search-text{
        font-size:16px;
        margin: 10px 0;
    }

    .front-search-box{
        height:30px;
        max-width: 280px;
    }

    .front-search-input{
        text-indent:5px;
        font-size:16px;
        height:30px;
    }

    .front-search-submit{
        font-size:20px;
        width:30px;
        height:30px;
    }

    .front-newest-block {
        width: 100%;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }

    .cammodel:nth-child(3){
        display:none;
    }

    .cammodel {
        width: calc((100% - (2 * 7px)) / 3 );
    }

    .categorie-block {
        width: calc((100% - 30px) / 2);
    }

    .categorie-block:nth-child(3n+3) {
        margin-right: 30px;
    }

    .categorie-block:nth-child(2n+2) {
        margin-right: 0px;
    }

}

#privacy li {
    list-style: inside;
    list-style-type: square;
    padding-left: 20px;
}

#privacy p {
    margin-bottom: 10px;
}

















































