/* --- MAIN PAGE SECTIONS --- */
.article-img-holder {
    position: relative;
    padding-bottom: 56%;
}
.article-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

/* --- BEST FILMS SLIDER --- */
.best-movie-section {
    color: #fff;
    background-color: #000;
    margin: 20px 0 24px;
}
.invert .best-movie-section {
    color: #000;
    background-color: #fff;
}

.best-movie-section .container {
    padding: 0;
}
@media (min-width: 576px) {
    .best-movie-section .container {
        padding: 0 16px;
    }
}
@media (min-width: 768px) {
    .best-movie-section .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .best-movie-section .container {
        padding: 0 40px;
    }
}

.best-movie-section h2 {
    margin: 0 16px 16px;
}
.invert .best-movie-section h2 {
    color: #000;
}
@media (min-width: 576px) {
    .best-movie-section h2 {
        margin: 0 0 16px;
    }
}

.best-movie {
    border: 4px solid #fff;
}
.invert .best-movie {
    border-color: #000;
}
@media (min-width: 1024px) {
    .best-movie {
        display: grid !important;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        grid-column-gap: 16px;
        border-width: 2px;
    }
}
@media (min-width: 1180px) {
    .best-movie {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}

/*.best-movie .video-wrapper*/
.best-movie .video-wrapper {
    position: relative;
}
@media (min-width: 1024px) {
    .best-movie .video-wrapper {
        grid-column: 1 / 7;
    }
}
@media (min-width: 1180px) {
    .best-movie .video-wrapper {
        grid-column: 1 / 10;
    }
}

.video-wrapper video {
    width: 100%;
    height: auto;
}
@media (max-width: 767px) and (orientation: portrait) {
    .video-wrapper .video-portrait {
        display: block;
    }
    .video-wrapper .video-landscape {
        display: none;
    }
}
@media (max-width: 767px) and (orientation: landscape) {
    .video-wrapper .video-portrait {
        display: none;
    }
    .video-wrapper .video-landscape {
        display: block;
    }
}
@media (min-width: 768px) {
    .video-wrapper .video-portrait {
        display: none;
    }
    .video-wrapper .video-landscape {
        display: block;
    }
}

.best-movie .movie-info {
    padding: 16px 12px;
}
@media (min-width: 1024px) {
    .best-movie .movie-info {
        grid-column: 7 / span 3;
        width: unset;
        padding: 32px 32px 32px 16px;
    }
}
@media (min-width: 1180px) {
    .best-movie .movie-info {
        grid-column: 10 / span 3;
    }
}

.best-movie .movie-heading {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 16px;
}

.best-movie .movie-description {
    margin-bottom: 32px;
}

.buy-movie-link {
    width: 100%;
}


/* --- LIVE/DISCUSSION & COMING SOON FILMS --- */
.discussion-section, .coming-soon-section {
    padding: 40px 0;
}
.invert .discussion-section, .invert .coming-soon-section {
    background-color: #fff;
}

.discussion-section .font-section-title,
.coming-soon-section .font-section-title {
    padding: 0 16px;
}

.discussion-section .container, .coming-soon-section .container {
    padding: 0;
}
@media (min-width: 576px) {
    .discussion-section .container, .coming-soon-section .container {
        padding: 0 16px;
    }

    .discussion-section .font-section-title,
    .coming-soon-section .font-section-title {
        padding: 0;
    }
}
@media (min-width: 768px) {
    .discussion-section .container, .coming-soon-section .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .discussion-section .container, .coming-soon-section .container {
        padding: 0 40px;
    }
}

.discussion-section h2, .coming-soon-section h2 {
    margin-bottom: 16px;
}
.invert .discussion-section h2, .invert .coming-soon-section h2 {
    color: #000;
}

.article-link {
    display: block;
    width: 100%;
    height: 100%;
}

/*--- Styles for Hovered Live/Film element ---*/
.article-img {
    z-index: 1;
}
.article-video {
    /*display: none;*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
@media (min-width: 1024px) {
    .article-link .article-img {
        opacity: 1;
        transition: opacity .8s ease;
    }

    .article-link .article-img.loaded {
        opacity: 1;
        transition: opacity .8s ease;
    }

    .article-link.has-video:hover .article-img.loaded {
        opacity: 0;
        transition: opacity .8s .8s ease;
    }

    .article-link:hover {
        color: #000;
        transition: color 0.4s ease;
        animation: pulse-item 3s infinite;
    }
}
@media (min-width: 1180px) {
    .article-link:not(.has-video):hover .discussion-icon-wrapper {
        filter: invert(0);
    }
}


/* --- LIVE / DISCUSSION SECTION --- */
.discussion-section {
    background-color: #000;
}

.discussion-item {
    border-bottom: 2px solid transparent;
}
@media (min-width: 1180px) {
    .discussion-item {
        border-bottom: 2px solid #fff;
    }
}
.invert .discussion-item {
    border-color: #000;
}

.discussion-link {
    color: #000;
    background-color: #fff;
}
@media (min-width: 1180px) {
    .discussion-link {
        color: #fff;
        background: #000;
    }
    .invert .discussion-link {
        color: #000;
        background-color: #fff;
    }
}

.discussion-info {
    padding: 24px 32px 64px;
}

.discussion-schedule,
.movie-schedule {
    display: flex;
    align-items: center;
    height: 48px;
    margin-bottom: 16px;
}

.discussion-icon-wrapper {
    display: flex;
    align-items: center;
    width: 37px;
    margin-right: 8px;
}
@media (min-width: 1180px) {
    .discussion-icon-wrapper {
        filter: invert(1);
    }
    .invert .discussion-icon-wrapper {
        filter: invert(0);
    }
}

.discussion-icon {
    max-width: 100%;
}

.discussion-schedule .font-text,
.movie-schedule .font-text{
    line-height: 16px;
}

.discussion-heading + p {
    margin-top: 10px;
}


/* --- LIVE/DISCUSSION: PARTICIPANTS INFO --- */
.participants-section {
    margin-bottom: 30px;
}
@media (min-width: 1024px) {
    .participants-section {
        margin-bottom: 60px;
    }
}

.participants-section .font-section-title {
    margin-bottom: 16px;
}

.participant-article {
    margin-bottom: 15px;
}

.participant-img-holder {
    position: relative;
    width: 100%;
    padding-bottom: 53%;
    margin: 0 0 10px 0;
}
@media (min-width: 576px) {
    .participant-img-holder {
        position: relative;
        float: left;
        width: 320px;
        height: 174px;
        padding-bottom: 174px;
        margin: 10px 16px 0 0;
    }
}

.participant-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.participant-side-text {
    margin-bottom: 24px;
}

.participant-side-text .font-discussion-title {
    margin-bottom: 5px;
}

.participant-role {
    font-style: italic;
    margin-bottom: 9px;
}

.participant-bio {
    opacity: 0.8;
}
.invert .participant-bio {
    opacity: 1;
}

.participant-bordered-text {
    padding-left: 16px;
    border-left: 2px solid #fff;
}
@media (min-width: 1180px) {
    .participant-bordered-text {
        padding-left: 28px;
    }
}
.invert .participant-bordered-text {
    border-color: #000;
}

/* Live section: Bubbles widget */
.live-section .bubbles-widget {
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .live-section .bubbles-widget {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0 0;
        margin-left: 16px;
        margin-bottom: 60px;
    }
}

.live-section .bubbles-img-white {
    display: none;
}

.live-section .bubbles-img-green {
    display: block;
    width: 20%;
}
@media (min-width: 1024px) {
    .live-section .bubbles-img-green {
        width: 155px;
        max-width: unset;
        margin: 0 0 10px 0;
    }
}

.live-section .bubbles-widget a {
    color: #00ff23;
}


    /* --- COMING SOON FILMS --- */
.coming-soon-section {
    background-color: #000;
}

.coming-soon-item {
    display: flex;
    flex-direction: column;
    background-color: #000;
    border: 2px solid #fff;
}
.invert .coming-soon-item {
    background-color: #fff;
    border-color: #000;
}

.shadow-item {
    display: flex;
    flex-direction: column;
    background-color: #222;
    border: 2px dashed #fff;
    opacity: .1;
}
.invert .shadow-item {
    background-color: #fff;
    border-color: #000;
}

/* Uncomment to make 2 large film-items in a row on desktop*/
/*@media (min-width: 1440px) {*/
/*    .coming-soon-item .coming-soon-link {*/
/*        flex-direction: row;*/
/*    }*/
/*}*/

.coming-soon-link {
    color: #fff;
}
.invert .coming-soon-link {
    color: #000;
}
@media (min-width: 1024px) {
    .coming-soon-link:not(.has-video):hover .coming-soon-icon {
        filter: invert(0);
    }
}
/* Uncomment to make 2 large film-items in a row on desktop*/
/*@media (min-width: 1440px) {*/
/*    .coming-soon-link {*/
/*        display: flex;*/
/*    }*/
/*}*/

/*@media (min-width: 1440px) {*/
/*    .coming-soon-link .article-img-holder {*/
/*        width: 65%;*/
/*        min-height: 356px;*/
/*        object-fit: cover;*/
/*        padding-bottom: 0;*/
/*    }*/

/*    .coming-soon-link .article-img, .coming-soon-link.has-video .article-video {*/
/*        height: 100%;*/
/*        object-fit: cover;*/
/*    }*/
/*}*/

.coming-soon-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 32px;
}
/* Uncomment to make 2 large film-items in a row on desktop*/
/*@media (min-width: 1440px) {*/
/*    .coming-soon-info {*/
/*        width: 35%;*/
/*        padding: 24px 32px;*/
/*    }*/
/*}*/

.coming-soon-heading + p {
    margin-top: 16px;
}

.coming-soon-date {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.coming-soon-icon {
    filter: invert(1);
}
.invert .coming-soon-icon {
    filter: invert(0);
}

.calendar-icon {
    margin-right: 20px;
}


/* --- FESTIVAL INFO --- */
.fest-info-section {
    padding-top: 32px;
    background-color: #fff;
}
@media (min-width: 576px) {
    .fest-info-section {
        padding-bottom: 32px;
    }
}
@media (min-width: 1024px) {
    .fest-info-section {
        padding-top: 88px;
        padding-bottom: 60px;
    }
}

.fest-info-section .container {
    padding: 0;
}
@media (min-width: 576px) {
    .fest-info-section .container {
        padding: 0 16px;
    }
}
@media (min-width: 768px) {
    .fest-info-section .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .fest-info-section .container {
        padding: 0 40px;
    }
}

.fest-info-description {
    padding: 0 15px;
    margin-bottom: 40px;
}
@media (min-width: 576px) {
    .fest-info-description {
        grid-column: 1 / span 6;
        padding: 0;
    }
}
@media (min-width: 1024px) {
    .fest-info-description {
        grid-column: 1 / span 9;
    }
}
@media (min-width: 1180px) {
    .fest-info-description {
        grid-column: 1 / span 6;
        margin-bottom: 0;
    }
}

.fest-info-title {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    text-transform: uppercase;
    color: #2D2D2D;
}

.fest-info-text {
    padding-top: 12px;
}

.faq-link {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-decoration: underline;
    color: #000;
}

.donate {
    margin-bottom: 24px;
}

.fest-info-article {
    width: 100%;
    height: fit-content;
    border: 2px solid #000;
}
@media (min-width: 576px) {
    .fest-info-article {
        height: 470px;
    }
    .donate {
        margin: 0;
    }
    .donate, .docuclub {
        grid-column: span 3;
    }
}
@media (min-width: 900px) {
    .donate, .docuclub {
        grid-column: span 2;
    }
}
@media (min-width: 1024px) {
    .donate, .docuclub {
        grid-column: span 3;
    }
}
@media (min-width: 1180px) {
    .donate:hover, .docuclub:hover {
        background: rgba(204, 204, 204, 0.8);
        transition: background 0.3s ease;
    }
}

.fest-info-article .article-link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #000;
}

.fest-info-article .article-img-holder {
    padding-bottom: 57%;
}

.fest-info-article .article-details {
    padding: 24px 32px;
}

.fest-info-article .article-heading {
    text-transform: uppercase;
    margin-bottom: 16px;
}
@media (min-width: 1024px) {
    .fest-info-article .article-heading {
        margin-bottom: 8px;
    }
}


/* --- FILM SECTION --- */
.film-section {
    color: #fff;
    padding-top: 20px;
    margin-bottom: 60px;
}

.film-section .container {
    padding: 0;
}
@media (min-width: 768px) {
    .film-section .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .film-section .container {
        padding: 0 40px;
    }
}

@media (min-width: 1024px) {
    .trailer-wrapper {
        margin-bottom: 16px;
    }
}
@media (min-width: 1180px) {
    .trailer-wrapper, .film-description {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-column-gap: 16px;
    }
}
.trailer-wrapper .video-wrapper {
    position: relative;
}

.trailer-wrapper .video-wrapper {
    margin-bottom: 16px;
}
@media (min-width: 1180px) {
    .trailer-wrapper .video-wrapper {
        grid-column: 1 / span 9;
        margin-bottom: 0;
    }
}

.film-info {
    padding: 0 16px;
}
@media (min-width: 768px) {
    .film-info, .film-description {
        display: grid;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        grid-column-gap: 16px;
        padding: 0;
    }
}
@media (min-width: 1180px) {
    .film-info {
        grid-column: span 3;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding-left: 16px;
    }

    .film-description {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }
}
@media (min-width: 1440px) {
    .film-info {
        grid-column: 10 / span 3;
    }
}
.invert .film-info {
    color: #000;
}

.film-description {
    padding: 0 16px;
}
@media (min-width: 768px) {
    .film-description {
        padding: 0;
    }
}

/* VIMEO CHAT WRAPPER */
.film-section .chat {
    padding: 10px 0;
}

.film-section .chat .font-section-title {
    margin-bottom: 16px;
}

.film-section .chat-wrapper {
    width: 100%;
    height: 400px;
    border: 8px solid #75FA54;
}
.invert .film-section .chat-wrapper {
    border: 2px solid #999999;
}

/* FILM: titles, country, year, duration, genre */
@media (min-width: 768px) {
    .film-production {
        grid-column: 1 / span 5;
        margin-bottom: 0;
    }
}
@media (min-width: 1440px) {
    .film-production {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 24px;
    }
}

.film-info .titles {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}
.film-info .titles h3 {
    font-size: 16px;
    line-height: 24px;
}

.production-details, .director-info {
    margin-bottom: 16px;
}
@media (min-width: 1024px) {
    .production-details {
        margin-bottom: 8px;
    }
}
@media (min-width: 1440px) {
    .production-details {
        margin-bottom: 16px;
    }
}

.production-details span::after {
    content: '|';
    margin: 0 5px;
}
.production-details span:last-child::after {
    content: '';
}

.genre {
    margin-bottom: 32px;
}
@media (min-width: 1024px) {
    .genre {
        margin-bottom: 8px;
    }
}

.film-lang {
    color: #999999;
    font-style: italic;
    line-height: 20px;
}
.film-actions .film-lang {
    display: none;
}
@media (min-width: 1180px) {
    .film-production .film-lang {
        display: none;
    }
    .film-actions .film-lang {
        display: block;
        margin-top: 16px;
    }
}

/* FILM: buy, add to favorite, enter promo */
.film-actions {
    display: flex;
    flex-direction: column;
    margin-top: 24px;
    margin-bottom: 40px;
}
@media (min-width: 768px) {
    .film-actions {
        grid-column: 6 / span 4;
        padding-top: 8px;
        margin-top: 0;
    }
}
@media (min-width: 1024px) {
    .film-actions {
        grid-column: 7 / span 3;
        grid-row: 1 / 3;
        margin-left: 16px;
        margin-bottom: 0;
    }
}
@media (min-width: 1180px) {
    .film-actions {
        margin-left: 0;
    }
}

.film-actions-row {
    display: flex;
}
@media (min-width: 768px) {
    .film-actions-row {
        justify-content: flex-end;
    }
}

.film-actions-col:first-child {
    width: 100%;
}
@media (min-width: 1440px) {
    .film-actions-col:first-child {
        flex-direction: column;
    }
    .film-actions-col:last-child {
        display: flex;
        height: calc(100% - 62px);
    }
}

.buy-movie-btn, .remind-btn {
    width: 100%;
    margin-bottom: 16px;
}
@media (min-width: 1180px) {
    .buy-movie-btn {
        margin-top: 16px;
        margin-bottom: 0;
    }
}

.to-favorite-btn {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-left: 10px;
}
.invert .to-favorite-btn {
    filter: invert(1);
}

input.promocode-input {
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}
@media (min-width: 1180px) {
    input.promocode-input {
        margin-top: 16px;
        margin-bottom: 0;
    }
}

.notification-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
}
@media (min-width: 1180px) {
    .notification-wrapper {
        margin-top: 12px;
    }
}

