@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;700&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    line-height: 1.2 !important;
}

[ng-cloak] {
    display: none !important;
}

/*-- Inspiration taken from abdo steif -->
/* --> https://codepen.io/abdosteif/pen/bRoyMb?editors=1100*/

/* Navbar section */

.nav {
    width: 100%;
    height: 65px;
    position: fixed;
    line-height: 65px;
    text-align: center;
    z-index: 10;
    background-color: transparent;
}

.nav div.logo {
    float: left;
    width: auto;
    height: auto;
    padding-left: 3rem;
}

.nav div.logo a {
    text-decoration: none;
    color: #fff;
    font-size: 2.5rem;
}

.nav div.logo a:hover {
    color: #006dcc;
}

.nav div.main_list {
    height: 65px;
    float: right;
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav div.main_list ul li {
    width: auto;
    height: 65px;
    padding: 0;
    padding-right: 3rem;
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 65px;
    font-size: 1.8rem;
}

.nav div.main_list ul li a:hover {
    color: #006dcc;
}

/* Home section */

.home {
    width: 100%;
    height: 100vh;
    /*background-image: url(https://images.unsplash.com/photo-1498550744921-75f79806b8a7?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=b0f6908fa5e81286213c7211276e6b3d&auto=format&fit=crop&w=1500&q=80);*/
    background-position: center top;
    background-size: cover;
}

.navTrigger {
    display: none;
}

.nav {
    /*padding-top: 20px;*/
    padding-bottom: 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.25);
}

.max-width {
    width: 100%;
}

.right-margin-15 {
    margin-right: 15px;
}

/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

/*@media (min-width: 979px) {
    ul.nav li.dropdown:hover > ul.dropdown-menu {
        display: block;
    }
}*/
@media screen and (max-width: 768px) {
    .navTrigger {
        display: block;
    }

    .nav div.logo {
        margin-left: 15px;
    }

    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }

    .nav div.show_list {
        height: auto;
        display: none;
    }

    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height: 100vh;
        right: 0;
        left: 0;
        bottom: 0;
        background-color: #111;
        /*same background color of navbar*/
        background-position: center top;
    }

    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
    }

    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 20px;
    }

    .nav div.media_button {
        display: block;
    }
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.25);
    margin: 0;
    border-radius: 0;
    border: 0;
}

.dropdown-item:hover {
    background: transparent;
}

/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}

.myH2 {
    text-align: center;
    font-size: 5rem;
    font-weight: bold;
}

.myH3 {
    text-align: center;
    font-size: 3rem;
}

.myP {
    text-align: justify;
    padding-left: 15%;
    padding-right: 15%;
    font-size: 20px;
}

@media all and (max-width: 700px) {
    .myP {
        padding: 2%;
    }
}

.movie-title {
    text-align: left;
    font-size: 4.5rem;
    font-weight: bold;
}

.directed-by {
    text-align: left;
    font-size: 3rem;
    /*padding-left: 5rem;*/
}

.movie-label {
    font-size: 2rem;
    font-weight: bold;
    display: inline-block;
}

