@charset "utf-8";
/* ----------------------------------------------------------------------- Fonts ----------------------------------------------------------------------- */
@font-face{
    font-family: 'Montserrat-Regular-Regular';
    src: url('../fonts/Montserrat-Regular-Regular.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat-Light';
    src: url('../fonts/Montserrat-Light.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'Gobold-thin-italic';
    src: url('../fonts/gobold-thin-italic.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'HelveticaNowDisplay-Thin';
    src: url('../fonts/HelveticaNowDisplay-Thin.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'HelveticaNowDisplay-Regular';
    src: url('../fonts/HelveticaNowDisplay-Regular.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'HelveticaNowDisplay-Bold';
    src: url('../fonts/HelveticaNowDisplay-Bold.ttf');
    font-style: normal;
}
@font-face{
    font-family: 'ElegantIcons';
    src: url('../fonts/ElegantIcons.ttf');
    font-style: normal;
}


/* ---------------------------------------------------------------------- General ---------------------------------------------------------------------- */
html{ scroll-behavior: smooth; }
html, body{
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-width: 980px;
}
body{
	display: flex;
	flex-direction: column;
	
	width: 100%;
	font-size: 0px;
	line-height: 0px;
	
	color: #5c4138;
	background-color: #ffffc9;

	overflow: auto;
	overflow-y: scroll;
}
div, font, p, a, b, span, h1, h2, h3, u, li, i{
	font-family: "Montserrat-Light", sans-serif;
	font-size: 18px;
	line-height: 21px;
	color: #243076;
	margin: 0px;
	padding: 0px;
	background-color: transparent;
}
div, a{ display: inline-block; }
h1{
	display: inline-block;
	font-size: 40px;
	line-height: 50px;
}
h2{
	display: inline-block;
	font-size: 30px;
	line-height: 40px;
}
h3{
	font-family: "Montserrat-Regular", sans-serif;
	display: inline-block;
	font-size: 21px;
	line-height: 23px;
}
h3 i{
	font-size: 21px;
	line-height: 23px;
}
a{
	color: #243076;
	text-decoration: none;
	outline: none;
	transition: all 0.1s;
}
a:hover{ color: #b7c1fb; }
img{
	border: 0px;
	margin: 0px;
	padding: 0px;
}
li{ padding-bottom: 21px; }

/* ----------------------------------------------------------------------- Tables ---------------------------------------------------------------------- */
table{
	border: 0px;
	border-collapse: collapse;
}
table, tr, td{
	font-family: "Montserrat-Regular", sans-serif;
	font-size: 18px;
	line-height: 21px;
	color: #243076;
	margin: 0px;
	padding: 0px;
}
td{
	vertical-align: top;
	text-align: left;
}

/* ----------------------------------------------------------------------- Forms ----------------------------------------------------------------------- */
form, input, textarea, button, select{
	font-size: 18px;
	color: #243076;
	font-weight: normal;
	background-color: #fcfcfc;
	margin: 0px;
	padding: 0px;
}
form{ background-color: transparent; }
input, textarea, button, select, label{
	font-family: "Montserrat-Regular", sans-serif;
	border: 1px solid #243076;
	padding: 10px;
	color: #243076;
}

/* -------------------------------------------------------------------- Navigation --------------------------------------------------------------------- */
nav{
	position: fixed;
	z-Index: 2;
	top: 0px;
	left: 0px;
	width: calc(100% - 25px - 25px);
	min-width: 930px;
	display: inline-block;
	padding: 25px;
	padding-bottom: 0px;
	text-align: right;
	background-color: transparent;
}
.fRLogoHeader{
	width: 100px;
	height: 44px;
	background-image: url(../images/quickiesLogo2_dBlue.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.fRLogoHeader:hover{ transform: scale(1.2); }
.toggleMenuLabel{
	position: relative;
	display: inline-block;
	z-Index: 4;
	background-color: #243076;
	padding: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 20px;
	color: #ffffc9;
	font-size: 20px;
	line-height: 20px;
	transition: all 0.1s;
	cursor: pointer;
}
.toggleMenuLabel:hover{ transform: scale(1.2); }

.sideMenuWrapper{
	position: fixed;
	z-Index: 3;
	top: -500px;
	right: 0px;
	min-width: 270px;
	border: 1px solid #1b1b1b;
	border-right: none;
	border-radius: 0px 0px 0px 75px;
	box-shadow: 0px 0px 10px #1b1b1b;
	background-color: #ffffff;
	font-family: "Montserrat-Bold", sans-serif;
	text-align: left;
	padding: 25px;
	padding-bottom: 35px;
	transition: top 0.5s ease-out;
	opacity: 0.90;
	font-size: 18px;
	line-height: 21px;
}
.toggleMenuLabel:hover ~ div.sideMenuWrapper{ top: -2px; }
.sideMenuWrapper:hover{ top: -2px; }

.toggleMenuCheckbox{
	-webkit-appearance: checkbox;
	display: none;
}
.toggleMenuCheckbox:checked ~ .sideMenuWrapper{ top: -2px; }
.toggleMenuCheckbox:checked + .toggleMenuLabel{ transform: scale(0.8); }
.toggleMenuCheckbox:checked + .toggleMenuLabel:hover{ transform: scale(1.2); }
.toggleMenuCheckbox + .toggleMenuLabel:after{ content:'MENU'; }
.toggleMenuCheckbox:checked + .toggleMenuLabel:after{
	content:'CLOSE';
	color: #ffffff;
}

.menuLink{
	font-family: "Montserrat-Regular", sans-serif;
	color: #243076;
	font-size: 18px;
	line-height: 21px;
}
.menuLink:hover{ color: #b7c1fb; }
.socialMediaLink{
	font-family: 'ElegantIcons', sans-serif;
	font-size: 40px;
	line-height: 40px;
	color: #243076;
	cursor: pointer;
	transition: all 0.1s;
	margin-right: 10px;
}
.socialMediaLink:hover{ transform: scale(1.2); }
.socialMediaLinkLast{ margin-right: 0px; }

/* ---------------------------------------------------------------------- Global ----------------------------------------------------------------------- */
.quickiesSeasonOne{ background-color: #ffffff; }
.quickiesSeason3{ 
	background-image: url(../images/fRQuickies3_bg.jpg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-attachment: fixed;
	background-size: cover;
}
.pageWrapper{
	width: 100%;
	min-width: 980px;
	font-size: 0px;
	line-height: 0px;
}
.contentWrapper{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100% - 50px - 50px);
	min-width: 880px;
	padding: 50px;
}
.contentContainerContentWidth{ width: 430px; }
.contentContainer{ display: inline-block; width: 100%; }
.contentContainerMarginTop{
	margin-top: 100px;
	margin-bottom: 25px;
}
.contentContainerQ3{
	width: 880px;
	text-align: justify;
	text-justify: inter-word;
	
}
.contentContainerQ3, .contentContainerQ3 ul li, .contentContainerQ3 ol li{ font-family: "HelveticaNowDisplay-Regular", sans-serif; }
.contentContainerQ3 a, .contentContainerQ3 b{ font-family: "HelveticaNowDisplay-Bold", sans-serif; }
.contentContainerQ3 a:hover{ font-family: "HelveticaNowDisplay-Bold", sans-serif; color: #f04b2b; }
.contentContainerFlex{
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
}
.seasonWrapper{
	width: 100%;
	min-width: 880px;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: stretch;
	flex-wrap: wrap;
	margin-top: 100px;
	font-size: 0px;
	line-height: 0px;
}
.seasonContainer{
	width: 450px;
	padding: 25px;
	font-size: 18px;
	line-height: 21px;
}

/* ---------------------------------------------------------------------- Content ---------------------------------------------------------------------- */
.fRHeader{
	width: 399px;
	height: 280px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-top: 50px;
	font-size: 0px;
	line-height: 0px;
}
.fRQuickiesLogoS3{ background-image: url(../images/fRLogoQuickies3.png); }
.fRQuickiesLogoS2{ background-image: url(../images/fRLogoQuickies2_dBlue.png); }
.fRQuickiesLogoS1{ background-image: url(../images/fRLogoQuickies1.png); }
.fRQuickiesLogoAbout{ background-image: url(../images/quickiesLogo_dBlue.png); margin-bottom: 100px; }

.newsletterForm{ margin-bottom: 50px; }
.newsletterEmail{ width: 236px; }
.newsletterBTN{
	border-left: none;
	cursor: pointer;
	background-color: #243076;
	color: #ffffc9;
}
.newsletterUnsubscribtBTN{ margin-left: 10px; }

.partnerLogosTable{
	margin-top: 100px;
}
.partnerLogosTable tr td{
	font-family: 'Gobold-thin-italic', sans-serif;
	text-align: center;
	padding: 10px;
	padding-left: 25px;
	padding-right: 25px;
}
.partnerLink{
	display: inline-block;
	min-width: 10px;
	min-height: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.partnerLink:hover{ transform: scale(0.9); }
.partnerFR{
	width: 256px;
	height: 59px;
	background-image: url(../images/partners/filmReakter.png);
}
.partnerFFL{
	width: 267px;
	height: 59px;
	background-image: url(../images/partners/ffl.png);
}
.partnerRTL{
	width: 135px;
	height: 25px;
	background-image: url(../images/partners/rtl.png);
}
.partnerWF{
	width: 98px;
	height: 59px;
	background-image: url(../images/partners/wadyFilms.png);
}
.partnerLFF{
	width: 35px;
	height: 59px;
	background-image: url(../images/partners/lesFilmsFauves.png);
	margin-left: 25px;
}
.partnerVP{
	width: 230px;
	height: 25px;
	background-image: url(../images/partners/vP.png);
}

.seasonContainer a{
	font-size: 18px;
	line-height: 21px;
}
.moviePreviewImg{
	width: 450px;
	height: 254px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	margin-bottom: 25px;
	background-color: #000000;
	font-size: 20px;
	line-height: 20px;
}
.videoPlayer{
	width: 450px;
	height: 254px;
}
/*
video::cue{
	font-size: 50px !important;
	color: #ffffff;
	padding: 5px;
	background-color: #000000;
	border: 1px dashed red;
}
*/

.smallFont{
	font-size: 16px;
	line-height: 16px;
	color: #626161;
}
.pillBG{
	background-color: #243076;
	padding: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 20px;
	color: #ffffc9;
	font-size: 20px;
	line-height: 20px;
	white-space: nowrap;
}
.pillLink:hover{
	color: #ffffff;
	transform: scale(1.2);
}
.pillRedBG{
	background-color: #f04b2b;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
}
.pillWithMarginTopBottom{
	margin-top: 100px;
	margin-bottom: 50px;
}

.frLogo{
	width: 399px;
	height: 122px;
	background-image: url(../images/fRLogo_dBlue.png);
	margin-bottom: 50px;
}
.pressLink{
	width: 350px;
	height: 407px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	padding: 15px;
}
.pressLinkLand{ background-image: url(../images/press/Land.jpg); }
.pressLinkCulture{ background-image: url(../images/press/Culture.jpg); }
.pressLinkDirectorsNotes{ background-image: url(../images/press/Directorsnotes.jpg); }
.pressLinkLand100komma7{ background-image: url(../images/press/100komma7.jpg); }

.imprintDetailsTable{ margin-bottom: 150px; }
.imprintDetailsTable tr td a{ font-family: "Montserrat-Regular", sans-serif; }
.imprintDetailsTable tr td:nth-child(1){ width: 300px; }
.legalHeader{ text-decoration: underline; }

.msgContainer{
	background-color: #f04b2b;
	font-size: 25px;
	line-height: 30px;
	text-align: center;
	padding: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 20px;
	color: #ffffc9;
}

/* ------------------------------------------------------------------ Footer Content ------------------------------------------------------------------- */
footer{
	margin-top: auto;
	width: 100%;
	min-width: 980px;
	background-color: #161d47;
	font-size: 0px;
	line-height: 0px;
}
.footerLeftContainer{
	width: calc(100% - 300px - 190px - 25px - 25px - 25px - 50px - 2px);
	font-family: "Montserrat-Light", sans-serif;
	font-size: 15px;
	line-height: 40px;
	color: #ffffff;
	padding: 25px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}
.footerCenterContainer{
	width: 300px;
	padding: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: top;
	margin-top: 10px;
	margin-bottom: 10px;
	text-align: right;
	padding-right: 50px;
	white-space: nowrap;
	font-size: 18px;
	line-height: 21px;
}
.footerRightContainer{
	width: 190px;
	font-family: "Montserrat-Light", sans-serif;
	font-size: 18px;
	line-height: 21px;
	color: #ffffff;
	padding: 25px;
	padding-left: 0px;
	text-align: right;
	padding-top: 10px;
	padding-bottom: 10px;
	vertical-align: top;
	margin-top: 10px;
	margin-bottom: 10px;
	white-space: nowrap;
	border-left: 1px solid #ffffff;
}
.footerLogo{
	width: 100px;
	vertical-align: middle;
}
.footerLink{
	font-family: "Montserrat-Light", sans-serif;
	font-size: 16px;
	line-height: 21px;
	color: #ffffff;
	margin-left: 15px;
}
.footerLink:hover{ color: #c7c5c5; }