.notification-message {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
}

.x-icon {
    margin-right: 17px;
}

.x-icon img {
    width: 36px;
    height: 36px;
}

.i-icon {
    width: 24px;
    height: 24px;
}
.film-info .i-icon {
    margin: 0 12px 0 7px;
}

.notification-message {
    color: #fff;
}

.invert .i-icon, .invert .x-icon img, .invert .notification-message {
    filter: invert(1);
}

/* FILM: text & credits */
.invert .film-description {
    color: #000;
}

.film-description-text {
    margin-bottom: 40px;
}

.film-description-text p {
    margin: 1em 0;
}

.film-description-text a {
    color: inherit;
    text-decoration: underline;
}
.credits-wrapper {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .film-description-text, .credits-wrapper {
        grid-column: span 9;
    }
}
@media (min-width: 1024px) {
    .film-description-text, .credits-wrapper {
        grid-column: 1 / span 6;
    }
}
@media (min-width: 1440px) {
    .film-description-text, .credits-wrapper {
        grid-column: 1 / span 9;
    }
}

.credits {
    /*display: none;*/
}

.credits-row {
    display: flex;
}

.credits-key {
    width: 85px;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    opacity: 0.6;
    text-transform: capitalize;
    margin-right: 16px;
}
.invert .credits-key {
    color: #000;
}

.credits-value {
    width: 210px;
}

/* --- READ ABOUT FILM --- */
.about-film {
    color: #fff;
    margin: 100px 0;
}
.invert .about-film {
    color: #000;
}
@media (min-width: 1024px) {
    .about-film {
        margin: 80px 0;
    }
}
@media (min-width: 1440px) {
    .about-film {
        margin: 100px 0;
    }
}

.about-film-heading {
    margin-bottom: 36px;
}

.about-film-article {
    border-top: 2px solid #fff;
    padding-top: 16px;
    margin-bottom: 32px;
}
.invert .about-film-article {
    border-color: #000;
}
@media (min-width: 1024px) {
    .about-film-article {
        grid-column: span 3;
    }
}

.about-film-link {
    display: block;
    color: #fff;
}
.invert .about-film-link {
    color: #000;
}

.about-film-link h3 {
    text-transform: uppercase;
    margin-bottom: 8px;
}
@media (min-width: 1440px) {
    .about-film {
        margin: 100px 0;
    }
}

.about-film-heading {
    margin-bottom: 36px;
}

.about-film-article {
    border-top: 2px solid #fff;
    padding-top: 16px;
    margin-bottom: 32px;
}
.invert .about-film-article {
    border-color: #000;
}
@media (min-width: 1024px) {
    .about-film-article {
        grid-column: span 3;
    }
}

.about-film-link h3 {
    text-transform: uppercase;
    margin-bottom: 8px;
}


/* --- LIVE: structure & styles from Film section --- */
@media (min-width: 1440px) {
    .live-section .titles {
        justify-content: flex-end;
    }

    .live-section .film-production {
        justify-content: flex-start;
        margin-bottom: 24px;
    }
}

/*@media (min-width: 768px) {*/
/*    .live-section .film-production, .live-description .film-description-text {*/
/*        grid-column: 1 / span 9;*/
/*    }*/
/*}*/
/*@media (min-width: 1024px) {*/
/*    .live-section .film-production {*/
/*        grid-column: 1 / span 9;*/
/*    }*/
/*}*/
/*@media (min-width: 1440px) {*/
/*    .live-description {*/
/*        grid-column: 1 / span 9;*/
/*    }*/
/*}*/

.live-section .film-actions-row {
    margin-bottom: 0;
}

/* --- LIVE ON MAIN --- */
.main-page .live-on-main .best-movie {
    border: 4px solid #ff4d4d;
}


/* --- VIDEO LANGUAGE SWITCHERS --- */
.video-lang-switchers {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    border-top: 2px solid #fff;
}
.invert .video-lang-switchers {
    border-color: #000;
}

.live-on-main .video-lang-switchers {
    border: none;
}

.live-on-main .video-lang-switchers {
    border-color: #ff4d4d;
}

.video-lang-btn.selected {
    color: #2D2D2D;
    background-color: #fff;
}

.video-lang-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    min-width: 62px;
    min-height: 42px;
    color: #fff;
    background-color: #000;
    border-width: 1px 2px 2px;
    border-style: solid;
    border-color: #fff;
    padding: 5px;
    cursor: pointer;
}
.video-lang-btn:first-child {
    border-right-width: 1px;
}
.video-lang-btn:nth-child(2) {
    border-left-width: 1px;
    border-right-width: 1px;
}
.video-lang-btn:last-child {
    border-left-width: 1px;
}
@media (min-width: 1024px) {
    .video-lang-btn {
        padding: 0 10px;
    }
    .video-lang-btn:not(.selected):hover {
        animation: pulse-bordered-btn 3s infinite;
    }
}