.movie-label-newline {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.movie-label-inline {
    font-size: 2.2rem;
    font-weight: bold;
    display: inline-block;
}

.movie-property {
    font-size: 2rem;
    /*font-style: italic;*/
    display: inline;
}

.movie-property-large {
    font-size: 2.2rem;
    /*font-style: italic;*/
    display: inline;

}

.btn-large-font {
    font-size: 2.2rem;
    padding-left: 1rem;
}

.modal {
    text-align: center;
}

button.close-lg {
    margin-top: -1.2rem;
    margin-right: 2rem;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.close-lg {
    float: right;
    font-size: 3.5rem;
    font-weight: normal;
    line-height: 1;
    color: #000;
    /*color: white;*/
    /*text-shadow: 0 1px 0 #fff;*/
    opacity: .5;
}

.close-lg:hover {
    opacity: 1;
}

.general-paragraph {
    display: block;
    /*padding-top: 5rem;*/
    font-size: 2rem;
    text-align: justify;
}

.general-title {
    display: block;
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.general-subtitle {
    display: block;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.f-item-container {
    background-color: white;
    padding: 15px 15px;
    margin-bottom: 20px;
    /*margin-top: 20px;*/
}

.f-page-container {
    background-color: white;
    width: 90%;
    margin: 10px auto 45px;
}

.f-padding {
    padding-left: 0;
    padding-right: 20px;
}

.f-title {
    text-align: left;
    font-size: 1.7rem;
    font-weight: bold;
}

.f-subtitle {
    text-align: left;
    font-size: 1.4rem;
    padding-left: 5%;
}

.f-about-info {
    background-color: white;
    margin: 15px auto 30px;
    padding: 30px;
    max-width: 750px;
}

.f-description {
    /*text-align: justify;*/
    font-size: 1rem;
}

.f-description p {
    padding-bottom: 0;
}

.movie-item {
    position: relative;
    height: 100%;
    margin-bottom: 25px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.7);
}

.movie-item img {
    position: relative;
    cursor: pointer;
    width: 100%;
    height: auto;
    z-index: 1;
    left: 0;
    right: 0;
}

.movie-item .hover-element {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 100;
    cursor: pointer;
}

.movie-item .hover-element:hover ~ .shadow {
    opacity: 1;
}

.movie-item .hover-element:hover ~ .info {
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.movie-item .hover-element:hover ~ .info-top {
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.movie-item .hover-element:hover ~ .icon {
    opacity: 1;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}

.movie-item .title {
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    color: white;
    text-align: center;
    width: 100%;
    z-index: 5;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 78%;
    height: 2rem;
    display: table;
    LINE-HEIGHT: 2.2REM;
    WORD-BREAK: break-word;
}

.movie-item .icon {
    opacity: 0;
    font-size: 2rem;
    position: absolute;
    color: white;
    text-align: center;
    width: 100%;
    z-index: 5;
    /*left: 0;*/
    /*right: 0;*/
    margin: 0 auto;
    top: 40%;
    display: table;

}

.movie-item .title p {
    display: table-cell;
    vertical-align: middle;
}

.movie-item .long {
    font-size: 13px;
}

.movie-item .info {
    color: white;
    position: absolute;
    text-align: center;
    z-index: 4;
    top: 90%;
    font-size: 1.5rem;
    font-weight: bold;
    margin-left: 5px;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    width: 100%;
}

.movie-item .info-top {
    color: white;
    position: absolute;
    text-align: justify;
    z-index: 4;
    top: 5px;
    /*max-height: 285px;*/
    left: 5px;
    padding-right: 10px;
    opacity: 0;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    width: 100%;
}

.movie-item .title-back {
    background-color: #343a40;;
    width: 100%;
    height: 70%;
    position: absolute;
    z-index: 4;
    top: 30%;
    right: 0px;
    left: 0;
    margin: 0 auto;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

/*
.movie-item .fa-play-circle{
    right: 8px;
    display: block;
    position: absolute;
    top: 3px;
}*/

/*=============================================================================================================
    NEW DESIGN
=============================================================================================================*/

:root {
    --accent-color: #707070;
    --background-color: #fff;
    --font-color: #000;
    --nav-font-color: #fff;
    --font-family: "Quicksand", sans-serif;
    --movie-background-darken: 0.5;
    --back-font-color: #000;
}

.f-body {
    color: var(--font-color);
    font-family: var(--font-family);
}

a {
    color: var(--font-color);
}

a:hover {
    color: var(--font-color);
    filter: brightness(85%);
}

table {
    color: var(--font-color) !important;
}

.live-container {
    display: flex;
    flex-direction: row;
    padding: 0 5% 50px 5%;
}

.live-player {
    width: 70%;
}

.live-chat {
    width: 30%;
}

.f-main-container {
    width: 100%;
    min-height: 70%;
    padding: 30px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--background-color);
}

.f-main-dates {
    color: var(--nav-font-color);
    font-size: 23px;
    padding: 10px 20px;
    display: inline-block;
    margin: 15px auto 0;
    background-color: var(--accent-color);
}

.f-remove {
    display: none !important;
}

.f-episode-container:hover {
    filter: brightness(110%);
    cursor: pointer;
}

.f-header {
    display: flex;
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
    background-color: white;
    margin: 0 auto;
    height: 100px;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    vertical-align: middle;
}

.f-logo {
    display: flex;
    align-items: center;
}

.f-logo img {
    height: 70px;
}

.f-logo div {
    display: flex;
    flex-direction: column;
}

.f-name {
    font-weight: bold;
    font-size: large;
}

.f-desc {
    font-size: medium;
    margin: 0;
}

.f-desc p {
    margin: 0;
}

.f-button {
    background-color: var(--accent-color);
    padding: 7px 15px;
    font-size: 15px;
    color: var(--nav-font-color) !important;
    border-style: none;
}

.f-button:hover {
    filter: brightness(110%);
    color: var(--nav-font-color) !important;
}

.f-button:focus {
    outline: 0;
}

.f-user-dropdown {
    font-size: 17px;
}

.f-user-dropdown .dropdown-menu {
    padding: 0;
    margin: 0;
    left: -50px !important;
}

.f-user-dropdown .dropdown-menu a {
    font-size: 15px;
    padding: 15px 25px;
    color: var(--nav-font-color);
    background-color: var(--accent-color);
}

.f-user-dropdown .dropdown-menu a:hover {
    filter: brightness(110%);
}

.f-username:hover {
    cursor: pointer;
}

.f-main-image {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
}

.f-programs-container {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
    flex-flow: row wrap;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px auto 0;
}

.f-program {
    padding: 10px 25px;
    text-align: center;
    /*color: black;*/
    font-size: 23px;
    margin: 0 10px;
}

.f-program:hover {
    color: white;
    background-color: var(--accent-color);
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.f-programs-container a {
    text-decoration: none;
    font-weight: bold;
}

.f-footer {
    padding-bottom: 15px;
    background: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.f-footer-title {
    margin-top: 15px;
    font-size: 15px;
    text-align: center;
}

.f-footer-copy {
    font-size: 16px;
    text-align: center;
    margin: 10px 0 0 0;
}

.f-footer-copy a {
    text-decoration: none;
    font-weight: bold;
    /*color: black;*/
}

.f-footer-sponsor {
    display: inline-block;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* ============== MAIN MENU ============== */

.f-nav {
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
    padding: 0 5% 0 5%;
    background-color: var(--background-color);
}

.f-nav a {
    float: left;
    display: block;
    color: var(--nav-font-color);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 18px;
    background-color: var(--accent-color);
}

.f-nav a:hover {
    filter: brightness(110%);
}

.f-nav a.active {
    background-color: var(--accent-color);
    color: white;
}

.f-nav .f-icon {
    display: none;
}

/* LOGIN POPUP */

.modal-content {
    border-style: none;
    border-radius: 0;
}

.f-close-button {
    opacity: 0.7;
    font-size: 30px;
    padding: 10px 15px;
}

.f-close-button:focus {
    outline: 0;
}

.f-popup {
    padding: 10px;
}

.f-text-danger {
    margin: 10px auto 0;
    text-align: center;
}

.modal-dialog {
    display: inline-block;
}

.form-control:focus {
    border-color: var(--accent-color);
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* ========== PROGRAM ========== */

.f-main-title {
    font-weight: bold;
    padding-left: 5%;
    padding-right: 5%;
    color: var(--back-font-color);
}

.f-bold {
    font-weight: bold;
    border-bottom: 2px solid var(--accent-color);
}

.f-az {
    color: var(--back-font-color);
    padding-left: 5%;
    padding-right: 5%;
}

.f-az a {
    text-decoration: none;
    margin-right: 5px;
    display: inline-block;
}

.f-az a:hover {
    cursor: pointer;
    font-weight: bold;
}

.f-program-item {
    padding: 7px 12px;
    text-align: center;
    font-size: 16px;
    background-color: white;
    margin: 1px;
}

.f-secondary {
    background-color: whitesmoke;
}

.f-program-item-selected {
    color: var(--nav-font-color);
    background-color: var(--accent-color);
}

.f-program-item:hover {
    color: var(--nav-font-color);
    background-color: var(--accent-color);
    filter: brightness(110%);
}

.f-programs-list-container {
    display: flex;
    justify-content: left;
    margin: 10px 5%;
    flex-flow: row wrap;
}

.f-programs-list-container a {
    text-decoration: none;
}

.f-movies-list {
    width: 90%;
    margin: 25px auto 35px;
}

/* ========== MOVIE ITEM ========== */

.f-movie-item {
    min-height: 250px;
    margin-bottom: 20px;
    background: white;
    display: flex;
    cursor: pointer;
}

.f-movie-item:hover {
    filter: brightness(110%);
}

.f-movie-item-image {
    min-width: 35%;
    background-size: cover;
    background-position: 50%;
}

.f-accent-line {
    background-color: var(--accent-color);
    min-width: 5px;
    max-width: 5px;
}

.f-movie-item-content {
    padding: 20px;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: space-between;
}

.f-movie-item-title {
    font-weight: bold;
    font-size: 25px;
    margin: 0;
}

.f-movie-item-subtitle {
    font-size: 18px;
    margin: 5px 0 0 0;
}

.f-movie-item-synopsis {
    font-size: 18px;
    margin: 0;
}

.f-movie-item-details {
    font-size: 16px;
    margin: 0;
}

/* FESTIVAL PROGRAM IMAGES LIST STYLE */

.f-programs-list-container-big {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    width: 90%;
    margin: 15px auto 45px;
}

.f-programs-list-container-big a {
    text-decoration: none;
}

.f-program-item-big {
    position: relative;
    height: 220px;
    background-color: white;
}

.f-secondary-big {
    background-color: #e5e5e5;
}

.f-program-item-big:hover {
    filter: brightness(110%);
}

.f-program-item-big span {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.f-image-box {
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
}

.f-image-box img {
    transition: all 0.2s;
    display: block;
    width: 100%;
    height: 170px;
    transform: scale(1);
    object-fit: cover;
}

.f-program-item-big:hover .f-image-box img {
    transform: scale(1.1);
}

/* PROGRAM DETAILS */

.f-program-container {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 70%;
    background-color: var(--background-color);
}

.f-program-simple-header {
    margin-top: 30px;
    padding-left: 5%;
    padding-right: 5%;
    color: var(--back-font-color);
}

.f-program-header {
    width: 90%;
    height: 450px;
    margin: 0 auto 5px;
    background-size: cover;
    background-position: 50%;
}

.f-program-header-content {
    position: absolute;
    width: 90%;
    height: 450px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid var(--accent-color);
}

.f-program-header h1 {
    font-weight: bold;
    text-align: center;
}

.f-program-header-desc {
    padding: 0 15px;
    font-size: 20px;
    text-align: center;
}

.f-program-movies {
    margin: 15px auto 30px;
    width: calc(90% + 10px);
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.f-program-movies-landscape {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 30px;
    width: 90%;
    margin: 15px auto 45px;
}

.f-movie-item-small {
    width: 200px;
    height: 370px;
    display: inline-block;
    background: white;
    margin: 0 5px 20px 5px;
    cursor: pointer;
}

.f-grid-filler {
    width: 200px;
    display: inline-block;
    height: 0;
    margin: 0 5px;
}

.f-movie-item-small:hover {
    filter: brightness(110%);
}

.f-movie-item-small-details {
    height: 70px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-movie-item-small-details h3 {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    text-align: center;
}

.f-movie-item-small-details p {
    margin: 0 auto;
    font-size: 15px;
    padding: 0;
    text-align: center;
}

.f-movie-item-small img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: white;
    border-bottom: 5px solid var(--accent-color);
}

/* FOR LANDSCAPE */

.f-movie-item-small-landscape {
    /*width: 315px;*/
    height: 240px;
    /*display: inline-block;*/
    background: white;
    /*margin: 0 5px 20px 5px;*/
    cursor: pointer;
    position: relative;
}

.f-movie-item-small-landscape:hover {
    filter: brightness(110%);
}

.f-grid-filler-landscape {
    display: none;
}

.f-movie-item-small-details-landscape {
    height: 50px;
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-movie-item-small-details-landscape h3 {
    margin: 0 auto;
    padding: 0;
    font-size: 15px;
    text-align: center;
}

.f-movie-item-small-landscape img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    background: white;
    border-bottom: 5px solid var(--accent-color);
}

/* MOVIE DETAILS */

.f-movie-container {
    width: 100%;
    padding: 0 0 30px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 70%;
    background-color: var(--background-color);
}

.f-movie-poster {
    width: 90%;
    height: 500px;
    margin: 0 auto;
    background-size: cover;
    background-position: 50%;
}

.f-movie-poster .f-top-content {
    position: absolute;
    width: 90%;
    height: 500px;
    margin: 0 auto;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    background-color: rgba(0, 0, 0, var(--movie-background-darken));
    padding-bottom: 15px;
    padding-right: 10px;
    border-bottom: 5px solid var(--accent-color);
}

.f-movie-play {
    cursor: pointer;
    font-size: 75px;
    margin: 5px 25px;
    color: var(--accent-color);
    display: block;
}

.f-movie-play:hover {
    color: white;
}

.f-button-disabled {
    cursor: not-allowed;
}

.f-button-disabled:hover {
    color: var(--accent-color);
}

.f-top-content p {
    margin: 0;
    padding: 0 0 5px 0;
}

.f-top-content a {
    text-decoration: none;
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
}

.f-top-content a:hover {
    color: white;
}

.f-movie-vote {
    width: 90%;
    background-color: white;
    margin: 0 auto;
    padding: 7px 20px 10px 20px;
}

.f-movie-vote-visible {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.f-movie-vote-visible a:hover {
    color: var(--accent-color);
}

.f-movie-comments {
    cursor: pointer;
    margin-right: 5px;
    font-size: 20px;
}

.f-vote-container {
    background-color: transparent;
    border-style: none;
    font-size: 23px;
}

.f-movie-vote .f-vote-stars {
    margin-left: 5px;
    color: var(--accent-color);
    font-size: 27px;
}

.f-movie-main-details {
    width: 90%;
    background-color: white;
    margin: 15px auto 0;
    padding: 15px 25px;
}

.f-movie-main-details p {
    font-size: 17px;
}

.f-movie-main-details .f-movie-details-items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: left;
}

.f-movie-details-item {
    margin-right: 25px;
}

.f-movie-details-item span {
    font-size: 14px;
    font-weight: normal;
}

.f-movie-details-item h5 {
    margin: 0;
    padding: 0;
    font-size: 14px;
    display: inline-block;
}

.f-movie-details-item p {
    display: inline-block;
    margin-bottom: 5px;
}

.f-container {
    width: 90%;
    margin: 15px auto 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.f-movie-details-half {
    background-color: white;
    padding: 15px 25px;
    width: 49.5%;
}

.f-characters-left {
    /*color: black;*/
    font-size: 15px;
    margin-left: 5px;
}

.f-comment-form {
    margin: 5px;
}

.f-movie-price {
    color: white;
    text-align: center;
    font-size: 11px;
    width: 75px;
    margin: 0 auto !important;
}

/* ADDITIONAL */

.f-inactive-link {
    pointer-events: none;
    cursor: default;
}

.f-pay-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    align-items: center;
}

.f-awards-container {
    display: flex;
    flex-wrap: wrap;
    width: 92%;
    justify-content: center;
    margin: 0 auto 10px;
}

.f-award {
    margin: 1%;
    padding: 15px;
    background: white;
    height: fit-content;
    flex: 0 48%;
}

.f-movie-award-border {
    border: 1px solid var(--accent-color);
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-award-title {
    text-align: center;
    margin: 0;
    font-size: 20px;
}

.f-award-winner {
    text-align: center;
    margin: 0;
    font-weight: bold;
    font-size: 25px;
}

.f-h-line {
    margin: 7px auto 5px;
    width: 75px;
    height: 2px;
    background: var(--accent-color);
}

.vjs-big-play-button {
    left: 50% !important;
    width: 70px !important;
    top: 50% !important;
    height: 70px !important;
    border-style: none !important;
    border-radius: 50% !important;
    margin-top: -35px !important;
    margin-left: -35px !important;
    background-color: transparent !important;
}

.vjs-big-play-button:before {
    color: white !important;
    font-size: 50px !important;
    top: -17px !important;
    left: 2px !important;
}

.f-gallery-image:hover {
    cursor: pointer;
    filter: brightness(110%);
}

/* FESTIVALS LANDING PAGE */

/*body {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

* {
    box-sizing: border-box;
}*/

.ff-section {
    padding-left: 12.5%;
    padding-right: 12.5%;
}

.ff-hero {
    background-color: #001932;
    padding-top: 20px;
    padding-bottom: 0;
    color: #fff;
    position: relative;
    margin-bottom: 100px;
}

.ff-hero::after {
    position: absolute;
    content: '';
    width: 102%;
    height: 300px;
    bottom: -140px;
    background-color: inherit;
    border-radius: 0 50%;
    left: -2%;
    z-index: -1;
}

.ff-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.ff-heading p {
    font-size: 20px;
    margin-bottom: 30px;
}

.heading img {
    max-width: 40%;
    max-height: 500px;
}

.ff-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ff-title {
    color: #001932;
    margin-bottom: 20px;
    font-size: 40px;
    margin-top: 0;
}

.ff-features {
    padding-top: 150px;
}

.ff-feature {
    width: 33.3%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.ff-feature div {
    margin-top: 10px;
    font-weight: bold;
    color: #001932;
}

.ff-feature img {
    width: 100px;
    margin-bottom: 7px;
    filter: invert(58%) sepia(62%) saturate(1924%) hue-rotate(321deg) brightness(91%) contrast(98%);
}

.ff-festivals {
    margin-top: 50px;
    padding-top: 50px;
}

.ff-festivals .ff-grid {
    flex-wrap: wrap;
    justify-content: left;
    margin-bottom: -20px;
}

.ff-festival {
    width: 50%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.ff-festival div {
    margin-top: 10px;
    color: #001932;
    font-weight: bold;
}

.ff-festival img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.ff-pricing {
    margin-top: 100px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #001932;
}

.ff-pricing h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.ff-pricing p {
    text-align: center;
    color: #e4e4e4;
    margin-bottom: 40px;
}

.ff-plan {
    color: #fff;
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}

.ff-price {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ff-plan .ff-amount {
    font-weight: bold;
    font-size: 35px;
}

.ff-plan .ff-currency {
    margin-left: 10px;
}

.ff-plan .ff-plan-features {
    margin-top: 20px;
}

.ff-plan .ff-plan-feature {
    display: flex;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.ff-plan .ff-plan-feature div {
    margin-left: 10px;
}

.ff-contact {
    margin-top: 100px;
    margin-bottom: 100px;
}

.ff-contact .ff-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ff-contact .ff-name div {
    width: calc(50% - 20px);
}

.ff-control {
    margin-bottom: 20px;
}

.ff-button {
    padding: 12px 25px;
    border-radius: 25px;
    color: #fff;
    background-color: #e66759;
    font-weight: bold;
    vertical-align: middle;
    font-size: 18px;
    cursor: pointer;
}

.ff-button:hover {
    opacity: 0.8;
    transition: opacity 0.2s;
}

.ff-button .ff-w-100 {
    width: 100%;
}

.ff-section a {
    text-decoration: none;
}

.ff-section label {
    color: #001932;
    display: table;
    font-weight: bold;
    margin-bottom: 5px;
}

.ff-section input, textarea {
    width: 100%;
    padding: 7px;
    border: 1px solid #001932;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
}

.ff-section textarea {
    min-height: 140px;
}

.ff-section button {
    outline: none;
    border: none;
    cursor: pointer;
}

ul.ff-check {
    list-style-image: url('/img/main/check.png');
}

.ff-check li {
    padding: 5px;
}

/* FESTIVALS LANDING PAGE END */

/* ========== RESPONSIVE - ALWAYS TO BE LAST ========== */

@media screen and (max-width: 600px) {
    .f-nav a {
        display: none;
    }

    .f-nav a.f-icon {
        float: right;
        display: block;
    }

    .f-logo img {
        height: 45px;
    }

    .live-container {
        flex-direction: column;
    }

    .live-player {
        width: 100%;
    }

    .live-chat {
        width: 100%;
        height: 350px;
    }

    .f-name {
        font-size: 12px;
    }

    .f-main-dates {
        font-size: 15px;
    }

    .f-desc {
        display: none !important;
    }

    .f-desc p {
        display: none !important;
    }

    .f-movie-item {
        flex-direction: column;
    }

    .f-movie-item-image {
        height: 200px;
    }

    .f-accent-line {
        min-height: 5px;
        max-height: 5px;
        min-width: 100%;
        max-width: 100%;
    }

    .f-movie-item-title {
        font-weight: bold;
        font-size: 20px;
    }

    .f-movie-item-subtitle {
        font-size: 16px;
    }

    .f-movie-item-synopsis {
        display: none;
    }

    .f-movie-item-details {
        display: none;
    }

    .f-programs-list-container-big {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .f-movie-item-small {
        width: 140px;
        height: 260px;
    }

    .f-grid-filler {
        width: 140px;
    }

    .f-movie-item-small-details {
        height: 50px;
    }

    .f-movie-item-small-details h3 {
        font-size: 11px;
    }

    .f-movie-item-small img {
        height: 210px;
    }

    .f-movie-poster {
        height: 250px;
    }

    .f-movie-poster .f-top-content {
        height: 250px;
    }

    .f-container {
        flex-direction: column;
    }

    .f-movie-details-half {
        width: 100%;
        margin: 0 !important;
    }

    .f-pay-buttons {
        flex-direction: column;
    }

    .f-award {
        flex: 100%;
    }

    .f-program-movies {
        justify-content: space-around;
    }
}

/*Video js subtitles captions*/
/*.vjs-text-track-display div {
    font-size: 3.5em !important;
    background-color: rgba(0, 0, 0, 1) !important;
    position: absolute;
    bottom: 0em;
    left: 4em;
    right: 4em;
}*/

@media screen and (max-width: 600px) {
    .f-nav.responsive {
        position: relative;
    }

    .f-nav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .f-nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
}

@media screen and (min-width: 1824px) {

    .f-container,
    .f-page-container,
    .f-movies-list,
    .f-programs-list-container-big,
    .f-program-header,
    .f-program-header-content,
    .f-movie-poster,
    .f-movie-vote,
    .f-movie-main-details,
    .f-program-movies-landscape {
        width: 76%;
    }

    .f-program-movies {
        width: calc(76% + 10px);
    }

    .f-movie-poster .f-top-content {
        width: 76%;
    }

    .f-main-title,
    .f-subtitle,
    .f-nav,
    .f-az,
    .f-main-image,
    .f-program-simple-header,
    .f-programs-container,
    .f-header {
        padding-left: 12%;
        padding-right: 12%;
    }

    .f-programs-list-container {
        margin: 10px 12%;
    }

    .f-awards-container {
        width: 78%;
    }
}

/* ========== LOADER ========== */

.loader,
.loader:before,
.loader:after {
    background: #ffffff;
    -webkit-animation: load1 1s infinite ease-in-out;
    animation: load1 1s infinite ease-in-out;
    width: 1em;
    height: 4em;
}

.loader {
    color: #ffffff;
    text-indent: -9999em;
    margin: 88px auto;
    position: relative;
    font-size: 11px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    position: absolute;
    top: 0;
    content: '';
}

.loader:before {
    left: -1.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 1.5em;
}

@-webkit-keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@keyframes load1 {
    0%,
    80%,
    100% {
        box-shadow: 0 0;
        height: 4em;
    }
    40% {
        box-shadow: 0 -2em;
        height: 5em;
    }
}

@font-face {
    font-family: 'Work sans';
    src: url("fonts/WorkSans-VariableFont_wght.ttf");
}

@font-face {
    font-family: 'Adec';
    src: url("fonts/SS_Adec2.0_text.otf");
}

/* SCROLLBAR */
.f-episode-list ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
.f-episode-list ::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
.f-episode-list ::-webkit-scrollbar-thumb {
    background: #e1e1e1;
}

/* Handle on hover */
.f-episode-list ::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}