@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700);
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700,600);

* {
	margin: 0;
	padding: 0;
	border: none;
	underline: none;
	outline: none;
	text-decoration: none;
	}

html, body {
	width: 100%;
	height: 100%;
	background: #171717;
	font-family: "Source Sans Pro";
	}

#overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	background: rgba(0, 0, 0, 0.7);
	display: none;
	opacity: 0;
	z-index: 80;
	top: 0; left: 0;

	transition: all .4s ease;
	}

#overlay.show {
	display: block;
	}

#overlay.fade-in {
	opacity: 1;
	}

#header {
	width: 100%;
	height: 120px;
	}

#logo {
	width: auto;
	height: 30px;
	position: relative;
	top: 25px; left: 25px;
	}

ul#menu {
	position: relative;
	font-size: 15px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: inline-block;
	margin-left: 60px;
	top: 10px;
	}

ul#menu li {
	display: inline-block;
	list-style: none;
	padding-bottom: 4px;
	margin-right: 30px;
	}

ul#menu li.current, ul#menu li:hover {
	border-bottom: 2px solid #fff203;
	}

ul#menu li a {
	color: #777;
	}

ul#menu li.current a {
	color: #fff;
	}

#videoland {
	color: #fff;
//	margin-left: 70px;
	}

#videoland h3 {
	position: relative;
	font-size: 20px;
	font-weight: 400;
	text-transform: uppercase;
	float: left;
	z-index: 9;
	margin-left: 70px;
//	margin-bottom: 20px;
	}

#videoland span.button {
	font-size: 10px;
	letter-spacing: 1px;
	border: 2px solid #6a6a6a;
	border-radius: 99px;
	display: inline-block;
	float: left;
	cursor: pointer;
	padding: 2px 16px;
	margin-left: 30px;
	margin-top: 2.5px;
	}

.slider-holder {
	width: 100%;
	position: static;
	white-space: nowrap;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	margin-bottom: 100px;
	}

.fade-left {
	width: 70px;
	height: 100%;
	position: absolute;
	background: url(../img/videoland-fade-left.png);
	background-size: 100%;
	z-index: 11;
	pointer-events: none;
	margin-top: -300px;
	left: 0;
	}

.fade-right {
	width: 140px;
	height: 100%;
	position: absolute;
	background: url(../img/videoland-fade-right.png);
	background-size: 100%;
	z-index: 11;
	pointer-events: none;
	margin-top: -300px;
	right: 0;
	}

.slider {
	width: 100%;
	display: inline-block;
	padding: 20px 140px 20px 70px;
	}

.slider .film {
	width: 185px;
	height: 270px;
	background: #a7a7a7;
	border-radius: 6px;
	display: inline-block;
	margin-right: 15px;

	transition: all .2s ease;
	}

.slider .film:hover {
	transform: scale(1.03);
	box-shadow: 0px 5px 20px #000;
	}

#findbot {
	width: 50px;
	height: 50px;
	position: fixed;
	background: #fff;
	border-radius: 99px;
	box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
	z-index: 999;
	cursor: pointer;
	bottom: 25px;
	right: 30px;
	}

#findbot .dots {
	position: relative;
	margin-top: -14px;
	margin-left: -12px;
	top: 50%; left: 50%;

	transition: all .2s ease;
	}

#findbot.two .dots {
	margin-top: 2px;
	margin-left: -15px;

	transform: rotate(45deg);
	}

#findbot .dot {
	width: 4px;
	height: 4px;
	background: #000;
	border-radius: 99px;
	display: inline-block;
	margin-right: 3px;

	transition: all .2s ease;
	}

#findbot.cross .dot-one {
	margin-left: 10px;
	}

#findbot.cross .dot-two {
	margin-left: -10px;
	}

#findbot.cross .dot-three {
	margin-left: -10px;
	}

#findbot.two .dot-one {
	height: 12px;
	}

#findbot.two .dot-two {
	width: 20px;
	margin-left: -18px;
	}

#findbot.two .dot-three {
	height: 16px;
	position: relative;
	vertical-align: top;
	top: 9px;
	margin-left: -18px;
	}

#film {
	width: 100%;
	height: 100%;
	position: fixed;
	background: #fff;
	z-index: 99;
	display: none;
	top: 0; left: 0;
	}

#film p {
	width: 100%;
	position: absolute;
	font-family: "Open Sans";
	font-size: 26px;
	color: #aaa;
	text-align: center;
	margin-top: -23px;
	top: 50%;
	}

#bot {
	width: 0px;
	height: 0px;
	position: fixed;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 10px;
	box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.6);
	z-index: 85;
	overflow: hidden;
	right: 50px; bottom: 50px;

	transition: all .4s ease;
	}

#bot.show {
	width: 500px;
	height: 500px;
	}

.bot-cover {
	width: 100%;
	height: 100%;
	position: absolute;
	background: #fff;
	border-radius: 10px;
	pointer-events: none;
	opacity: 0;
	z-index: 10;
	top: 0; left; 0;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;

	transition: all .4s ease;
	}

.bot-cover.show {
	opacity: 1;
	}

#content {
	width: 100%;
	height: 419px;
	position: absolute;
	overflow: auto;
	top: 0; left: 0;

	transition: all .4s ease;
	}

#content.full {
	height: 99%;
	}

#content.vijf {
	height: 446px;
	}

#content.film {
	height: 269px;
	}

#content.minimize {
	height: 319px;
	}

#content.yepnope {
	height: 399px;
	}