.live-on-main .video-lang-btn,
.invert .live-on-main .video-lang-btn {
    border-color: #ff4d4d;
    border-width: 1px 4px 4px;
}

.live-on-main .video-lang-btn.selected,
.invert .live-on-main .video-lang-btn.selected {
    color: #fff;
    background-color: #ff4d4d;
    border-color: #ff4d4d;
}
.live-on-main .video-lang-btn:hover {
    animation: none;
}
.invert .live-on-main .video-lang-btn.selected {
    filter: invert(0);
}
.invert .live-on-main .video-lang-btn {
    color: #ff4d4d;
    background-color: #fff;
    border-color: #ff4d4d;
    filter: none;
}

.video-lang-btn .video-lang-icon {
    display: flex;
    width: 32px;
}
.video-lang-btn.selected .video-lang-icon {
    filter: invert(1);
}

.invert .video-lang-btn.selected, .invert .video-lang-btn {
    filter: invert(1);
}

.live-on-main .video-lang-btn.selected .video-lang-icon,
.invert .live-on-main .video-lang-btn.selected .video-lang-icon {
    filter: invert(0);
}

.video-lang-text {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
}
@media (min-width: 1024px) {
    .video-lang-text {
        font-size: 16px;
        line-height: 20px;
    }
}


/* --- FAQ --- */
.faq-article {
    margin-top: 12px;
}


.faq-section {
    color: #fff;
    padding-top: 20px;
    margin-bottom: 60px;
}
.invert .faq-section {
    color: #000;
}

.faq-section h1 {
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .faqs.grid-container {
        display: flex;
        flex-direction: column-reverse;
    }
}
@media (min-width: 1180px) {
    .faqs.grid-container {
        display: grid;
    }
}

@media (min-width: 1180px) {
    .faq-col {
        grid-column: span 6;
    }
}

.question-btn {
    display: flex;
    align-items: center;
    width: 100%;
    color: #fff;
    text-align: left;
    padding: 10px 5px;
    border-bottom: 2px solid #fff;
    margin-bottom: 10px;
    cursor: pointer;
}
.invert .question-btn {
    color: #000;
    border-color: #000;
}

.question-btn img {
    margin-right: 23px;
    transition: transform 0.3s ease;
}
.invert .question-btn img {
    filter: invert(1);
}

.answer-row {
    display: none;
    padding-left: 40px;
    padding-bottom: 24px;
}
.answer-row * {
    color: #fff;
}
.invert .answer-row * {
    color: #000;
}

.invert .question-btn.open ~ .answer-row * {
    color: #000;
}

.question-btn.open > img {
    transform: rotate(180deg);
}

.answer-row a {
    text-decoration: underline;
}


/* --- ALL FILMS --- */
.all-films-section {
    color: #fff;
    padding-top: 20px;
}
.invert .all-films-section {
    color: #000;
}

.all-films-section .container {
    padding: 0;
}
@media (min-width: 576px) {
    .all-films-section .container {
        padding: 0 16px;
    }
}
@media (min-width: 768px) {
    .all-films-section .container {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .all-films-section .container {
        padding: 0 40px;
    }
}

.all-films-section h1 {
    margin: 0 16px 32px 16px;
}
@media (min-width: 576px) {
    .all-films-section h1 {
        margin: 0 0 32px;
    }
}

.filtered-films {
    margin-bottom: 60px;
}

.filtered-films h2 {
    margin: 0 16px 16px;
}
@media (min-width: 576px) {
    .filtered-films h2 {
        margin: 0 0 16px;
    }
}

@media (min-width: 576px) {
    .filtered-films-holder {
        grid-row-gap: 16px;
    }
}

.film-article {
    margin-bottom: 16px;
}
.film-article:last-child {
    margin-bottom: 0;
}
@media (min-width: 576px) {
    .film-article {
        grid-column: span 3;
        margin-bottom: 0;
    }
}
/* Uncomment to make 2 large film-items in a row on desktop*/
/*@media (min-width: 1440px) {*/
/*    .film-article {*/
/*        grid-column: span 6;*/
/*    }*/

/*    .film-article .coming-soon-link {*/
/*        display: flex;*/
/*    }*/

/*    .film-article .article-img-holder {*/
/*        width: 65%;*/
/*    }*/

/*    .film-article .coming-soon-info {*/
/*        width: 35%;*/
/*    }*/
/*}*/


/* --- ALL LIVE STREAMS --- */
.all-lives-section article {
   margin-bottom: 16px;
}
@media (min-width: 576px) {
    .all-lives-section article {
        grid-column: span 3;
        margin-bottom: 0;
    }
}


/* --- FILTER FORM --- */
.filter-form {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1070px) {
    .filter-form {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.filter-form-col {
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}
@media (min-width: 576px) {
    .filter-form-col {
        margin-left: -16px;
    }
}

.filter-group-title {
    max-width: 741px;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}
.invert .filter-group-title {
    color: #000;
}

.form-items {
    display: flex;
    flex-wrap: wrap;
}

.filter-form-item {
    width: 200px;
    flex-shrink: 0;
    padding: 5px 0;
    margin-left: 16px;
}


/* --- FILTER SELECT, SEARCH INPUT & LABEL --- */
.select-wrapper {
    position: relative;
}

.filter-form select, .filter-form input[type="text"] {
    -webkit-appearance: none;
    width: 100%;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-style: none;
    border-radius: 0;
    border-bottom: 2px solid #fff;
    text-overflow: ellipsis;
}

.filter-form select {
    padding: 4px 12px 8px 0;
    background-image: url(img/arrow.svg);
    background-repeat: no-repeat;
    background-position: top 50% right 0;
    background-size: 11px;
}

input[type="text"].filter-search {
    padding: 4px 27px 8px 0;
    background-image: url(img/search.svg);
    background-repeat: no-repeat;
    background-position: top 50% right 5px;
    background-size: 16px;
}
@media (min-width: 1070px) {
    input[type="text"].filter-search {
        margin-bottom: 0;
    }
}

.filter-label {
    font-size: 12px;
    line-height: 12px;
}

.poster-holder {
    position:relative;
    padding: 56.25% 0 0 0;
}

.poster-holder img {
    position: absolute;
    top: 0;
    left: 0;
}


/* --- IMPACT PAGE --- */
.impact-page {
    background-color: #000;
    padding: 40px 0;
}
.invert .impact-page {
    background-color: #fff;
}

.impact-bubbles-wrapper {
    margin-bottom: 80px;
}
@media (min-width: 768px) {
    .impact-bubbles-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 50px;
    }
}
@media (min-width: 1024px) {
    .impact-bubbles-wrapper {
        margin-bottom: 180px;
    }
}

.impact-bubbles {
    margin-bottom: 60px;
}
@media (min-width: 768px) {
    .impact-bubbles {
        position: relative;
        width: 60%;
        max-width: 660px;
        height: 505px;
        background-image: url("img/ddd_bg.svg");
        background-size: 100%;
        background-repeat: no-repeat;
        margin-left: 26%;
    }
    .invert .impact-bubbles {
        background-image: url("img/ddd_bg_invert.svg");
    }
}
@media (min-width: 1024px) {
    .impact-bubbles {
        margin-left: 24%;
    }
}
@media (min-width: 1300px) {
    .impact-bubbles {
        margin-left: 26%;
    }
}
@media (min-width: 1440px) {
    .impact-bubbles {
        margin-left: 28%;
    }
}

@keyframes soar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.impact-article {
    animation-name: soar;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    font-weight: 400;
    border-radius: 20px;
    margin: 0 auto 30px;
}
@media (min-width: 1024px) {
    .impact-link:hover {
        text-decoration: underline;
        text-decoration-color: grey;
    }
}

.impact-article,
.impact-article h2,
.impact-article h3 {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.impact-article h2,
.impact-article h3 {
    font-weight: 700;
}

.impact-message {
    display: block;
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .impact-message {
        padding: 20px 15px;
    }
}

.impact-message a {
    color: #00ff23;
}
.invert .impact-message a {
    color: #000;
    font-weight: bold;
}

.impact-message a:hover {
    text-decoration: underline;
}

.impact-article h3:not(.shape-four h3) {
    margin-bottom: 15px;
}

.impact-article p,
.impact-article h3,
.impact-article h2 {
    text-align: center;
}

.impact-article p {
    margin-bottom: 10px;
}

.impact-article p:last-of-type {
    margin-bottom: 0;
}

/* Black text, white background */
.black-on-white {
    background-color: #fff;
}
.invert .black-on-white {
    border: 1px solid #000;
}

.black-on-white h2,
.black-on-white h3,
.black-on-white p,
.invert .black-on-white span {
    color: #000 !important;
}

/* White text, black background */
.white-on-black {
    background-color: #000;
}
.invert .white-on-black {
    background-color: #fff;
}

.white-on-black h3 {
    color: #00ff23;
}
.invert .white-on-black h3 {
    color: #000;
}

.white-on-black p {
    color: #fff;
}
.invert .white-on-black p {
    color: #000;
}

/* IMPACT: Title shape */
.shape-zero {
    padding: 15px 10px;
    border-radius: 5px;
    animation: none;
}
@media (min-width: 768px) {
    .shape-zero {
        max-width: 275px;
        margin-bottom: 60px;
    }
}
@media (min-width: 1024px) {
    .shape-zero {
        border-radius: 0;
    }
}

.emphasized {
    color: #00ff23;;
}

/* Background Image: DDDD */
.impact-img-holder {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .impact-img-holder {
        margin-bottom: 0;
    }
}

.impact-bg-mobile {
    width: 85%;
    max-width: 400px;
    margin: 12px 0;
}
@media (min-width: 768px) {
    .impact-bg-mobile {
        display: none;
    }
}
.invert .impact-bg-mobile {
    display: none;
}

.impact-bg-mobile_invert {
    display: none;
}
.invert .impact-bg-mobile_invert {
    display: block;
}
@media (min-width: 768px) {
    .invert .impact-bg-mobile_invert {
        display: none;
    }
}

/* Triangle arrow */
@media (min-width: 768px) {
    .triangle {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
    }

    .invert .black-on-white .triangle::after {
        content: '';
        position: absolute;
        display: block;
        width: 0;
        height: 0;
    }
}

/* IMPACT: 1st shape */
.impact-article:not(.shape-zero)::after {
    position: absolute;
    color: #000;
    font-size: 60px;
    font-weight: 700;
    text-shadow: -1px -1px 0 #00ff23, 1px -1px 0 #00ff23, -1px 1px 0 #00ff23, 1px 1px 0 #00ff23;
}
.invert .impact-article:not(.shape-zero)::after {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.impact-article:not(.shape-zero) {
    position: relative;
}
@media (min-width: 768px) {
    .impact-article:not(.shape-zero) {
        position: absolute;
    }

    .shape-one {
        top: -155px;
        left: -186px;
        max-width: 190px;
    }

    .invert .black-on-white .impact-message {
        position: relative;
        background-color: #fff;
        border-radius: 55px;
    }

    .shape-one .triangle {
        bottom: 58px;
        right: -20px;
        border-left: 34px solid transparent;
        border-top: 44px solid #fff;
        transform: rotate(-43deg);
    }
    .invert .shape-one .triangle {
        border-top: 44px solid #000;
    }

    .invert .shape-one .triangle::after {
        bottom: 3px;
        left: -35px;
        border-left: 34px solid transparent;
        border-top: 44px solid #fff;
    }
}
@media (min-width: 1024px) {
    .shape-one {
        width: 190px;
        animation-duration: 7s;
        top: -140px;
        left: -170px;
    }
}

.shape-one::after {
    content: '1';
    top: -35px;
    right: 10px;
    font-style: italic;
}


/* IMPACT: 2nd shape */
.white-on-black {
    border: 1px solid #fff;
}
.invert .white-on-black {
    border-color: #000;
}

.shape-two::after {
    content: '2';
    top: -30px;
    right: 10px;
    font-style: italic;
}

@media (min-width: 768px) {
    .shape-two {
        top: -150px;
        right: -112px;
        max-width: 200px;
    }

    .shape-two::after {
        top: -23px;
        right: 1px;
    }

    .white-on-black .impact-message  {
        position: relative;
        background-color: #000;
        border-radius: 55px;
    }
    .invert .white-on-black .impact-message {
        background-color: #fff;
    }

    .shape-two .triangle {
        bottom: 88px;
        left: -31px;
        border-left: 57px solid transparent;
        border-top: 30px solid #fff;
        transform: rotate(-58deg);
    }
    .invert .shape-two .triangle {
        border-top: 30px solid #000;
    }

    .white-on-black .triangle::after {
        content: '';
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        bottom: 1px;
        left: -52px;
        border-left: 51px solid transparent;
        border-top: 28px solid #000;
    }
    .invert .white-on-black .triangle::after {
        border-top: 28px solid #fff;
    }
}
@media (min-width: 1024px) {
    .shape-two {
        width: 200px;
        animation-duration: 8s;
        animation-delay: 1s;
    }
}

/* IMPACT: 3rd shape */
.shape-three::after {
    content: '3';
    top: -30px;
    right: 10px;
    font-style: italic;
}

@media (min-width: 768px) {
    .shape-three {
        bottom: -195px;
        left: -185px;
        max-width: 300px;
    }

    .shape-three::after {
        top: -36px;
        right: 97px;
    }

    .shape-three .impact-message {
        padding: 30px 15px;
    }

    .shape-three .triangle {
        top: -33px;
        right: 47px;
        border-left: 57px solid transparent;
        border-top: 30px solid #fff;
        transform: rotate(115deg);
    }
    .invert .shape-three .triangle {
        border-top: 30px solid #000;
    }

    .shape-three .triangle::after {
        bottom: 1px;
        left: -52px;
        border-left: 51px solid transparent;
        border-top: 28px solid #000;
    }
    .invert .shape-three .triangle::after {
        border-top: 28px solid #fff;
    }
}
@media (min-width: 1024px) {
    .shape-three {
        width: 300px;
        bottom: -295px;
        animation-duration: 8s;
        animation-delay: 1s;
    }
}

/* IMPACT: 4th shape */
@media (min-width: 768px) {
    .shape-four {
        bottom: -100px;
        right: -25px;
        max-width: 180px;
    }

    .shape-four .impact-link {
        padding: 30px;
    }

    .shape-four .triangle {
        top: -41px;
        right: 41px;
        border-left: 62px solid transparent;
        border-top: 25px solid #fff;
        transform: rotate(-262deg);
    }
    .invert .shape-four .triangle {
        border-top: 25px solid #000;
    }

    .invert .shape-four .triangle::after {
        bottom: -1px;
        left: -57px;
        border-left: 62px solid transparent;
        border-top: 25px solid #fff;
    }
}
@media (min-width: 1024px) {
    .shape-four {
        width: 180px;
        bottom: -200px;
        right: 20px;
        animation-duration: 7s;
        animation-delay: 2s;
    }
}


.shape-four::after {
    content: '4';
    top: -35px;
    right: 10px;
    font-style: italic;
}
@media (min-width: 768px) {
    .shape-four::after {
        top: -38px;
        right: unset;
        left: 60px;
    }
}

/* IMPACT: Projector */
@media (min-width: 768px) {
    .impact-projector {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}
@media (min-width: 1440px) {
    .impact-projector {
        width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 768px) {
    .projector-articles {
        position: relative;
        height: 350px;
        width: 65%;
    }
}

.animated {
    transition: all 0.4s ease;
}

.projector-article {
    transform: rotate(-15deg);
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .projector-article {
        position: absolute;
        width: 50%;
        max-width: 300px;
    }
}
@media (min-width: 1024px) {
    .projector-article {
        opacity: 0;
        transform: scale(0.7) rotate(-15deg);
    }

    .animated.projector-article {
        opacity: 1;
        transform: scale(1) rotate(-15deg);
    }
}

.projector-article:first-child {
    margin-left: 40px;
}
@media (min-width: 606px) {
    .projector-article:first-child {
        margin-right: 50px;
    }
}
@media (min-width: 768px) {
    .projector-article:first-child {
        top: 94px;
        left: -30px;
    }
}
@media (min-width: 1024px) {
    .projector-article:first-child {
        top: 130px;
        left: -220px;
    }
    .animated.projector-article:first-child {
        top: 65px;
        left: -5px;
        transition-delay: 0.3s;
    }
}

@media (min-width: 768px) {
    .projector-article:nth-child(2) {
        top: 48px;
        left: 260px;
    }
}
@media (min-width: 1024px) {
    .projector-article:nth-child(2) {
        top: 175px;
        left: -30px;
    }

    .animated.projector-article:nth-child(2) {
        top: 5px;
        left: 325px;
        transition-delay: 0.6s;
    }
}

.projector-article:nth-child(3) {
    margin-left: 70px;
}
@media (min-width: 768px) {
    .projector-article:nth-child(3) {
        bottom: -22px;
        left: -48px;
    }
}
@media (min-width: 1024px) {
    .projector-article:nth-child(3) {
        bottom: 50px;
        left: -30px;
    }

    .animated.projector-article:nth-child(3) {
        bottom: 32px;
        left: 0;
        transition-delay: 1.5s;
    }
}

.projector-article:nth-child(4) {
    margin-left: 15px;
}
@media (min-width: 768px) {
    .projector-article:nth-child(4) {
        bottom: 0;
        left: 240px;
    }
}
@media (min-width: 1024px) {
    .projector-article:nth-child(4) {
        bottom: 40px;
        left: -34px;
    }

    .animated.projector-article:nth-child(4) {
        bottom: 120px;
        left: 315px;
        transition-delay: 1.2s;
    }
}

.projector-article:nth-child(5) {
    margin-left: 70px;
    margin-bottom: 60px;
}
@media (min-width: 768px) {
    .projector-article:nth-child(5) {
        bottom: 43px;
        left: -56px;
    }
}
@media (min-width: 1024px) {
    .projector-article:nth-child(5) {
        bottom: 60px;
        left: -108px;
    }

    .animated.projector-article:nth-child(5) {
        bottom: 80px;
        left: -45px;
        transition-delay: 0.9s;
    }
}

.projector-article {
    display: flex;
}

.projector-article a {
    display: inline;
}

.projector-article,
.projector-article a {
    color: #00ff23;
    text-transform: uppercase;
}
.invert .projector-article a,
.invert .projector-article p {
    color: #000;
}

.projector-article a:hover {
    text-decoration: underline;
}

@media (min-width: 1024px) {
    .projector-link:hover {
        text-decoration: underline;
    }
}

.projector-article::before {
    content: '';
    display: flex;
    flex-shrink: 0;
    width: 13px;
    height: 14px;
    margin: 3px 8px 0 0;
    background-image: url("img/bullet.svg");
    background-repeat: no-repeat;
    background-size: 100%;
}
.invert .projector-article::before {
    filter: invert(1);
}

.projector-holder {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
@media (min-width: 768px) {
    .projector-holder {
        width: 35%;
        justify-content: flex-start;
    }
}
@media (min-width: 1024px) {
    .projector-holder {
        justify-content: flex-end;
    }
}

.projector {
    max-width: 230px;
}
.invert .projector {
    filter: invert(1);
}


/* --- IMPACT WIDGET --- */
.impact-widget {
    padding: 32px 0 20px;
}

.impact-widget-inner,
.impact-widget-article {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 440px) {
    .impact-widget-inner {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (min-width: 825px) {
    .impact-widget-inner {
        justify-content: space-between;
    }
}

.impact-widget-article {
    position: relative;
    width: 80%;
    margin-bottom: 25px;
}
.impact-widget-article:last-child {
    margin-bottom: 0;
}
@media (min-width: 440px) {
    .impact-widget-article {
        width: 50%;
        margin-bottom: 0;
    }
}
@media (min-width: 825px) {
    .impact-widget-article {
        width: 24%;
    }
}

.impact-widget-link {
    display: flex;
    justify-content: center;
    width: 100%;
    transform: scale(1);
    transition: 0.3s ease-in;
}
@media (min-width: 1024px) {
    .impact-widget-link:hover {
        transform: scale(1.05);
    }
    .impact-widget-link:hover .impact-widget-bubble {
        animation: soar 5s infinite;
    }
}

.impact-widget-bg {
    position: relative;
    width: 220px;
    height: 270px;
    background-size: 200px 210px;
    background-position: center;
    background-repeat: no-repeat;
}
.impact-widget-article:nth-child(odd) .impact-widget-bg {
    background-image: url("img/d_green.svg");
}
.invert .impact-widget-article:nth-child(odd) .impact-widget-bg {
    background-image: url("img/d_white_invert.svg");
}
.impact-widget-article:nth-child(even) .impact-widget-bg {
    background-image: url("img/d_white.svg");
}
.invert .impact-widget-article:nth-child(even) .impact-widget-bg {
    background-image: url("img/d_white_invert.svg");
}

.impact-widget-bg::after {
    position: absolute;
    bottom: -5px;
    right: 15px;
    color: #000;
    font-size: 136px;
    font-style: italic;
    font-weight: 700;
    text-shadow: -1px -1px 0 #00ff23, 1px -1px 0 #00ff23, -1px 1px 0 #00ff23, 1px 1px 0 #00ff23;
}
.impact-widget-article:nth-child(1) .impact-widget-bg::after {
    content: '1';
}
.impact-widget-article:nth-child(2) .impact-widget-bg::after {
    content: '2';
}
.impact-widget-article:nth-child(3) .impact-widget-bg::after {
    content: '3';
}
.impact-widget-article:nth-child(4) .impact-widget-bg::after {
    content: '4';
}
.invert .impact-widget-bg::after {
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

.impact-widget-bubble {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
}

.widget-bubble-inner {
    position: relative;
    padding: 15px;
    border-radius: 7px;
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
}
.invert .impact-widget-article .widget-bubble-inner {
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
}

.bubble-arrow {
    content: '';
    position: absolute;
    right: 4px;
    bottom: -50px;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-top: 60px solid #fff;
    transform: rotate(-25deg);
}
.invert .bubble-arrow {
    border-top: 60px solid #000;
}

.impact-widget-article .bubble-arrow::after {
    content: '';
    position: absolute;
    top: -60px;
    right: 1px;
    display: block;
    width: 0;
    height: 0;
    border-left: 28px solid transparent;
    border-top: 57px solid #000;
}
.invert .impact-widget-article .bubble-arrow::after {
    border-top: 57px solid #fff;
}

.widget-bubble-inner p {
    font-weight: 700;
}

.widget-bubble-inner a {
    color: #00ff23;
}


/* --- USER PROFILE --- */
.profile {
    color: #fff;
    padding: 20px 0 60px;
}
.invert .profile {
    color: #000;
}

@media (min-width: 576px) {
    .profile-inner {
        display: grid;
        grid-template-columns: repeat(6,minmax(0, 1fr));
        grid-gap: 16px;
    }
}
@media (min-width: 768px) {}
@media (min-width: 1024px) {
    .profile-inner {
        grid-template-columns: repeat(9,minmax(0, 1fr));
    }
}
@media (min-width: 1180px) {
    .profile-inner {
        grid-template-columns: repeat(12,minmax(0, 1fr));
    }
}

.profile-page-title {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 44px;
    margin-bottom: 32px;
}

/* --- USER PROFILE: USER INFO --- */
@media (min-width: 576px) {
    .profile-section {
        grid-column: span 6;
    }
}
@media (min-width: 1180px) {
    .profile-section {
        grid-column: 1 / span 9;
    }
}

.profile-page-title {
    margin-bottom: 40px;
}

.profile-section .profile-section-text {
    margin-bottom: 16px;
}

.profile-form {
    display: flex;
    flex-direction: column;
}
@media (min-width: 576px) {
    .profile-form {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-column-gap: 16px;
    }
}

.profile-form-item {
    width: 100%;
}
@media (min-width: 576px) {
    .profile-form-item {
        grid-column: 1 / span 3;
    }
    .profile-form-item:nth-child(2),
    .profile-form-item:nth-child(4),
    .save-info-btn,
    .change-pass-btn {
        grid-column: 4 / span 3;
    }
}
@media (min-width: 1024px) {
    .profile-form-item {
        grid-column: 1 / span 3;
    }
    .profile-form-item:nth-child(2),
    .profile-form-item:nth-child(4),
    .save-info-btn,
    .change-pass-btn {
        grid-column: 4 / span 3;
    }
}
@media (min-width: 1180px) {
    .profile-form-item {
        grid-column: 1 / span 2;
    }
    .profile-form-item:nth-child(2),
    .profile-form-item:nth-child(4),
    .save-info-btn,
    .change-pass-btn {
        grid-column: 3 / span 2;
    }
}

.profile-label {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
}

input.profile-input, .profile-select {
    width: 100%;
    padding: 0 11px 8px 0;
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    border-style: none;
    border-bottom: 2px solid #fff;
    margin-bottom: 32px;
}
.invert input.profile-input, .invert .profile-select {
    filter: invert(1);
}

.profile-select {
    -webkit-appearance: none;
    background-image: url(img/arrow.svg);
    background-repeat: no-repeat;
    background-position: top 50% right 0;
    background-size: 11px;
    text-overflow: ellipsis;
    border-radius: 0;
}

.save-info-btn {
    margin-bottom: 24px;
}

.save-info-btn, .change-pass-btn {
    width: 100%;
    height: 44px;
}


/* --- USER PROFILE: MENU --- */
.profile .profile-menu {
    display: none;
}
@media (min-width: 1024px) {
    .profile .profile-menu {
        display: block;
        margin-left: 16px;
    }
}
@media (min-width: 1024px) {
    .profile-menu {
        grid-column: 8 / span 2;
    }
}
@media (min-width: 1180px) {
    .profile-menu {
        grid-column: 10 / span 3;
    }
}

.profile .profile-menu-list {
    border-left: 2px solid #fff;
    margin-bottom: 24px;
}
.invert .profile .profile-menu-list {
    border-color: #000;
}

.mobile-menu .profile-menu-link {
    margin-bottom: 0;
}

.profile .profile-menu-link {
    color: #fff;
    padding-left: 16px;
    border-left: none;
}
.profile .profile-menu-item:first-child .profile-menu-link {
    padding-top: 0;
}
.profile .profile-menu-item:last-child .profile-menu-link {
    padding-bottom: 0;
}
.profile .profile-menu-link.active {
    padding-left: 36px;
}
@media (min-width: 1024px) {
    .profile-menu-link:not(.active):hover {
        animation: pulse-menu-btn 3s infinite;
    }
}
.invert .profile .profile-menu-link {
    color: #000;
}

/*.mobile-menu .logout {*/
/*    display: none;*/
/*}*/
@media (min-width: 768px) {
    .profile .logout {
        color: #fff;
        background-color: #000;
        border-color: #fff;
        margin: 0;
    }
}


/* --- USER PROFILE: FESTIVAL PASS --- */
.festpass-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}
@media (min-width: 1180px) {
    .festpass-wrapper {
        flex-direction: row;
    }
}

.festpass {
    position: relative;
    width: 100%;
    padding-bottom: 63%;
    margin-bottom: 40px;
}
@media (min-width: 1180px) {
    .festpass {
        width: 311px;
        padding-bottom: 195px;
        margin-right: 16px;
        margin-bottom: 0;
    }
}

.festpass-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.festpass-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}
@media (min-width: 567px) {
    .festpass-actions {
        flex-direction: row;
    }
}
@media (min-width: 1180px) {
    .festpass-actions {
        width: calc(100% - 335px);
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Vertical Divider */
.or-text {
    margin-bottom: 50px;
}
@media (min-width: 567px) {
    .or-text {
        display: none;
        margin-bottom: 0;
    }

    .divider {
        margin: 0 16px;
        border-right: 2px dashed #808080;
    }
}

/* Activate form */
.festpass-actions .font-section-title {
    margin-bottom: 12px;
}

.activate-form,
.buy-form {
    height: fit-content;
}
@media (min-width: 576px) {
    .activate-form,
    .buy-form {
        width: 50%;
    }
}
@media (min-width: 1180px) {
    .activate-form,
    .buy-form {
        width: calc(50% - 17px);
        max-width: 290px;
    }
}

.activate-btn, .buy-pass-btn {
    width: 100%;
    cursor: pointer;
    padding: 11px 24px;
    border-width: 2px;
    margin-bottom: 16px;
}
@media (min-width: 567px) {
    .activate-btn, .buy-pass-btn {
        margin-bottom: 0;
    }
}

.buy-pass-btn .btn-inner {
    display: inline;
}

.activate-container,
.studentID-container {
    width: 100%;
    margin-bottom: 12px;
}

input.activate-input,
input.studentID-input {
    padding: 4px 0 8px;
    margin-bottom: 0;
}

/* Notifications under Activate/Buy Forms */
.festpass-actions .error_message_container {
    padding-bottom: 0;
    margin-top: 0;
}

/* Fest Pass Rules */
.festpass-rules {
    color: #fff;
    margin-bottom: 42px;
}
.invert .festpass-rules {
    color: #000;
}

.festpass-rules .font-section-title {
    margin-bottom: 16px;
}


/* --- USER PROFILE: TICKETS --- */
.profile-tickets {
    margin-bottom: 60px;
}

@media (min-width: 576px) {
    .profile-films {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-gap: 16px;
    }
}
@media (min-width: 1180px) {
    .profile-films {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
}

.profile-section-title {
    margin-bottom: 16px;
}

.profile-film-item, .profile-event-item {
    min-height: 472px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 16px;
}
@media (min-width: 576px) {
    .profile-film-item, .profile-event-item {
        grid-column: span 3;
        margin-bottom: 0;
    }
}
@media (min-width: 900px) {
    .profile-film-item, .profile-event-item {
        grid-column: span 2;
    }
}
@media (min-width: 1024px) {
    .profile-film-item, .profile-event-item {
        grid-column: span 3;
    }
}

.profile-film-item .article-link {
    color: #fff;
}
.invert .profile-film-item .article-link {
    color: #000;
}

.profile-films .article-link:hover {
    animation: none;
    color: #fff;
}
.invert .profile-films .article-link:hover {
    color: #000;
}

@media (min-width: 1440px) {
    .profile-tickets .coming-soon-info {
        width: 100%;
    }
}

.profile-btn-wrapper {
    min-height: 37px;
}

.cancel-booking-btn {
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 9px 32px;
    border-top: 2px solid #fff;
    cursor: pointer;
}
@media (min-width: 1024px) {
    .cancel-booking-btn:hover {
        animation: pulse-bordered-btn 3s infinite;
    }

    .invert .cancel-booking-btn:hover {
        animation: none;
    }
}
.invert .cancel-booking-btn {
    color: #000;
    border-color: #000;
}


/* --- USER PROFILE: SHARE SOCIAL BUTTONS --- */
.share-widget {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 24px 0;
}
.invert .share-widget {
    color: #000;
}

.share-widget h2 {
    margin-bottom: 24px;
}

.share-buttons {
    margin-top: 16px;
}

.share-btn {
    padding: 0;
    margin-right: 24px;
    cursor: pointer;
}

.share-icon {
    display: block;
    width: 24px;
}
@media (min-width: 1024px) {
    .share-btn:hover .share-icon {
        animation: pulse-menu-btn 3s infinite;
    }
}
.invert .share-icon {
    filter: invert(1);
}


/* --- USER PROFILE: FAVORITE --- */
.profile-film-item, .profile-event-item {
    position: relative;
}

.profile-event-item {
    background-color: #fff;
}
@media (min-width: 1180px) {
    .profile-event-item {
        background-color: #000;
    }

    .invert .profile-event-item {
        background-color: #fff;
    }
}

.profile-film-item .coming-soon-info, .profile-event-item .discussion-info {
    padding: 24px 32px 0 32px;
}

.profile-films .favorite-btn {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
}
@media (min-width: 1024px) {
    .profile-films .favorite-btn:hover .favorite-img,
    .calendar-btn:hover .calendar-img {
        animation: pulse-menu-btn 3s infinite;
    }
}

.favorite-btn, .calendar-btn {
    cursor: pointer;
}

.favorite-img {
    width: 25px;
    height: 25px;
}

.profile-film-actions {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 32px 4px 12px;
}
.invert .profile-film-actions {
    color: #000;
}
.profile-event-item .profile-film-actions {
    color: #000;
    background-color: #fff;
}
@media (min-width: 1180px) {
    .profile-event-item .profile-film-actions {
        color: #fff;
        background-color: #000;
    }

    .invert .profile-event-item .profile-film-actions {
        color: #000;
        background-color: #fff;
    }
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.profile-event-item .profile-film-actions .calendar-img {
    filter: invert(1);
}
@media (min-width: 1180px) {
    .profile-event-item .profile-film-actions .calendar-img {
        filter: invert(0);
    }

    .invert .profile-event-item .profile-film-actions .calendar-img {
        filter: invert(1);
    }
}

@media (min-width: 1024px) {
    .calendar-btn:hover .calendar-img {
        animation: pulse-menu-btn 3s infinite;
    }
}
.invert .calendar-img {
    filter: invert(1);
}

@media (min-width: 1180px) {
    .profile-event-item .discussion-link:hover {
        color: #fff;
        animation: none;
    }
}


/* --- USER PROFILE: SCHEDULE --- */
.profile-btn-instructions {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 28px;
}
@media (min-width: 576px) {
    .profile-btn-instructions {
        width: 360px;
    }
}

.profile-btn-instructions .calendar-img {
    margin-right: 16px;
}

.profile-btn-instructions p {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #fff;
}
.invert .profile-btn-instructions p {
    color: #000;
}


/* --- MAIN PAGE FESTIVAL: LARGE IMAGE BANNER  --- */
.banner-holder {
    max-height: 810px;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    object-fit: cover;
}


/* --- CALENDAR SLIDER & CALENDAR SIMPLE  --- */
.calendar, .calendar-simple {
    margin-bottom: 32px;
}

.calendar,
.calendar-simple {
    color: #fff;
}
.invert .calendar,
.invert .calendar-simple {
    color: #000;
}

.main-page .calendar-simple,
.calendar-simple {
    display: none;
}
@media (min-width: 1180px) {
    .main-page .calendar {
        display: none;
    }

    .main-page .calendar-simple {
        display: block;
    }
    .main-page .calendar-items {
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        grid-gap: 16px;
    }

    .main-page .calendar-items {
        max-width: 1440px;
        margin: 0 auto;
        padding: 0 40px;
    }

}

.calendar .swiper-container,
.main-page .calendar-text {
    max-width: 1440px;
    margin: 0 auto 16px;
}

.film-calendar > .font-section-title {
    margin-bottom: 10px;
}

.film-section .calendar-text {
    display: none;
}

.main-page .calendar .font-text,
.main-page .calendar-simple .font-text {
    margin-top: 10px;
}

.main-page .calendar-text {
    padding: 0 16px;
}
@media (min-width: 768px) {
    .main-page .calendar-text {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .main-page .calendar-text {
        padding: 0 40px;
    }
}

.calendar .swiper-wrapper {
    margin-bottom: 0;
}

.calendar .swiper-button-prev,
.calendar .swiper-button-next {
    width: 45px;
    height: 50px;
}
.calendar .swiper-button-prev {
    left: 0;
}
.calendar .swiper-button-next {
    right: 0;
}
.calendar .swiper-button-prev.swiper-button-disabled,
.calendar .swiper-button-next.swiper-button-disabled {
    display: none;
}
.calendar .swiper-button-prev::after,
.calendar .swiper-button-next::after {
    font-family: unset;
    content: '';
}

.calendar .swiper-button-next .arrow-icon {
    transform: rotate(180deg);
}
@media (min-width: 1024px) {
    .calendar .arrow-icon,
    .calendar .arrow-icon {
        opacity: 0.6;
    }
    .calendar .arrow-icon:hover,
    .calendar .arrow-icon:hover {
        opacity: 1;
    }
}

.calendar-link {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    text-align: center;
    color: #fff;
    padding: 19px 5px;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin-left: 16px;
}
.main-page .calendar-link {
    width: 95px !important;
}
.film-section .calendar-link {
    width: 86px !important;
}
.invert .calendar-link {
    color: #000;
    border-color: #000;
}
.calendar-link:last-child {
    margin-right: 16px;
}
@media (min-width: 768px) {
    .calendar-link:first-child {
        margin-left: 33px;
    }
    .calendar-link:last-child {
        margin-right: 33px;
    }
}
@media (min-width: 1024px) {
    .calendar-link:first-child {
        margin-left: 40px;
    }
    .calendar-link:last-child {
        margin-right: 40px;
    }
}
@media (min-width: 1180px) {
    .main-page .calendar-link {
        grid-column: span 1;
        width: unset !important;
        margin: 0;
    }
    .calendar-link:first-child {
        margin-left: 0;
    }
    .calendar-link:last-child {
        margin-right: 0;
    }
}

.calendar-link.active {
    color: #000;
    background-color: #fff;
}
.calendar-link.inactive {
    opacity: 0.5;
}

.calendar-day, .calendar-month, .calendar-weekday {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.calendar-day {
    font-size: 48px;
    line-height: 48px;
}

.calendar-month, .calendar-weekday {
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
}
@media (min-width: 1280px) {
    .main-page .calendar-month, .main-page .calendar-weekday {
        font-size: 20px;
        line-height: 24px;
    }
}

/* --- CALENDAR on FILM PAGE FESTIVAL --- */
.film-fest-section .calendar {
    margin: 0 -16px 32px -16px;
}
@media (min-width: 768px) {
    .film-fest-section .calendar {
        grid-column: span 9;
        margin: 0 -33px 32px;
    }
}

@media (min-width: 1024px) {
    .film-fest-section .calendar {
        display: none;
    }

    .film-fest-section .calendar-simple {
        grid-column: span 6;
        display: block;
        margin-bottom: 44px;
    }

    .film-fest-section .calendar-items {
        display: flex;
        flex-wrap: wrap;
    }
}
@media (min-width: 1440px) {
    .film-fest-section .calendar-simple {
        grid-column: span 9;
    }
}

.film-fest-section .calendar-link {
    position: relative;
}
.film-fest-section .calendar-simple .calendar-link {
    width: 80px !important;
    padding: 15px 0;
    margin: 5px 10px 5px 0;
}

.film-fest-section .calendar-simple .calendar-link:last-child {
    margin-right: 0;
}

@media (min-width: 1024px) {
    .film-fest-section .calendar-link {
        margin-left: 0;
        margin-right: 14px;
    }
}

.film-fest-section .calendar-month, .film-fest-section .calendar-weekday {
    font-size: 14px;
}

.film-fest-section .special-day-text {
    position: absolute;
    left: 0;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}


/* --- MAIN PAGE FESTIVAL: EVENT OF THE DAY --- */
.fest-section {
    margin-bottom: 32px;
}

.fest-section .font-section-title {
    margin-bottom: 16px;
}

.day-event-item {
    position: relative;
    margin-bottom: 24px;
}
@media (min-width: 1024px) {
    .day-event-item {
        grid-column: span 9;
    }
}
@media (min-width: 1180px) {
    .day-event-item {
        margin-bottom: 0;
    }
}

.day-event-item .article-link {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .day-event-item .article-link {
        flex-direction: row;
    }
}
@media (min-width: 1024px) {
    .day-event-item .coming-soon-link {
        animation: none;
    }

    .day-event-item .coming-soon-link:hover {
        color: #fff;
    }

    .invert .day-event-item .coming-soon-link:hover {
        color: #000;
    }
}

.day-event-item .coming-soon-info {
    padding: 24px 32px 0 32px;
}
@media (min-width: 768px) {
    .day-event-item .article-img-holder {
        width: 66%;
        object-fit: cover;
        padding-bottom: 0;
    }

    .day-event-item .article-img {
        height: 100%;
        object-fit: cover;
    }

    .day-event-item .coming-soon-info {
        width: 34%;
    }
}

.day-event-item .actions-space {
    height: 60px;
}

.day-event-item .profile-film-actions {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 0 32px 0 15px;
}
@media (min-width: 768px) {
    .day-event-item .profile-film-actions {
        width: 34%;
    }
}

.day-event-item .calendar-btn {
    padding: 15px;
    cursor: pointer;
}
.invert .day-event-item .calendar-img {
    filter: invert(1);
}


/* --- MAIN PAGE FESTIVAL: TALK BUBBLES --- */
.bubbles-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #999999;
}
.invert .bubbles-widget {
    color: #000;
}
@media (min-width: 1024px) {
    .bubbles-widget {
        grid-column: span 9;
    }
}
@media (min-width: 1180px) {
    .bubbles-widget {
        flex-direction: column;
        grid-column: span 3;
        padding: 0 32px;
    }
}

.bubbles-img {
    width: 15%;
    max-width: 80px;
    margin-right: 16px;
}
@media (min-width: 1180px) {
    .bubbles-img {
        width: 155px;
        max-width: unset;
        height: 100%;
    }
}
.invert .bubbles-img {
    filter: invert(1);
}

.bubbles-widget a {
    color: #fff;
    text-decoration: underline;
}
.invert .bubbles-widget a {
    color: #000;
}

/* --- MAIN PAGE FESTIVAL: FESTIVAL PROGRAMS --- */
@media (min-width: 576px) {
    .fest-programs-section {
        padding: 0 16px;
        max-width: 1440px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 768px) {
    .fest-programs-section {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .fest-programs-section {
        padding: 0 40px;
    }
}

.fest-programs-section .font-section-title{
    padding: 0 16px;
}
@media (min-width: 576px) {
    .fest-programs-section .font-section-title {
        padding: 0;
    }
}

.fest-programs-wrapper {
    display: none;
}
@media (min-width: 900px) {
    .fest-programs-slider {
        display: none;
    }

    .fest-programs-wrapper {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-gap: 16px;
    }
}

.fest-program {
    display: block;
    width: calc(100vw - 32px);
    padding: 24px 24px 0 0;
}
@media (min-width: 576px) {
    .fest-program {
        margin-left: 0;
    }
}
@media (min-width: 900px) {
    .fest-program {
        width: auto;
        grid-column: span 4;
        margin: 0;
    }
}
@media (min-width: 1024px) {
    .fest-program:hover .stack {
        background: #fff;
        opacity: 0.5;
    }
    .invert .fest-program:hover .stack {
        background: #000;
    }
}
@media (min-width: 1180px) {
    .fest-program {
        grid-column: span 3;
    }
}

.fest-program-content {
    position: relative;
    height: 425px;
}
@media (min-width: 576px) {
    .fest-program-content {
        height: 430px;
    }
}
@media (min-width: 900px) {
    .fest-program-content {
        height: 440px;
    }
}
@media (min-width: 1180px) {
    .fest-program-content {
        height: 460px;
    }
}

.stack {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
}
.invert .stack {
    background: #fff;
}
.stack-three {
    top: -8px;
    right: -8px;
    transition: all 0.15s 0s ease-in-out;
}
.stack-two {
    top: -16px;
    right: -16px;
    transition: all 0.15s 0.15s ease-in-out;
}
.stack-one {
    top: -24px;
    right: -24px;
    transition: all 0.15s 0.3s ease-in-out;
}

.fest-program-inner,
.stack {
    border: 2px solid #fff;
}
.invert .fest-program-inner, .invert .stack {
    border-color: #000;
}

.fest-program-inner {
    color: #fff;
    background-color: #000;
}

.fest-program-inner,
.fest-program-img-wrapper,
.fest-program-text {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.fest-program-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fest-program-top {
    padding: 20px 14px;
}

.fest-program-top .font-discussion-title {
    text-transform: uppercase;
    text-shadow: 0 0 3px #4c4b4b;
}

.fest-program-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    padding: 16px;
    background: rgba(0, 0, 0, 0.7);
}
@media (min-width: 1440px) {
    .fest-program-bottom {
        padding: 28px 16px 16px 20px;
    }
}


/* --- MAIN PAGE FESTIVAL: SMALL IMAGE BANNER --- */
.small-banner .banner-holder {
    height: 380px;
}
@media (min-width: 576px) {
    .small-banner .banner-holder {
        max-height: 210px;
    }
}

.small-banner .banner-img {
    height: 100%;
}


/* --- MAIN PAGE FESTIVAL: AUDIENCE FILM RATING --- */
.film-rating-section {
    color: #fff;
}
.invert .film-rating-section {
    color: #000;
}
@media (min-width: 576px) {
    .film-rating-section {
        padding: 0 16px;
        margin-left: auto;
        margin-right: auto;
        max-width: 1440px;
    }
}
@media (min-width: 768px) {
    .film-rating-section {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .film-rating-section {
        padding: 0 40px;
    }
}

.film-rating-titles {
    padding: 0 16px;
    margin-bottom: 16px;
}
@media (min-width: 576px) {
    .film-rating-titles {
        padding: 0;
    }
}

.film-rating-wrapper.swiper-container {
    overflow-y: visible;
    padding-top: 47px;
}

.rated-film {
    position: relative;
}

.rating-num {
    position: absolute;
    top: -66px;
    right: -2px;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 90px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px #00ff23;
    z-index: 1;
}
.invert .rating-num {
    color: #fff;
    -webkit-text-stroke: 2px #000;
}

.rated-film .article-link {
    color: #fff;
}
.invert .rated-film .article-link {
    color: #000;
}

@media (min-width: 1440px) {
    .rated-film .coming-soon-info {
        width: 100%;
    }
}

/* --- FILM/LIVE PAGE FESTIVAL: BUTTONS TO FAVORITE/CALENDAR --- */
.btn-wrapper {
    display: flex;
    align-items: center;
}
.film-production .btn-wrapper {
    margin-bottom: 16px;
}
.film-actions .btn-wrapper {
    display: none;
}
@media (min-width: 768px) {
    .film-production .btn-wrapper {
        display: none;
        margin-bottom: 0;
    }
    .film-actions .btn-wrapper {
        display: flex;
        margin-bottom: 10px;
    }
}
@media(min-width: 1180px) {
    .film-actions .btn-wrapper {
        margin-top: 12px;
        margin-bottom: 0;
    }
}

.film-add-btn {
    width: calc(50% - 10px);
}
.film-add-btn:nth-child(2) {
    margin-left: 10px;
}
.film-add-btn:only-child {
    width: 100%;
}
@media (min-width: 1024px) {
    .film-add-btn:hover .film-add-btn-img {
        animation: pulse-menu-btn 3s infinite;
    }
}

.film-info .favorite-btn {
    display: flex;
    align-items: center;
}

.film-info .favorite-btn {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
    padding: 5px;
}
.invert .film-info .film-add-btn {
    filter: invert(1);
}

.film-add-btn-img {
    margin-right: 12px;
}

.favorite-btn-text {
    text-align: left;
}

.favorite-btn-text {
    text-align: left;
    display: none;
}

.favorite-btn-text.active {
    display: inline;
}


/* --- CALENDAR BUTTON --- */
.addeventatc {
    position: relative;
}

.addeventatc_dropdown {
    display: none;
    position: absolute;
    color: #000;
    background-color: #fff;
    padding: 5px 0;
    border: 1px solid #000;
    transform: scale(.98,.98) translateY(5px);
    opacity: 0.5;
    z-index: -1;
    transition: transform .15s ease;
}
.invert .addeventatc_dropdown {
    filter: invert(1);
}
.addeventatc_dropdown.addeventatc-selected {
    opacity: 1;
    transform: scale(1,1) translateY(0px);
    z-index: 1000;
}

.addeventatc_dropdown span {
    position: relative;
    display: block;
    padding: 7px 18px;
    white-space: nowrap;
}
.addeventatc_dropdown span:hover::before {
    content: '+';
    position: absolute;
    left: 4px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 700;
}

.addeventatc_dropdown .copyx {
    display: none;
}


/* --- FILM PAGE FESTIVAL: NUMBER OF VIEWS BY FEST PASS HAS EXPIRED --- */
.views-expired {
    padding: 2px 16px;
    border-left: 2px solid #fff;
    margin-bottom: 16px;
}
@media (min-width: 1180px) {
    .views-expired {
        margin-top: 24px;
        margin-bottom: 0;
    }
}
.invert .views-expired {
    border-color: #000;
}


/* --- FILM & LIVE PAGE FESTIVAL: FILM DESCRIPTION COLUMNS --- */
@media (min-width: 768px) {
    .film-section .large-col,
    .film-section .small-col {
        grid-column: span 9;
    }
}
@media (min-width: 1024px) {
    .film-section .large-col {
        grid-column: span 6;
    }

    .film-section .small-col {
        grid-column: span 3;
    }
}
@media (min-width: 1180px) {
    .film-section .large-col {
        grid-column: span 9;
    }
}


/* --- FILM PAGE FESTIVAL: NUMBER OF VIEWS LEFT --- */
.views-left {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .views-left {
        grid-column: span 9;
        margin-top: 16px;
    }
}
@media (min-width: 1024px) {
    .views-left {
        grid-column: 1 / span 6;
    }
}
@media (min-width: 1440px) {
    .views-left {
        grid-column: span 9;
        margin: 0 0 30px;
    }
}

.views-left-text {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    color: #fff;
    margin-right: 16px;
}
.invert .views-left-text {
    color: #000;
}

.views-left-number {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: 8px;
    color: #75FA54;
}
.invert .views-left-number {
    color: #000;
}


/* --- FILM PAGE FESTIVAL: RATING WIDGET --- */
.rating-widget {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin: 24px 0;
}
.invert .rating-widget {
    color: #000;
}
@media (min-width: 768px) {
    .rating-widget {
        grid-column: span 10;
    }
}
@media (min-width: 1024px) {
    .rating-widget {
        grid-column: 7 / span 3;
        grid-row: 1 / span 2;
        margin: 24px 0 24px 16px;
    }
}
@media (min-width: 1440px) {
    .rating-widget {
        grid-column: 10 / span 3;
    }
}

.rating-widget .font-section-title,
.rating-widget .font-film-description {
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star {
    width: 40px;
    height: 40px;
    background-image: url("img/star_stroked.svg");
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 12px;
    transition: background-image 0.3s ease;
}
.star:last-child {
    margin-left: 0;
}
.invert .star {
    filter: invert(1);
}

.star:hover,
.star.selected,
.star:hover ~ .star,
.star.selected ~ .star {
    background-image: url("img/star_filled.svg");
}
.invert .star:hover,
.invert .star.selected,
.invert .star:hover ~ .star,
.invert .star.selected ~ .star {
    filter: invert(1);
}


/* --- FILM PAGE FESTIVAL: READ ABOUT FILM --- */
.film-fest-section .about-film {
    margin: 0 0 30px;
}
@media (min-width: 768px) {
    .film-fest-section .about-film {
        grid-column: span 9;
    }
}
@media (min-width: 1024px) {
    .film-fest-section .about-film {
        grid-column: span 6;
    }
}
@media (min-width: 1440px) {
    .film-fest-section .about-film {
        grid-column: 1 / span 9;
    }
}

.film-fest-section .about-film .container {
    padding: 0;
}

@media (min-width: 768px) {
    .film-fest-section .about-film-list {
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-gap: 16px;
    }

    .film-fest-section .about-film-article {
        grid-column: span 3;
    }
}
@media (min-width: 1180px) {
    .film-fest-section .about-film-article {
        grid-column: span 2;
    }
}

/* --- FILM PAGE FESTIVAL: COMPILATION WIDGET --- */
.compilation-widget {
    color: #000;
    background-color: #74fa54;
    padding: 24px;
    border: 2px solid #74fa54;
}
.film-info .compilation-widget {
    margin-bottom: 16px;
}
.small-col .compilation-widget {
    display: none;
}
@media (min-width: 1180px) {
    .film-info .compilation-widget {
        display: none;
    }

    .small-col .compilation-widget {
        display: block;
    }

    .compilation-widget {
        margin: 0 0 24px 16px;
    }
}
.invert .compilation-widget {
    background-color: #fff;
    border-color: #000;
}

.compilation-widget a {
    color: #000;
    text-decoration: underline;
}


/* --- FILM PAGE FESTIVAL: PROGRAM INFO WIDGET --- */
.program-widget {
    padding: 24px;
    border: 2px solid #75FA54;
    margin-bottom: 24px;
}
.invert .program-widget {
    border-color: #000;
}
@media (min-width: 768px) {
    .program-widget {
        grid-column: span 10;
    }
}
@media (min-width: 1024px) {
    .program-widget {
        grid-column: span 3;
        margin: 24px 0 24px 16px;
    }
}
@media (min-width: 1440px) {
    .program-widget,
    .compilation-widget {
        grid-column: 10 / span 3;
    }
}

.program-widget-title{
    color: #75FA54;
    margin-bottom: 24px;
}

.compilation-widget-title {
    color: #000;
    margin-bottom: 24px;
}

.program-widget .font-text, .program-widget .font-text a {
    color: #fff;
}

.program-widget .font-text a {
    text-decoration: underline;
}

.invert .program-widget-title,
.invert .program-widget .font-text,
.invert .program-widget .font-text a {
    color: #000;
}


/* --- FILM PAGE FESTIVAL: INFO WIDGET WITH DOUBLE BORDER --- */
.info-widget {
    position: relative;
    margin: 48px 0 48px;
}
@media (min-width: 768px) {
    .info-widget {
        grid-column: span 10;
    }
}
@media (min-width: 1024px) {
    .info-widget {
        grid-column: 7 / span 3;
        margin: 48px 0 48px 16px;
    }
}
@media (min-width: 1440px) {
    .info-widget {
        grid-column: 10 / span 3;
    }
}

.info-border {
    position: absolute;
    width: calc(100% - 24px);
    height: calc(100% + 24px);
    border: 2px solid #fff;
}
.invert .info-border {
    border-color: #000;
}

.border-one {
    top: -24px;
    right: 0;
}

.border-two {
    bottom: -24px;
    left: 0;
}

.info-front {
    position: relative;
    padding: 24px;
    margin: 0 24px;
}

.info-front .i-icon {
    margin-bottom: 16px;
}

.info-front a {
    color: #75FA54;
    text-decoration: underline;
}
.invert .info-front a {
    color: #000;
}


/* --- FILM PAGE FESTIVAL: SHARE SOCIAL BUTTONS --- */
@media (min-width: 768px) {
    .film-fest-section .share-widget {
        grid-column: span 9;
    }
}
@media (min-width: 1024px) {
    .film-fest-section .share-widget {
        grid-column: 7 / span 3;
        margin-left: 16px;
    }
}
@media (min-width: 1440px) {
    .film-fest-section .share-widget {
        grid-column: 10 / span 3;
    }
}


/* --- FILM PAGE FESTIVAL: VIALOG --- */
.vialog-title {
    margin-bottom: 16px;
}


/* --- USER PROFILE: FAVORITE --- */
.profile-film-actions {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 0 32px 4px 12px;
}
.invert .profile-film-actions {
    color: #000;
}
.profile-event-item .profile-film-actions {
    color: #000;
    background-color: #fff;
}
@media (min-width: 1180px) {
    .profile-event-item .profile-film-actions {
        color: #fff;
        background-color: #000;
    }

    .invert .profile-event-item .profile-film-actions {
        color: #000;
        background-color: #fff;
    }
}

.calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


/* --- FILM NOTIFICATION: SCREENING IS OVER --- */
.all-films-section .film-notification {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 30px 8px;
    margin-bottom: 0;
}
.invert .all-films-section .film-notification,
.invert .article-link.has-video:hover .film-notification,
.article-link:hover .film-notification {
    color: #fff;
}

.article-link:hover .film-notification {
    background: rgba(0, 0, 0, 0.5);
}

.invert .all-films-section .film-notification,
.invert .article-link.has-video:hover .film-notification {
    background: #000;
}

.film-notification .notification-icon {
    width: 24px;
    height: 24px;
    background-image: url("img/x-grey.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    margin-right: 10px;
}
.invert .film-notification .notification-icon {
    background-image: url("img/x-icon.svg");
}


/* --- TEXT DOCUMENT PAGE --- */
.doc-section {
    margin-top: 32px;
    margin-bottom: 32px;
}

.doc-section * {
    color: #fff;
}
.invert .doc-section * {
    color: #000;
}

.doc-section h1,
.doc-section h2,
.doc-section h3,
.doc-section h4,
.doc-section h5,
.doc-section h6,
.doc-section p,
.doc-section li {
    margin-bottom: 16px;
}

.doc-section h1 {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 34px;
    text-transform: uppercase;
}

.doc-section h2 {
    font-size: 24px;
    line-height: 28px;
}

.doc-section h3 {
    font-size: 22px;
    line-height: 26px;
}

.doc-section h4 {
    font-size: 20px;
    line-height: 24px;
}

.doc-section h5 {
    font-size: 18px;
    line-height: 22px;
}

.doc-section h6 {
    font-size: 16px;
    line-height: 20px;
}

.doc-section h2,
.doc-section h3,
.doc-section h4,
.doc-section h5,
.doc-section h6 {
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.doc-section ul {
    padding-inline-start: 20px;
}

.doc-section li {
    list-style-type: square;
    padding-inline-start: 10px;
}

.doc-section a {
    text-decoration: underline;
}

.doc-section p {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}


/* --- MERCH BANNER --- */
.merch-banner {
    padding: 0;
    margin: 20px auto 32px;
}
@media (min-width: 768px) {
    .merch-banner {
        padding: 0 33px;
    }
}
@media (min-width: 1024px) {
    .merch-banner {
        padding: 0 40px;
    }
}

@keyframes bg-color-change {
    0% {
        background-color: #B8B8B8;
    }
    30% {
        background-color: #74E36D;
    }
}

.merch-link {
    display: block;
    color: #FFF100;
    background-color: #B8B8B8;
    animation: bg-color-change 5s infinite;
    border-radius: 0;
}

.merch-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 24px;
}
@media (orientation: portrait) {
    .merch-content {
        padding-bottom: 24px;
    }
}
@media (orientation: landscape) {
    .merch-content {
        flex-direction: row;
    }
}
@media (min-width: 768px) {
    .merch-content {
        height: 180px;
        flex-direction: row;
        padding-right: 30px;
        padding-bottom: 0;
    }
}

.merch-head {
    display: flex;
    align-items: baseline;
    width: 70%;
    max-width: 242px;
}
@media (min-width: 768px) {
    .merch-head {
        justify-content: flex-end;
        align-self: flex-end;
        max-width: 156px;
    }
}
@media (min-width: 1180px) {
    .merch-head {
        width: 190px;
        height: 165px;
        max-height: unset;
        background-image: url("img/merch_sanitar.svg");
        background-repeat: no-repeat;
        background-size: 156px 100%;
        background-position: -30px;
    }
}

.merch-head-img {
    width: 100%;
    max-height: 165px;
}
@media (min-width: 1180px) {
    .merch-head-img {
        width: 156px;
        margin-right: -45px;
    }
}

.merch-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (orientation: landscape) {
    .merch-text {
        padding-bottom: 12px;
    }
}
@media (min-width: 768px) {
    .merch-text {
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-left: 24px;
    }
}
@media (min-width: 1180px) {
    .merch-text {
        width: calc(100% - 190px);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-left: 0;
    }
}

.merch-p-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 70%;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    padding: 16px 0 0;
}
@media (orientation: landscape) {
    .merch-p-wrapper {
        padding: 0 0 16px;
    }
}
@media (min-width: 400px) {
    .merch-p-wrapper {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 768px) {
    .merch-p-wrapper {
        font-size: 32px;
        line-height: 40px;
        text-align: right;
    }
}
@media (min-width: 1180px) {
    .merch-p-wrapper {
        width: 60%;
        font-size: 36px;
        line-height: 50px;
        text-align: center;
        padding: 0;
    }
}
@media (min-width: 1440px) {
    .merch-p-wrapper {
        line-height: 72px;
    }
}

.merch-dd {
    width: 70%;
}
@media (min-width: 768px) {
    .merch-dd {
        width: 55%;
    }
}
@media (min-width: 1024px) {
    .merch-dd {
        width: 38%;
    }
}
@media (min-width: 1180px) {
    .merch-dd {
        width: 40%;
        margin-left: 16px;
    }
}

.merch-dd-img {
    width: 100%;
}


/* --- AWARD STARS --- */
.film-awards {
    position: absolute;
    display: flex;
    padding: 16px;
}

.trailer-sign__wrapper {
    position: absolute;
    padding: 56.25% 0 0 0;
    left: 100%;
    z-index: 2;
}

.trailer-sign {
    right: 16px;
    position: absolute;
    bottom: 60px;
    border: 4px #75FA54 solid;
    color: #75FA54;
    padding: 5px 10px;
    font-size: 16px;
    font-family: "PT Sans Narrow";
    letter-spacing: 4px;
    text-shadow: 0px 0px 10px #75fa54aa;
    box-shadow: 0px 0px 10px #75fa54aa, inset 0px 0px 10px #75fa54aa;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .trailer-sign {
        font-size: 48px;
    }
}

.article-img-holder .film-awards,
.film-info .film-awards {
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
}

.film-section .video-wrapper .film-awards {
    display: none;
}
@media (min-width: 768px) {
    .film-section .video-wrapper .film-awards {
        display: flex;
    }
}

.article-img-holder .film-awards {
    background: rgba(0,0,0,0.5);
    padding: 10px 30px;
}

.film-info .film-awards {
    position: static;
    padding: 8px 0 12px;
}
@media (min-width: 768px) {
    .film-info .film-awards {
        display: none;
    }
}


.feedback-wrapper {
    text-align: right;
    padding-top: 16px;
}

.feedback {
    display: inline-block;
    border: 1px solid #5baf1d;
    padding: 10px 10px 10px 40px;
    background-image: url("img/icon-plane.svg");
    background-position: 8px center;
    background-size: 28px;
    background-repeat: no-repeat;
    color: white;
}

.invert .feedback {
    border: 1px solid black;
    color: black;
    filter: grayscale(100%);
}

.feedback:hover {
    animation: pulse-menu-btn 3s infinite;
}

.article-img-holder .film-awards,
.film-section .film-awards {
    z-index: 2;
}

.film-award-item {
    width: 40px;
    height: 40px;
    background-image: url("img/star.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    margin-left: -10px;
}
.article-img-holder .film-award-item,
.film-info .film-award-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    background-image: none;
    margin-left: 0;
}
@media (min-width: 768px) {
    .film-award-item {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 110px;
        height: 110px;
        margin-left: -16px;
    }

    .article-img-holder .film-award-item,
    .film-info .film-award-item {
        margin-left: 0;
    }
}
.film-award-item:first-child {
    margin-left: 0;
}

.article-img-holder .film-award-item::before,
.film-info .film-award-item::before {
    content: '';
    display: flex;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-image: url("img/star.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    margin-right: 10px;
}
.article-img-holder .film-award-item.star-green::before,
.film-info .film-award-item.star-green::before {
    background-image: url("img/star-green.svg");
}
.invert .film-info .film-award-item.star-green::before {
    background-image: url("img/star-black.svg");
}

.film-award-item.star-green {
    background-image: url("img/star-green.svg");
}
.article-img-holder .film-award-item.star-green,
.film-info .film-award-item.star-green,
.invert .article-img-holder .film-award-item.star-green,
.invert .film-info .film-award-item.star-green {
    background-image: none;
}
.invert .film-award-item.star-green {
    color: #fff;
    background-image: url("img/star-black.svg");
}

.film-award-text-wrapper {
    display: none;
}

.article-img-holder .film-award-text-wrapper,
.film-info .film-award-text-wrapper {
    display: block;
    position: static;
    clip-path: none;
}
@media (min-width: 768px) {
    .film-award-text-wrapper {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        clip-path: circle(50px at 50% 50%);
    }
}

.film-award-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    padding: 10px;
    font-family: 'PT Sans Narrow', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 18px;
    color: #000;
    text-align: center;
    overflow-wrap: break-word;
    text-transform: uppercase;
}
.article-img-holder .film-award-text,
.film-info .film-award-text {
    align-items: flex-start;
    height: auto;
    padding: 0;
    color: #fff;
    font-size: 16px;
    line-height: 20px;
    text-align: left;
    overflow-wrap: normal;
    text-transform: uppercase;
}
.invert .star-green .film-award-text {
    color: #fff;
}

.invert .film-info .film-award-text {
    color: #000;
}