.message {
	max-width: 300px;
	position: relative;
	background: #e7e7e7;
	font-family: "Open Sans";
	font-size: 14px;
	color: #454545;
	line-height: 190%;
	border-radius: 10px;
//	box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.15);
	display: table;
	padding: 12px 17px;
	margin-top: 14px;
	margin-left: auto;
	margin-bottom: 14px;
	top: 0px; right: 15px;

	transition: all .4s ease;
	}

.message.show {
	opacity: 0;
	display: table !important;
	top: 40px;
	}

.message.fade-in {
	opacity: 1;
	top: 0;
	}

.message.bot {
	background: #c3c3c3;
	margin-left: 15px;
	right: auto;
	}

.typing .bullet {
	width: 7px;
	height: 7px;
	position: relative;
	background: #777;
	border-radius: 99px;
	display: inline-block;
	margin: 0 4px;
	top: 0;

	transition: all .2s ease;
	}

.typing .bullet.up {
	top: -12px;
	}

.message.optie {
	max-width: 230px;
	}

.message.film {
	width: 320px;
	}

.message.film img {
	max-width: 100%;
	border-radius: 4px;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.25);
	}

.message.film h3 {
	font-size: 17px;
	margin-top: 12px;
	}

.message.film p {
	font-size: 12px;
	font-style: italic;
	margin-top: 10px;
	}

.message.film p.details {
	font-size: 10px;
	font-style: normal;
	margin-top: 14px;
	}

.message.optie span {
	border: 1px solid #454545;
	border-radius: 4px;
	display: inline-block;
	cursor: pointer;
	padding: 3px 10px;
	margin: 8px 0;

	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	}

.message.optie span.emoji {
	font-size: 40px;
	background: none !important;
	border: none !important;
	margin: 0 20px;
	}

.message.optie span:hover, .message.optie span.clicked {
	background: #fff;
	border: 1px solid #fff;
	color: #00f483;
	}

#footer {
	width: 100%;
	height: 0px;
	position: absolute;
	background: #fff;
	border-top: none;
	border-radius: 0px 0px 10px 10px;
	overflow: hidden;
	bottom: 0; left: 0;

	transition: all .4s ease;
	}

#footer * {
	opacity: 0;

	transition: opacity .4s ease;
	}

#footer.vijf {
	height: 53px;
	}

#footer.film {
	height: 230px;
	}

#footer.maximize {
	height: 180px;
	border-top: 1px solid #eaeaea;
	}

#footer.yepnope {
	height: 100px;
	border-top: 1px solid #eaeaea;
	}

#footer.showItems * {
	opacity: 1;
	}

#footer .selectie {
	width: 90%;
	position: relative;
	top: 28px; left: 5%;
	}

#footer .selectie img {
	width: 80px;
	border: 1px solid #e7e7e7;
	border-radius: 4px;
	cursor: pointer;
	display: inline-block;
	float: left;
	margin: 0 4px;

	transition: all .4s ease;
	}

#footer .selectie img:hover {
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
	}


#footer .selectie img.selected {
	border: 1px solid #00b540;
	box-shadow: none !important;
	}

#invoerVeld {
	width: 248px;
	position: relative;
	font-family: "Open Sans";
	font-size: 14px;
	color: #999;
	text-align: center;
	border: 1px solid #e7e7e7;
	border-radius: 6px;
	display: inline-block;
	padding: 10px 0;
	margin-top: 28px;
	margin-left: 30px;
	}

#kidsprofiel {
	cursor: pointer;
	display: inline-block;
	margin-left: 32px;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	}

#kids-check {
	width: 8px;
	height: 8px;
	background: #fff;
	border: 1px solid #454545;
	border-radius: 2px;
	display: inline-block;
	margin-right: 8px;

	transition: background .4s ease;
	}

#kids-check.yep {
	background: #454545;
	}

#kidsprofiel span {
	position: relative;
	font-size: 10px;
	color: #454545;
	top: -2.5px;
	}

::-webkit-input-placeholder {
	color: #aaa;
	}

:-moz-placeholder {
	color: #aaa;
	}
::-moz-placeholder {
	color: #aaa;
	}

:-ms-input-placeholder {
	color: #aaa;
	}

#verstuur {
//	background: #07df95;
	background: #4a90e2;
	position: relative;
	font-family: "Open Sans";
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	padding: 7px 14px;
	margin-left: 52px;
	}

.done {
	background: #4a90e2;
	position: absolute;
	font-family: "Open Sans";
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	padding: 7px 14px;
	top: 60%; left: 30px;
	}

.done2 {
	top: 75%;
	}

.geen, .geen1, .geen2 {
	left: 25%;
	}

.vierKeuzes {
	margin-top: 11px;
	}

.Button {
	background: #4a90e2;
//	position: absolute;
	font-family: "Open Sans";
	font-size: 13px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	padding: 7px 14px;
	margin-left: 12px;
	margin-right: 12px;
	margin-bottom: 15px;
	}

.overslaan {
	background: #4a90e2;
	position: absolute;
	font-family: "Open Sans";
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	padding: 7px 14px;
//	margin-left: -90px;
	top: 60%; right: 30px;
	}

.jaNee {
	display: table;
	margin: 30px auto;
	}

.ja, .nee {
	background: #4a90e2;
	font-family: "Open Sans";
	font-size: 14px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	border-radius: 5px;
	padding: 10px 35px;
	margin: 0 50px;
	top: 60%; left: 50%;
	}