/*

Basics

*/
:root {
    --mobile-screenings-coefficent: calc(2/3);
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: var(--secondary_neutral_color);
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
tt,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

li:not(.program-hz-table-timeline-items-item) {
    margin-left: 22px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--secondary_neutral_color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

p,
div,
span {
    word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-style: normal;
    text-decoration: none;
    line-height: 1.2;
}

h1 {
    font-size: 34px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

input,
select,
textarea,
button,
input:focus,
select:focus,
textarea:focus,
button:focus,
input:hover,
select:hover,
textarea:hover,
button:hover,
input:active,
select:active,
textarea:active,
button:active {
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary_brand_color) transparent;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

*::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary_brand_color);
    outline: 0;
    border-radius: 0;
}

body::-webkit-scrollbar {
    width: 13px;
    background-color: #fff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary_brand_color);
    border: 3px solid #fff;
}

body.home .back-to-top,
body.submission .back-to-top {
    display: none;
}

.back-to-top {
    position: fixed;
    right: 3%;
    bottom: 10%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(71, 71, 71, 0.3);
    z-index: 99999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.back-to-top.back-to-top-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    max-width: 20px;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 50%;
    min-width: 280px;
    max-width: 100%;
    width: auto;
    transform: translateX(-50%);
    margin: 0 auto;
    padding: 10px 15px;
    background-color: #fff;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent .cookie-consent__message {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 15px;
    line-height: 1.2;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-consent button.cookie-consent__agree {
    padding: 5px 15px;
    height: 35px;
    line-height: 1;
    font-size: 12px;
    margin: 0;
    border: 0;
    border-radius: 0px;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    background-color: var(--primary_brand_color-dark);
    box-shadow: none;
    color: #ffffff;
    z-index: 0;
    position: relative;
    white-space: nowrap;
}

.cookie-consent button.cookie-consent__agree::after {
    content: "";
    background: linear-gradient(168.33deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cookie-consent button.cookie-consent__agree:hover::after {
    opacity: 0;
    visibility: hidden;
}

#app {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/*

End of Basics

*/
/*

Global styles

*/
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col {
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
}

.col:first-child {
    margin-left: 0;
}

.col:last-child {
    margin-right: 0;
}

/* START:ORIGINAL BUTTONS */
button.btn-original {
    outline: none;
    border: none;
    height: 45px;
    font-size: inherit;
}

.btn-original {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    background: var(--primary_brand_color);
    padding: 10px 40px;
    height: 45px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: var(--primary_brand_color);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-original-gradient {
    background: linear-gradient(100.5deg, #e5005b 0.87%, #420039 100.33%);
    border-radius: 30px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
    border: 0;
}

.btn-original-shadow {
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.3);
}

.btn-original-red {
    background: var(--color-secondary);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
}

.btn-original:hover {
    cursor: pointer;
}

.btn-original:hover:before {
    opacity: 1;
    transform: translate(0, 0);
}


.btn-original input {
    background-color: inherit;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 0;
    font-size: 14px;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    color: white;
    text-align: center;
}

.btn-original[disabled],
.btn-original[disabled]:before,
.btn-original[disabled]:after {
    cursor: not-allowed;
}

.btn-original[disabled]:hover {
    background-color: transparent;
}

.btn-original[disabled]:hover::after {
    opacity: 1;
    visibility: visible;
}

.btn-original[disabled] {
    filter: grayscale(100%);
}

.btn-original.primary {
    background: linear-gradient(164.48deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
}

.btn-original.secondary {
    background: none;
    background-color: #fff;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    color: var(--primary_brand_color);
}

.btn-original.secondary:before {
    color: var(--primary_brand_color);
}

.btn-original.yellow {
    background: none;
    background-color: var(--primary_brand_color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.btn-original.yellow:before {
    color: #ffffff;
}

.btn-original.button-no-shadow {
    box-shadow: none;
}

.btn-original.button-small {
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    height: 40px;
    line-height: 1.2;
}

.btn-original.button-small::before {
    text-transform: none;
}

.btn-original.button-full {
    width: 100%;
    padding: 10px 10px;
}

/* ICON BUTTON */
.btn-original.button-icon img {
    max-height: 20px;
    margin-right: 15px;
}

.btn-original.button-icon i {
    font-size: 20px;
    margin-right: 15px;
}

.btn-original.button-icon.button-small img {
    max-height: 16px;
    margin-right: 12px;
}

/* END:ORIGINAL BUTTONS */
button.button,
a.button {
    padding: 10px 40px;
    height: 45px;
    line-height: 1;
    font-size: 15px;
    border: 0;
    color: #c4c4c4;
    border-radius: 0px;
    font-weight: 800;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

button.button-link {
    padding: 0;
    margin: 0;
    background: none;
    color: var(--secondary_neutral_color);
    line-height: 1;
    font-size: 15px;
    border: 0;
    border-radius: 0px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.button.button-circle {
    border-radius: 45px;
    width: 45px;
    padding: 0;
    background-color: #fff;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.button.button-circle:hover {
    background-color: #ddd;
}

.button.button-full {
    width: 100%;
    padding: 10px 10px;
}

.button.button-primary {
    background-color: var(--primary_brand_color);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    color: #fff;
    z-index: 0;
    position: relative;
}

.button.button-primary::after {
    content: "";
    background: linear-gradient(168.33deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.button.button-primary:hover::after {
    opacity: 0;
    visibility: hidden;
}

.button.button-secondary {
    background-color: #fff;
    color: var(--primary_brand_color);
    border: 1px solid var(--primary_brand_color);
}

.button.button-outline {
    background-color: #fff;
    border: 3px solid #c4c4c4;
    color: #c4c4c4;
}

.button.button-outline:hover {
    background-color: #c4c4c4;
    color: #fff;
}

.button.button-outline-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.button.button-outline-white:hover {
    background-color: #fff;
    color: var(--secondary_neutral_color);
}

.button.button-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary_brand_color);
    color: var(--primary_brand_color);
}

.button.button-outline-primary:hover {
    background-color: var(--primary_brand_color);
    color: #fff;
}

.button.button-outline-dark {
    background-color: transparent;
    border: 2px solid var(--secondary_neutral_color);
    ;
    color: var(--secondary_neutral_color);
}

.button.button-red {
    background-color: var(--color-secondary);
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
    color: #ffffff;
    z-index: 0;
}

.button.button-red:hover {
    background-color: var(--primary_brand_color-dark);
}

.button.button-orange {
    background-color: var(--primary_brand_color-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.button.button-orange:hover {
    background-color: var(--primary_brand_color);
}

.button.button-yellow {
    background-color: var(--primary_brand_color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.button.button-yellow:hover {
    background-color: var(--primary_brand_color-dark);
}

.button.button-icon img {
    max-height: 20px;
    margin-right: 15px;
}

.button.button-icon i {
    font-size: 20px;
    margin-right: 15px;
}

.button.button-circle:hover {
    background-color: #ddd;
}

.button.button-round {
    border-radius: 45px;
}

.button.button-red-gradient {
    background-color: var(--color-secondary);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    color: #ffffff;
    z-index: 0;
    position: relative;
}

.button.button-round.button-red-gradient::after {
    border-radius: 45px;
}

.button.button-red-gradient::after {
    content: "";
    background: linear-gradient(90deg, var(--color-secondary-light) 0%, var(--primary_brand_color-dark) 99.48%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.button.button-red-gradient:hover::after {
    opacity: 0;
    visibility: hidden;
}

.button.button-small {
    text-transform: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 20px;
    height: 40px;
    line-height: 1.2;
}

.button.button-no-shadow {
    box-shadow: none;
}

.button.button-icon.button-small img {
    max-height: 16px;
    margin-right: 12px;
}

body .ui-datepicker {
    margin-top: 0;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    border: 0 !important;
    width: 280px;
    padding: 10px 20px 20px;
}

body .ui-datepicker table.ui-datepicker-calendar {
    margin: 0;
    font-size: 11px;
}

body .ui-helper-clearfix::before,
body .ui-helper-clearfix::after {
    display: none;
}

body .ui-datepicker .ui-datepicker-title {
    margin: 0;
}

body .ui-datepicker .ui-datepicker-header {
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    text-shadow: none;
    border: 0;
    padding: 0;
    border-radius: 0;
    color: var(--secondary_neutral_color);
    font-weight: bold;
    line-height: 50px;
    min-height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    order: 1;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-title {
    order: 2;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-title select {
    margin: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 1px solid #ebebeb;
    border-radius: 0;
    padding: 3px 10px;
    font-size: 14px;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    order: 3;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    float: none;
    background-image: none;
    line-height: 0;
    background-position: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    top: auto;
    left: auto;
    right: auto;
    width: 25px;
    height: 25px;
    border: 2px solid;
    border-radius: 0;
    position: relative;
    cursor: pointer;
}

body .ui-datepicker .ui-state-hover,
body .ui-datepicker .ui-widget-content .ui-state-hover,
body .ui-datepicker .ui-widget-header .ui-state-hover,
body .ui-datepicker .ui-state-focus,
body .ui-datepicker .ui-widget-content .ui-state-focus,
body .ui-datepicker .ui-widget-header .ui-state-focus,
body .ui-datepicker .ui-button:hover,
body .ui-datepicker .ui-button:focus {
    border: 2px solid;
    background: transparent;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span,
body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
    background-image: none;
    width: auto;
    height: 15px;
    margin: 0;
    position: relative;
    top: 0;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
    content: url(../img/bidf-field-arrow-left-dark.svg);
    right: -2px;
    left: auto;
}

body .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
    content: url(../img/bidf-field-arrow-right-dark.svg);
    left: -2px;
    right: auto;
}

body .ui-datepicker .ui-datepicker-calendar thead {
    background: #fff;
    text-align: center;
}

body .ui-datepicker .ui-datepicker-calendar thead th {
    font-size: 12px;
    text-shadow: none;
    color: #c4c4c4;
    padding: 10px 0;
    line-height: 1.2;
}

body .ui-datepicker .ui-datepicker-calendar tbody {
    text-align: center;
}

body .ui-datepicker .ui-datepicker-calendar tbody tr {}

body .ui-datepicker .ui-datepicker-calendar tbody tr:first-child td {}

body .ui-datepicker .ui-datepicker-calendar tbody tr:last-child {
    border-bottom: 0;
}

body .ui-datepicker .ui-datepicker-calendar tbody tr:last-child td {
    padding-bottom: 5px;
}

body .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-unselectable.ui-state-disabled {
    background-color: #fff;
}

body .ui-datepicker .ui-datepicker-calendar tbody tr td {
    background-color: #fff;
    border: 0;
    margin: 0;
}

body .ui-datepicker .ui-datepicker-calendar tbody tr td a {
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    font-weight: bold;
    color: var(--secondary_neutral_color);
    text-shadow: none;
    border: 2px solid transparent;
    border-radius: 0;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .ui-datepicker .ui-datepicker-calendar tbody tr td a:hover {
    border: 2px solid var(--secondary_neutral_color);
}

body .ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-active {
    height: 30px;
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    color: #fff;
    border: 0;
}

body .ui-datepicker select.ui-datepicker-month,
body .ui-datepicker select.ui-datepicker-year {
    width: auto;
}

.section-bg-red {
    background: var(--section-secondary-bg-img);
    background-repeat: repeat;
    background-color: var(--color-secondary);
}

.section-bg-yellow {
    background: var(--section-primary-bg-img);
    background-repeat: repeat;
    background-color: var(--primary_brand_color-dark);
}

.section-highlighted {
    background: var(--section-highlighted-bg);
    background-repeat: repeat;
    background-color: #fff;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 800;
}

.title {
    margin-bottom: 20px;
}

.title h1 {
    font-weight: 800;
}

.text-bolder {
    font-weight: 800;
}

.title-red-gradient {
    background: -webkit-linear-gradient(0deg, var(--bidf-net-title-gradient-1) 0%, var(--bidf-net-title-gradient-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-white {
    color: #fff;
}

.text-yellow {
    color: var(--primary_brand_color);
}

.text-dark {
    color: var(--secondary_neutral_color);
}

.hidden {
    display: none;
}

.hidden-page-title {
    opacity: 0;
    visibility: hidden;
    height: 0px;
    width: 0px;
}

.white-box-container {
    background-color: transparent;
}

.page-content img {
    max-width: 100%;
    height: auto !important;
}

.wysiwyg-content .bidf-page-title h1 {
    margin-bottom: 0;
}

.wysiwyg-content h1,
.wysiwyg-content h2,
.wysiwyg-content h3,
.wysiwyg-content h4,
.wysiwyg-content h5,
.wysiwyg-content h6 {
    margin-bottom: 10px;
}

.wysiwyg-content p {
    margin-bottom: 20px;
}

.wysiwyg-content ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.wysiwyg-content *:last-child {
    margin-bottom: 0;
}

/*

End of Global styles

*/
/*

Popup

*/
body.popup-active {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.popup-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: block;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body.popup-active .popup-overlay {
    visibility: visible;
    opacity: 1;
}

.popup-wrapper {
    overflow-y: auto;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup-wrapper::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--primary_brand_color);
    border: 3px solid transparent;
}

body.popup-active .popup-wrapper {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.popup {
    max-width: 900px;
    width: 100%;
    margin: auto;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    padding-top: 90px;
    padding-bottom: 90px;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.popup.register {
    max-width: 600px;
}

.popup.popup-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.popup .popup-top {
    background-color: #fbfbfb;
    padding: 20px 30px;
    border-bottom: 2px solid var(--secondary_neutral_color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.popup .popup-top .popup-top-close {
    height: 100%;
}

.popup .popup-top .popup-top-close a {
    height: 100%;
    display: flex;
    align-items: center;
}

.popup .popup-top .popup-top-close a i {
    font-size: 20px;
}

.popup .popup-content {
    background-color: #fbfbfb;
    padding: 30px;
}

.popup .popup-content-row {
    display: flex;
    align-items: stretch;
    margin-top: 20px;
}

.popup .popup-content-row .popup-content-col {
    flex: 1;
    margin-left: 15px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
}

.popup .popup-content-row .popup-content-col:first-child {
    margin-left: 0;
}

.popup .popup-content-row .popup-content-col:last-child {
    margin-right: 0;
}

.popup .login-button {
    padding-top: 15px;
}

.popup .login-button .forgot-password-link {
    display: inline-block;
    margin-top: 20px;
}

.popup .popup-content-row .popup-content-register strong {
    margin-bottom: 10px;
}

.popup .popup-content-row .popup-content-register p {
    margin-bottom: 40px;
}

.popup .register-buttons,
.popup .password-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.popup .register-buttons .button,
.popup .password-buttons .button {
    margin-left: 10px;
    margin-right: 10px;
}

.popup .register-buttons .button:first-child,
.popup .password-buttons .button:first-child {
    margin-left: 0;
}

.popup .register-buttons .button:last-child,
.popup .password-buttons .button:last-child {
    margin-right: 0;
}

.popup-reg-form .form-input.is-invalid input {
    border-color: #f14646;
}

.popup-login-form .form-input.is-invalid input {
    border-color: #f14646;
}

.popup-login-form .invalid-feedback {
    display: none;
    color: #f14646;
}

.popup-login-form .invalid-feedback.show {
    display: block;
}

.popup-reg-form .invalid-feedback {
    display: none;
    color: #f14646;
}

.popup-reg-form .invalid-feedback.show {
    display: block;
}

.contact-section-form .invalid-feedback {
    display: none;
    color: #f14646;
}

.contact-section-form .invalid-feedback.show {
    display: block;
}

.popup-login-form .alert,
.popup-reg-form .alert,
.popup-password-form .alert,
.popup-password-reset-form .alert,
.contact-section-form .alert {
    display: none;
}

.popup-login-form .alert.show,
.popup-reg-form .alert.show,
.popup-password-form .alert.show,
.popup-password-reset-form .alert.show,
.contact-section-form .alert.show {
    display: flex;
}

.alert {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #cccccc;
    padding: 10px;
    margin: 15px 0;
}

.alert.alert-info {
    border-top: 2px solid #0099ff;
}

.alert.alert-success {
    border-top: 2px solid #00cc66;
}

.alert.alert-warning {
    border-top: 2px solid #ffc71f;
}

.alert.alert-error {
    border-top: 2px solid #f14646;
}

.alert span {
    font-weight: bold;
    line-height: 1.2;
}

.alert i {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    width: 30px;
    height: 30px;
    line-height: 1;
    border-radius: 30px;
    font-size: 16px;
    margin-right: 10px;
}

.alert-info i {
    color: #0099ff;
    background-color: #d8efff;
}

.alert-success i {
    color: #00cc66;
    background-color: #d1fcd9;
}

.alert-warning i {
    color: #ffc71f;
    background-color: #fff3d0;
}

.alert-error i {
    color: #f14646;
    background-color: #ffd6d6;
}

/*

End of Popup

*/
/*

Header

*/
#main-header {
    position: fixed;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 72px;
    z-index: 999;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-header * {
    text-transform: uppercase !important;
    word-break: keep-all !important;
    white-space: nowrap !important;
}

#main-header>.header-menu-dropdown-sub-sub {
    opacity: 0;
    position: absolute;
    transition: all .3s ease-in-out;
    top: calc(100% - 2px);
}

#main-header .logo .logo-dark {
    opacity: 1;
    visibility: visible;
    position: absolute;
    width: 210px;
}

#main-header .logo .logo-light {
    opacity: 0;
    visibility: hidden;
    position: relative;
}

#main-header.home-header .logo .logo-light {
    opacity: 1;
    visibility: visible;
}

#main-header.home-header .logo .logo-dark {
    opacity: 0;
    visibility: hidden;
}

#main-header.main-header-fixed .logo .logo-dark {
    opacity: 1;
    visibility: visible;
}

#main-header.main-header-fixed.home-header .logo .logo-dark {
    opacity: 1;
    visibility: visible;
}

#main-header.main-header-fixed .logo .logo-light {
    opacity: 0;
    visibility: hidden;
}

#main-header.main-header-fixed.home-header .logo .logo-light {
    opacity: 0;
    visibility: hidden;
}

#main-header .header-left {
    display: flex;
    align-items: stretch;
    height: 72px;
    border-right: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    background: var(--header-bg-secondary);
}

#main-header.home-header .header-left {
    border-right: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    background: var(--home-header-bg-secondary);
}

#main-header.main-header-fixed .header-left {
    border-right: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    background: var(--sticky-header-bg-secondary);
}

#main-header.home-header.main-header-fixed .header-left {
    border-right: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    background: var(--sticky-home-header-bg-secondary);
}

#main-header .logo {
    position: relative;
    height: 100%;
}

#main-header .logo a {
    display: flex;
    height: 100%;
    align-items: center;
}

#main-header .logo img {
    width: 100%;
    max-width: 232px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-header .header-right {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex: 1 0 auto;
    flex-direction: column;
}

#main-header .header-right>div:not(.header-mobile-menu):not(.mobile-menu-items-overlay) a {
    height: 100% !important;
    font-weight: 700;
    color: var(--secondary_neutral_color);
}

#main-header.home-header .header-right>div:not(.header-mobile-menu):not(.mobile-menu-items-overlay) a {
    color: var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .header-right>div:not(.header-mobile-menu):not(.mobile-menu-items-overlay) a {
    color: var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-right>div:not(.header-mobile-menu):not(.mobile-menu-items-overlay) a {
    color: var(--sticky-home-header-border-and-text-color);
}

#main-header .header-right .fas.fa-chevron-down, #main-header .header-right .fas.fa-chevron-right {
    padding-left: 5px;
    pointer-events: none;
}

#main-header .header-menu {
    display: flex;
    column-gap: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

#main-header .header-right {
    display: grid;
    grid-template-areas: "main support"
        "empty support"
        "mobile mobile";
    grid-template-columns: 1fr auto;
}

#main-header .header-menu-wrapper {
    height: 36px;
    display: flex;
    align-items: center;
}

#main-header .header-menu-wrapper:not(.empty) {
    grid-area: main;
    background: var(--tertiary_neutral_color);
}

#main-header.home-header .header-menu-wrapper:not(.empty) {
    background: var(--home-header-bg);
}

#main-header.main-header-fixed .header-menu-wrapper:not(.empty) {
    background: var(--sticky-header-bg);
}

#main-header.home-header.main-header-fixed .header-menu-wrapper:not(.empty) {
    background: var(--sticky-home-header-bg);
}

#main-header .header-menu-wrapper.empty {
    grid-area: empty;
    transition: all .3s ease-in-out;
    border-top: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    background-color: var(--primary_neutral_color);
}

#main-header.home-header .header-menu-wrapper.empty {
    border-top: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    background-color: var(--home-header-bg-secondary);
}

#main-header.main-header-fixed .header-menu-wrapper.empty {
    border-top: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    background-color: var(--sticky-header-bg-secondary);
}

#main-header.home-header.main-header-fixed .header-menu-wrapper.empty {
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    background-color: var(--sticky-home-header-bg-secondary);
}

#main-header .menu-item-scroll-arrow {
    padding: 0px 10px;
    border-left: 1px solid var(--secondary_neutral_color);
    display: flex;
    align-items: center;
    height: 100%;
    color: var(--secondary_neutral_color);
    display: none;
}

#main-header.home-header .menu-item-scroll-arrow {
    border-left: 1px solid var(--home-header-border-and-text-color);
    color: var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .menu-item-scroll-arrow {
    border-left: 1px solid var(--sticky-header-border-and-text-color);
    color: var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .menu-item-scroll-arrow {
    border-left: 1px solid var(--sticky-home-header-border-and-text-color);
    color: var(--sticky-home-header-border-and-text-color);
}

#main-header .menu-item-scroll-arrow.menu-scroll-to-right {
    position: sticky;
    right: -1px;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid var(--secondary_neutral_color);
    border-top: 1px solid var(--secondary_neutral_color);
    padding-left: 8px;
}

#main-header.home-header .menu-item-scroll-arrow.menu-scroll-to-right {
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    border-top: 1px solid var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .menu-item-scroll-arrow.menu-scroll-to-right {
    background: var(--sticky-header-bg-secondary);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    border-top: 1px solid var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .menu-item-scroll-arrow.menu-scroll-to-right {
    background: var(--sticky-home-header-bg-secondary);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .menu-item-scroll-arrow.menu-scroll-to-left {
    position: sticky;
    left: 2px;
    top: 0;
    margin-right: -2px;
    z-index: 9999;
    border-top: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    border-right: 1px solid var(--secondary_neutral_color);
}

#main-header.home-header .menu-item-scroll-arrow.menu-scroll-to-left {
    border-top: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    border-right: 1px solid var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .menu-item-scroll-arrow.menu-scroll-to-left {
    background: var(--sticky-header-bg-secondary);
    border-top: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    border-right: 1px solid var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .menu-item-scroll-arrow.menu-scroll-to-left {
    background: var(--sticky-home-header-bg-secondary);
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    border-right: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .header-menu-dropdown-item-sub.opened.overflown {
    position: relative;
    border-right: none;
}

#main-header .header-menu-dropdown-item-sub.opened.overflown .menu-item-scroll-arrow {
    display: flex;
}

#main-header .header-menu-dropdown-item-sub.opened.overflown>a {
    position: sticky;
    width: auto;
    left: 0;
}

#main-header .menu-support-us-section {
    grid-area: support;
    border-left: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    align-items: center;
    display: flex;
    background: var(--secondary_brand_color);
}

#main-header.home-header .menu-support-us-section {
    border-left: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    background: var(--secondary_brand_color);
}

#main-header.main-header-fixed .menu-support-us-section {
    border-left: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    background: var(--secondary_brand_color);
}

#main-header.home-header.main-header-fixed .menu-support-us-section {
    border-left: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    background: var(--secondary_brand_color);
}

#main-header .menu-support-us-section .header-menu-item-dropdown {
    height: 100%;
}

#main-header .menu-support-us-section .header-menu-item-dropdown>a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

#main-header .menu-support-us-section .header-menu-dropdown {
    display: flex;
    bottom: 0px;
    right: -2px;
    flex-direction: column;
    transform: translateY(100%);
    transition: all .3s ease-in-out;
    background: var(--header-bg-secondary);
}

#main-header.home-header .menu-support-us-section .header-menu-dropdown {
    background: var(--home-header-bg-secondary);
}

#main-header.main-header-fixed .menu-support-us-section .header-menu-dropdown {
    background: var(--sticky-header-bg-secondary);
}

#main-header.home-header.main-header-fixed .menu-support-us-section .header-menu-dropdown {
    background: var(--sticky-home-header-bg-secondary);
}

#main-header .menu-support-us-section .header-menu-dropdown .header-menu-dropdown-item {
    border-left: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    border-right: 1px solid var(--secondary_neutral_color);
}

#main-header.home-header .menu-support-us-section .header-menu-dropdown .header-menu-dropdown-item {
    border-left: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
    border-right: 1px solid var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .menu-support-us-section .header-menu-dropdown .header-menu-dropdown-item {
    border-left: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
    border-right: 1px solid var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .menu-support-us-section .header-menu-dropdown .header-menu-dropdown-item {
    border-left: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    border-right: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .menu-support-us-section .header-menu-dropdown a {
    color: white;
    height: 36px;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

#main-header .menu-support-us-section .header-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
}

#main-header .menu-support-us-section .header-menu-login {
    word-break: normal;
}

#main-header .menu-support-us-section .header-menu-login>a {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

#main-header .login-and-locale-container .header-menu-item {
    padding: 0 !important;
}

#main-header .login-and-locale-container .header-menu-item>a {
    font-size: 12px;
    font-weight: 400 !important;
    padding: 5px 10px !important;
}

#main-header .header-menu .header-menu-item {
    padding: 0 15px;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

#main-header .header-menu .header-menu-item:hover,
#main-header .header-menu .header-menu-item.opened,
#main-header .header-menu-dropdown-item>a:hover,
#main-header .header-menu-dropdown-item.opened>a,
#main-header .header-menu-dropdown-item.current-festival-date>a,
#main-header .header-menu-dropdown-sub-item>a:hover,
#main-header .header-menu-dropdown-sub-sub-item>a:hover,
#main-header .has-sub-sub-items.opened>a {
    background-color: var(--secondary_neutral_color);
}

#main-header .header-menu .header-menu-item:hover>a,
#main-header .header-menu .header-menu-item.opened>a,
#main-header .header-menu-dropdown-item:hover>a,
#main-header .header-menu-dropdown-item.opened>a,
#main-header .header-menu-dropdown-item.current-festival-date>a,
#main-header .header-menu-dropdown-sub-item>a:hover,
#main-header .header-menu-dropdown-sub-sub-item>a:hover,
#main-header .has-sub-sub-items.opened>a {
    color: var(--header-active-link-text-color) !important;
}

#main-header .main-menu-main-section>.header-menu-item>a {
    color: var(--header-main-menu-items-text-color) !important;
}

#main-header.home-header .header-menu .header-menu-item:hover,
#main-header.home-header .header-menu .header-menu-item.opened,
#main-header.home-header .header-menu-dropdown-item>a:hover,
#main-header.home-header .header-menu-dropdown-item.opened>a,
#main-header.home-header .header-menu-dropdown-item.current-festival-date>a,
#main-header.home-header .header-menu-dropdown-sub-item>a:hover,
#main-header.home-header .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.home-header .has-sub-sub-items.opened>a {
    background-color: var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .header-menu .header-menu-item:hover,
#main-header.main-header-fixed .header-menu .header-menu-item.opened,
#main-header.main-header-fixed .header-menu-dropdown-item>a:hover,
#main-header.main-header-fixed .header-menu-dropdown-item.opened>a,
#main-header.main-header-fixed .header-menu-dropdown-item.current-festival-date>a,
#main-header.main-header-fixed .header-menu-dropdown-sub-item>a:hover,
#main-header.main-header-fixed .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.main-header-fixed .has-sub-sub-items.opened>a {
    background-color: var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu .header-menu-item:hover,
#main-header.home-header.main-header-fixed .header-menu .header-menu-item.opened,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item>a:hover,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item.opened>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item.current-festival-date>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-item>a:hover,
#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.home-header.main-header-fixed .has-sub-sub-items.opened>a {
    background-color: var(--sticky-home-header-border-and-text-color);
}

#main-header.home-header .header-menu .header-menu-item:hover>a,
#main-header.home-header .header-menu .header-menu-item.opened>a,
#main-header.home-header .header-menu-dropdown-item:hover>a,
#main-header.home-header .header-menu-dropdown-item.opened>a,
#main-header.home-header .header-menu-dropdown-item.current-festival-date>a,
#main-header.home-header .header-menu-dropdown-sub-item>a:hover,
#main-header.home-header .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.home-header .has-sub-sub-items.opened>a {
    color: var(--home-header-active-link-text-color) !important;
}

#main-header.main-header-fixed .header-menu .header-menu-item:hover>a,
#main-header.main-header-fixed .header-menu .header-menu-item.opened>a,
#main-header.main-header-fixed .header-menu-dropdown-item:hover>a,
#main-header.main-header-fixed .header-menu-dropdown-item.opened>a,
#main-header.main-header-fixed .header-menu-dropdown-item.current-festival-date>a,
#main-header.main-header-fixed .header-menu-dropdown-sub-item>a:hover,
#main-header.main-header-fixed .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.main-header-fixed .has-sub-sub-items.opened>a {
    color: var(--sticky-header-active-link-text-color) !important;
}

#main-header.home-header.main-header-fixed .header-menu .header-menu-item:hover>a,
#main-header.home-header.main-header-fixed .header-menu .header-menu-item.opened>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item:hover>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item.opened>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-item.current-festival-date>a,
#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-item>a:hover,
#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub-item>a:hover,
#main-header.home-header.main-header-fixed .has-sub-sub-items.opened>a {
    color: var(--sticky-home-header-active-link-text-color) !important;
}

#main-header.home-header .main-menu-main-section>.header-menu-item>a {
    color: var(--home-header-main-menu-items-text-color) !important;
}

#main-header.main-header-fixed .main-menu-main-section>.header-menu-item>a {
    color: var(--sticky-header-main-menu-items-text-color) !important;
}

#main-header.home-header.main-header-fixed .main-menu-main-section>.header-menu-item>a {
    color: var(--sticky-home-header-main-menu-items-text-color) !important;
}

#main-header .mobile-menu-item.mobile-current-festival-date {
    background-color: var(--home-header-border-and-text-color);
    color: var(--home-header-active-link-text-color) !important;
}

#main-header .header-menu-dropdown-item.current-festival-date>a, a.mobile-current-festival-date {
    pointer-events: none;
}

#main-header .header-menu .header-menu-item:last-child {
    margin-right: 0;
}

#main-header .header-menu .header-menu-item a,
#main-header .header-menu .header-menu-item button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.4;
    width: 100%;
}

#main-header .header-menu .header-menu-item.header-menu-login {
    align-items: center;
}

#main-header.header-light.header-light-dark-logo .header-menu .header-menu-item.header-menu-login>a {
    background: var(--primary_brand_color);
    color: var(--secondary_neutral_color);
}

#main-header .header-menu-login .header-menu-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

#main-header .header-menu .header-menu-item.header-menu-login>a {
    border: 0;
    min-width: 80px;
    height: 30px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: auto;
}

#main-header .header-menu .header-menu-item.header-menu-login>a:hover {
    border: 0;
}

#main-header.header-light.home-header .header-menu .header-menu-item.header-menu-login>a:hover {
    border: 0;
}

#main-header .header-menu .header-menu-item.header-menu-icon i {
    font-size: 15px;
    height: 30px;
    width: 30px;
    border: 3px solid var(--secondary_neutral_color);
    color: var(--secondary_neutral_color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-header.header-light .header-menu .header-menu-item.header-menu-icon i {
    border: 3px solid #fff;
    color: #fff;
}

#main-header.header-light .header-menu .header-menu-item.header-menu-icon a:hover i {
    background-color: #fff;
    color: var(--secondary_neutral_color);
}

#main-header .header-menu .header-menu-icon i {
    border: 3px solid var(--secondary_neutral_color);
    color: var(--secondary_neutral_color);
}

#main-header .header-menu .header-menu-icon a:hover i {
    background-color: var(--secondary_neutral_color);
    color: #fff;
}

#main-header.header-light .header-date-wrapper {
    background: linear-gradient(132.91deg, var(--primary_brand_color) 12.57%, var(--primary_brand_color-mid) 85.72%);
    color: #fff;
}

#main-header.header-light.header-light-dark-logo .header-date-wrapper {
    color: var(--secondary_neutral_color);
}

#main-header .header-date-wrapper .header-date {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#main-header .header-date-wrapper .header-date .header-date-year {
    letter-spacing: 5.5px;
    text-indent: 5.5px;
}

#main-header .header-date-wrapper .header-date .header-date-month-day {
    letter-spacing: 1px;
    text-indent: 1px;
}

#main-header .header-date-wrapper .header-date span {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    word-break: keep-all;
}

#main-header .header-date-wrapper {
    background: var(--secondary_neutral_color);
    color: var(--primary_brand_color);
}

#main-header:not(.header-light) .header-date-wrapper .header-date span {
    background: -webkit-linear-gradient(60deg, var(--primary_brand_color) 0%, var(--primary_brand_color-dark) 140%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown {
    position: absolute;
    top: 36px;
    height: 36px;
    left: 0;
    width: 100%;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    flex-direction: row;
    display: flex;
    opacity: 0;
    pointer-events: none;
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--secondary_neutral_color);
}

#main-header.home-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item {
    border-right: 1px solid var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item {
    border-right: 1px solid var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item {
    border-right: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item.header-menu-dropdown-item-sub.opened {
    border-right: none !important;
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown>.header-menu-dropdown-item>a {
    padding: 0px 10px;
    z-index: 1;
}

#main-header .header-menu-dropdown-sub {
    transition: all .3s ease-in-out;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub {
    transform-origin: left;
    animation-name: animateBackHeaderMenuDropdownSub;
    animation-duration: .3s;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub.active {
    opacity: 1 !important;
    pointer-events: all;
    display: flex;
    animation-name: animateHeaderMenuDropdownSub;
    animation-duration: .3s;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub.opened {
    overflow-x: scroll;
    border-right: none;
}

@keyframes animateHeaderMenuDropdownSub {
    0% {
        opacity: 0;
        display: none;
        pointer-events: none;
        transform: rotateY(90deg);
    }

    1% {
        display: flex;
    }

    100% {
        opacity: 1 !important;
        pointer-events: all;
        transform: rotateY(0deg);
    }
}

@keyframes animateBackHeaderMenuDropdownSub {
    0% {
        opacity: 1;
        pointer-events: all;
        display: flex;
        transform: rotateY(0deg);
    }

    99% {
        opacity: 0;
        pointer-events: none;
        transform: rotateY(90deg);
    }

    100% {
        display: none;
    }
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub.opened::-webkit-scrollbar {
    width: 0;
    height: 0;
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown.active {
    opacity: 1;
    pointer-events: all;
}

#main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown .header-menu-dropdown-item {
    -webkit-transition: all 0.3s ease-in-out, border 0ms;
    transition: all 0.3s ease-in-out, border 0ms;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub {
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    word-break: normal;
    display: none;
    height: 100%;
    align-items: center;
    transform-origin: center left;
}

#main-header .main-menu-main-section {
    display: flex;
    height: 100%;
}

#main-header .login-and-locale-container {
    display: flex;
}

#main-header .login-and-locale-container .header-menu-login>a {
    font-weight: 700 !important;
}

#main-header .login-and-locale-container a {
    color: var(--header-main-menu-items-text-color) !important;
}

#main-header.home-header .login-and-locale-container a {
    color: var(--home-header-main-menu-items-text-color) !important;
}

#main-header.main-header-fixed .login-and-locale-container a {
    color: var(--sticky-header-main-menu-items-text-color) !important;
}

#main-header.home-header.main-header-fixed .login-and-locale-container a {
    color: var(--sticky-home-header-main-menu-items-text-color) !important;
}

.header-menu-dropdown-sub-item.has-sub-sub-items .header-menu-dropdown-sub-sub {
    display: none;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item {
    -webkit-transition: all 0.3s ease-in-out, border 0ms;
    transition: all 0.3s ease-in-out, border 0ms;
    word-break: normal;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid var(--secondary_neutral_color);
    position: relative;
    border-top: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
}

#main-header.home-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item {
    border-left: 1px solid var(--home-header-border-and-text-color);
    border-top: 1px solid var(--home-header-border-and-text-color);
    border-bottom: 1px solid var(--home-header-border-and-text-color);
}

#main-header.main-header-fixed .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item {
    border-left: 1px solid var(--sticky-header-border-and-text-color);
    border-top: 1px solid var(--sticky-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item {
    border-left: 1px solid var(--sticky-home-header-border-and-text-color);
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item:last-child {
    border-right: 1px solid var(--secondary_neutral_color) !important;
}

#main-header.home-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item:last-child {
    border-right: 1px solid var(--home-header-border-and-text-color) !important;
}

#main-header.main-header-fixed .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item:last-child {
    border-right: 1px solid var(--sticky-header-border-and-text-color) !important;
}

#main-header.home-header.main-header-fixed .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item:last-child {
    border-right: 1px solid var(--sticky-home-header-border-and-text-color) !important;
}

#main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item>a {
    padding: 0 10px;
}

#main-header .header-mobile-menu {
    align-items: center;
    grid-area: mobile;
}

#main-header .has-sub-sub-items>.header-menu-dropdown-sub-sub {
    position: absolute;
    bottom: 2px;
    transform: translateY(100%);
    color: white;
    left: -2px;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease-in-out;
}

#main-header .header-menu-dropdown-sub-sub {
    background: var(--header-bg-secondary);
}

#main-header.home-header .header-menu-dropdown-sub-sub {
    background: var(--home-header-bg-secondary);
}

#main-header.main-header-fixed .header-menu-dropdown-sub-sub {
    background: var(--sticky-header-bg-secondary);
}

#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub {
    background: var(--sticky-home-header-bg-secondary);
}

#main-header .header-menu-dropdown-sub-sub.active {
    opacity: 1;
    pointer-events: all;
}


#main-header .header-menu-dropdown-sub-sub a {
    word-break: keep-all;
    height: 36px;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border: 1px solid var(--secondary_neutral_color);
    color: var(--secondary_neutral_color);
    font-weight: 700;
}

#main-header.home-header .header-menu-dropdown-sub-sub a {
    border: 1px solid var(--home-header-border-and-text-color);
    color: var(--home-header-border-and-text-color);
    border-top-width: 0;
}

#main-header.main-header-fixed .header-menu-dropdown-sub-sub a {
    border: 1px solid var(--sticky-header-border-and-text-color);
    color: var(--sticky-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub a {
    border-left: 1px solid var(--sticky-home-header-border-and-text-color);
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
    border-right: 1px solid var(--sticky-home-header-border-and-text-color);
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
    color: var(--sticky-home-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub .header-menu-dropdown-sub-sub-item:first-child a {
    border-top: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header.home-header.main-header-fixed .header-menu-dropdown-sub-sub .header-menu-dropdown-sub-sub-item:last-child a {
    border-bottom: 1px solid var(--sticky-home-header-border-and-text-color);
}

#main-header .header-mobile-menu .header-mobile-menu-item {
    padding: 0 10px;
    display: flex;
    align-items: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#main-header .header-mobile-menu .header-mobile-menu-icon {
    padding: 0 20px;
    flex-direction: column;
    width: 68px;
    height: 100%;
    row-gap: 6px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.mobile-menu-support-us {
    border: 2px solid var(--home-header-border-and-text-color);
    padding: 8px 10px 6px 10px;
}

.mobile-menu-support-us>.header-menu-item>a.header-menu-profile {
    color: var(--home-header-border-and-text-color);
    font-weight: 700;
}

.mobile-menu-support-us>.header-menu-item>.header-menu-dropdown {
    opacity: 0;
    pointer-events: none;
    position: fixed !important;
    top: 72px;
    right: 0;
    flex-direction: column;
    transition: all .3s ease-in-out;
}

.mobile-menu-support-us>.header-menu-item>.header-menu-dropdown>.header-menu-dropdown-item {
    border-left: 2px solid var(--home-header-border-and-text-color);
    border-bottom: 2px solid var(--home-header-border-and-text-color);
    padding: 5px 10px;
}

.mobile-menu-support-us>.header-menu-item>.header-menu-dropdown>.header-menu-dropdown-item a {
    color: var(--home-header-border-and-text-color);
}

.mobile-menu-support-us>.header-menu-item>.header-menu-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all;
}

.header-mobile-menu-icon span {
    position: relative;
    width: 28px;
    height: 4px;
    background-color: var(--home-header-border-and-text-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-items-overlay {
    position: fixed;
    top: 72px;
    width: 100%;
    left: 0;
    grid-template-rows: 1fr 80px;
    height: calc(100% - 72px);
    opacity: 0;
    backdrop-filter: blur(0px);
    transition: all .3s ease-in-out;
    display: grid;
    pointer-events: none;
    overflow: hidden;
}

.mobile-menu-items-overlay .mobile-menu-items-top {
    overflow-y: scroll;
    width: calc(100% - 10px);
    justify-self: flex-end;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    position: relative;
}

.mobile-menu-items-overlay .mobile-menu-items-top::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.mobile-menu-grand-child-items-container, .mobile-menu-grand-grand-child-items-container {
    display: flex;
    flex-direction: column;
}

.mobile-menu-items-top>div:last-of-type a {
    justify-content: flex-end;
}

.mobile-menu-items-overlay .mobile-menu-items-top a {
    color: var(--home-header-border-and-text-color);
    font-weight: 700;
}

.mobile-menu-items-top>div.has-child {
    position: absolute;
    top: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-menu-items-top>div.has-child a {
    border-bottom: 2px solid var(--home-header-border-and-text-color);
    border-left: 2px solid var(--home-header-border-and-text-color);
    display: flex;
    align-items: center;
    padding: 10px;
}

.mobile-menu-items-top a.has-child:not(.mobile-menu-main-item)::after {
    content: "\f078";
    font-family: 'FontAwesome';
}

.mobile-menu-support-us {
    cursor: pointer;
}

.mobile-menu-main-item,
.mobile-menu-support-us,
.mobile-menu-support-us .header-menu-profile,
.mobile-menu-support-us .header-menu-dropdown-item {
    transition: all .3s ease-in-out;
}

.mobile-menu-main-item.active, .mobile-menu-support-us.active {
    background-color: var(--home-header-border-and-text-color);
    color: black !important;
}

.mobile-menu-support-us.active .header-menu-profile {
    color: black !important;
}

.mobile-menu-items-top div.no-child {
    display: none;
}

.mobile-menu-items-top>a {
    text-align: center;
    height: 40px;
    border-left: 2px solid var(--home-header-border-and-text-color);
    border-bottom: 2px solid var(--home-header-border-and-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-items-overlay .mobile-menu-items-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 13px;
    padding: 20px 0;
}

.mobile-menu-items-overlay .mobile-menu-items-bottom>.header-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-items-overlay .mobile-menu-items-bottom>.header-menu-item>a {
    max-width: 90%;
    width: 250px;
    justify-content: center;
    display: flex;
    height: 100%;
    align-items: center;
    border: 2px solid var(--home-header-border-and-text-color);
    color: var(--home-header-border-and-text-color);
    font-weight: 700;
}

.mobile-blur-placeholder {
    z-index: -1;
}

a.mobile-menu-item {
    column-gap: 6px;
}

.header-mobile-menu-icon.header-mobile-menu-icon-active span:first-child {
    transform: rotate(45deg) translate(7.5px, 7.5px);
}

.header-mobile-menu-icon.header-mobile-menu-icon-active span:nth-child(2) {
    transform: translateX(-100px);
}

.header-mobile-menu-icon.header-mobile-menu-icon-active span:last-child {
    transform: rotate(-45deg) translate(7.5px, -7.5px);
}

.header-mobile-facebook a {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.header-mobile-facebook a i {
    font-size: 15px;
    height: 30px;
    width: 30px;
    background: transparent;
    border: 3px solid var(--secondary_neutral_color);
    color: var(--secondary_neutral_color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header-mobile-facebook a:hover i {
    background: var(--secondary_neutral_color);
    color: #fff;
}

.header-light .header-mobile-facebook a i {
    border: 3px solid #fff;
    color: #fff;
}

.header-light .header-mobile-facebook a:hover i {
    background-color: #fff;
    color: var(--secondary_neutral_color);
}

#main-header .header-mobile-menu .header-menu {
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
}

/*

End of Header

*/
/*

Main content

*/
body.custom-background {}

body.custom-background #page-container {}

body.program-page {
    overflow: hidden;
}

#page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main {
    padding-top: 145px;
    padding-bottom: 120px;
}

main#home-content {
    padding: 0;
}

main#bidf-net-content {
    padding: 0 0 90px;
}

.container {
    max-width: 1800px;
    width: 80%;
    margin: 0 auto;
    position: relative;
}

section.section {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.top-line {
    margin-bottom: 30px;
}

.top-line .row .col {
    display: flex;
}

.top-line .row .col:first-child {
    justify-content: flex-start;
}

.top-line .row .col:last-child {
    justify-content: flex-end;
}

.top-line-button,
.top-line-button a {
    display: flex;
    align-items: center;
}

.top-line-button img {
    width: 40px;
}

.top-line-button span,
.top-line-button button {
    font-size: 16px;
    font-weight: bold;
    margin-left: 10px;
    text-transform: none;
    line-height: 1.4;
}

.page-title h1 {
    text-transform: uppercase;
    color: var(--secondary_neutral_color);
    font-size: 22px;
    line-height: 1.2;
}

.supporters-title h3 {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    text-transform: uppercase;
}

.news {
    height: 100%;
    padding-bottom: 75px;
    position: relative;
    overflow-y: scroll;
    overflow-x: visible;
}

.news * {
    color: var(--home-header-border-and-text-color);
}

.news>.news-row {
    display: grid;
    grid-template-columns: 68px 1fr 200px;
    padding: 32px;
    column-gap: 14px;
    border-bottom: 2px solid var(--home-header-border-and-text-color);
    transition: all .3s ease-in-out;
}

.news>.news-row.featured-news .news-icon-container {
    background-color: var(--featured-news-highlight-color);
}

.news>.news-row.new-2-col {
    grid-template-columns: 68px 1fr;
}

.news>.news-row:hover {
    background-color: var(--home-header-bg-secondary);
}

.news-label {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 8px;
    font-weight: 700;
}

.news>.news-row>div>h2 {
    font-size: 24px;
}

.news>.news-row>div>h6 {
    margin-top: 8px;
}

.news>.news-row .news-forward-link {
    font-size: 15px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    border: 2px solid var(--home-header-border-and-text-color);
}

.news>.news-row .news-forward-link>a {
    padding: 16px 43px;
    text-transform: uppercase;
    display: block;
    transition: all .3s ease-in-out;
}

.news>.news-row .news-forward-link>a:hover {
    background-color: var(--home-header-border-and-text-color);
    color: black;
}

.news-icon-container>img {
    padding: 10px 13px;
    border: 2px solid var(--home-header-border-and-text-color);
}

.news-header>h2 {
    color: var(--home-header-border-and-text-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 31px;
}

.news::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

.news::-webkit-scrollbar-track {
    /* margin-top: 140px;
margin-bottom: 20px; */
}

.news::-webkit-scrollbar-thumb {}

.news-col {
    flex: 1;
    margin-left: 10px;
    margin-right: 10px;
}

.news-col:first-child {
    margin-left: 0;
}

.news-col:last-child {
    margin-right: 0;
}

.news-grid {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.news-grid .news-col {
    flex: 0 calc(50% - 10px);
    width: 50%;
    margin: 0;
    margin-right: 10px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.news-grid .news-col:nth-child(2n) {
    margin-left: 10px;
    margin-right: 0px;
}

.news-box {
    background-image: var(--home-news-box-bg-img);
    background-position: top left;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 30px 30px;
    box-shadow: 0px 4px 20px var(--box-shadow-color);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 100%;
}

.news-box.news-box-full {
    padding: 120px 30px 30px;
}

.news-box-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.news-box-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news-box.news-box-full .news-box-text {
    flex: 1;
}

.news-box.news-box-full .news-box-button {
    flex: 0 0 auto;
}

.news-box .news-box-button {
    z-index: 1;
}

.news-box .news-box-top {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 1;
}

.news-box .news-box-top .news-box-top-category {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-box.news-box-cat-news .news-box-top .news-box-top-category {
    background-color: var(--color-secondary);
}

.news-box.news-box-cat-screening .news-box-top .news-box-top-category {
    background-color: var(--primary_brand_color-dark);
}

.news-box.news-box-cat-event .news-box-top .news-box-top-category {
    background-color: var(--primary_brand_color);
}

.news-box .news-box-top .news-box-top-category i {
    margin-right: 7px;
    font-size: 18px;
}

.news-box .news-box-top .news-box-top-category .news-box-top-category-name {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    font-size: 13px;
}

.news-box .news-box-text {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 20px;
    z-index: 1;
}

.news-box .news-box-text h2 {
    margin-bottom: 5px;
}

#home-news-container {
    border-bottom: #000 1px solid;
    padding-top: 50px;
}

#home-news-container .home-news-header {
    display: flex;
    padding-bottom: 25px;
}

#home-news-container .home-news-header>h3 {
    text-align: left;
    flex: 1;
}

#home-news-container .home-news-header>a {
    text-align: right;
    flex: 1;
    color: var(--primary_brand_color);
}

#home-news-container .home-news-header>a>i {
    padding-left: 15px;
}

#home-news-list {
    display: flex;
}

#home-news-list .news-row {
    flex: 1;
    padding: 40px;
    border-left: #000 1px solid;
    border-top: #000 1px solid;
}

#home-news-list .news-row:last-child {
    border-right: #000 1px solid;
}

#home-news-list .news-row-image-container {
    width: 100%;
    aspect-ratio: 16 / 9;
}

#home-news-list .news-row-image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#home-news-list .news-row-info-column {
    padding-top: 20px;
    margin-bottom: 20px;
}

#home-news-list .news-label {
    color: var(--primary_brand_color);
}

#home-news-list .news-row-button-column {
    position: absolute;
    bottom: 20px;
}

#home-news-list .news-row-button-column a {
    color: var(--primary_brand_color);
}

#home-news-list .news-row-button-column a i {
    font-weight: 100;
    padding-left: 10px;
}

.pagination-wrapper {
    padding-top: 60px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.pagination .pagination-item {
    margin-left: 5px;
    margin-right: 5px;
}

.pagination .pagination-item:first-child {
    margin-left: 0;
}

.pagination .pagination-item:last-child {
    margin-right: 0;
}

.pagination .pagination-item a {
    cursor: pointer;
}

.pagination .pagination-item a,
.pagination .pagination-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: var(--secondary_neutral_color);
    border: 1px solid var(--secondary_neutral_color);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
}

.pagination .pagination-item a:hover {
    border-color: var(--primary_brand_color);
    color: var(--primary_brand_color);
}

.pagination .pagination-item.pagination-disabled a {
    opacity: 0.5;
    cursor: default;
    pointer-events: none;
}

.pagination .pagination-item.pagination-disabled a:hover {
    color: var(--secondary_neutral_color);
    border-color: var(--secondary_neutral_color);
}

.pagination .pagination-item.pagination-active a {
    background-color: var(--primary_brand_color);
    border: 0;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.pagination .pagination-item.pagination-dots span::before {
    content: "...";
}

/* START:MOVIES-VIEW */
.movies-view {
    display: flex;
    align-items: center;
    padding: 4px;
}

.movies-view.movies-view-dark {
    background-color: transparent;
}

.movies-view.movies-view-light {
    background-color: #fff;
}

.movies-view>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    outline: 2px solid transparent;
}

.movies-view.movies-view-dark>a {
    outline: 2px solid var(--secondary_neutral_color);
}

.movies-view .movies-view-active {
    background-color: var(--secondary_neutral_color);
}

.movies-view .movies-view-active:active,
.movies-view .movies-view-active:focus,
.movies-view .movies-view-active:visited {
    /* outline: 0; */
    outline-offset: 0;
}

.movies-view.movies-view-dark .movies-view-list:not(.movies-view-active) {
    margin-right: 2px;
}

.movies-view.movies-view-dark .movies-view-cols:not(.movies-view-active) {
    margin-left: 2px;
}

.movies-view .movies-view-active i {
    color: #fff;
}

.movies-view i {
    color: var(--secondary_neutral_color);
    font-size: 16px;
}

/* END:MOVIES-VIEW */
/* START:MOVIES-VIEW-2 */
.movies-view-2 {
    display: flex;
    align-items: center;
}

.movies-view-2.movies-view-dark {
    background-color: transparent;
}

.movies-view-2.movies-view-light {
    background-color: #fff;
}

.movies-view-2>a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    outline: 2px solid transparent;
    position: relative;
    font-size: 16px;
}

.movies-view-2>a:focus,
.movies-view-2>a:active,
.movies-view-2>a:visited {
    outline: none;
}

.movies-view-2>a:first-of-type {
    margin-right: -1px;
}

.movies-view-2>a:nth-of-type(2) {
    margin-left: -1px;
}

.movies-view-2 .movies-view-active {
    z-index: 10;
}

.movies-view-2.movies-view-dark a:not(.movies-view-active) {
    border: 3px solid var(--secondary_neutral_color);
}

.movies-view-2 .movies-view-active {
    z-index: 10;
    background-color: var(--secondary_neutral_color);
    color: #fff;
}

.movies-view-2.movies-view-light .movies-view-active {
    background-color: #fff;
}

.movies-view-2 .movies-view-active,
.movies-view-2 .movies-view-list {
    padding: 3px;
}

.movies-view-2 .movies-view-active:active,
.movies-view-2 .movies-view-active:focus,
.movies-view-2 .movies-view-active:visited {
    outline: 0;
    outline-offset: 0;
}

.movies-view-2 .movies-view-active .icon-container {
    background: var(--secondary_neutral_color);
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* END:MOVIES-VIEW-2 */
.movies-page-view-list {}

.movies-page-view-cols {
    max-width: 1440px;
    width: 80%;
    margin: 60px auto 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

section.section.movie-section {
    border-top: var(--secondary_neutral_color) 1px solid;
    border-bottom: var(--secondary_neutral_color) 1px solid;
    padding: 0px !important;
    margin: 80px 0px !important;
}

.movies-page-view-cols section.section.movie-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: visible;
}

.movies-page-view-cols section.section.movie-section .container {
    width: 100%;
    height: 100%;
}

.movies-page-view-cols .movie-section-gradient-bg {
    top: 0;
    transform: none;
    width: 100%;
}

.movies-page-view-cols .movie-featured {
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
}

.movies-page-view-cols .movie-featured .movie-featured-thumbnail {
    margin-left: 0 !important;
    margin-right: 0 !important;
    transform: none;
    flex: auto;
    box-shadow: none;
    width: 100%;
    max-height: fit-content;
}

.movies-page-view-cols .movie-featured .movie-featured-thumbnail>img {}

.movies-page-view-cols .movie-featured .movie-featured-details {
    flex: auto;
    margin: 0 !important;
    padding: 30px !important;
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-tags {
    margin-bottom: 10px;
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-tags-tag {
    background-color: rgba(0, 0, 0, 0.25);
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-title h2 {
    font-size: 24px;
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-info {
    margin-bottom: 10px;
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-desc {
    margin-bottom: 15px;
}

.movies-page-view-cols .movie-featured .movie-featured-details .movie-featured-details-supporter {
    margin-bottom: 20px;
}

.movies-page-view-cols section.section.movie-section .button {
    font-size: 13px;
    height: 40px;
}

.slick-list .slick-track:before,
.slick-list .slick-track:after {
    display: none;
}

.slick-list .slick-track {
    display: flex;
    align-items: stretch;
}

.slick-list .slick-track .slick-slide {
    float: none;
}

/*

End of Main content

*/
/*

Home

*/
.hero {
    height: 100vh;
    background: linear-gradient(180deg,
            var(--home-hero-gradient-1) 0%,
            var(--home-hero-gradient-2) 25%,
            var(--home-hero-gradient-3) 50%,
            var(--home-hero-gradient-4) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.hero {
    background: var(--home-hero-img-desktop-selected-lang),
        linear-gradient(180deg,
            var(--home-hero-gradient-1) 0%,
            var(--home-hero-gradient-2) 25%,
            var(--home-hero-gradient-3) 50%,
            var(--home-hero-gradient-4) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero {
    background: var(--home-hero-img-desktop-selected-lang),
        linear-gradient(180deg,
            var(--home-hero-gradient-1) 0%,
            var(--home-hero-gradient-2) 25%,
            var(--home-hero-gradient-3) 50%,
            var(--home-hero-gradient-4) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
    position: relative;
    right: 0;
    min-height: 100vh;
    height: 100%;
    padding-top: 125px;
}

.hero-right::before {
    content: "";
    height: 120px;
    width: 100%;
    background: linear-gradient(180deg,
            var(--home-hero-right-top-gradient-1) 50%,
            var(--home-hero-right-top-gradient-2) 60%,
            var(--home-hero-right-top-gradient-3) 100%);
    background-blend-mode: multiply;
    z-index: 9;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
}

.hero-right::after {
    content: "";
    height: 300px;
    width: calc(100% - 38px);
    background: linear-gradient(180deg, var(--home-hero-right-bg-gradient-1) 0%, var(--home-hero-right-bg-gradient-2) 100%);
    background-blend-mode: multiply;
    z-index: 9;
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 20px;
}

.hero img {
    max-height: 100vh;
    width: 100%;
}

#hero-read-more-news-container {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
}

#hero-read-more-news-container img {
    width: 24px;
    height: 24px;
    display: inline-block;
    text-align: center;
}

#hero-read-more-news-container span {
    color: white;
    text-transform: uppercase;
    display: block;
}

.section.supporters>.container {
    padding-bottom: 64px;
}

.section.supporters>.container:not(:last-child) {
    border-bottom: 1px solid #474747;
}

.section.supporters>.container.strategic-and-main-media-partners {
    display: flex;
    justify-content: space-around;
}

.supporters .supporters-title {
    margin-top: 64px;
    margin-bottom: 50px;
}

.supporters .supporters-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid var(--secondary_neutral_color);
    padding: 5px;
    color: transparent;
    cursor: pointer;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-prev {
    left: -30px;
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-prev::before {
    content: "\f053";
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-next {
    right: -30px;
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-next::before {
    content: "\f054";
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow::before {
    color: var(--secondary_neutral_color);
    font-size: 17px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow:hover {
    background: var(--secondary_neutral_color);
}

.supporters .supporters-content.supporters-content-mobile .slick-arrow:hover::before {
    color: #fff;
}

.supporters .supporters-content.supporters-content-mobile .slick-list {
    padding: 0 15px;
}

.supporters .supporters-content a img {
    max-width: 132px;
    max-height: 49px;
}

.other-supporters>.supporters-content.supporters-content-desktop {
    column-gap: 16px;
    row-gap: 25px;
}

.other-supporters>.supporters-content.supporters-content-desktop img {
    transform: scale(0.8);
}

.supporters>.container.main-supporter .supporters-content a img {
    width: 300px;
    max-width: 100%;
    max-height: 180px;
}

.supporters .supporters-content.supporters-content-mobile .slick-track {
    display: flex;
    align-items: center;
}

.supporters .supporters-content .supporters-content-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.supporters-gray {
    filter: grayscale(100%);
}

.supporters-no-gray {
    filter: grayscale(0);
}

.supporters .supporters-content a {
    display: block;
    padding: 10px 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.supporters .supporters-content a:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

section.section.award-winning-movies {
    padding: 0;
    background: var(--home-award-winning-bg);
    overflow-x: clip;
    padding: 75px 0;
}

.award-winning-movies-title {
    z-index: 9;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.award-winning-movies-slider-slide .award-winning-movies-title {
    margin-bottom: 20px;
    margin-top: 30px;
}

.award-winning-movies-slider {
    position: relative;
    margin-left: -60px;
    margin-right: -60px;
}

.award-winning-movies-slider .slick-list {
    overflow: visible;
}

.award-winning-movies-slider button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 3px solid #ffffff;
    padding: 5px;
    color: transparent;
    cursor: pointer;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.award-winning-movies-slider button.slick-arrow:hover {
    background-color: #fff;
}

.award-winning-movies-slider button.slick-arrow::before {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.award-winning-movies-slider button.slick-arrow:hover::before {
    color: var(--dark-text-color);
}

.award-winning-movies-slider button.slick-arrow.slick-next {
    right: -37px;
}

.award-winning-movies-slider button.slick-arrow.slick-next::before {
    content: "\f054";
}

.award-winning-movies-slider button.slick-arrow.slick-prev {
    left: -37px;
}

.award-winning-movies-slider button.slick-arrow.slick-prev::before {
    content: "\f053";
}

.slick-initialized .award-winning-movies-slider-slide.slick-slide {
    display: flex;
    flex-wrap: wrap;
    min-height: 345px;
}

.award-winning-movies-slider-slide-content {
    display: flex;
    align-items: center;
    /*padding-left: 120px;
    padding-right: 120px;*/
}

.award-winning-movies-slider-slide-left {
    display: flex;
    flex-direction: column;
}

.award-winning-movies-slider-slide-left-text {
    color: #fff;
    font-size: 16px;
    padding: 20px 135px 35px 20px;
    border: 3px solid #fff;
    margin-right: -30px;
}

.award-winning-movies-slider-slide-left-text h4 {
    padding-bottom: 10px;
}

.award-winning-movies-slider-slide-left-text p {
    padding-bottom: 0;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.award-winning-movies-slider-slide-left-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
    transform: translateY(-50%);
}

.award-winning-movies-slider-slide-left-buttons .button,
.award-winning-movies-slider-slide-left-buttons .btn-original {
    margin-right: 20px;
    white-space: nowrap;
}

.award-winning-movies-slider-slide-thumbnail {
    box-shadow: 4px 4px 30px var(--box-shadow-color);
    flex: 1 0 50%;
    transform: scale(1.3);
    overflow: hidden;
}

.award-winning-movies-slider-slide-thumbnail img {
    min-height: 340px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.section.subscribe {
    padding: 0;
    box-shadow: inset 0px 0px 44px var(--box-shadow-color);
}

.subscribe-content {
    display: flex;
    align-items: center;
}

.subscribe-content .subscribe-video-container {
    align-self: stretch;
}

.subscribe-content .subscribe-video-container iframe {
    width: 665px;
    height: 374px;
    display: block;
}

.subscribe-content .subscribe-form-container {
    flex: 5;
    padding: 120px 100px 70px 100px;
}

.subscribe-content .subscribe-form-container .subscribe-form-title {
    margin-bottom: 20px;
}

.subscribe-content .subscribe-form-container .form-fieldset:last-child {
    margin-bottom: 0;
}

.subscribe-content .subscribe-form-container .form-fieldset .form-input input,
.subscribe-content .subscribe-form-container .form-fieldset .form-select select,
.subscribe-content .subscribe-form-container .form-checkbox .form-checkbox-label::before,
.contact-section-content .form-input input,
.contact-section-content .form-select select,
.contact-section-content .form-checkbox .form-checkbox-label::before,
.contact-section-content .form-textarea textarea {
    border: 2px solid transparent;
}

.subscribe-content .subscribe-form-container .form-fieldset button.button,
.subscribe-content .subscribe-form-container .form-fieldset .btn-original {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

.subscribe-content .subscribe-form-container .form-fieldset #subscribe-privacy~.form-checkbox-label {
    min-width: 236px;
}

.subscribe-content .subscribe-form-container .form-fieldset #subscribe-terms~.form-checkbox-label {
    min-width: 236px;
}

.subscribe-content .subscribe-form-container .form-fieldset #subscribe-en~.form-checkbox-label,
.subscribe-content .subscribe-form-container .form-fieldset #subscribe-hu~.form-checkbox-label {
    min-width: 144px;
}

.subscribe-content .subscribe-form-container .subscribe-form .form-input.is-invalid input {
    border-color: #f14646;
}

.subscribe-content .subscribe-form-container .subscribe-form .form-input.is-invalid input {
    border-color: #f14646;
}

.subscribe-content .subscribe-form-container .subscribe-form .invalid-feedback {
    display: none;
    color: #f14646;
}

.subscribe-content .subscribe-form-container .subscribe-form .invalid-feedback.show {
    display: block;
}

.subscribe-content .subscribe-form-container .subscribe-form .invalid-feedback {
    display: none;
    color: #f14646;
}

.subscribe-content .subscribe-form-container .subscribe-form .invalid-feedback.show {
    display: block;
}

.subscribe-content .subscribe-form-container .subscribe-form .alert,
.subscribe-content .subscribe-form-container .subscribe-form .alert {
    display: none;
}

.subscribe-content .subscribe-form-container .subscribe-form .alert.show,
.subscribe-content .subscribe-form-container .subscribe-form .alert.show {
    display: flex;
}

.subscribe-form-container .form-fieldset .btn-original.subscribe-form-submit-button {
    width: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 34px;
}

.section.bidf-net {
    position: relative;
    overflow: hidden;
}

.section.bidf-net::before {
    content: "";
    background-image: var(--home-bidf-net-logo);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
}

.bidf-net-section-content {
    display: flex;
    align-items: center;
}

.bidf-net-section-content-left {
    width: 30%;
}

.bidf-net-section-content-right {
    width: calc(70% + 150px);
    padding-left: 30px;
    margin-right: -150px;
}

.bidf-net-section-content h2 {
    margin-bottom: 30px;
}

.bidf-net-section-content h3 {
    margin-bottom: 15px;
}

.bidf-net-section-content p {
    margin-bottom: 20px;
}

.bidf-net-slider .slick-list {
    padding: 45px 25px !important;
}

.bidf-net-slider .bidf-net-slider-slide {
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-slider .bidf-net-slider-slide .bidf-net-slider-slide-img {
    display: block;
    position: relative;
    box-shadow: 0px 4px 20px var(--box-shadow-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-slider .bidf-net-slider-slide .bidf-net-slider-slide-img::before {
    content: "";
    background: var(--home-bidf-net-gallery-overlay-color);
    background-blend-mode: soft-light;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
}

.bidf-net-slider-slide:not(.slick-active),
.award-winning-movies-slider-slide:not(.slick-active) {
    visibility: hidden;
    opacity: 0;
}

.bidf-net-slider-slide.slick-current.slick-active.slick-center {
    z-index: 9;
}

.bidf-net-slider-slide.slick-current.slick-active.slick-center .bidf-net-slider-slide-img {
    transform: scale(1.2);
}

.bidf-net-slider .bidf-net-slider-slide img {
    display: block;
    width: 100%;
    height: 280px;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-slider button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 3px solid #ffffff;
    padding: 5px;
    color: transparent;
    cursor: pointer;
    z-index: 99;
    font-size: 0;
    line-height: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-slider button.slick-arrow:hover {
    background-color: #fff;
}

.bidf-net-slider button.slick-arrow::before {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-slider button.slick-arrow:hover::before {
    color: var(--dark-text-color);
}

.bidf-net-slider button.slick-arrow.slick-prev {
    left: 10px;
}

.bidf-net-slider button.slick-arrow.slick-next {
    right: 10px;
}

.bidf-net-slider button.slick-arrow.slick-prev::before {
    content: "\f053";
}

.bidf-net-slider button.slick-arrow.slick-next::before {
    content: "\f054";
}

.section.reviews {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
}

.reviews .gallery-reviews-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.gallery-slider-wrapper {
    width: 40%;
    height: auto;
    max-height: 400px;
    position: relative;
}

.reviews .gallery-slider {
    height: 100%;
}

.reviews .gallery-slider .slick-list {
    height: 100%;
}

.reviews .gallery-slider .slick-track {
    height: 100%;
}

.reviews .gallery-slider .gallery-slider-slide-img {
    height: 100%;
    width: 100%;
    position: relative;
}

.reviews .gallery-slider .gallery-slider-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.reviews .gallery-slider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.reviews .gallery-slider-bottom .gallery-slider-dots {
    width: 100%;
}

.reviews .gallery-slider-bottom .gallery-slider-dots .slick-dots {
    display: flex;
    align-items: flex-end;
    list-style-type: none;
    width: 100%;
}

.reviews .gallery-slider-bottom .gallery-slider-dots .slick-dots li {
    flex: 1;
    padding: 5px;
}

.reviews .gallery-slider-bottom .gallery-slider-dots .slick-dots li button {
    line-height: 0;
    font-size: 0;
    color: transparent;
    border: 0;
    background: rgba(255, 255, 255, 0.25);
    width: 100%;
    height: 6px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: all;
}

.reviews .gallery-slider-bottom .gallery-slider-dots .slick-dots li button:hover,
.reviews .gallery-slider-bottom .gallery-slider-dots .slick-dots li.slick-active button {
    background: rgba(255, 255, 255, 0.7);
}

.reviews-slider-wrapper {
    width: 60%;
    height: 100%;
    max-height: 400px;
    position: relative;
    background: var(--home-reviews-slider-top-left-gradient);
    background-color: transparent;
}

.reviews .reviews-slider {
    height: 100%;
}

.reviews .reviews-slider .slick-list {
    height: 100%;
}

.reviews .reviews-slider .slick-track {
    height: 100%;
}

.reviews .reviews-title {
    margin-bottom: 20px;
}

.reviews .reviews-slider .reviews-slider-slide {
    display: flex;
    align-items: stretch;
}

.reviews .reviews-slider .reviews-slider-slide-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding: 60px;
    width: 100%;
    height: 100%;
    color: #fff;
}

.reviews .reviews-slider .reviews-slider-slide-content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 100px;
}

.reviews .reviews-slider .reviews-slider-slide-content a:not(.button) {
    color: #fff;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    line-height: 1.4;
}

.reviews .reviews-slider .reviews-slider-slide-content a:not(.button):not(.btn-original):hover {
    border-bottom: 2px solid #fff;
}

.reviews .reviews-slider .reviews-slider-slide-content .button,
.reviews .reviews-slider .reviews-slider-slide-content .btn-original {
    margin-top: 30px;
}

.reviews .reviews-slider .reviews-slider-slide-content .reviews-slider-slide-content-external-link {
    margin-top: 20px;
}

.reviews .reviews-slider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    pointer-events: none;
}

.reviews .reviews-slider-bottom .reviews-slider-arrows {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.reviews .reviews-slider-arrows .slick-arrow {
    background: transparent;
    border: 3px solid #ffffff;
    padding: 5px;
    color: transparent;
    cursor: pointer;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 40px;
    width: 40px;
    margin: 2px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    pointer-events: all;
}

.reviews .reviews-slider-arrows .slick-arrow:hover {
    background-color: #fff;
}

.reviews .reviews-slider-arrows .slick-arrow::before {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.reviews .reviews-slider-arrows .slick-arrow:hover::before {
    color: var(--dark-text-color);
}

.reviews .reviews-slider-arrows .reviews-slider-page-info {
    order: 1;
    margin-right: 20px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 8px;
}

.reviews .reviews-slider-arrows .slick-arrow.slick-next {
    margin-right: 0;
    order: 3;
}

.reviews .reviews-slider-arrows .slick-arrow.slick-prev {
    margin-left: 0;
    order: 2;
}

.reviews .reviews-slider-arrows .slick-arrow.slick-next::before {
    content: "\f054";
}

.reviews .reviews-slider-arrows .slick-arrow.slick-prev::before {
    content: "\f053";
}

.section.voluntering {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0px 0px 44px var(--box-shadow-color);
}

.voluntering .voluntering-content {
    display: flex;
    align-items: stretch;
}

.voluntering .voluntering-content-text {
    flex: 5;
    padding: 60px 60px 60px 0;
    color: #fff;
}

.voluntering .voluntering-content-text .voluntering-content-text-title {
    margin-bottom: 15px;
}

.voluntering .voluntering-content-text strong {
    display: block;
    margin-top: 15px;
}

.voluntering .voluntering-content-text .button,
.voluntering .voluntering-content-text .btn-original {
    margin-top: 30px;
    max-width: 180px;
}

.voluntering .voluntering-content-img {
    flex: 3;
}

.voluntering .voluntering-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    pointer-events: none;
}

.voluntering .voluntering-img .voluntering-img-empty-space {
    flex: 6;
    padding: 60px 60px 60px 0px;
}

.voluntering .voluntering-img .voluntering-img-helper {
    flex: 4;
    position: relative;
}

.voluntering .voluntering-img .voluntering-img-helper::before {
    content: "";
    /*background-color: #ffc48f;
    mix-blend-mode: multiply;*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.voluntering .voluntering-img .voluntering-img-helper img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: left;
    position: absolute;
    top: 0;
    right: 0;
}

/*

End of Home

*/
/*

About us

*/
.img-flex-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.img-mg-bottom {
    margin-bottom: 30px;
}

#about-us-content {
    padding-top: 70px;
}

.about-us-content .row {
    display: flex;

}

.about-us-content .row .col-narrow,
.about-us-content .row .col-wide {
    padding: 50px;
}

.about-us-content .row .col-narrow {
    flex: 2;
}

.about-us-content .row .col-wide {
    flex: 3;
}

.about-us-hero-title {
    padding: 50px 0px;
    border-bottom: var(--secondary_neutral_color) 1px solid;
}

.about-us-content section.section {
    border-bottom: var(--secondary_neutral_color) 1px solid;
    padding: 0px;
}

.about-us-content .about-us-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 60vh;
}

.about-us-content .third-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.about-us-content .about-us-padding-left {
    padding-left: 10vw !important;
}

.about-us-content .about-us-padding-right {
    padding-right: 10vw !important;
}

section.section.contact-section {
    margin-top: 40px;
    padding-top: 0;
    padding-bottom: 0;
}

.contact-section-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.contact-section-content .contact-section-form-container {
    padding: 40px;
    flex: 4;
}

.contact-section-content .contact-section-img-container {
    background-position: center;
    background-size: cover;
}

.contact-section-content .contact-section-img-container img {
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    min-height: 520px;
    max-height: 100%;
}

.contact-section-form-title {
    margin-bottom: 20px;
}

/*

End of About us

*/
/*

Submission form

*/
.form-container {
    min-height: 650px;
    padding: 30px 30px 50px;
    background-color: #fbfbfb;
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.12);
}

.form-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 0;
    margin-bottom: 60px;
}

.form-step {
    margin-right: 15px;
    display: flex;
    align-items: center;
    position: relative;
    opacity: 1;
}

.form-step:last-child {
    flex: initial;
    margin-right: 0;
}

.form-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    background-color: #d2d2d2;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-step-text {
    color: #d2d2d2;
    font-size: 14px;
    font-weight: 800;
    margin-right: 20px;
}

.form-step-active .form-step-number,
.form-step-checked .form-step-number {
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
}

.form-step-active .form-step-text,
.form-step-checked .form-step-text {
    color: var(--secondary_neutral_color);
}

.form-step-checked .form-step-number {
    font-size: 0;
    line-height: 0;
    color: transparent;
}

.form-step-checked .form-step-number::before {
    content: "\f00c";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.form-step .step-arrow-light {
    display: block;
}

.form-step .step-arrow-dark {
    display: none;
}

.form-step .form-step-arrow {
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
}

.form-step .form-step-arrow img {
    width: 60px;
    max-width: 60px;
}

.form-step-active .step-arrow-light,
.form-step-checked .step-arrow-light {
    display: none;
}

.form-step-active .step-arrow-dark,
.form-step-checked .step-arrow-dark {
    display: block;
}

.form-step:last-child .form-step-text {
    margin-right: 0;
}

.form a:not(.button):not(.btn-original) {
    font-weight: 600;
    text-decoration: underline;
}

.form-title {
    padding-bottom: 40px;
    border-bottom: 1px solid #c4c4c4;
    margin-bottom: 40px;
}

.form-welcome h3 {
    font-weight: 800;
}

.form-welcome h4 {
    font-weight: 500;
}

.form-title h1 {
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 10px;
}

.form-subtitle {
    margin-bottom: 30px;
}

.form-subtitle h4 {
    font-weight: 800;
    font-size: 24px;
}

.form-fieldset {
    margin-bottom: 20px;
}

.to-be-blurred {
    transition: all .3s ease-in-out;
}

.to-be-blurred.is-blurred-and-disabled {
    filter: blur(2px);
    pointer-events: none;
}

.form-label {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-label-optional {
    font-weight: 500;
    font-size: 13px;
}

.form-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.form-row:not(:last-child) {
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
    margin-left: 10px;
    margin-right: 10px;
    flex-direction: column;
    align-items: flex-start;
}

.form-col:first-child {
    margin-left: 0;
}

.form-col:last-child {
    margin-right: 0;
}

.form-col.form-col-1-5 {
    flex: 1;
}

.form-col.form-col-4-5 {
    flex: 4;
}

.form-input {
    position: relative;
    display: block;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-input.input-value-state::after {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-input.input-value-valid::after {
    content: url(/assets/img/bidf-checked.svg);
}

.form-input.input-value-valid input {
    background-color: #f4f4f4;
}

.form-input.input-value-invalid::after {
    content: url(/assets/img/bidf-wrong.svg);
}

.form-input.input-value-invalid input {
    background-color: #fff;
    border-color: #c4c4c4;
}

.form-select select,
.form-input input {
    height: 45px;
    display: flex;
    align-items: center;
}

.form-select select,
.form-input input,
.form-textarea textarea,
.select2.select2-container .select2-selection {
    display: block;
    padding: 8px 15px;
    border: 2px solid #ebebeb;
    background-color: #fff;
    font-size: 15px;
    color: #989898;
    font-weight: 600;
    margin: 0 !important;
    line-height: 1.2;
    border-radius: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

input::-webkit-inner-spin-button {
    display: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.form-textarea textarea {
    height: 120px;
}

.select2.select2-container {
    width: 100% !important;
}

.select2.select2-container .select2-selection {
    padding: 5px 15px;
    display: flex;
    align-items: center;
}

.select2.select2-container .select2-selection .select2-selection__rendered {
    padding: 0;
}

.select2.select2-container .select2-selection .select2-selection__choice {
    background-color: var(--primary_brand_color);
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    color: #fff;
    border: 0;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 3px 5px 3px 0;
    font-size: 14px;
    font-weight: 500;
    -webkit-box-shadow: none;
    box-shadow: none;
    white-space: nowrap;
    width: auto;
    display: flex;
    align-items: center;
}

.select2.select2-container .select2-selection .select2-selection__choice .select2-selection__choice__remove {
    content: url(../img/bidf-close-white-small.svg);
    margin-right: 0;
    order: 2;
    margin-left: 10px;
}

.select2.select2-container .select2-search--inline {
    height: 26px;
    margin: 3px 0;
}

.select2-container .select2-dropdown {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0px 4px 15px rgba(71, 71, 71, 0.15);
    box-shadow: 0px 4px 15px rgba(71, 71, 71, 0.15);
}

.select2-container .select2-dropdown::after {
    content: "";
    width: calc(100% + 6px);
    height: 100%;
    position: absolute;
    top: 0;
    left: -3px;
    background-color: var(--secondary_neutral_color);
    z-index: -1;
}

.select2-container .select2-dropdown .select2-results>.select2-results__options {
    max-height: 300px;
    overflow-y: auto;
}

.select2-results__options::-webkit-scrollbar {
    background-color: #373737;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: #545454;
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option {
    padding: 10px 15px;
    line-height: 1;
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"].select2-results__option--highlighted {
    background-color: transparent;
    background: transparent;
    color: #ccc;
}

.select2-container .select2-dropdown .select2-results__options .select2-results__option[aria-selected="true"] {
    background-color: transparent;
    background: transparent;
    color: #ccc;
    cursor: default;
}

.select2-container .select2-selection--single {
    min-height: 45px;
    height: auto !important;
}

.form-input input::placeholder,
.form-textarea textarea::placeholder {
    color: #cfcfcf;
    font-weight: 600;
}

.form-select select:focus,
.form-input input:focus,
.form-textarea textarea:focus,
.select2.select2-container.select2-container--focus .select2-selection {
    background-color: #fff;
    border: 2px solid transparent;
    box-shadow: 0px 4px 15px rgba(71, 71, 71, 0.15);
    color: var(--secondary_neutral_color);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none !important;
}

.form-select {
    position: relative;
    display: block;
}

.form-select select {
    padding-right: 45px;
}

.form-select::after {
    content: url(../img/bidf-field-arrow-dark.svg);
    position: absolute;
    right: 16px;
    top: 50%;
    height: 22px;
    width: 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-select,
.form-input input {
    height: 45px;
}

.form-select.form-select2 {
    min-height: 45px;
    height: auto;
}

input,
select,
textarea {
    width: 100%;
}

.form-submission-info {
    margin-top: 60px;
    margin-bottom: 30px;
}

.form-submission-info h2 {
    margin-bottom: 15px;
}

.form-fieldset.form-fieldset-acceptance {
    margin-bottom: 30px;
}

.input-checkbox-hidden,
.input-radio-hidden {
    margin: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    position: absolute;
}

.form-checkbox,
.form-radio {
    min-height: 30px;
    display: flex;
    align-items: center;
}

.form-checkbox .form-checkbox-label,
.form-radio .form-radio-label {
    position: relative;
    cursor: pointer;
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.form-checkbox .form-checkbox-label {
    padding-left: 35px;
}

.form-radio {
    margin-right: 15px;
}

.form-radio .form-radio-label {
    font-weight: 600;
    padding-left: 30px;
    color: #c4c4c4;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-radio .form-radio-label:hover {
    color: var(--secondary_neutral_color);
}

.form-radio .form-radio-label:hover::before {
    border: 2px solid var(--secondary_neutral_color);
}

.form-checkbox .form-checkbox-label::before,
.form-radio .form-radio-label::before {
    content: "";
    background-color: #fff;
    border: 2px solid #ebebeb;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-checkbox.form-checkbox-white .form-checkbox-label::before,
.form-radio.form-radio-white .form-radio-label::before {
    background-color: transparent;
    border: 2px solid #fff;
}

.form-checkbox .form-checkbox-label::before {
    width: 17px;
    height: 17px;
}

.form-radio .form-radio-label::before {
    border-radius: 30px;
    width: 16px;
    height: 16px;
}

.form-checkbox .form-checkbox-label::after,
.form-radio .form-radio-label::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-checkbox .form-checkbox-label::after {
    content: "\f00c";
    color: var(--secondary_neutral_color);
    font-size: 14px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-radio .form-radio-label::after {
    content: "";
    background-color: var(--secondary_neutral_color);
    width: 10px;
    height: 10px;
    border-radius: 30px;
    left: 5px;
}

.input-checkbox-hidden:checked+.form-checkbox-label::before {
    background-color: #fff;
    border: 2px solid transparent;
    box-shadow: 0px 4px 15px rgba(71, 71, 71, 0.15);
}

.input-checkbox-hidden:checked+.form-checkbox-label::after,
.input-radio-hidden:checked+.form-radio-label::after {
    opacity: 1;
}

.input-radio-hidden:checked+.form-radio-label {
    color: var(--secondary_neutral_color);
}

.input-radio-hidden:checked+.form-radio-label::before {
    border: 2px solid var(--secondary_neutral_color);
}

.form-fieldset-legend {
    display: block;
    color: #989898;
    font-size: 13px;
    padding-top: 10px;
    line-height: 1.2;
}

.form-textarea-legend {
    color: #989898;
    font-size: 11px;
    line-height: 1.2;
}

.form-file {
    display: block;
}

.form-file .jFiler .jFiler-input {
    width: auto;
    height: 45px;
    max-width: 100%;
    padding: 0 0 0 15px;
    margin: 0;
    border: 2px solid #ebebeb;
    background: #fff;
    background-color: #fff;
    font-size: 15px;
    color: #989898;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 0;
    font-family: inherit;
    display: flex;
    align-items: center;
    overflow: visible;
    justify-content: space-between;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-file .jFiler .jFiler-input .jFiler-input-caption {
    padding-left: 0;
    padding-top: 0;
    float: none;
    display: flex;
    align-items: center;
    color: #989898;
}

.form-file .jFiler .jFiler-input .jFiler-input-button {
    display: flex;
    align-items: center;
    float: none;
    height: 45px;
    padding: 15px;
    margin-right: -2px;
    border: 0;
    color: #626262;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    letter-spacing: 1px;
    font-weight: bold;
    font-size: 14px;
    background-color: #fff;
    background-image: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-file .jFiler .jFiler-input .jFiler-input-button:hover {
    background-color: #626262;
    color: #fff;
    -moz-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
}

.form-file .jFiler .jFiler-items {
    margin-top: 15px;
}

.form-file .jFiler .jFiler-items .jFiler-items-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item {
    padding: 5px 10px;
    margin-bottom: 10px;
    color: #fff;
    background: var(--secondary_neutral_color);
    border-radius: 5px;
    line-height: 1;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-others,
.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-icon {
    display: none;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-info {
    float: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-info .jFiler-item-assets {
    position: relative;
    margin: 0 0 0 10px;
    top: auto;
    right: auto;
    display: flex;
    align-items: center;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-info .jFiler-item-assets li {
    padding: 0;
    display: flex;
    align-items: center;
}

.form-file .jFiler .jFiler-items .jFiler-items-list .jFiler-item .jFiler-item-info .jFiler-item-assets a {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fff;
    content: url(../img/bidf-close-white-small.svg);
    margin-top: -1px;
}

.form-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 60px;
}

.form-buttons .button,
.form-buttons .btn-original {
    margin-right: 10px;
}

.form-buttons .button:last-child {
    margin-left: 10px;
    margin-right: 0;
}

.form-field-editable {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-field-editable .form-input {
    flex: 1;
}

.form-field-editable .form-field-editable-icon {
    margin-left: 10px;
    display: none;
}

.form-field-editable .form-field-editable-icon.form-field-editable-active {
    display: inline-block;
}

.form-field-editable .form-field-editable-icon a {
    border: 2px solid #ebebeb;
    background-color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field-editable .form-field-editable-icon a:hover {
    border: 2px solid var(--secondary_neutral_color);
}

.form-field-editable .form-field-editable-icon a i {
    color: #e4e4e4;
    font-size: 18px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-field-editable .form-field-editable-icon a:hover i {
    color: var(--secondary_neutral_color);
}

.form-field-editable .form-field-editable-icon a img {
    opacity: 0.2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form-field-editable .form-field-editable-icon a:hover img {
    opacity: 1;
}

.form-input.form-input-disabled input[disabled] {
    background-color: #f4f4f4;
    cursor: not-allowed;
}

.form-success-bottom {
    margin-top: 90px;
}

.button-left-icon a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.button-left-icon img {
    margin-right: 15px;
    width: 40px;
}

.button-left-icon span {
    font-size: 15px;
    font-weight: bold;
}

/*

End of Submission form

*/
/*

My account

*/
#profile-content .form-container {
    padding: 60px;
}

.movies {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: 60px;
}

.movies .slick-list {
    padding: 30px 10px;
    margin-top: -30px;
    margin-bottom: -30px;
}

.movies .slick-track {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
}

.movies .slick-track::before,
.movies .slick-track::after {
    display: none;
}

.movies .slick-track .movies-box:not(.slick-active) {
    opacity: 0;
    visibility: hidden;
}

.movies.slick-slider .slick-arrow {
    position: absolute;
    top: 50%;
    top: calc((380px / 2) + (32px / 2));
    transform: translateY(-50%);
    background: #fff;
    border: 3px solid var(--secondary_neutral_color);
    padding: 5px;
    color: transparent;
    cursor: pointer;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies.slick-slider .slick-arrow::before {
    color: var(--secondary_neutral_color);
    font-size: 17px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies.slick-slider .slick-arrow:hover {
    background: var(--secondary_neutral_color);
}

.movies.slick-slider .slick-arrow:hover::before {
    color: #fff;
}

.movies.slick-slider .slick-arrow.slick-prev {
    left: -25px;
}

.movies.slick-slider .slick-arrow.slick-prev::before {
    content: "\f053";
}

.movies.slick-slider .slick-arrow.slick-next {
    right: -25px;
}

.movies.slick-slider .slick-arrow.slick-next::before {
    content: "\f054";
}

.movies .movies-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: 15px;
    margin-right: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies .movies-box>a {
    display: block;
    width: 100%;
}

.movies .movies-box.movies-box-first {
    /* margin-bottom: 38px; */
}

.movies .movies-box .movies-box-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px;
}

.movies .movies-box.movies-box-first .movies-box-image img.movies-box-image-light {
    opacity: 1;
    visibility: visible;
}

.movies .movies-box.movies-box-first .movies-box-image img.movies-box-image-dark {
    opacity: 0;
    visibility: hidden;
}

.movies .movies-box.movies-box-first .movies-box-image:hover img.movies-box-image-light {
    opacity: 0;
    visibility: hidden;
}

.movies .movies-box.movies-box-first .movies-box-image:hover img.movies-box-image-dark {
    opacity: 1;
    visibility: visible;
}

.movies .movies-box.movies-box-first .movies-box-image:hover span {
    color: var(--secondary_neutral_color);
}

.movies .movies-box.movies-box-first .movies-box-image .movies-box-image-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.movies .movies-box.movies-box-first .movies-box-image img {
    position: absolute;
    width: 60px;
    height: 60px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies .movies-box.movies-box-first .movies-box-image span {
    font-weight: 800;
    font-size: 15px;
    color: #c4c4c4;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies .movies-box .movies-box-image .movies-box-image-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.movies .movies-box .movies-box-image .movies-box-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movies .movies-box .movies-box-image:hover .movies-box-image-overlay {}

.movies .movies-box .movies-box-image .movies-box-image-overlay img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.movies .movies-box .movies-box-image .movies-box-image-overlay span {
    font-weight: 800;
    font-size: 15px;
}

.movies .movies-box .movies-box-title {
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    line-height: 1.3;
}

.movies-box-delete-movie {
    background: linear-gradient(164.48deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    position: absolute;
    display: block;
    width: 48px;
    height: 48px;
    text-align: center;
    right: 12px;
    bottom: 12px;
}

.movies-box-delete-movie img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 19px;
    height: 19px;
}

/*

End of My account

*/
/*

BIDF Net

*/
.bidf-net-top {
    padding-top: 145px;
    padding-bottom: 0px;
    position: relative;
}

.bidf-net-top .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.bidf-net-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #525252 0%, #989898 99.41%);
    mix-blend-mode: multiply;
    /* opacity: 0.6; */
    opacity: 1;
    z-index: 1;
}

.bidf-net-top>div {
    z-index: 2;
    position: relative;
}

.bidf-page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.bidf-net-highlighted {
    overflow: hidden;
}

.bidf-net-highlighted-slider {}

.bidf-net-highlighted-slider .slick-list {
    padding: 70px 0;
    overflow: visible;
}

.bidf-net-highlighted-slider-slide {
    margin-left: 70px;
    margin-right: 70px;
}

.bidf-net-highlighted-slider .slick-list .slick-track .slick-slide {
    float: none;
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.bidf-net-highlighted-slider .slick-list .slick-track .slick-slide.slick-active {
    opacity: 1;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.bidf-net-highlighted-slider-slide:not(.slick-active) .bidf-net-highlighted-slider-slide-right {
    visibility: hidden;
    opacity: 0;
}

.bidf-net-highlighted-slider-slide-right-text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 72px;
}

.bidf-net-highlighted-slider-slide-content {
    display: flex;
    align-items: center;
}

.bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-left {
    position: relative;
    flex: 2;
    margin-right: 20px;
}

.bidf-net-highlighted-slider-slide-thumbnail {
    overflow: hidden;
    box-shadow: 0px 5px 60px rgba(0, 0, 0, 0.5);
}

.bidf-net-highlighted-slider-slide-thumbnail::before {
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(107.41% 112.12% at -29.61% -17.69%,
            var(--movie-list-thumbnail-coloring) 0%,
            rgba(253, 198, 43, 0) 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.bidf-net-highlighted-slider-slide-thumbnail>img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    max-height: 330px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    transform: scale(1.01);
}

.bidf-net-highlighted-slider-slide-thumbnail-badge {
    width: 80px;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-right {
    flex: 3;
    margin-left: 20px;
    padding-right: 40px;
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-highlighted-slider .bidf-page-title {
    margin-bottom: 15px;
}

.bidf-net-highlighted-slider-slide-right-text-title {
    margin-bottom: 15px;
}

.bidf-net-highlighted-slider-slide-right-buttons {
    display: flex;
    margin-top: 30px;
    row-gap: 10px;
    align-items: flex-start;
}

.bidf-net-highlighted-slider-slide-right-buttons .button {
    word-break: keep-all;
}

.bidf-net-highlighted-slider-slide-right-buttons .button:last-child {
    margin-left: 20px;
}

.bidf-net-highlighted-slider-arrows-wrapper {
    display: flex;
    align-items: center;
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.bidf-net-highlighted-slider-arrows {
    position: relative;
    flex: 2;
    margin-right: 30px;
}

/* .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
flex: 3;
margin-left: 30px;
} */
.bidf-net-highlighted button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 3px solid #ffffff;
    padding: 5px;
    color: transparent;
    cursor: pointer;
    pointer-events: all;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-highlighted button.slick-arrow::before {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bidf-net-highlighted button.slick-arrow:hover {
    background-color: #fff;
}

.bidf-net-highlighted button.slick-arrow:hover::before {
    color: var(--dark-text-color);
}

.bidf-net-highlighted button.slick-arrow.slick-prev {
    left: 0;
}

.bidf-net-highlighted button.slick-arrow.slick-prev::before {
    content: "\f053";
}

.bidf-net-highlighted button.slick-arrow.slick-next {
    right: -30px;
}

.bidf-net-highlighted button.slick-arrow.slick-next::before {
    content: "\f054";
}

.bidf-net-highlighted-slider-bottom {
    position: absolute;
    bottom: calc(0px + 70px);
    right: 0;
    width: 254px;
    height: 6px;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots {
    height: 100%;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots {
    display: flex;
    list-style-type: none;
    height: 100%;
    padding: 0;
    margin: 0;
    justify-content: space-between;
    /* safari not support this gap: 3px; */
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots li {
    background: rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
    margin-right: 3px;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots li:last-child {
    margin-right: 0px;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots li button {
    line-height: 0;
    content: '';
    width: 0%;
    height: 100%;
    border: 0;
    outline: 0;
    font-size: 0;
    padding: 0;
    color: transparent;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots li button.active {
    width: 100%;
    transition: width 5s linear;
}

.bidf-net-highlighted-slider-bottom .bidf-net-highlighted-slider-dots .slick-dots li button.completed {
    width: 100%;
}

/*

End of BIDF Net

*/
/*

Movie section

*/
section.section.movie-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

section.section.movie-section:first-child {
    padding-top: 80px;
}

section.section.movie-section .button {
    padding: 10px 20px;
    white-space: nowrap;
}

.movie-section-gradient-bg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: 100%;
    z-index: 0;
}

section.section.movie-section:nth-child(odd) .movie-section-gradient-bg {
    right: 0;
    background: var(--primary_neutral_color);
}

section.section.movie-section:nth-child(even) .movie-section-gradient-bg {
    left: 0;
    background: var(--primary_neutral_color);
}

section.section.movie-section:nth-child(even) .movie-featured .movie-featured-details {
    order: 1;
    margin-left: 0;
    margin-right: 70px;
    padding: 30px 0 30px 30px;
}

/*section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-thumbnail {
    margin-left: 38px;
}*/

section.section.movie-section:nth-child(even) .movie-featured .movie-featured-thumbnail {
    order: 2;
    /*margin-right: 38px;*/
}

.movie-featured {
    display: flex;
    align-items: center;
    z-index: 1;
    position: relative;
}

.movie-featured-thumbnail {
    position: relative;
    flex: 3;
    transform: scale(1.1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
}

.movie-featured-video, .subscribe-video-container {
    background-color: var(--secondary_neutral_color);
    cursor: pointer;
    position: relative;
}

.movie-featured-video>iframe, .subscribe-video-container>iframe {
    visibility: hidden;
    opacity: 0;
}

.embed-container.movie-featured-video, .subscribe-video-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.embed-container.movie-featured-video::after, .subscribe-video-container::after {
    content: "";
    width: 60px;
    height: 60px;
    background: url(/assets/img/bidf_play_button.png);
    display: block;
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.4));
    z-index: 9;
}

.movie-featured-thumbnail>img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
    max-height: 500px;
}

.movie-featured-thumbnail::before {
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(107.41% 112.12% at -29.61% -17.69%,
            var(--movie-list-thumbnail-coloring) 0%,
            rgba(253, 198, 43, 0) 100%);
    transform: matrix(-1, 0, 0, 1, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    pointer-events: none;
}

.movie-featured-thumbnail.inprogress::before {
    display: none !important;
}

.movie-featured-thumbnail .movie-featured-thumbnail-badge {
    width: 90px;
    position: absolute;
    top: 20px;
    z-index: 3;
}

section.section.movie-section:nth-child(odd) .movie-featured-thumbnail .movie-featured-thumbnail-badge {
    right: 20px;
}

section.section.movie-section:nth-child(even) .movie-featured-thumbnail .movie-featured-thumbnail-badge {
    left: 20px;
}

section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-categories-container {
    left: -10px;
}

section.section.movie-section:nth-child(even) .movie-featured .movie-featured-categories-container {
    right: -10px;
}

.movie-featured-categories-container {
    position: absolute;
    top: 40px;
}

.movie-featured-category {
    position: relative;
    background-color: var(--primary_brand_color);
    padding: 10px 15px;
    margin-bottom: 10px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
    z-index: 9;
    opacity: 1;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.movie-featured-category.hided {
    opacity: 0;
    -webkit-transition: opacity 1s ease-in-out;
    -moz-transition: opacity 1s ease-in-out;
    -ms-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
}

.movies-page-view-cols .movie-featured .movie-featured-category {
    top: 20px;
}

.movie-featured-details {
    flex: 2;
    margin-left: 70px;
    padding: 30px 30px 30px 0;
}

.movie-featured-details-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -5px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 15px;
}

.movie-featured-details-tags-tag {
    background-color: rgba(0, 0, 0, 0.25);
    padding: 5px 10px;
    margin: 5px;
}

.movie-featured-details-title {
    margin-bottom: 15px;
}

.movie-featured-details-subtitle {
    font-weight: 700;
    color: var(--secondary_neutral_color);
    font-size: 16px;
    line-height: 1.2;
    padding-bottom: 5px;
}

.movie-featured-details-info {
    font-weight: 600;
    margin-bottom: 10px;
}

.movie-featured-details-info .movie-featured-details-info-desc {
    font-size: 13px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-featured-details-desc {
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-featured-details-screenings .movie-featured-screenings {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    font-weight: 600;
}

.movie-featured-details-screenings .movie-featured-screenings .movie-featured-screening {}

.movie-featured-details-supporter {}

.movie-featured-details-supporter-logo {
    margin-top: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.movie-featured-details-supporter-logo img {
    margin: 5px;
    max-height: 50px;
    width: auto;
}

.movie-featured-details-buttons {
    display: flex;
    align-items: center;
    margin-top: 40px;
    row-gap: 10px;
    align-items: flex-start;
}

.movie-featured-details-buttons .button:first-child,
.movie-featured-details-buttons .btn-original:first-child {
    margin-right: 20px;
}

.movie-featured-border-bottom {
    padding-bottom: 20px;
    border-bottom: 1px solid #525252;
    margin-bottom: 20px;
}

main.movie-list-content {
    padding-top: 0;
    padding-bottom: 0;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*

End of Movie section

*/
/*

Jury page

*/
.juries-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 60px;
    padding-bottom: 0px;
}

section.jury-section {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 5%;
}

.jury-box {
    display: flex;
    align-items: stretch;
    background: linear-gradient(-90deg, #1e1e1e 0%, var(--secondary_neutral_color) 100%);
    max-width: 95%;
    margin: auto 0 auto auto;
    height: 100%;
}

.jury-box .jury-box-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 1;
    margin-bottom: 20px;
}

.jury-box .jury-box-right {
    padding: 20px;
    flex: 2;
}

.jury-box .jury-box-right h4 {
    margin-bottom: 10px;
}

.jury-box .jury-box-img {
    transform: scale(1.2);
    transform-origin: right;
    position: relative;
    z-index: 1;
}

.jury-box .jury-box-img::before {
    content: "";
    background: var(--jury-overlay-color);
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(95% - 1px);
    height: 100%;
    z-index: 2;
}

.jury-box .jury-box-img img {
    min-height: 320px;
    max-width: 95%;
    margin: auto 0 auto auto;
    object-fit: cover;
    object-position: center;
    position: relative;
    right: -1px;
}

.jury-box .jury-box-movie-title {
    position: relative;
    z-index: 2;
    min-width: 230px;
    width: calc(100% + 1px);
    right: -1px;
    text-align: center;
    white-space: nowrap;
}

.jury-box-movie-title {
    color: var(--secondary_neutral_color);
    background-color: var(--primary_brand_color);
    padding: 10px 15px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.jury-box .jury-name {
    display: none;
}

html[lang="en"] .jury-box .jury-name[lang="en"] {
    display: block;
}

html[lang="hu"] .jury-box .jury-name[lang="hu"] {
    display: block;
}

/*

End of Jury page

*/
/*

Filters

*/
.filters {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 50px;
    border-left: 1px solid var(--secondary_neutral_color);
    border-right: 1px solid var(--secondary_neutral_color);
}

.list-complete-enter,
.list-complete-leave-to {
    opacity: 0;
    transform: translateX(30px);
}

.list-complete-leave-active {
    position: absolute;
}

/* START:FADE TANSITION */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

/* END:FADE TRANSITION */
.alphabetical-filter-container,
.section-filter-container,
.category-filter-container,
.year-filter-container,
.filter-by-search,
.location-filter-container {
    flex: 1;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.filter.filter-flex {
    flex: 1;
}

.filter.filter-bg-white {
    background-color: #fff;
}

.filter.filter-active {
    background-color: var(--secondary_neutral_color);
    color: #FFB800;
}

.section-filter {
    z-index: 9;
    position: absolute;
    top: -3px;
    left: -3px;
    width: 100%;
    width: calc(100% + 6px);
    min-height: 100%;
    background: var(--secondary_neutral_color);
    color: #fff;
    box-shadow: 0px 5px 70px rgba(0, 0, 0, 0.25);
}

.section-filter-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 700;
    font-size: 15px;
    padding: 10px 23px;
    height: 56px;
}

.close-section {
    cursor: pointer;
    max-width: 14px;
}

.section-filter-content {
    display: flex;
    flex-wrap: wrap;
}

.category-filter-content,
.location-filter-content,
.alphabetical-filter-content,
.year-filter-content {
    max-height: 355px;
    overflow-y: auto;
}

.category-filter-content::-webkit-scrollbar,
.alphabetical-filter-content::-webkit-scrollbar,
.year-filter-content::-webkit-scrollbar {
    background-color: #373737;
}

.category-filter-content::-webkit-scrollbar-thumb,
.alphabetical-filter-content::-webkit-scrollbar-thumb,
.year-filter-content::-webkit-scrollbar-thumb {
    background-color: #545454;
}

.section-filter-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0px 0px 20px;
}

.section-filter-row:nth-child(2) {
    background: #555555;
}

.category-filter-row,
.location-filter-row {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
}

.category-filter-main-category {
    flex: 1 0 50%;
    height: 35px;
}

.location-filter-main-location {
    flex: 1 0 100%;
    height: 35px;
}

.section-filter-main-category {
    flex: 1;
    min-width: 225px;
    padding-left: 23px;
    padding-right: 23px;
    border-left: 1px solid #c4c4c4;
    margin-left: -1px;
    margin-top: 20px;
}

.section-filter-main-category:first-child {
    border-left: 0;
    margin-left: 0;
}

.section-filter-main-category:last-child {}

.section-filter-category-content {
    display: inline-block;
    font-weight: 700;
}

.section-filter-category-content-align {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.section-filter-checkbox {
    margin-right: 10px;
    width: 21px;
    height: 21px;
}

.section-filter-checkbox .unchecked,
.section-filter-checkbox .checked {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.2s;
}

.section-filter-subcategory-list {
    position: relative;
    list-style-type: none;
    margin-left: 36px;
}

.section-filter-subcategory-list-item {
    margin: 10px 0;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.filter-list {
    position: relative;
    z-index: 9;
    border-top: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
}

.filter-list.filter-list-light {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.filter-list.filter-list-light .filters {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.filter-list.filter-list-light .filters .filter-by-alphabetical-trigger,
.filter-list.filter-list-light .filters .filter-by-category-trigger,
.filter-list.filter-list-light .filters .filter-by-location-trigger,
.filter-list.filter-list-light .filters .filter-by-year-trigger,
.filter-list.filter-list-light .filters .filter-by-section-trigger,
.filter-list.filter-list-light .filters .filter-by-search-trigger,
.filter-list.filter-list-light .filters .filter-search-input,
.filter-list.filter-list-light .filters .filter-search-input::placeholder {
    color: #fff;
}

.filter-list.filter-list-light .filters .filter-by-category,
.filter-list.filter-list-light .filters .filter-by-location,
.filter-list.filter-list-light .filters .filter-by-section {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

.filter-by-alphabetical,
.filter-by-category,
.filter-by-year,
.filter-by-day,
.filter-by-city,
.filter-by-place,
.filter-by-section,
.filter-by-search,
.filter-by-type,
.filter-by-location {
    position: relative;
    width: auto;
}

.filter-by-alphabetical-trigger,
.filter-by-section-trigger,
.filter-by-category-trigger,
.filter-by-year-trigger,
.filter-by-day-trigger,
.filter-by-city-trigger,
.filter-by-place-trigger,
.filter-by-type-trigger,
.filter-by-location-trigger {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
}

.filter-by-category,
.filter-by-section {
    flex: 1;
    border-left: 1px solid var(--secondary_neutral_color);
    border-right: 1px solid var(--secondary_neutral_color);
}

.filters.gallery .filter-by-location {
    border-left: 1px solid var(--secondary_neutral_color);
    border-right: 1px solid var(--secondary_neutral_color);
}

.filters.gallery .filter-by-years,
.filters.gallery .filter-by-location {
    flex: 1;
}

.filter-by-search {
    padding: 0;
    max-width: 300px;
}

.filters.gallery .filter-by-search {
    flex: 2;
    max-width: none;
}

.close-filters-btn {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}

.close-filters-btn:focus {
    outline: none;
}

/* START:FADE TANSITION */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
}

/* END:FADE TRANSITION */
@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.filter-search-input {
    border: none;
    width: 100%;
    height: 100%;
    font-weight: bold;
    font-size: 15px;
    background: transparent;
}

.filter-search-input::placeholder {
    color: var(--secondary_neutral_color);
    font-weight: bold;
    font-size: 15px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.filter-search-input:focus {}

.filter-search-input:focus::placeholder {}

.search-icon {
    position: absolute;
    right: 15px;
}

.filter-by-alphabetical,
.filter-by-year {
    min-width: 225px;
}

.close-section {
    cursor: pointer;
}

.alphabetical-filter-content,
.year-filter-content {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 23px;
}

.alphabetical-filter-item,
.year-filter-item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 35px;
}

.alphabetical-filter-category-content,
.year-filter-category-content {
    display: inline-block;
    font-weight: 700;
}

.alphabetical-filter-category-content-align,
.year-filter-category-content-align {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.alphabetical-filter-checkbox,
.year-filter-checkbox {
    margin-right: 10px;
    width: 21px;
    height: 21px;
}

.year-filter-checkbox .unchecked,
.year-filter-checkbox .checked {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.2s;
}

.selected-filters {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.chip {
    margin: 7px 24px 7px 0;
    line-height: 1;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.closebtn {
    margin-left: 10px;
    max-width: 12px;
    cursor: pointer;
}

.select2-container--open .select2-dropdown--above,
.select2-container--open .select2-dropdown--below {
    background: var(--secondary_neutral_color)
}

.select2-container--open .select2-dropdown--below {
    top: 6px;
}

.select2-container--flat .select2-search input {
    border-color: var(--secondary_neutral_color);
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.select2-container--flat .select2-container--focus .select2-selection--multiple {
    border: 1px solid #767676;
}

.select2-container--flat .select2-results__option--highlighted[aria-selected] {
    background: #767676 !important;
    color: #fff;
}

.select2-container--flat .select2-results__option[aria-selected=true] {
    background: #767676;
    color: #fff;
    opacity: .8;
}

.select2-container--flat .select2-selection--single {
    border-radius: 0;
}

.select2-container--flat.select2-container--open .select2-selection__arrow b {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
}

.select2-container--flat span.select2-search input {
    height: 35px !important;
}

.select2-container .select2-choice {
    border: 2px solid #dce4ec;
    height: 36px;
    border-radius: 0;
    font-size: 14px;
    text-indent: 1px;
    box-shadow: none;
    background-image: none;
}

.select2-container .select2-choice div {
    border-left: 2px solid #dce4ec;
    border-radius: 0 4px 4px 0;
    background-clip: padding-box;
}

.select2-container .select2-choice .select2-arrow {
    border: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
}

.select2-container:focus {
    outline: 0;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #dce4ec;
    border-radius: 0;
}

.select2-drop {
    margin-top: -2px;
    border: 2px solid #dce4ec;
    border-top: 0;
    border-radius: 0 !important;
    border-radius: 0 0 6px 6px;
    box-shadow: none;
}

.select2-drop.select2-drop-above {
    margin-top: 2px;
    border-top: 2px solid #dce4ec;
    border-bottom: 0;
    border-radius: 6px 6px 0 0;
    box-shadow: none;
}

.select2-search--dropdown {
    padding: 6px !important;
    margin-left: 5px;
    margin-right: 5px;
}

.select2-search--dropdown .select2-search__field {
    padding: 5px 10px !important;
}

.select2-search {
    margin-top: 0;
}

.select2-search input {
    height: 26px;
    border: 2px solid #dce4ec;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 2px solid #dce4ec;
    outline: none;
    box-shadow: none;
}

.select2-dropdown-open .select2-choice {
    box-shadow: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.select2-dropdown-open .select2-choice .select2-choice div {
    background: transparent;
    border-left: none;
    -webkit-filter: none;
    filter: none;
}

.select2-results {
    padding: 0;
    margin: 6px -3px 0;
    color: #ccc;
}

.select2-results .select2-highlighted {
    background: #767676;
    color: #fff;
    border-radius: 0;
}

.select2-container--flat .select2-selection--single {
    background: var(--secondary_neutral_color);
    border: 0;
    height: 34px;
}

.select2-container--flat .select2-selection--single .select2-selection__rendered {
    color: var(--secondary_neutral_color);
    line-height: 1.2;
    font-weight: 700;
}

.select2-container--flat .select2-selection--single .select2-selection__placeholder {
    color: var(--secondary_neutral_color);
}

.select2-container--flat .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: 700;
}

/*

End of Filters

*/
/*

Screenings

*/
main#screenings-content {
    padding-top: 0;
}

.screenings-top {
    position: relative;
}

.screenings-top-dropdown-wrapper {
    max-width: 1440px;
    width: 80%;
    position: absolute;
    top: 145px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    overflow: visible;
}

.screenings-top-dropdown {
    background-color: #fff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    width: fit-content;
}

.screenings-top-dropdown-text {
    font-weight: 700;
    font-size: 16px;
    margin-right: 15px;
}

.screenings-top-dropdown-select {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.screenings-top-dropdown-select::after {
    content: url(../img/bidf-field-arrow-dark.svg);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.screenings-top-dropdown-select select {
    height: 100%;
    width: 100%;
    padding: 0 25px 0 0;
    border: 0;
    border-radius: 0;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--secondary_neutral_color);
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.screenings-top-map {
    position: relative;
    width: 100%;
}

.screenings-top-map-img {
    position: relative;
    z-index: 1;
}

.screenings-top-map-img img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.screenings-top-highlight {
    position: relative;
    transform: translateY(-50%);
    z-index: 9;
    overflow: hidden;
    padding: 30px 0;
}

.screenings-top-highlight .ui-datepicker .ui-datepicker-title .ui-datepicker-month {
    white-space: nowrap;
}

.filter-datepicker.datepicker-dark .ui-datepicker {
    width: 300px;
    height: 320px;
}

.filter-datepicker.datepicker-dark .ui-datepicker .ui-datepicker-header {
    margin-bottom: 15px;
}

body .datepicker-dark .ui-datepicker {
    background: var(--secondary_neutral_color);
    color: #fff;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-header {
    color: #fff;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-header .ui-datepicker-prev,
body .datepicker-dark .ui-datepicker .ui-datepicker-header .ui-datepicker-next {
    border-color: #fff;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-header .ui-datepicker-prev span {
    content: url(../img/bidf-field-arrow-left-light.svg);
    right: auto;
    left: -0.5px;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-header .ui-datepicker-next span {
    content: url(../img/bidf-field-arrow-right-light.svg);
    right: -0.5px;
    left: auto;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar thead {
    background: transparent;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar thead th {
    color: #fff;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td {
    background: transparent;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar td.ui-datepicker-unselectable.ui-state-disabled {
    background: transparent;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a {
    color: #fff;
    border: 0;
    z-index: 1;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a::before {
    content: "";
    background: var(--secondary_neutral_color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    z-index: -1;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a::after {
    content: "";
    background: var(--secondary_neutral_color);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a:hover::after {
    background: #fff;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-active {
    background: transparent;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-active::before {
    background: transparent;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a.ui-state-active::after {
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td a:hover {
    border: 0;
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td.event-day a::after {
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
}

body .datepicker-dark .ui-datepicker .ui-datepicker-calendar tbody tr td.sunday a {
    color: var(--primary_brand_color);
}

.screenings-container {
    margin-top: -150px;
}

.earlier-screenings {}

.earlier-screening {
    padding-top: 30px;
}

.earlier-screening-top {
    display: flex;
    align-items: center;
}

.earlier-screening-top-date {
    display: block;
    font-weight: 700;
    font-size: 15px;
    min-width: 40px;
    max-width: 40px;
    white-space: nowrap;
    margin-right: 20px;
}

.earlier-screening-top-divider {
    width: 100%;
    height: 1px;
    background-color: var(--secondary_neutral_color);
}

.earlier-screening-item {
    margin-top: 30px;
    margin-left: 60px;
    display: flex;
    align-items: stretch;
    min-height: 140px;
}

.earlier-screening-item-thumbnail {
    display: flex;
    align-items: stretch;
    min-width: 440px;
    max-width: 440px;
    max-height: 140px;
    margin-right: 30px;
}

.earlier-screening-item-thumbnail-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    padding: 10px;
    min-width: 120px;
    /* width: 100%; */
    max-width: 140px;
    font-size: 16px;
}

.earlier-screening-item-thumbnail-left>div:not(:last-child) {
    margin-bottom: 15px;
}

.earlier-screening-item-thumbnail-day {
    font-size: 46px;
    font-weight: 700;
}

.earlier-screening .earlier-screening-item:nth-child(odd) .earlier-screening-item-thumbnail-left {
    background-color: var(--primary_brand_color-mid);
}

.earlier-screening .earlier-screening-item:nth-child(even) .earlier-screening-item-thumbnail-left {
    background-color: var(--primary_brand_color-dark);
}

.earlier-screening-item-thumbnail-right {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.earlier-screening-item-border {
    padding-right: 20px;
    border-right: 1px solid var(--secondary_neutral_color);
    margin-right: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.earlier-screening-item-border:last-child {
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
}

.earlier-screening-item-info-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary_brand_color-dark);
}

.earlier-screening-item-info-details {
    font-weight: bold;
    line-height: 1.3;
}

.earlier-screening-item-location-title,
.earlier-screening-item-guest-title {
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    padding: 7px 10px;
    line-height: 1;
    width: fit-content;
    margin-bottom: 15px;
}

.earlier-screening-item-location-title {
    background-color: var(--primary_brand_color-mid);
}

.earlier-screening-item-guest-title {
    background-color: var(--primary_brand_color);
}

.earlier-screening-item-location-name {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
}

.earlier-screening-item-location-address {
    line-height: 1.4;
    font-weight: bold;
}

.earlier-screening-item-location-time {
    line-height: 1;
    font-weight: bold;
}

.earlier-screening-item-guest-names {
    font-weight: bold;
    line-height: 1.4;
}

.screenings-top-highlight-wrapper {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.screenings-top-highlight-datepicker {
    width: 300px;
    box-shadow: 0px 4px 20px rgba(71, 71, 71, 0.2);
}

.screenings-top-highlight-slider-wrapper {
    max-width: 100vw;
    width: 100%;
    position: relative;
}

.screenings-top-highlight-slider {
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -40px;
    margin-bottom: -40px;
    padding-left: 20px;
}

.screenings-top-highlight-slider-arrows {
    width: calc(100% - 300px);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
}

.screenings-top-highlight-slider-arrows button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 5px;
    color: transparent;
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    cursor: pointer;
    z-index: 9;
    font-size: 0;
    line-height: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.screenings-top-highlight-slider-arrows button.slick-arrow::before {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.screenings-top-highlight-slider-arrows button.slick-arrow.slick-prev {
    left: -10px;
}

.screenings-top-highlight-slider-arrows button.slick-arrow.slick-prev::before {
    content: "\f053";
    margin-left: -2px;
}

.screenings-top-highlight-slider-arrows button.slick-arrow.slick-next {
    left: calc((100% + 300px) * 0.66);
}

.screenings-top-highlight-slider-arrows button.slick-arrow.slick-next::before {
    content: "\f054";
    margin-right: -2px;
}

.screenings-top-highlight-slider .slick-list {
    padding: 40px 0;
}

.screenings-top-highlight-slider .slick-track {
    justify-content: flex-start;
    margin-left: 0;
}

.screenings-top-highlight-slider-slide.slick-slide {
    min-height: 280px;
}

.screenings-top-highlight-slider-slide {
    max-height: 327px;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(71, 71, 71, 0.2);
    padding: 20px;
    margin-left: 15px;
    margin-right: 15px;
    display: flex !important;
    align-items: stretch;
}

.screenings-top-highlight-slider-slide.slick-active+.screenings-top-highlight-slider-slide.slick-active+.screenings-top-highlight-slider-slide.slick-active .screenings-top-highlight-slider-slide-movie {
    opacity: 0.4;
}

.screenings-top-highlight-slider-slide.slick-active:last-child .screenings-top-highlight-slider-slide-movie {
    opacity: 1 !important;
}

.screenings-top-highlight-slider-slide-movie {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.screenings-top-highlight-slider-slide-movie-top {
    display: flex;
    margin-bottom: 15px;
    max-height: 110px;
}

.screenings-top-highlight-slider-slide-movie-top-left {
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    padding: 10px;
    min-width: 120px;
    width: 100%;
    max-width: 140px;
    font-size: 15px;
}

.screenings-top-highlight-slider-slide-movie-top-left-day {
    font-size: 42px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.screenings-top-highlight-slider-slide-movie-top-right img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    object-fit: cover;
    object-position: center;
}

.screenings-top-highlight-slider-slide-no-screenings .screenings-top-highlight-slider-slide-movie-top-right img {
    filter: brightness(2) contrast(0.5);
}

.screenings-top-highlight-slider-slide-movie-bottom {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.screenings-top-highlight-slider-slide-movie-bottom-title {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    min-height: 50px;
}

.screenings-top-highlight-slider-slide-movie-bottom-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-address {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    margin-right: 10px;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-address img {
    margin-right: 10px;
    max-width: 30px;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons {
    display: flex;
    align-items: center;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.button {
    padding: 10px 20px;
    height: 40px;
    font-size: 14px;
    white-space: nowrap;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.button[disabled] {
    cursor: not-allowed;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.button[disabled]:hover {
    background-color: transparent;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.button[disabled]:hover::after {
    opacity: 1;
    visibility: visible;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.button[disabled] {
    filter: grayscale(100%);
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.movie-social-icon {
    margin-left: 10px;
    font-size: 16px;
    height: 40px;
    width: 40px;
    border: 3px solid var(--secondary_neutral_color);
    color: var(--secondary_neutral_color);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.screenings-top-highlight-slider-slide-movie-bottom-items-buttons a.movie-social-icon:hover {
    background-color: var(--secondary_neutral_color);
    color: #fff;
}

.no-earlier-screenings {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.no-earlier-screenings h2 {
    opacity: 0.5;
}

/* START:CITIES */
/* .screenings-top-map-pin.screenings-top-map-city-pecs {
left: 37.25%;
top: 85%;
}

.screenings-top-map-pin.screenings-top-map-city-budapest {
left: 45.8%;
top: 39.5%;
}

.screenings-top-map-pin.screenings-top-map-city-debrecen {
left: 73.55%;
top: 39%;
}

.screenings-top-map-pin.screenings-top-map-city-szeged {
left: 57.75%;
top: 79%;
}

.screenings-top-map-pin.screenings-top-map-city-sopron {
left: 19.5%;
top: 35%;
} */
/* END: CITIES */
/*

End of Screenings

*/
/* START:GALLERY */
.imglists {
    display: none;
}

.fancybox-thumbs__list {}

/* END:GALLERY */
/*

Press page

*/
.press-top {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.press-top-left {
    flex: 4;
    margin-right: 60px;
}

.press-top-left a {
    color: var(--primary_brand_color);
}

.press-top-button {
    margin-top: 30px;
    display: inline-block;
}

.press-top-button .button {
    padding: 10px 20px;
    justify-content: space-between;
    font-weight: bold;
    background-color: var(--primary_brand_color);
}

.press-top-button .button img {
    margin-left: 10px;
    margin-right: 0px;
    position: relative;
    bottom: 1px;
}

.press-top-right {
    flex: 2;
    text-align: right;
}

.press-top-box {
    background-color: var(--secondary_neutral_color);
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.35);
    max-width: 320px;
    margin-left: auto;
    margin-right: 0;
}

.press-top-box-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.press-top-box-info,
.press-top-box-info a {
    color: var(--primary_brand_color);
}

.press-container {
    background-color: #fff;
    border: var(--secondary_neutral_color) 1px solid;
    border-top: none;
}

.press-downloads-top {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    padding: 30px;
    margin-bottom: 60px;
    background-color: var(--tertiary_neutral_color);
    border-bottom: var(--secondary_neutral_color) 1px solid;
}

.press-downloads-top-item {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
    padding-right: 15px;
}

.press-downloads-top-item.press-downloads-top-item-download {
    text-align: right;
}

.press-downloads-top-item:last-child {
    padding-right: 0;
}

.press-downloads {
    margin-bottom: 60px;
}

.press-downloads-title {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
}

.press-downloads-category-badge-wrapper {
    position: relative;
    width: 100%;
    height: 36px;
    margin-bottom: 20px;
}

.press-downloads-category-badge {
    position: absolute;
    top: 0;
    left: -10px;
    background-color: var(--primary_brand_color);
    color: #fff;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.2;
    z-index: 1;
}

.press-downloads-list {
    margin-bottom: 40px;
}

.press-downloads-list-items-wrapper>.press-downloads-top {
    display: none;
}

.press-downloads-top,
.press-downloads-list-items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}

.press-downloads-list-items {
    padding: 20px 40px;
}

.press-downloads-list-items-wrapper:nth-child(odd) .press-downloads-list-items {
    background-color: var(--press-every-other-row-bg-color);
}

.press-downloads-list-items-wrapper:nth-child(even) .press-downloads-list-items {
    background-color: #fff;
}

.press-downloads-top-item-movie-title,
.press-downloads-list-item-movie-title {
    grid-column: 1 / 5;
}

.press-downloads-top-item-program,
.press-downloads-list-item-program {
    grid-column: 5 / 7;
}

.press-downloads-top-item-category,
.press-downloads-list-item-category {
    grid-column: 7 / 10;
}

.press-downloads-top-item-download,
.press-downloads-list-item-download {
    grid-column: 10 / 12;
}

.press-downloads-list-item {
    padding-right: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    line-height: 1.2;
    gap: 10px;
}

.press-downloads-list-item:last-child {
    padding-right: 0;
}

.press-downloads-list-item:nth-child(5n) {
    padding-right: 0;
}

.press-downloads-list-item.press-downloads-list-item-download {
    justify-content: flex-end;
}

.press-downloads-list-item.press-downloads-list-item-category span {
    font-weight: 500;
    padding: 8px 10px;
    white-space: nowrap;
}

.press-downloads-list-item-download-button {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.press-downloads-list-item-download-button:hover {}

.press-downloads-list-item-download-button img {
    max-width: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


/*

End of Press page

*/
/*

Movie page

*/

#movie-container .movie-page-top-left-badge>img {
    filter: invert(1);
}

main.movie-container {
    padding-top: 0;
    position: relative;
}

.movie-page-top {
    position: relative;
    overflow: hidden;
}

.movie-page-top>.container {
    position: static;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.movie-page-top-left {
    padding-top: 120px;
    height: 100%;
    width: 50%;
}

.movie-page-top-left-content {
    min-height: 400px;
}

.movie-page-top-left-badge {
    margin-bottom: 15px;
}

.movie-page-top-left-badge img {
    max-width: 100px;
    opacity: 0.7;
}

.movie-page-top-left-title {
    margin-bottom: 10px;
}

.movie-page-top-left-title h1 {
    font-size: 40px;
    font-weight: 800;
}

.movie-page-top-left-subtitle {
    margin-bottom: 40px;
}

.movie-page-top-left-screenings {
    height: 223px;
    overflow: hidden;
    padding-right: 30px;
    transition: all 0.3s ease-in-out;
}

.movie-page-top-left-screenings-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.movie-page-top-left-screenings-top-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 800;
    padding-top: 8px;
    width: 100%;
}

#movie-page-screening-all-button {
    float: right;
    position: relative;
    top: -8px;
}

.movie-page-top-left-screenings-slider {}

.movie-page-top-left-screenings-slider .slick-list {
    margin-left: -5px;
}

.movie-page-top-left-screenings-slider-slide {
    padding-right: 20px;
    padding-left: 5px;
}

.movie-page-top-left-screenings-slider-slide-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.embed-container.movie-featured-video {
    max-height: 520px;
}

.movie-page-top-left-screenings-slider-slide-info span {
    font-weight: bold;
    line-height: 1.2;
}

.movie-page-top-left-screenings-slider-slide-info a.button,
.movie-page-top-left-screenings-slider-slide-info .btn-original {
    padding: 7px 15px;
    height: 35px;
    font-size: 14px;
}

.movie-page-top-left-screenings-slider-slide-info .btn-original {
    min-width: 100px;
}

.movie-page-top-left-screenings-top-arrows {
    position: relative;
    display: flex;
    align-items: center;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow.slick-prev {
    margin-right: 15px;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow {
    position: relative;
    background: transparent;
    border: 3px solid var(--secondary_neutral_color);
    padding: 5px;
    color: transparent;
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow::before {
    position: relative;
    color: var(--secondary_neutral_color);
    font-size: 16px;
    font-weight: 900;
    font-family: "FontAwesome";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow.slick-prev::before {
    content: "\f053";
    left: -1px;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow.slick-next::before {
    content: "\f054";
    right: -1px;
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow:hover {
    background: var(--secondary_neutral_color);
}

.movie-page-top-left-screenings-top-arrows button.slick-arrow:hover::before {
    color: #fff;
}

.movie-page-top-right {
    width: 50%;
    height: 100%;
}

.movie-page-top-right .movie-featured-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    max-width: 50%;
    padding-bottom: 0;
}

.movie-page-content-container {
    padding: 40px;
}

.movie-page-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-bottom: 40px;
}

.movie-page-content-left {
    width: 70%;
    padding-left: 40px;
}

.movie-page-content-sidebar {
    width: 30%;
    border-right: 1px solid var(--secondary_neutral_color);
    padding-right: 20px;
}

.movie-page-content-section {
    margin-bottom: 30px;
}

.movie-page-content-subsection {
    margin-bottom: 15px;
}

.movie-page-content-title {
    margin-bottom: 15px;
}

.movie-page-content-title h4 {
    text-transform: uppercase;
    line-height: 1.2;
}

.movie-page-content-subtitle {
    margin-bottom: 5px;
}

.movie-page-content-subtitle h6 {
    text-transform: uppercase;
    line-height: 1.3;
}

.movie-page-content-subtitle.movie-page-content-subtitle-lower-case h6 {
    text-transform: none;
}

.movie-page-content-director.row {
    align-items: flex-start;
}

.movie-page-content-director.row .col {
    flex: auto;
}

.movie-page-content-director.row .col:first-child {
    width: 60%;
}

.movie-page-content-director.row .col:last-child {
    width: 40%;
}

.movie-page-content-category {
    background-color: var(--primary_brand_color);
    color: #fff;
    font-weight: bold;
    padding: 8px 10px;
    white-space: nowrap;
    margin-bottom: 10px;
}

.movie-page-content-poster {
    position: relative;
    display: inline-block;
}

.movie-page-content-poster::after {
    content: url(../img/bidf-magnifier-white.svg);
    position: absolute;
    right: 10px;
    bottom: 10px;
    height: 33px;
    width: 33px;
    pointer-events: none;
}

.movie-page-content-poster img {
    max-width: 140px;
}

.movie-page-content-supporters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.movie-page-content-supporters img {
    margin: 5px;
}

.movie-page-content-bottom {
    position: relative;
    padding-top: 30px;
}

.movie-page-content-bottom::before {
    content: "";
    height: 1px;
    width: 120px;
    background-color: var(--secondary_neutral_color);
    position: absolute;
    top: 0;
    left: 0;
}

.movie-page-content-bottom-share-title {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    font-size: 16px;
    margin-bottom: 10px;
}

.movie-page-content-bottom-share-icons {
    display: flex;
    align-items: center;
}

.movie-page-content-bottom-share-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-right: 10px;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movie-page-content-bottom-share-icon a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.movie-page-content-bottom-share-icon-gradient {
    background: linear-gradient(135deg, var(--primary_brand_color) 0%, var(--primary_brand_color-mid) 100%);
}

.movie-page-content-bottom-share-icon-gradient i {
    color: #fff;
}

.movie-page-content-bottom-share-icon:not(.movie-page-content-bottom-share-icon-gradient) {
    box-shadow: inset 0 0 0 3px var(--secondary_neutral_color);
}

.movie-page-content-bottom-share-icon:not(.movie-page-content-bottom-share-icon-gradient) i {
    color: var(--secondary_neutral_color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.movie-page-content-bottom-share-icon:not(.movie-page-content-bottom-share-icon-gradient):hover {
    background-color: var(--secondary_neutral_color);
}

.movie-page-content-bottom-share-icon:not(.movie-page-content-bottom-share-icon-gradient):hover i {
    color: #fff;
}

.movie-page-content-bottom-back-button {
    margin-top: 40px;
}

.movie-page-content-bottom-back-button a {
    display: flex;
    align-items: center;
    width: fit-content;
}

.movie-page-content-bottom-back-button a img {
    max-width: 40px;
}

.movie-page-content-bottom-back-button a span {
    font-size: 16px;
    font-weight: bold;
    margin-left: 15px;
    text-transform: none;
    line-height: 1.4;
}

.movie-page-content-download-button a.button {
    white-space: nowrap;
}

/*

End of Movie page

*/
/*

Footer

*/
#main-footer {
    box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.12);
    background-color: var(--footer-bg);
    padding: 30px 0;
}

#main-footer .footer {
    display: flex;
    justify-content: space-between;
    padding: 0px 35px;
}

.footer-logo-container {
    grid-area: logo;
}

.footer-logo {
    max-width: 160px;
}

.footer-text, .footer-mini-menu>a {
    color: var(--footer-text-color);
    text-transform: uppercase;
    font-size: 15px;
}

.footer-text img {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: 18px;
}

.footer-payments {
    display: flex;
    column-gap: 14px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 15px;
    grid-area: payments;
}

.footer-mini-menu-and-socials {
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    grid-area: socials;
}

.footer-mini-menu {
    display: flex;
    column-gap: 20px;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    column-gap: 10px;
    margin-top: 15px;
}

.copyright {
    font-size: 13px;
    color: var(--footer-text-color);
    line-height: 1.1em;
    padding-left: 35px;
}

@media all and (max-width: 1200px) {
    #main-footer .footer {
        display: grid;
        grid-template-areas: 'logo payments''socials socials';
        row-gap: 30px;
    }

    .footer-mini-menu-and-socials {
        align-items: center;
    }

    .footer-payments {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    #main-footer .footer>div:nth-child(2) {
        padding-right: 0;
    }
}

@media all and (max-width: 980px) {
    #main-footer .footer {
        display: grid;
        grid-template-areas: 'logo''payments''socials';
        row-gap: 30px;
    }

    #main-footer .footer {
        justify-content: center;
    }

    .footer-logo-container>img {
        margin: 0 auto;
    }

    .copyright {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .footer-text {
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
    }

    .footer-mini-menu {
        flex-direction: column;
        align-items: center;
    }

    #main-footer .footer>div:first-child {
        padding-right: 0;
    }
}

@media all and (max-width: 650px) {
    #main-footer .footer {
        padding: 0px 30px;
    }

    .contact-section-content {
        grid-template-columns: 1fr;
    }
}

/*

End of Footer

*/
/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid #ebebeb;
    /*
-webkit-text-fill-color: green;
*/
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* JQUERY toast */
.jq-toast-heading {
    font-family: inherit !important;
    font-size: 18px !important;
}

.jq-toast-single {
    font-family: inherit;
    font-size: 15px;
    line-height: normal;
}

.jq-icon-error {
    /*
background-color: #ffd6d6;
color: #f14646;
border-color: #f14646;
*/
}

.close-jq-toast-single {
    font-size: 20px !important;
}

.jq-toast-wrap {
    width: 350px;
}

/* START:GALLERY PAGE */
/* START:GALLERY PAGE TOP SECTION */
.galleries-top {
    position: relative;
    padding-top: 130px;
}

.galleries-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #525252 0%, #989898 99.41%);
    mix-blend-mode: multiply;
    /* opacity: 0.6; */
    opacity: 1;
    z-index: 1;
}

.galleries-top .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.galleries-top .container {
    z-index: 2;
    color: #fff;
}

.galleries-top .galleries-page-title h1 {
    margin-bottom: 15px;
    font-size: 34px;
}

.galleries-top .bidf-live {
    min-height: 300px;
    display: flex;
    flex-direction: row;
    padding: 70px 0;
}

.galleries-top .bidf-live .video-container,
.galleries-top .bidf-live .content-container {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

.galleries-top .bidf-live .video-container {
    width: calc(45% - 15px);
}

.galleries-top .bidf-live .content-container {
    padding: 0 20px;
}

.galleries-top .bidf-live .content-container {
    justify-content: center;
    flex-direction: column;
    padding-left: 100px;
}

.galleries-top .bidf-live .content-container .content-type {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.25;
}

.galleries-top .bidf-live .content-container .content-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.galleries-top .bidf-live .content-container .content-location {
    font-weight: 600;
}

.galleries-top .bidf-live .content-container .content-start {
    font-weight: 600;
}

.galleries-top .bidf-live .video-container iframe {
    max-width: 100%;
}

/* START:NEWS PAGE */
.news-content {
    margin-bottom: 30px;
}

.news-content .news-header-section {
    display: block;
    margin-bottom: 15px;
}

.news-content .news-header-section .news-page-title {
    margin-bottom: 5px;
}

.news-content .news-header-section .lead-text {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-content .header-image {
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
}

#news-content .news-content {
    margin: 50px auto;
    max-width: 1200px;
}

#news-content .news-content a {
    color: var(--news-link-text-color);
}

#news-content .news-page-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary_brand_color);
    text-transform: uppercase;
    margin-bottom: 20px;
}

#news-content .news-page-title * {
    font-size: 24px;
}

#news-content .lead-text {
    font-size: 40px;
    font-weight: 800;
    max-width: 90%;
    ;
}

/* END:NEWS PAGE */
@media only screen and (max-width: 370px) {
    .galleries-top .galleries-page-title h1 {
        font-size: 26px;
    }
}

/* END:GALLERY PAGE TOP SECTION */
/* START:GALLERY PAGE GALLERY LIST SECTION */
main.gallery-content {
    padding-top: 80px;
    padding-bottom: 80px;
}

.gallery-content .grid-container {
    display: grid;
    /* background-color: rgba(120, 18, 18, 0.6); */
    width: 100%;
    min-height: 500px;
    grid-template-columns: repeat(6, 1fr);
    /*
    grid-template-rows: minmax(500px, auto);
    grid-auto-rows: minmax(400px, auto);
    */
    grid-gap: 20px;
}

.gallery-content .grid-container .item {
    min-height: 100px;
    grid-column: span 2;
    margin-bottom: 30px;
    margin-right: 20px;
}

.gallery-content .grid-container .item:first-of-type,
.gallery-content .grid-container .item:nth-of-type(2) {
    grid-column: span 3;
    margin-bottom: 45px;
}

/* END:GALLERY PAGE GALLERY LIST SECTION */
/* START:GALLERY ITEM */
.gallery-item {
    height: 100%;
}

.gallery-item .preview-images {
    /* 4:3 */
    width: 100%;
    padding-top: 75%;
    position: relative;
    margin: 0px auto;
    z-index: 3;
    transform: scale(1);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-item .preview-images:hover {
    /* 4:3 */
    transform: scale(1.025);
}

.gallery-item .preview-images .preview-images--item {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - (2 * 20px));
    min-height: calc(100% - (2 * 20px));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.gallery-item .preview-images .preview-images--item:hover {
    cursor: pointer;
}

.gallery-item .preview-images .preview-images--item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: radial-gradient(75% 153.72% at 0% 1.84%, var(--gallery-overlay-gradient-color-1) 0%, var(--gallery-overlay-gradient-color-2) 42.19%, var(--gallery-overlay-gradient-color-3) 100%);
}

.gallery-item .preview-images .preview-images--item:nth-of-type(1) {
    z-index: 3;
}

.gallery-item .preview-images .preview-images--item:nth-of-type(2) {
    top: 20px;
    left: 20px;
    z-index: 2;
}

.gallery-item .preview-images .preview-images--item:nth-of-type(3) {
    top: 40px;
    left: 40px;
    z-index: 1;
}

.gallery-item .gallery-description {
    margin: 30px 40px;
}

.gallery-item .gallery-description .gallery-trigger {
    cursor: pointer;
}

.gallery-item .gallery-description .gallery-title,
.gallery-item .gallery-description .gallery-subtitle {
    text-align: center;
    color: var(--secondary_neutral_color);
    font-weight: 700;
}

.gallery-item .gallery-description .gallery-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.gallery-item .gallery-description .gallery-subtitle {
    font-size: 18px;
}

/* END:GALLERY ITEM */
/* END:GALLERY PAGE */
/*

Program Table

*/
main.program-container {
    padding-top: 70px;
    position: relative;
    padding-bottom: 0;
    flex: 1;
    display: grid;
    grid-template-columns: minmax(calc(70vw - 2px), calc(100% - 472px)) 1fr;
    grid-template-rows: 55px 1fr;
    overflow: hidden;
}

main.program-container .filter-list>.container,
main.program-container .program>.container {
    max-width: 1600px;
    width: 90%;
}

main.program-container .filter-list {
    border-right: 3px solid var(--secondary_neutral_color);
    margin-right: -3px;
    height: 55px;
    grid-column: 1;
}

main.program-container .filter-list .filter-list-inner {
    margin-left: 65px;
}

.program-sidebar {
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 70px;
    z-index: 99;
    width: 30vw;
    max-width: 470px;
    overflow-y: auto;
    height: calc(100vh - 70px);
    right: -100%;
    display: flex;
    flex-direction: column;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.program-sidebar.program-sidebar-active {
    right: 0;
}

.program-sidebar-video {
    width: 100%;
    height: 265px;
}

.program-sidebar-video iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
}

.program-sidebar-event {
    flex: 1;
    background-color: #fff;
    padding: 0px 30px 30px 30px;
    box-shadow: inset 0px 4px 34px rgba(0, 0, 0, 0.25);
}

#movie-meta {
    padding-top: 30px;
}

body.logged-in #movie-meta {
    padding-top: 15px;
}

.program-sidebar-event.program-sidebar-event-secondary {
    background-color: #F4F4F4;
}

.program-sidebar-event-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.program-sidebar-event-meta>span {
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
}

.program-sidebar-event-meta>span:not(:last-child) {
    padding-right: 5px;
    border-right: 3px solid var(--secondary_neutral_color);
    margin-right: 5px;
}

.program-sidebar-event-runtime {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.program-sidebar-event-runtime-number {
    line-height: 1;
    padding-left: 5px;
    border-left: 3px solid var(--primary_brand_color);
}

.program-sidebar-event-runtime-number::after {
    content: "’";
}

.program-sidebar-event-title {
    font-weight: 800;
    font-size: 26px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.program-sidebar-event-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-left: -2px;
    margin-right: -2px;
    margin-bottom: 20px;
}

.program-sidebar-event-tag {
    height: 24px;
    padding: 5px 10px;
    background-color: var(--primary_brand_color);
    color: #fff;
    line-height: 1;
    font-size: 12px;
    margin: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-sidebar-event-description {
    margin-bottom: 20px;
    line-height: 1.4;
}

.program-sidebar-event-description ul {
    padding-left: 25px;
}

.program-sidebar-event-description p:not(:last-child) {
    padding-bottom: 10px;
}

.program-sidebar-event-buttons {
    display: flex;
    align-items: center;
    margin-left: -3px;
    margin-right: -3px;
    margin-bottom: 20px;
}

.program-sidebar-event-buttons .button {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    margin: 3px;
    box-shadow: none;
}

.program-sidebar-divider {
    height: 1px;
    width: 100%;
    background-color: #E3E3E3;
    margin-top: 0px;
    margin-bottom: 20px;
}

.program-sidebar-event-screenings-title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.program-sidebar-event-screenings-list {
    list-style: none;
}

.program-container .filters {
    border-right: 0;
    justify-content: flex-start;
}

.program-container .filters .filter {
    min-width: 200px;
}

.program-container .filters .filter {
    border-right: 1px solid var(--secondary_neutral_color);
}

.program-container .filters .filter .filter-by-day-trigger,
.program-container .filters .filter .filter-by-city-trigger,
.program-container .filters .filter .filter-by-place-trigger {
    padding: 0;
}

.program-container .filters .filter select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    margin: 0;
    height: 100%;
    width: 100%;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    outline: none;
    font-weight: 700;
    color: var(--secondary_neutral_color);
}

.program-container .filters .filter .fa-chevron-down {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.program-container .filter.filter-flex .filter-by-day-trigger {
    justify-content: center;
}

.program-wrapper {
    overflow: hidden;
    display: flex;
    position: relative;
    margin-right: -3px;
    height: 100%;
    grid-column: 1;
}

.program-wrapper .program-inner {
    border-left: 3px solid var(--secondary_neutral_color);
    border-right: 3px solid var(--secondary_neutral_color);
    width: calc(100% - 65px);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 65px;
}

.program ul {
    list-style-type: none;
}

.program .program-no-movies-info {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 100px;
}

.program.program-no-movies .program-no-movies-info {
    display: flex;
    flex: 1;
}

.program-no-movies-info-title {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

.program-no-movies-info-text {
    text-align: center;
    max-width: 700px;
}

.program-no-movies .program-hz-table-current-line,
.program-no-movies .program-room-numbers,
.program-no-movies .program-hz-table-timeline,
.program-no-movies .program-hz-table-movies {
    display: none;
}

.program-hz-table {
    height: calc(100vh - 165px);
    position: relative;
    overflow-y: auto;
    overflow-x: auto;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.program-hz-table::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
}

.program-hz-table::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.1);
}

.program-hz-table::-webkit-scrollbar-thumb {
    background-color: var(--primary_brand_color);
    outline: 0;
    border-radius: 0;
}

.program-hz-table-current-line {
    /* display: none; */
    position: absolute;
    top: -50px;
    width: 3px;
    height: calc(100% + 100px);
    background-color: var(--primary_brand_color);
    z-index: 6;
}

.program-hz-table-timeline {
    display: flex;
    position: relative;
    z-index: 5;
    width: fit-content;
}

.program-hz-table-timeline-items {
    display: flex;
    align-items: stretch;
    height: 50px;
    padding: 0 25px;
    color: var(--secondary_neutral_color);
    font-weight: 700;
}

.program-hz-table-timeline-items-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 10px 7px 15px;
    width: 200px;
}

.program-hz-table-movies {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: 100vw;
    padding: 20px 0;
}

.program-hz-table-movies-bg-lines {
    z-index: 0;
    position: absolute;
    top: -10px;
    left: 0;
    min-width: 100vw;
    /* width: 5050px; */
    height: calc(100% + 60px);
    background-repeat: no-repeat;
    background-image: repeating-linear-gradient(90deg, rgba(71, 71, 71, 0.25) 0px, rgba(71, 71, 71, 0.25) 1px, transparent 0px, transparent 200px),
        repeating-linear-gradient(90deg, rgba(71, 71, 71, 0.25) 0px, rgba(71, 71, 71, 0.25) 1px, transparent 0px, transparent 50px);
    background-size: 100% 15px, 100% calc(100% - 15px);
    background-position: 50px 0, 50px 100%;
}

@media all and (max-width: 470px) {
    .program-hz-table-movies-bg-lines {
        background-image: repeating-linear-gradient(90deg, rgba(71, 71, 71, 0.25) 0px, rgba(71, 71, 71, 0.25) 1px, transparent 0px, transparent calc(200px * var(--mobile-screenings-coefficent))),
            repeating-linear-gradient(90deg, rgba(71, 71, 71, 0.25) 0px, rgba(71, 71, 71, 0.25) 1px, transparent 0px, transparent calc(50px * var(--mobile-screenings-coefficent)));
        background-position: calc(50px * var(--mobile-screenings-coefficent)) 0, calc(50px * var(--mobile-screenings-coefficent)) 100%;
    }

    .program-hz-table-timeline-items-item {
        width: calc(200px * var(--mobile-screenings-coefficent));
        padding: 10px 0 15px;
    }

    .program-hz-table-timeline-items {
        padding: 0 calc(25px * var(--mobile-screenings-coefficent));
    }
}

.program-hz-table-movies-items {
    min-width: 100%;
    width: 100%;
    min-height: 138px;
    height: 138px;
    position: relative;
}

.program-room-numbers {
    position: absolute;
    left: 10px;
    top: 0;
    padding-top: 70px;
    padding-bottom: 88px;
    height: 100%;
    overflow: auto;
}

.program-room-numbers::-webkit-scrollbar {
    width: 0px;
}

.program-room-numbers::-webkit-scrollbar-track {
    background: transparent;
}

.program-room-numbers::-webkit-scrollbar-thumb {
    background: transparent;
}

.program-room-numbers .program-room-number {
    width: 45px;
    height: 138px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-hz-table-movies-items-wrapper {
    position: relative;
    height: 100%;
    min-width: 100%;
    width: 100%;
    display: flex;
}

.program-hz-table-movies-items-item {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item .program-hz-table-movies-items-item-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    height: 130px;
    padding: 0;
    background-color: var(--primary_brand_color);
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item:hover .program-hz-table-movies-items-item-inner {
    padding: 3px;
    box-shadow: 0px 4px 14px rgba(28, 28, 28, 0.55);
}

.program-hz-table-movies-items-item:hover .program-hz-table-movies-items-item-inner .program-hz-table-movies-items-item-img {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
}

.program-hz-table-movies-items-item .program-hz-table-movies-items-item-inner-info,
.program-hz-table-movies-items-item .program-hz-table-movies-items-item-label {
    position: relative;
    z-index: 1;
}

.program-hz-table-movies-items-item .program-hz-table-movies-items-item-inner-info {
    padding: 10px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.program-hz-table-movies-items-item-img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item-inner::before {
    content: "";
    background: linear-gradient(180deg, rgba(70, 70, 70, 0.35) -2%, rgba(152, 152, 152, 0.35) 35%, rgba(71, 71, 71, 0.35) 98%);
    mix-blend-mode: multiply;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item:hover .program-hz-table-movies-items-item-inner::before {
    height: calc(100% - 6px);
    width: calc(100% - 6px);
}

.program-hz-table-movies-items-item-with-event .program-hz-table-movies-items-item-inner .program-hz-table-movies-items-item-label {
    background: rgba(255, 255, 255, 0.25);
}

.program-hz-table-movies-items-item:hover.program-hz-table-movies-items-item-with-event .program-hz-table-movies-items-item-inner::after {
    height: calc(100% - 6px);
    width: calc(100px - 2px);
    right: 3px;
}

.program-hz-table-movies-items-item-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.program-hz-table-movies-items-item-time,
.program-hz-table-movies-items-item-title {
    position: relative;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item-content {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-hz-table-movies-items-item-label {
    font-weight: 700;
    padding: 5px;
    height: 100%;
    width: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-timeline {
    position: relative;
    height: calc(1400px + 1px);
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
}

.program-timeline-outside {
    position: absolute;
    top: 94px;
    height: 1400px;
    display: flex;
}

.program-timeline-outside-left {
    left: -43px;
}

.program-timeline-outside-right {
    right: -43px;
}

.program-timeline-outside-lines {
    background-repeat: no-repeat;
    background-image:
        repeating-linear-gradient(0deg, var(--secondary_neutral_color) 0, var(--secondary_neutral_color) 1px, transparent 0, transparent 100px),
        repeating-linear-gradient(0deg, var(--secondary_neutral_color) 0, var(--secondary_neutral_color) 1px, transparent 0, transparent 25px);
    background-size: 20px 100%, 10px calc(100% - 125px);
    height: 100%;
    width: 20px;
}

.program-timeline-outside-left .program-timeline-outside-lines {
    background-position: 100% -93px, 100% 7px;
}

.program-timeline-outside-right .program-timeline-outside-lines {
    background-position: 100% -93px, 0% 7px;
}

.program-timeline-outside-hours {
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.program-timeline-outside-left .program-timeline-outside-hours {
    padding-right: 10px;
}

.program-timeline-outside-right .program-timeline-outside-hours {
    padding-left: 10px;
}

.program-timeline-outside-hours-hour {
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    flex: 1;
    display: flex;
    align-items: flex-start;
}

.program-timeline-outside-left .program-timeline-outside-hours-hour {
    justify-content: flex-end;
}

.program-timeline-outside-right .program-timeline-outside-hours-hour {
    justify-content: flex-start;
}

.program-timeline-content {
    position: relative;
    border-left: 3px solid var(--secondary_neutral_color);
    border-right: 3px solid var(--secondary_neutral_color);
    height: calc(100% + 25px);
    display: flex;
    background-image:
        repeating-linear-gradient(0deg, rgba(71, 71, 71, 0.2) 0,
            rgba(71, 71, 71, 0.2) 1px, transparent 0, transparent 25px);
    background-repeat: no-repeat;
    background-position: 100% 100px;
    background-size: 100% calc(100% - 125px);
}

.program-timeline-content-movies {
    position: relative;
    flex: 2;
}

.program-timeline-content-bg-white {
    background-color: rgba(255, 255, 255, 0.6);
}

.program-timeline-content-talks {
    position: relative;
    flex: 5;
    border-left: 3px solid var(--secondary_neutral_color);
    margin-left: -1px;
}

.program-timeline-content-movies,
.program-timeline-content-talks {}

.program-timeline-content-top {
    height: 100px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 5px 10px;
    margin-right: 2px;
}

.program-timeline-content-top-title {
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.program-timeline-content-top-text {
    font-size: 14px;
}

.program-timeline-content-top-title,
.program-timeline-content-top-text {
    text-align: center;
    line-height: 1.2;
}

.program-timeline-content-items {
    position: relative;
    height: 100%;
    margin: 1px 5px 1px 3px;
}

.program-timeline-content-items-item-wrapper {
    padding: 0 0 1px;
    position: absolute;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-timeline-content-items-item {
    position: relative;
}

.program-timeline-content-movies .program-timeline-content-items-item {
    min-height: 100px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 10px 15px;
}

.program-timeline-content-items-item-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-timeline-content-items-item-img-bg::before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
}

.program-timeline-content-items-item-img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.program-timeline-content-items-item-top,
.program-timeline-content-items-item-bottom {
    position: relative;
    z-index: 5;
    color: #fff;
    font-size: 14px;
}

.program-timeline-content-items-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.program-timeline-content-items-item-top-left-time {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.program-timeline-content-items-item-top-right-status {
    display: flex;
    align-items: center;
}

.program-timeline-content-items-item-top-right-status-text {
    font-size: 11px;
    font-weight: 600;
}

.program-timeline-content-items-item-top-right-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 30px;
    background-color: #ccc;
    display: inline-block;
    margin-left: 5px;
}

.program-timeline-content-items-item-top-right-status.status-online .program-timeline-content-items-item-top-right-status-dot {
    background-color: #54DF3A;
}

.program-timeline-content-items-item-top-right-status.status-offline .program-timeline-content-items-item-top-right-status-dot {
    background-color: #C91312;
}

.program-timeline-content-items-item-bottom {}

.program-timeline-content-items-item-bottom-title {
    font-weight: 700;
    font-size: 15px;
}

.program-days {
    position: relative;
    z-index: 9;
    border-top: 3px solid var(--secondary_neutral_color);
    border-bottom: 3px solid var(--secondary_neutral_color);
}

.program-days.program-days-fixed {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
}

.program-days ul {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 50px;
    border-left: 3px solid var(--secondary_neutral_color);
    border-right: 3px solid var(--secondary_neutral_color);
    list-style-type: none;
}

.program-days ul li {
    border-right: 3px solid var(--secondary_neutral_color);
    background-color: #fff;
    flex: 1;
}

.program-days ul li.slick-active .program-days-day {
    background-color: var(--secondary_neutral_color);
    color: #FFB800;
    font-weight: 700;
}

.program-days ul li.slick-active .program-days-day:hover {
    background-color: var(--secondary_neutral_color);
    color: #FFB800;
}

.program-days ul li:last-child {
    border-right: 0;
}

.program-days ul li .program-days-day {
    position: relative;
    width: 100%;
    padding: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-days ul li .program-days-day:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.program-slider .slick-list {
    padding-bottom: 25px;
}

.program-timeline-content-talks .program-timeline-content-items-item {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 5px 20px 5px 30px;
    font-size: 14px;
    line-height: 1;
    min-height: 24px;
    height: 100%;
}

.program-timeline-content-talks .program-timeline-content-items-item.program-timeline-content-items-item-highlighted {
    min-height: 49px;
    align-items: center;
    position: relative;
}

.program-timeline-content-talks .program-timeline-content-items-item-highlighted-indicator {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    border-top: 3px solid #ccc;
}

.program-timeline-content-talks .program-timeline-content-items-item-highlighted-indicator-triangle {
    margin-top: -3px;
    width: 0;
    height: 0;
    border-top: 30px solid #ccc;
    border-right: 30px solid transparent;
}

.program-timeline-content-movies .program-timeline-content-items-item.program-timeline-content-items-item-highlighted {
    position: relative;
}

.program-timeline-content-movies .program-timeline-content-items-item.program-timeline-content-items-item-highlighted:hover .program-timeline-content-items-item-img-bg {
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
}

.program-timeline-content-movies .program-timeline-content-items-item-highlighted-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.program-timeline-content-movies .program-timeline-content-items-item-highlighted-indicator-triangle {
    width: 0;
    height: 0;
    border-bottom: 30px solid #ccc;
    border-left: 30px solid transparent;
}

.program-timeline-content-movies .program-timeline-content-items-item.program-timeline-content-items-item-highlighted {
    background-color: #ccc;
}

.program-timeline-content-items-item {
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.02);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-timeline-content-items-item:hover {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
}

.program-timeline-content-items-item-wrapper:hover {
    z-index: 9;
}

.program-timeline-content-items-item-time {
    font-weight: 700;
    margin-right: 15px;
    min-width: 40px;
    white-space: nowrap;
}

.program-timeline-content-items-item-live {
    text-transform: uppercase;
    color: #C91312;
}

.program-timeline-content-items-item-title {}

.program-days-mobile.slick-slider {
    display: none;
}

.program-days-mobile.slick-slider button.slick-arrow {
    border: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    color: transparent;
    font-size: 0;
    line-height: 0;
    position: relative;
    height: 35px;
    width: 35px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}

.program-days-mobile.slick-slider button.slick-arrow.slick-prev {
    margin-right: 15px;
    background-image: url(../img/bidf-circle-arrow-left-dark-small.svg);
}

.program-days-mobile.slick-slider button.slick-arrow.slick-next {
    margin-left: 15px;
    background-image: url(../img/bidf-circle-arrow-right-dark-small.svg);
}

.program-days-mobile.slick-slider .slick-list {
    max-width: 170px;
}

.program-days-mobile.slick-slider .program-days-day {
    position: relative;
    padding: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    background-color: #fff;
    color: var(--secondary_neutral_color);
    border-left: 3px solid var(--secondary_neutral_color);
    border-right: 3px solid var(--secondary_neutral_color);
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-days-mobile.slick-slider .program-days-day.slick-active {}

.program-filter .select2.select2-container .select2-selection {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border: none;
    background-color: transparent;
    font-size: 15px;
    color: #989898;
    font-weight: 600;
    margin: 0 !important;
    line-height: 1.2;
    border-radius: 0;
    width: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.program-sidebar-close-button {
    display: none;
}

.header-menu-dropdown-item.header-menu-dropdown-item-sub.opened {
    overflow: hidden !important;
}

.header-menu-dropdown-item .menu-item-scroll-arrow {
    background: var(--home-header-bg);
}

.header-menu-dropdown-item .menu-item-scroll-arrow:hover {
    cursor: pointer;
}

.movie-ratings-container {
    background-color: #F6F6F6;
    padding: 24px;
    margin-bottom: 24px;
}

.movie-ratings-container .movie-ratings-header-left {
    background-color: #4F4F4F;
    width: 32%;
}

.movie-ratings-container .movie-ratings-header-left i {
    color: var(--primary_brand_color);
    left: 50%;
    top: 50%;
    position: relative;
    line-height: 1;
    transform: translateX(-50%) translateY(-50%);
    font-size: 20px;
}

.movie-ratings-container .movie-ratings-data i.fa-heart,
.movie-ratings-container .movie-ratings-data i.fa-heart-o {
    color: var(--primary_brand_color);
}

.movie-ratings-container .movie-ratings-header-right h4 {
    font-weight: bold;
    font-size: 24px;
}

.movie-ratings-container .movie-ratings-header-right p {
    font-weight: normal;
    font-size: 14px;
}

.movie-ratings-header {
    display: flex;
}

.movie-ratings-data {
    display: flex;
    padding-top: 24px;
}

.movie-ratings-rate {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
}

.movie-ratings-rate a {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: #D2DBDB;
    color: white;
    font-weight: bold;
    line-height: 2.7;
    display: block;
    transition: all 0.3s 0s ease-in-out;
}

.movie-ratings-rate a:hover {
    background-color: #4F4F4F;
}

.movie-ratings-rate .movie-rating-button.selected {
    background-color: var(--primary_brand_color);
}

.movie-ratings-data-left,
.movie-ratings-data-right {
    width: 50%;
    text-align: left;
}

.movie-ratings-data-left h4.zero,
.movie-ratings-data-right h4.zero {
    color: #D2DBDB;
}

.movie-ratings-data-left p,
.movie-ratings-data-right p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
}

.movie-ratings-footer {
    padding-top: 24px;
}

#screening-carousel {
    width: calc(100% + 20px);
    left: -10px;
    border-top: 1px solid var(--secondary_neutral_color);
    border-bottom: 1px solid var(--secondary_neutral_color);
    padding: 0px 48px;
}

#screening-carousel .owl-item {
    border-left: 1px solid var(--secondary_neutral_color);
}

#screening-carousel .owl-item:last-child {
    border-right: 1px solid var(--secondary_neutral_color);
}

.screening-carousel-element {
    background-color: white;
    padding: 16px;
}

.screening-carousel-date-element-container * {
    font-size: 20px;
    font-weight: bold;
    color: #474747;
    padding-bottom: 20px;
}

.favorite-profile-item .screening-carousel-date-element-container {
    display: flex;
}

.favorite-profile-item .screening-carousel-date-element {
    text-align: left;
    float: none;
}

.favorite-profile-item .screening-carousel-time-element {
    float: none;
}

.screening-carousel-date-element,
.screening-carousel-time-element {
    width: 50%;
    display: inline-block;
    float: left;
}

.screening-carousel-time-element {
    text-align: right;
}

.screening-carousel-cinema-city {
    font-size: 16px;
    font-weight: bold;
    color: #474747;
}

.screening-carousel-cinema-name {
    font-size: 14px;
    font-weight: bold;
    color: #474747;
}

.screening-carousel-cinema-container {
    padding-bottom: 10px;
}

.screening-carousel-button-container {
    height: 45px;
    display: flex;
    align-items: center;
}

.movie-screenings-container .item {
    margin: 10px;
}

/*

End of Program Table

*/

.owl-buttons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.owl-prev,
.owl-next {
    background-color: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
    width: 49px;
    height: 49px;
    display: inline-block;
    position: relative;
    font-size: 19px;
    text-align: center;
}

.owl-prev i,
.owl-next i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #474747;
}

.owl-prev {
    left: -49px;
}

.owl-next {
    float: right;
    right: -49px;
}

.owl-prev:hover,
.owl-next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.owl-pagination {
    height: 30px;
    text-align: center;
}

.owl-page {
    width: 8px;
    height: 8px;
    display: inline-block;
    background-color: #BFBFBF;
    transition: background-color 0.3s;
    margin-left: 4px;
    margin-right: 4px;
}

.owl-page.active {
    background-color: #FFCB5B;
}

.movie-screenings-title {
    font-size: 30px;
    text-transform: uppercase;
}

.favorite-button {
    display: inline-flex;
    align-items: center;
}

.favorite-button i {
    color: var(--primary_brand_color);
    font-weight: 900;
    font-size: 20px;
}

.favorite-button span.text {
    margin-left: 8px;
}

.favorite-button[data-page="movie-single-screening"] {
    margin-left: auto;
}

.favorite-button[data-page="movie-archive"] span.icon,
.favorite-button[data-page="screening-sidebar"] span.icon {
    width: 48px;
    height: 59px;
}

.favorite-button[data-page="movie-archive"] span.text {
    font-weight: bold;
}

.favorite-button[data-page="screening-sidebar"] {
    font-weight: bold;
}

.favorite-button[data-page="movie-single"] {
    padding: 15px;
    margin-bottom: 30px;
}

.favorite-button[data-page="movie-archive"] {
    position: relative;
    top: -30px;
}

.favorite-button[data-page="movie-single"][data-action="set"],
.favorite-button[data-page="movie-single"][data-action="set"]:hover {}

.screening-favorite {
    position: absolute;
    z-index: 9999;
    right: 30px;
    width: 26px;
    height: 31px;
    top: 0;
}

.program-sidebar-event.program-sidebar-event-secondary {
    position: relative;
}

/*#screening-add-to-favorites-container {
    position: absolute;
    top: 0;
}*/

.screening-favorites-button,
.screening-favorites-button a {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    padding-right: 0;
    padding-left: 0;
    background-color: var(--screenings-link-to-favorites-background);
    font-weight: bold;
}

.screening-favorites-button a {
    padding-right: 10px;
    padding-left: 10px;
}

.favorites-profile-container h2 {
    display: flex;
    align-items: center;
    color: black;
    text-transform: uppercase;
    font-size: 32px;
}

.favorites-profile-container h2>img {
    width: 37px;
    height: 46px;
    margin-right: 8px;
}

.favorite-list-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.favorite-list-container>div {
    flex: 0 0 calc(25% - 10px);
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 0px 14px 0px #88888840;
}

.favorite-profile-item h3 {
    text-align: left;
    font-size: 20px;
    color: #474747;
    text-transform: none;
    margin-bottom: 15px;
}

.favorite-profile-item h4 {
    text-align: left;
    font-size: 18px;
    color: #474747;
    text-transform: none;
    margin-bottom: 15px;
}

.favorite-profile-item h5 {
    text-align: left;
    font-size: 14px;
    color: #989898;
    text-transform: none;
    margin-bottom: 15px;
    font-weight: normal;
}

.favorite-profile-item .button-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next row */
    gap: 10px;
    /* Optional: Space between columns */
}

.delete-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E3E3E3;
    padding: unset;
    height: 45px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 0;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: #000;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.column-75 {
    flex: 0 0 calc(75% - 10px);
}

.column-25 {
    flex: 0 0 calc(25% - 10px);
}

.favorite-image-container {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.favorite-image-container .favorite-image-badge {
    width: 26px;
    height: 32px;
    position: absolute;
    left: 30px;
}

#news-list .col-6:first-child {
    padding-right: 50px;
}

#news-list .col-6:last-child {
    padding-left: 50px;
}

#news-list .news-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#news-list .news-big-container,
#news-list .news-small-container {
    margin-bottom: 50px;
}

#news-list .news-small-container {
    display: flex;
    gap: 24px;
}

#news-list .news-small-container>div {
    flex: 1;
}

#news-list .news-label {
    margin-top: 20px;
    color: var(--primary_brand_color);
}

#news-list .news-big-container h2 {
    font-size: 32px;
}

#news-list .news-small-container h2 {
    font-size: 24px;
}

#news-list .news-big-container h6 {
    margin-top: 20px;
}

#news-list .news-forward-link {
    color: var(--primary_brand_color);
    margin-top: 24px;
}

#news-list .news-big-container .news-forward-link a {
    padding: 14px 20px;
    display: inline-block;
    border: var(--primary_brand_color) 1px solid;
}

#news-list .news-forward-link a i {
    padding-left: 10px;
}

#news-list .news-forward-link * {
    color: var(--primary_brand_color);
}

.news-hero-container {
    width: 100%;
    min-height: 60vh;
    display: flex;
    border-bottom: var(--secondary_neutral_color) 1px solid;
    border-top: var(--secondary_neutral_color) 1px solid;
}

.news-hero-left {
    flex: 3;
    display: flex;
    align-items: center;
    border-right: var(--secondary_neutral_color) 1px solid;
}

.news-hero-left .news-header-section {
    padding: 0px 0px 0px 10vw;
}

.news-hero-right {
    flex: 2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-top-head-title {
    padding-bottom: 35px;
    text-transform: uppercase;
}

@media all and (max-width: 450px) {
    .favorite-button[data-page="movie-single"] {
        width: 100%;
        text-align: center;
    }

    .movie-featured-details {
        position: relative;
    }

    .favorite-button[data-page="movie-archive"] {
        position: absolute;
        top: 0px;
    }

    .favorite-button[data-page="movie-archive"] span.icon {
        width: 28px;
        height: 34px;
    }

    .favorite-button[data-page="movie-archive"] span.text {
        font-size: 12px;
    }

    .screening-favorites-button {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .screening-favorites-button img {
        width: 23px;
    }

    .screening-favorites-button,
    .screening-favorites-button a {
        margin-left: unset;
    }

    .favorites-profile-container h2 {
        font-size: 14px;
    }
}

@media all and (max-width: 1000px) {
    .favorite-button[data-page="screening-sidebar"] span.icon {
        width: 26px;
        height: 32px;
    }
}

/*

Responsivity

*/
@media only screen and (max-width: 1919px) {
    .bidf-net-highlighted-slider-bottom {
        width: 212px;
        height: 5px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1680px) {
    .award-winning-movies-slider button.slick-arrow.slick-prev {
        left: -37px;
    }

    .award-winning-movies-slider button.slick-arrow.slick-next {
        right: -37px;
    }
}

@media only screen and (max-width: 1600px) {
    body.custom-background #page-container {
        background-size: auto;
    }

    .screenings-top-map-img::before {
        background-size: auto;
    }

    .subscribe-content .subscribe-video-container {
        flex: 4;
    }

    .subscribe-content .subscribe-form-container {
        flex: 5;
    }

    .form-row {
        flex-wrap: wrap;
    }

    .movies .movies-box .movies-box-image {
        height: 320px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((320px / 2) + (32px / 2));
    }

    .form-step-text {
        margin-right: 15px;
    }

    .form-step-number {
        width: 45px;
        height: 45px;
    }

    .form-step .form-step-arrow {
        width: 40px;
    }

    section.section.movie-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    section.section.movie-section:first-child {
        padding-top: 60px;
    }

    section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-thumbnail:not(.movie-featured-thumbnail-video) {
        margin-left: 30px;
    }

    section.section.movie-section:nth-child(even) .movie-featured .movie-featured-thumbnail:not(.movie-featured-thumbnail-video) {
        margin-right: 30px;
    }

    .movie-featured-thumbnail>img {
        max-height: 440px;
    }

    .movies-page-view-list .movie-featured-thumbnail>img {
        max-height: 500px;
    }

    .movie-featured-details-tags-tag {
        padding: 4px 10px;
        font-size: 13px;
    }

    .movie-featured-details-desc {
        margin-bottom: 20px;
    }

    .movie-featured-details-supporter {
        margin-bottom: 30px;
    }

    section.section.movie-section .button {
        font-size: 13px;
        height: 40px;
    }

    .movies-page-view-cols {
        width: 90%;
    }

    .movies-page-view-cols~.pagination-wrapper .container {
        width: 90%;
    }

    main#about-us-content .container {
        width: 90%;
    }

    .jury-box .jury-box-right p {
        font-size: 14px;
    }

    .jury-box .jury-box-movie-title {
        min-width: 215px;
    }

    section.section.movie-section:nth-child(odd) .movie-featured-thumbnail.movie-featured-thumbnail-video {
        margin-left: -5%;
    }

    section.section.movie-section:nth-child(even) .movie-featured-thumbnail.movie-featured-thumbnail-video {
        margin-right: -5%;
    }

    .earlier-screening-item-thumbnail {
        min-width: 350px;
        max-width: 350px;
    }

    .earlier-screening-item-thumbnail-left {
        font-size: 14px;
    }

    .earlier-screening-item-thumbnail-left .earlier-screening-item-thumbnail-month {
        margin-bottom: 5px !important;
    }

    .earlier-screening-item-thumbnail-left .earlier-screening-item-thumbnail-day {
        margin-bottom: 10px !important;
    }

    .earlier-screening-top-date {
        margin-right: 10px;
    }

    .earlier-screening-item {
        margin-left: 50px;
    }

    .bidf-net-highlighted-slider-slide-thumbnail>img {
        min-height: 300px;
        max-height: 300px;
    }

    .bidf-net-highlighted-slider-bottom {
        width: 170px;
        height: 4px;
    }

    .back-to-top {
        right: 1%;
    }

    .galleries-top .bidf-live {
        padding: 20px 0;
    }

    main.gallery-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .gallery-content .grid-container .item {
        margin-bottom: 20px;
    }

    .gallery-content .grid-container .item:first-of-type,
    .gallery-content .grid-container .item:nth-of-type(2) {
        margin-bottom: 30px;
    }

    .program-timeline-content-talks {
        margin-left: -2px;
    }
}

@media only screen and (max-width: 1500px) {
    .section-filter-main-category:nth-child(2n + 1) {
        border-left: 0;
    }
}

@media only screen and (max-width: 1440px) {
    .container {
        max-width: 1280px;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 135px 35px 20px;
    }

    .award-winning-movies-slider-slide-thumbnail {
        flex: 1 0 50%;
    }

    .subscribe-content .subscribe-form-container {
        padding: 40px;
    }

    .bidf-net-section-content-right {
        width: calc(70% + 100px);
        margin-right: -100px;
    }

    .bidf-net-slider .bidf-net-slider-slide img {
        height: 200px;
    }

    .bidf-net-highlighted-slider-bottom {
        width: 128px;
        height: 3px;
    }

    .movies .movies-box .movies-box-image {
        height: 360px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((360px / 2) + (32px / 2));
    }

    .form-step {
        margin-right: 10px;
    }

    .form-step-text {
        margin-right: 10px;
    }

    .form-step .form-step-arrow {
        width: 30px;
    }

    section.section.movie-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    section.section.movie-section:first-child {
        padding-top: 60px;
    }

    section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-details {
        margin-left: 90px;
    }

    section.section.movie-section:nth-child(even) .movie-featured .movie-featured-details {
        margin-right: 90px;
    }

    .screenings-top-highlight-datepicker {
        width: 260px;
    }

    .filter-datepicker.datepicker-dark .ui-datepicker {
        width: 260px;
        height: 300px;
        box-shadow: 0px 4px 14px rgba(71, 71, 71, 0.2);
    }

    .filter-datepicker.datepicker-dark .ui-datepicker .ui-datepicker-header {
        margin-bottom: 0;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-next {
        left: calc((100% + 260px) * 0.66);
    }

    .filter-datepicker.datepicker-dark .ui-datepicker .ui-datepicker-header a.ui-corner-all {
        border: 0;
        width: auto;
    }

    .screenings-top-highlight-slider-slide {
        box-shadow: 0px 4px 14px rgba(71, 71, 71, 0.2);
    }

    .screenings-top-highlight-slider-slide.slick-slide {
        min-height: 300px;
        height: 100%;
    }

    .screenings-top-highlight-slider-arrows {
        width: calc(100% - 260px);
    }

    .screenings-top-highlight-slider-slide-movie-top {
        max-height: 100px;
    }

    .screenings-top-highlight-slider-slide-movie-top-left {
        font-size: 14px;
        min-width: 110px;
        max-width: 110px;
    }

    .screenings-top-highlight-slider-slide-movie-top-left-day {
        margin-top: 5px;
        font-size: 38px;
    }

    .screenings-top-highlight-slider-slide-movie-bottom-title {
        font-size: 18px;
        line-height: 1.3;
        min-height: 45px;
        margin-bottom: 10px;
    }

    .screenings-top-highlight-slider-slide-movie-bottom-items {
        flex-wrap: wrap;
        margin-bottom: -10px;
    }

    .screenings-top-highlight-slider-slide-movie-bottom-items-buttons {
        margin-bottom: 10px;
    }

    .award-winning-movies-title {
        margin-bottom: 20px;
    }

    .galleries-top .bidf-live {
        padding: 0;
    }

    .gallery-content .grid-container .item {
        margin-bottom: 10px;
    }

    .gallery-content .grid-container .item:first-of-type,
    .gallery-content .grid-container .item:nth-of-type(2) {
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 1366px) {
    #main-header .logo img {
        max-width: 190px;
    }

    #main-header .logo img.logo-dark {
        max-width: 170px;
    }

    #main-header .header-date-wrapper {
        height: 65px;
        width: 65px;
        margin-left: 15px;
    }

    #main-header .header-date-wrapper .header-date span {
        font-size: 13px !important;
    }

    #main-header .header-menu .header-menu-item {
        padding: 0 10px;
    }

    #main-header .header-menu .header-menu-item:not(.header-menu-icon) a,
    #main-header .header-menu .header-menu-item:not(.header-menu-icon) button {
        font-size: 14px;
    }

    .award-winning-movies-slider button.slick-arrow.slick-prev {
        left: -37px;
    }

    .award-winning-movies-slider button.slick-arrow.slick-next {
        right: -37px;
    }

    .award-winning-movies-slider-slide-thumbnail {
        margin-right: 50px;
    }

    .bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-left,
    .bidf-net-highlighted-slider-arrows {
        flex: 1;
        margin-right: 25px;
    }

    .bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-right,
    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        flex: 1;
        margin-left: 25px;
    }

    .bidf-net-highlighted-slider-slide-right-buttons .button {
        font-size: 13px;
        height: 40px;
        padding: 10px 20px;
    }

    .btn-original {
        padding: 10px 20px;
        height: 40px;
        font-size: 13px;
    }

    .movie-featured-thumbnail>img {
        max-height: 380px;
    }

    .movie-featured-details-tags {
        margin-bottom: 10px;
    }

    .movie-featured-details-tags-tag {
        padding: 2px 10px;
    }

    .movie-featured-details-info {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.5;
    }

    .movie-featured-details-desc {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .movie-featured-details-supporter {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .juries-wrapper {
        grid-template-columns: 1fr;
    }

    .movies-page-view-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .earlier-screening-item-thumbnail {
        min-width: 340px;
        max-width: 340px;
    }

    .earlier-screening-item-thumbnail-left {
        min-width: 110px;
        max-width: 130px;
    }

    .earlier-screening-item-location-title,
    .earlier-screening-item-guest-title {
        font-size: 16px;
    }

    .earlier-screening-item-location-name {
        font-size: 16px;
    }

    .earlier-screening-item-info-title {
        font-size: 16px;
    }

    .earlier-screening-item-thumbnail {
        margin-right: 20px;
    }

    .hero-right::before {
        width: calc(100% - 40px);
        right: 20px;
    }

    .press-downloads-top-item-movie-title,
    .press-downloads-list-item-movie-title {
        grid-column: 1 / 4;
    }

    .press-downloads-top-item-program,
    .press-downloads-list-item-program {
        grid-column: 4 / 6;
    }

    .press-downloads-top-item-category,
    .press-downloads-list-item-category {
        grid-column: 6 / 10;
    }

    .program-days ul li .program-days-day {
        padding: 10px;
        font-size: 13px;
    }

    main.page-container.program-container .container {
        width: 85%;
    }

    .program-days.program-days-fixed {
        top: 65px;
    }
}

@media only screen and (max-width: 1280px) {
    .form-step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .form-step-checked .form-step-number::before {
        font-size: 18px;
    }

    .form-step .form-step-arrow {
        width: 20px;
    }

    .movie-featured-details-title h2 {
        font-size: 22px;
    }

    section.section.movie-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-thumbnail:not(.movie-featured-thumbnail-video) {
        margin-left: 20px;
    }

    section.section.movie-section:nth-child(even) .movie-featured .movie-featured-thumbnail:not(.movie-featured-thumbnail-video) {
        margin-right: 20px;
    }

    .movies-page-view-list section.section.movie-section:nth-child(odd) .movie-featured-details {
        margin-left: 70px;
    }

    .movies-page-view-list section.section.movie-section:nth-child(even) .movie-featured-details {
        margin-right: 70px;
    }

    .list-page .movie-featured-thumbnail.movie-featured-thumbnail-video {
        flex: 1;
    }

    .movie-featured-categories-container {
        top: 20px;
    }

    .movie-featured-thumbnail .movie-featured-thumbnail-badge {
        width: 80px;
        top: 15px;
    }

    .movies-page-view-list .movie-featured-details {
        flex: 1;
    }

    .movie-featured-thumbnail {
        flex: 1;
    }

    .movie-featured-details {
        flex: 1;
    }

    .list-page:not(.movies-page-view-list) section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-details {
        margin-left: 55px;
    }

    .list-page:not(.movies-page-view-list) section.section.movie-section:nth-child(even) .movie-featured .movie-featured-details {
        margin-right: 55px;
    }

    .movie-featured-details-desc {
        margin-bottom: 10px;
    }

    .movie-featured-thumbnail>img {
        max-height: 360px;
    }

    .section-filter-main-category {
        border-left: 0;
    }

    .category-filter-main-category {
        flex: 1 0 100%;
    }

    .screenings-top-highlight-slider-wrapper {
        max-width: calc(100% - 260px);
    }

    .screenings-top-highlight-slider-arrows {
        width: 100%;
    }

    .movie-page-top-left-title h1 {
        font-size: 32px;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-next {
        left: auto;
        right: -30px;
    }
}

@media only screen and (min-width: 980px) and (max-width: 1280px) {
    .subscribe-form-container .form-fieldset .btn-original.subscribe-form-submit-button {
        margin-top: 10px;
    }

    .supporters .supporters-content {
        justify-content: space-around;
    }

    .subscribe-content .subscribe-video-container {
        flex: 1;
    }

    .subscribe-content .subscribe-form-container {
        flex: 1;
        padding: 20px;
    }

    .subscribe-content .subscribe-form-container form .form-row {
        flex-wrap: wrap;
    }

    .subscribe-content .subscribe-form-container form .form-row .form-col {
        margin-left: 10px;
        margin-right: 10px;
    }

    .reviews .reviews-slider .reviews-slider-slide-content {
        padding: 40px;
    }

    .reviews .reviews-slider-bottom .reviews-slider-arrows {
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
    }

    .voluntering .voluntering-content-text {
        flex: 1;
        padding: 40px 40px 40px 0;
    }

    .voluntering .voluntering-content-img {
        flex: 1;
    }

    .voluntering .voluntering-img .voluntering-img-empty-space {
        flex: 1;
        padding: 40px 40px 40px 0px;
    }

    .voluntering .voluntering-img .voluntering-img-helper {
        flex: 1;
    }
}

@media only screen and (max-width: 1180px) {

    #main-header .header-menu .header-menu-item:not(.header-menu-icon) a,
    #main-header .header-menu .header-menu-item:not(.header-menu-icon) button {
        font-size: 12px;
    }

    #main-header .header-menu .header-menu-item {
        padding: 0 8px;
    }

    .hero-left {
        flex: 2;
    }

    .hero-right {
        flex: 3;
    }

    .news-grid {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin-bottom: 0px;
    }

    .news-grid .news-col {
        flex: 1;
        width: auto;
        margin: 0;
        margin-right: 0px;
        margin-left: 0px;
        margin-top: 0px;
        margin-bottom: 20px;
    }

    .news-grid .news-col:nth-child(2n) {
        margin-right: 0px;
        margin-left: 0px;
    }

    .news-col {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .news-box .news-box-text {
        flex: 1;
    }

    .news-box .news-box-button {
        flex: 0 0 auto;
    }

    .news-box,
    .news-box.news-box-full {
        padding: 90px 30px 30px;
        justify-content: space-between;
    }

    .section.bidf-net::before {
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
    }

    .movies .movies-box .movies-box-image {
        height: 320px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((320px / 2) + (32px / 2));
    }

    #submission-content>.container {
        width: 90%;
    }

    .screenings-top-dropdown-wrapper {
        width: 90%;
    }

    .screenings-top-highlight>.container {
        width: 90%;
    }

    .screenings-container.container {
        width: 90%;
    }

    .bidf-net-highlighted-slider-slide-thumbnail>img {
        min-height: 280px;
        max-height: 280px;
    }

    .hero-right::before {
        display: none;
    }

    .hero-right::after {
        display: none;
    }

    .press-downloads-top-item {
        font-size: 14px;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container {
        width: auto;
    }

    .galleries-top .bidf-live .content-container {
        padding-left: 50px;
        width: 40%;
    }

    main.page-container.program-container .container {
        width: 90%;
    }

    .program-timeline {
        padding-left: 5px;
        padding-right: 5px;
        margin-left: -5px;
        margin-right: -5px;
    }

    .program-timeline-outside-lines {
        background-size: 10px 100%, 5px calc(100% - 125px);
        width: 10px;
    }

    .program-timeline-outside-left .program-timeline-outside-hours {
        padding-right: 5px;
    }

    .program-timeline-outside-right .program-timeline-outside-hours {
        padding-left: 5px;
    }

    .program-timeline-outside-hours-hour {
        font-size: 11px;
    }

    .program-timeline-outside-right {
        right: -40px;
    }

    .program-timeline-outside-left {
        left: -40px;
    }

    .program-timeline-outside {
        top: 95px;
    }

    .program-timeline-outside-right .program-timeline-outside-lines {
        background-position: 100% -94px, 0% 6px;
    }

    .program-timeline-outside-left .program-timeline-outside-lines {
        background-position: 100% -94px, 100% 6px;
    }
}

@media only screen and (max-width: 1100px) {
    .movies .movies-box .movies-box-image {
        height: 280px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((280px / 2) + (32px / 2));
    }

    .screenings-top-highlight-slider-slide-movie-top {
        max-height: 90px;
    }

    .screenings-top-highlight-slider-slide-movie-top-left {
        font-size: 13px;
        min-width: 100px;
        max-width: 100px;
    }

    .screenings-top-highlight-slider-slide-movie-top-right img {
        object-position: bottom center;
    }

    .screenings-top-highlight-slider-slide-movie-top-left-day {
        margin-top: 0;
        font-size: 32px;
        margin-bottom: 3px;
    }

    .earlier-screening-item-thumbnail {
        min-width: 320px;
        max-width: 320px;
        max-height: 100%;
    }

    .press-downloads-list-item.press-downloads-list-item-category span {
        font-size: 12px;
        font-weight: 600;
    }

    .movie-page-top-left-title h1 {
        font-size: 28px;
    }

    .movie-page-content-title h4 {
        font-size: 18px;
    }

    .movie-page-content-subtitle h6 {
        font-size: 15px;
    }

    .movie-page-top-left-screenings-top-title {
        font-size: 16px;
    }

    .movie-page-top-left-screenings-top-arrows button.slick-arrow {
        height: 30px;
        width: 30px;
        padding: 3px;
    }

    .movie-page-top-left-screenings-slider-slide-info a.button,
    .movie-page-top-left-screenings-slider-slide-info .btn-original {
        padding: 5px 15px;
        height: 30px;
        font-size: 13px;
    }

    .movie-page-top-left-screenings-slider-slide-info .btn-original {
        min-width: 90px;
    }

    .movie-page-content-category {
        padding: 4px 10px;
        font-size: 13px;
    }

    .movie-page-content-director.row .col:first-child {
        width: 50%;
    }

    .movie-page-content-director.row .col:last-child {
        width: 50%;
    }
}

@media only screen and (min-width: 980px) and (max-width: 1100px) {
    .movie-page-content-download-button a.button {
        font-size: 13px;
    }

    .movie-page-content-download-button a.button img {
        max-height: 14px;
        margin-right: 8px;
    }
}

@media only screen and (min-width: 980px) {
    #main-header .header-mobile-menu {
        display: none;
    }

    #main-header .logo .logo-light {
        top: -3px;
        left: -3px;
    }

    .supporters .supporters-content-mobile {
        display: none;
    }

    .supporters .supporters-content-desktop {
        display: flex;
    }
}

@media only screen and (max-width: 980px) {
    .program-sidebar-event.program-sidebar-event-secondary #movie-meta>span {
        font-size: 18px;
    }

    #movie-info {
        display: grid;
        grid-template-areas: "screening-list-video screening-list-close"
            "screening-list-video screening-list-event-container"
            "screening-list-video screening-list-content";
        grid-template-columns: 1fr 1fr;
        width: calc(100vw) !important;
        max-width: unset;
        transition: all 0.3s 0s ease-in-out;
    }

    main.program-container {
        display: block;
    }

    .program-sidebar-video {
        height: unset;
        display: flex;
        align-items: flex-start;
    }

    #movie-info .program-sidebar-video iframe {
        height: auto;
    }

    .program-sidebar-close-button {
        display: block;
        position: absolute;
        right: 15px;
        top: 8px;
        width: 15px;
        height: 15px;
    }

    #placeholder-sidebar {
        display: none;
    }

    section.section.award-winning-movies {
        overflow-x: hidden;
    }

    #main-header .logo .logo-light {
        visibility: visible !important;
        opacity: 1 !important;
    }

    #main-header .logo .logo-dark {
        visibility: hidden !important;
        opacity: 0 !important;
    }

    .hero-left {
        display: none;
    }

    .hero-right {
        /*background: var(--home-hero-img-mobile-selected-lang),
            linear-gradient(180deg, var(--home-hero-gradient-1) 0%,
                var(--home-hero-gradient-2) 25%,
                var(--home-hero-gradient-3) 50%,
                var(--home-hero-gradient-4) 100%);*/
        /*background-attachment: fixed;
        background-position: top center;*/
        padding-top: 100vh;
        /*background-size: cover;*/

        background: var(--home-hero-img-mobile-selected-lang) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    .supporters .supporters-content {
        justify-content: space-around;
    }

    #main-header {
        background: var(--home-header-bg);
    }

    #main-header .header-menu-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        overflow-y: auto;
        max-height: 85vh;
        padding-bottom: 30px;
    }

    #main-header .header-left {
        border-bottom-color: var(--home-header-border-and-text-color) !important;
        border-right: none !important;
        background: transparent !important;
    }

    #main-header .header-menu {
        flex-direction: column;
        position: relative;
        flex-wrap: wrap;
        padding: 15px 5px;
        border-top: 3px solid var(--secondary_neutral_color);
        background-color: #fff;
        width: auto;
        margin: 0 60px;
        box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
    }

    #main-header .header-mobile-menu {
        display: flex;
    }

    .header-mobile-facebook a i {
        font-size: 14px;
        height: 28px;
        width: 28px;
    }

    #main-header .header-date-wrapper {
        height: 60px;
        width: 60px;
    }

    #main-header .header-date-wrapper .header-date span {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .mobile-blur-placeholder {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
    }

    .mobile-menu-active .mobile-blur-placeholder {
        transition: all .3s ease-in-out;
    }

    .mobile-menu-active .mobile-blur-placeholder {
        backdrop-filter: blur(10px);
        background: var(--home-header-bg);
    }

    #main-header .header-menu .header-menu-item a,
    #main-header .header-menu .header-menu-item button {
        display: block;
        color: var(--secondary_neutral_color) !important;
        font-size: 13px !important;
        border-bottom: 0 !important;
        bottom: auto !important;
        width: 100%;
        padding: 10px 15px;
    }

    #main-header .header-menu .header-menu-item a:hover {
        border-bottom: 0;
    }

    #main-header .header-menu .header-menu-item.header-menu-item-dropdown {
        flex-direction: column;
    }

    #main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown,
    #main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub {
        padding: 0 10px;
    }

    #main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown .header-menu-dropdown-item:hover,
    #main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item:hover {
        background-color: transparent !important;
    }

    #main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown .header-menu-dropdown-item a,
    #main-header .header-menu .header-menu-item.header-menu-item-dropdown .header-menu-dropdown .header-menu-dropdown-item button,
    #main-header .header-menu .header-menu-dropdown .header-menu-dropdown-item.header-menu-dropdown-item-sub .header-menu-dropdown-sub .header-menu-dropdown-sub-item a {
        padding: 10px 15px;
        display: block;
    }

    #main-header .header-menu .header-menu-item.header-menu-icon {
        display: none;
    }

    #main-header .header-menu .header-menu-item.header-menu-login {
        margin-top: 15px;
        border-top: 1px solid #c4c4c4;
        padding-top: 15px;
    }

    #main-header.header-light .header-menu .header-menu-item.header-menu-login a,
    #main-header .header-menu .header-menu-item.header-menu-login a {
        background-color: transparent !important;
        color: var(--secondary_neutral_color) !important;
        justify-content: flex-start;
    }

    #main-header.header-light .header-menu .header-menu-item.header-menu-login a:hover,
    #main-header .header-menu .header-menu-item.header-menu-login a:hover {
        background-color: transparent !important;
        color: var(--secondary_neutral_color) !important;
    }

    .hero {
        height: auto;
        flex-direction: column;
    }

    .hero-left {
        flex: 1;
        min-height: 100vh;
        width: 100%;
    }

    .hero-right {
        flex: 1;
        height: auto;
        min-height: auto;
        width: 100%;
        right: auto;
        overflow-y: hidden;
        overflow-x: hidden;
    }

    .news {
        padding-top: 0px;
        padding-bottom: 20px;
    }

    .news-header {
        padding-top: 20px;
    }

    .news-header>h2 {
        text-align: center;
    }

    .news .news-row {
        padding-right: 0;
    }

    .news-header, .news {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .news-header h2 {
        margin-bottom: 0px;
        padding-bottom: 31px;
        padding-top: 15px;
    }

    /* .hero-right::-webkit-scrollbar-track {
    margin-top: 40px;
    } */

    .hero .hero-left {
        background-position: center center;
        background-size: cover;
    }

    .hero .hero-left {
        background-position: center center;
        background-size: cover;
    }

    .award-winning-movies-slider {
        margin-left: -60px;
        margin-right: -60px;
    }

    .award-winning-movies-slider button.slick-arrow {
        background-color: transparent;
        top: auto;
        bottom: 40%;
        transform: translateY(50%);
    }

    .award-winning-movies-slider button.slick-arrow::before {
        color: #fff;
    }

    .award-winning-movies-slider button.slick-arrow.slick-prev {
        left: 40px;
    }

    .award-winning-movies-slider button.slick-arrow.slick-next {
        right: 40px;
    }

    .slick-initialized .award-winning-movies-slider-slide.slick-slide {
        margin-left: 60px;
        margin-right: 60px;
    }

    .award-winning-movies-title {
        margin-bottom: 30px;
    }

    .award-winning-movies-slider-slide-content {
        position: relative;
    }

    .award-winning-movies-slider-slide-left {
        flex-direction: column;
    }

    .award-winning-movies-slider-slide-left-text {
        margin-right: 0;
        padding: 20px 20px 620px 20px;
    }

    .award-winning-movies-slider-slide-thumbnail {
        flex: 1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%) scale(1.15);
        bottom: 135px;
        width: 100%;
    }

    .award-winning-movies-slider-slide-thumbnail img {
        min-height: 380px;
        max-height: 380px;
    }

    .subscribe-content {
        flex-direction: column;
        overflow: hidden;
        justify-content: center;
    }

    .subscribe-content .subscribe-video-container {
        flex: 1;
    }

    .subscribe-content .subscribe-video-container iframe {
        width: 980px;
        height: 545px;
    }

    .subscribe-content .subscribe-form-container {
        flex: 1;
        width: 100%;
    }

    .bidf-net-section-content {
        align-items: stretch;
        flex-direction: column;
    }

    .bidf-net-section-content h2 {
        margin-bottom: 15px;
    }

    .bidf-net-section-content-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .bidf-net-section-content-right {
        width: 100%;
        margin-right: auto;
        padding-left: 0;
        margin-top: 40px;
    }

    .section.bidf-net::before {
        top: 0;
        left: auto;
        right: 0;
        transform: rotateY(180deg);
    }

    .bidf-net-highlighted-slider-bottom {
        bottom: 40px;
    }

    .container {
        width: 90%;
    }

    .reviews .gallery-reviews-wrapper {
        flex-direction: column;
    }

    .gallery-slider-wrapper {
        width: 100%;
        order: 2;
    }

    .reviews .gallery-slider .gallery-slider-slide-img img {
        position: relative;
        top: auto;
        left: auto;
        max-height: 400px;
    }

    .reviews-slider-wrapper {
        width: 100%;
        order: 1;
    }

    .reviews .reviews-slider .reviews-slider-slide-content {
        padding: 40px;
    }

    .reviews .reviews-slider-bottom .reviews-slider-arrows {
        flex: 1;
        order: 1;
        padding-left: 40px;
        padding-right: 40px;
        padding-bottom: 40px;
        align-items: flex-end;
    }

    .reviews .reviews-slider-arrows .reviews-slider-page-info {
        margin: 2px 20px 2px 0;
        height: 40px;
        display: flex;
        align-items: center;
    }

    .voluntering .voluntering-content {
        flex-direction: column;
    }

    .voluntering .voluntering-content-text {
        flex: 1;
        padding: 40px 0;
    }

    .voluntering .voluntering-content-img {
        flex: 0;
    }

    .voluntering .voluntering-img {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: column;
    }

    .voluntering .voluntering-img .voluntering-img-empty-space {
        display: none;
        flex: 0;
        padding: 0;
    }

    .voluntering .voluntering-img .voluntering-img-helper {
        flex: 1;
    }

    .voluntering .voluntering-img .voluntering-img-helper img {
        position: relative;
        top: auto;
        right: auto;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
    }

    .footer-top-left,
    .footer-bottom-left {
        margin-bottom: 20px;
    }

    .supporters .supporters-content-mobile {
        display: flex;
    }

    .supporters .supporters-content-desktop {
        display: none;
    }

    .movies .movies-box .movies-box-image {
        height: 400px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((400px / 2) + (32px / 2));
    }

    .form-title {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .form-title h1 {
        font-size: 26px;
    }

    .form-steps {
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .form-step {
        margin-bottom: 20px;
    }

    .form-buttons {
        flex-wrap: wrap;
        margin-bottom: -20px;
    }

    .form-buttons .button {
        margin-bottom: 20px;
    }

    .form-buttons .button:last-child {
        margin-left: 0;
    }

    .page-title h1 {
        font-size: 21px;
    }

    .top-line-button img {
        width: 30px;
    }

    .top-line-button span,
    .top-line-button button {
        font-size: 14px;
    }

    .alert i {
        min-width: 25px;
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .alert span {
        font-size: 13px;
    }

    .row {
        flex-direction: column;
    }

    .col {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .col:last-child {
        margin-bottom: 0;
    }

    .popup {
        width: 90%;
    }

    .popup .popup-top .popup-top-title h2 {
        font-size: 20px;
    }

    .bidf-net-highlighted-slider-slide-content {
        flex-direction: column;
    }

    .bidf-net-highlighted-slider .slick-list {
        padding: 40px 0;
    }

    .bidf-net-highlighted-slider-arrows-wrapper {
        flex-direction: column;
        align-items: stretch;
        left: 0;
        top: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        transform: none;
        height: 100%;
    }

    .bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-left {
        margin-bottom: 40px;
    }

    .bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-right,
    .bidf-net-highlighted-slider .bidf-net-highlighted-slider-slide-left,
    .bidf-net-highlighted-slider-arrows,
    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-left: 0;
        margin-right: 0;
    }

    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-bottom: 0;
    }

    .bidf-net-highlighted-slider-slide {
        margin-left: 0px;
        margin-right: 0px;
    }

    .bidf-net-highlighted-slider-slide-thumbnail>img {
        max-width: 700px;
        min-height: 280px;
        max-height: 366px;
    }

    .bidf-net-highlighted-slider-arrows {
        min-height: 280px;
        max-height: 366px;
        width: 100%;
        margin: 0 auto;
    }

    .bidf-net-highlighted button.slick-arrow.slick-prev {
        left: 0;
    }

    .bidf-net-highlighted button.slick-arrow.slick-next {
        right: 0;
    }

    .movie-featured {
        flex-direction: column;
    }

    .movie-featured-thumbnail {
        margin-left: 0 !important;
        margin-right: 0 !important;
        order: 1 !important;
    }

    .list-page .movie-featured-thumbnail.movie-featured-thumbnail-video {
        width: 100%;
        transform: scale(1);
    }

    .list-page .movie-featured-thumbnail.movie-featured-thumbnail-video .movie-featured-video {
        width: 100%;
    }

    .movie-featured-details {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 60px 30px 30px !important;
        order: 2 !important;
    }

    .movie-featured-details-tags-tag {
        background-color: rgba(0, 0, 0, 0.25);
    }

    .bidf-net-top {
        padding-top: 130px;
    }

    .pagination {
        justify-content: center;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .img-flex-right {
        justify-content: center;
    }

    .contact-section-content {
        flex-direction: column;
    }

    .contact-section-content .contact-section-form-container {
        flex: 1;
        padding: 20px;
    }

    .contact-section-content .contact-section-img-container {
        flex: 1;
    }

    .contact-section-content .contact-section-img-container img {
        width: 100%;
        object-position: center bottom;
        max-height: 400px;
    }

    .section.bidf-net {
        padding-bottom: 0;
    }

    .section.bidf-net>.container {
        width: 100%;
    }

    .bidf-net-section-content-left {
        width: 90%;
        margin: auto;
    }

    .bidf-net-slider .slick-list {
        padding: 0 !important;
    }

    .bidf-net-slider-slide.slick-current.slick-active.slick-center .bidf-net-slider-slide-img {
        transform: scale(1);
    }

    .bidf-net-slider .bidf-net-slider-slide img {
        height: 400px;
    }

    .bidf-net-slider-slide:not(.slick-active) {
        opacity: 1;
        visibility: visible;
    }

    .movies-page-view-cols .movie-featured-details-buttons {
        flex-wrap: wrap;
        margin-left: -10px;
        margin-right: -10px;
    }

    .movies-page-view-cols .movie-featured-details-buttons a.button {
        margin: 10px;
    }

    .filters {
        height: auto;
    }

    .filter-list.filter-list-light .filters .filter:not(:last-child) {
        border-bottom: 3px solid #fff;
    }

    .filter-list.filter-list-light .filters .filter-by-category,
    .filter-list.filter-list-light .filters .filter-by-location,
    .filter-list.filter-list-light .filters .filter-by-section {
        border-left: 0;
        border-right: 0;
    }

    .filter-by-category,
    .filter-by-location,
    .filter-by-section {
        border-left: 0;
        border-right: 0;
    }

    .filter-by-search {
        max-width: 100%;
    }

    .alphabetical-filter-container,
    .section-filter-container,
    .category-filter-container,
    .year-filter-container,
    .filter-by-search {
        width: 100%;
    }

    .screenings-top-dropdown-wrapper {
        top: 25vh;
        margin-top: 0;
        z-index: 99;
        display: flex;
        justify-content: flex-start;
        pointer-events: none;
    }

    .screenings-top-dropdown {
        pointer-events: all;
        margin-top: 230px;
    }

    .screenings-top-map-img img {
        height: 50vh;
    }

    .screenings-top-highlight {
        transform: translateY(-25vh);
        padding: 0;
    }

    .screenings-top-highlight-datepicker {
        align-self: flex-end;
    }

    .filter-datepicker.datepicker-dark .ui-datepicker {
        height: 280px;
        padding: 0px 20px 0px;
    }

    .screenings-top-highlight-wrapper {
        align-items: stretch;
        flex-direction: column;
    }

    .screenings-top-highlight-slider {
        padding-left: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .screenings-top-highlight-slider .slick-list {
        padding: 20px 0;
    }

    .screenings-top-highlight-slider-wrapper {
        max-width: 100%;
        margin-top: 10px;
    }

    .screenings-container {
        margin-top: -230px;
    }

    .earlier-screening-item {
        flex-direction: column;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-prev {
        left: -25px;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-next {
        left: auto;
        right: -25px;
    }

    .earlier-screening-item-thumbnail {
        max-height: 240px;
        max-width: 100%;
        min-width: 100%;
        margin: 0 0 30px;
        overflow: hidden;
        align-items: stretch;
    }

    .earlier-screening-item-border {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: 0;
        border-bottom: 1px solid var(--secondary_neutral_color);
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .earlier-screening-item-border:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .screenings-top-highlight-slider-slide-movie-top-right img {
        object-position: center;
    }

    .back-to-top {
        right: 0;
    }

    .press-downloads-top {
        padding-left: 20px;
        padding-right: 20px;
    }

    .press-downloads-list-items {
        padding: 15px 20px;
    }

    .press-downloads-title {
        padding-left: 20px;
        padding-right: 20px;
    }

    .press-downloads-list-item {
        font-size: 13px;
    }

    .press-downloads-list-item-download-button {
        width: 30px;
        height: 30px;
    }

    .press-downloads-list-item-download-button img {
        max-width: 18px;
    }

    .bidf-page-title h1 {
        font-size: 30px;
    }

    .movie-page-content-left {
        width: 60%;
        padding-right: 20px;
    }

    .movie-page-content-sidebar {
        width: 40%;
    }

    .movie-page-content-director.row .col {
        width: 100% !important;
    }

    .movie-page-content-director.row img {
        max-width: 300px;
        width: 100%;
    }

    .movie-page-top-left-screenings-slider-slide-info span {
        font-size: 13px;
    }

    .movie-page-top-left-content {
        min-height: auto;
    }

    .galleries-top .bidf-live {
        padding: 40px 0;
    }

    .galleries-top .bidf-live .video-container {
        width: auto;
    }

    .galleries-top .bidf-live .content-container {
        padding-left: 50px;
        width: 40%;
    }

    .program-timeline {
        height: auto;
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
        border-left: 3px solid var(--secondary_neutral_color);
        border-right: 3px solid var(--secondary_neutral_color);
    }

    .program-timeline-outside {
        display: none;
    }

    .program-timeline-content {
        flex-direction: column;
        background-image: none;
        height: auto;
        width: max-content;
        border-left: 0;
        border-right: 0;
    }

    .program-days-mobile.slick-slider {
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 3px solid var(--secondary_neutral_color);
        border-bottom: 3px solid var(--secondary_neutral_color);
    }

    .program-days {
        display: none;
    }

    .program-timeline-content-top {
        height: auto;
        padding: 20px 10px;
    }

    .program-timeline-content-items {
        display: flex;
        align-items: stretch;
        margin: 1px 0;
        padding-bottom: 10px;
    }

    .program-timeline-content-items-item-wrapper {
        position: relative;
        top: auto !important;
        padding: 0;
        margin: 3px;
        height: 180px !important;
        min-width: 300px !important;
        width: 300px !important;
    }

    .program-timeline-content-top {
        margin-right: 0;
        align-items: flex-start;
    }

    .program-timeline-content-top-title,
    .program-timeline-content-top-text {
        text-align: left;
    }

    .program-timeline-content-talks {
        margin-left: 0;
        border: 0;
        flex: 0 0 auto;
    }

    .program-timeline-content-movies {
        flex: 0 0 auto;
    }

    .program-timeline-content-talks .program-timeline-content-items-item {
        flex-direction: column;
    }

    .program-timeline-content-items-item-title {
        margin-top: 10px;
    }

    .program-timeline-content-talks .program-timeline-content-items-item {
        padding: 15px 20px 15px 30px;
    }

    .program-timeline-content-talks .program-timeline-content-items-item.program-timeline-content-items-item-highlighted {
        align-items: flex-start;
    }

    #main-header .header-menu-wrapper, #main-header .menu-support-us-section {
        display: none;
    }

    #main-header .header-left {
        border-right: none;
        background: transparent;
    }

    #main-header .header-right {
        display: flex;
        height: 72px;
        border-bottom: 2px solid var(--home-header-border-and-text-color);
    }

    #main-header .header-mobile-menu {
        height: 100%;
        justify-content: flex-end;
        column-gap: 16px;
    }

    .mobile-menu-items-overlay.active {
        opacity: 1;
        backdrop-filter: blur(10px);
        background: var(--home-header-bg);
        pointer-events: all;
    }

    .mobile-menu-support-us .header-menu-dropdown {
        background: var(--home-header-bg);
    }

    .program-sidebar-event-meta>span {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 900px) {
    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 580px 20px;
    }

    .bidf-net-highlighted-slider-slide-thumbnail>img {
        max-width: 630px;
        min-height: 330px;
        max-height: 330px;
    }

    .bidf-net-highlighted-slider-arrows {
        min-height: 330px;
        max-height: 330px;
        width: 100%;
        margin: 0 auto;
    }

    .bidf-net-highlighted-slider-bottom {
        bottom: auto;
        top: calc(330px + 40px - 3px);
        width: 100%;
        max-width: 630px;
        margin: 0 calc((100% - 630px) / 2);
    }
}

@media only screen and (max-width: 800px) {
    .program-sidebar-event.program-sidebar-event-secondary #movie-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .program-sidebar-event.program-sidebar-event-secondary #movie-meta>span {
        border: none !important;
    }

    .form-row {
        flex-direction: column;
    }

    .form-row .form-col {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

    .form-row .form-col:last-child {
        margin-bottom: 0;
    }

    .subscribe-content .subscribe-video-container iframe {
        width: 800px;
        height: 445px;
    }

    .movies .movies-box .movies-box-image {
        height: 360px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((360px / 2) + (32px / 2));
    }

    .earlier-screening-item-thumbnail {
        max-height: 200px;
    }

    .movie-page-top>.container {
        flex-direction: column;
    }

    .movie-page-top-left {
        width: 100%;
        padding-top: 100px;
        margin-bottom: 30px;
    }

    .movie-page-top-right {
        width: 100%;
    }

    .movie-page-top-right .movie-featured-video {
        position: relative;
        width: 100%;
        max-width: 100%;
        padding-bottom: 56.25%;
    }

    .movie-page-top-left-screenings-top {
        padding-right: 0;
    }

    .movie-page-top-left-screenings-slider .slick-list {
        margin-left: -20px;
        margin-right: -20px;
    }

    .movie-page-top-left-screenings-slider-slide {
        padding-left: 20px;
        padding-right: 20px;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 530px 20px;
    }
}

@media only screen and (max-width: 768px) {
    .footer-top-right {
        flex-direction: column;
    }

    .footer-top-menu {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .footer-top-menu-item {
        white-space: nowrap;
    }

    .footer-top-menu-item:last-child {
        margin-right: 0;
    }

    .copyright {
        line-height: 1.2;
        text-align: center;
    }

    .reviews .reviews-slider .reviews-slider-slide-content {}

    .reviews .reviews-slider .reviews-slider-slide-content .button {
        white-space: nowrap;
    }

    button.button,
    a.button {
        font-size: 14px;
    }

    .bidf-page-title h1 {
        font-size: 26px;
    }

    .press-top-box-title {
        font-size: 18px;
    }

    .button.button-icon img,
    .button.button-icon img {
        max-height: 16px;
        margin-right: 12px;
    }

    .button.button-icon i,
    .btn-original.button-icon i {
        font-size: 16px;
        margin-right: 12px;
    }

    .press-top-button .button {
        padding: 10px 15px;
    }

    .press-container .press-downloads-top {
        display: none;
    }

    .press-downloads-list-items-wrapper {
        display: grid;
        grid-template-columns: 2fr 4fr;
    }

    .press-container .press-downloads-list-items-wrapper>.press-downloads-top {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
        margin-bottom: 0;
        padding: 15px 20px;
    }

    .press-downloads-list-items {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .press-downloads-list-item {
        font-size: 14px;
    }

    .press-downloads-list-item.press-downloads-list-item-download {
        justify-content: flex-start;
    }

    .press-downloads-list-item,
    .press-downloads-top-item {
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .press-downloads-list-item:first-child,
    .press-downloads-top-item:first-child {
        padding-top: 0;
    }

    .press-downloads-list-item:last-child,
    .press-downloads-top-item:last-child {
        padding-bottom: 0;
    }

    .press-downloads-top-item {
        display: flex;
        align-items: center;
    }

    .press-downloads-top-item.press-downloads-top-item-download {
        text-align: left;
    }

    .press-downloads-top-item-movie-title,
    .press-downloads-list-item-movie-title {
        grid-column: 1;
    }

    .press-downloads-top-item-program,
    .press-downloads-list-item-program {
        grid-column: 1;
    }

    .press-downloads-top-item-category,
    .press-downloads-list-item-category {
        grid-column: 1;
    }

    .press-downloads-top-item-download,
    .press-downloads-list-item-download {
        grid-column: 1;
    }

    .press-downloads-list-items-wrapper:nth-child(odd) .press-downloads-top {
        background-color: var(--press-every-other-row-bg-color);
    }

    .press-downloads-list-item,
    .press-downloads-top-item {
        padding-left: 0;
        padding-right: 0;
    }

    .movie-page-content {
        flex-direction: column;
    }

    .movie-page-content-left {
        width: 100%;
        padding-right: 0;
    }

    .movie-page-content-sidebar {
        width: 100%;
    }

    .award-winning-movies-slider button.slick-arrow {
        bottom: 41%;
    }

    .cookie-consent {
        flex-wrap: wrap;
    }

    .cookie-consent .cookie-consent__message {
        white-space: normal;
        text-align: center;
    }

    /* Gallery page */
    .galleries-top .bidf-live {
        flex-direction: column;
    }

    .galleries-top .bidf-live .content-container {
        padding-left: 0;
        padding-top: 20px;
        width: auto;
    }

    .gallery-content .grid-container .item:first-of-type,
    .gallery-content .grid-container .item:nth-of-type(2) {
        grid-column: span 6;
    }

    .gallery-content .grid-container .item {
        grid-column: span 3;
    }

    .gallery-item .gallery-description {
        margin: 15px 0px;
    }

    .gallery-item .gallery-description .subtitle-inline-divider {
        display: none;
    }

    .gallery-subtitle-place {
        display: block;
    }
}

@media only screen and (max-width: 700px) {
    .subscribe-content .subscribe-video-container iframe {
        width: 700px;
        height: 385px;
    }

    .mobile-menu-items-overlay {
        grid-template-rows: 1fr 105px;
    }

    .mobile-menu-items-overlay .mobile-menu-items-bottom {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .news-box,
    .news-box.news-box-full {
        flex-direction: column;
        align-items: flex-start;
    }

    .supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-prev {
        left: -20px;
    }

    .supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-next {
        right: -20px;
    }

    .movies .movies-box .movies-box-image {
        height: 300px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((300px / 2) + (32px / 2));
    }

    .movie-featured-thumbnail>img {
        max-height: 300px;
    }

    .movies-page-view-cols {
        grid-template-columns: 1fr;
    }

    .earlier-screening-item-thumbnail {
        max-height: 160px;
    }

    .screenings-top-dropdown-wrapper {
        top: 35vh;
        margin-top: 20px;
    }

    .screenings-top-dropdown {
        margin-top: 0;
        width: 100%;
    }

    .screenings-top-dropdown-text {
        flex: 1;
    }

    .screenings-top-highlight {
        transform: translateY(-5vh);
    }

    .screenings-top-highlight-datepicker {
        align-self: center;
    }

    .screenings-container {
        margin-top: -20px;
    }

    .screenings-top-highlight-slider-slide-movie-top {
        max-height: 140px;
    }

    .press-top {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .press-top-left {
        flex: 1;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .press-top-right {
        flex: 1;
    }

    .press-top-box {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 480px 20px;
    }

    .bidf-net-highlighted-slider-bottom {
        bottom: auto;
        top: calc(330px + 40px - 3px);
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 600px) {
    .jury-box .jury-box-movie-title {
        right: 0;
        width: 100%;
    }

    .owl-buttons {
        display: none;
    }

    .news-row-image-column {
        grid-area: a;
        align-items: center;
        display: flex;
    }

    .news-row-info-column {
        grid-area: b;
    }

    .news-row-button-column {
        grid-area: c;
    }

    .news>.news-row {
        grid-template-areas: "a b""c c";
        grid-template-columns: 46px 1fr;
        row-gap: 10px;
        padding: 12px;
    }

    .news>.news-row.new-2-col {
        grid-template-areas: "a b";
    }

    .news>.news-row .news-forward-link>a {
        padding: 1px 16px;
    }

    .news-icon-container>img {
        width: 46px;
        height: auto;
        padding: 6px;
    }

    .news>.news-row>div>h2 {
        font-size: 20px;
    }

    .news-label {
        font-size: 10px;
        margin-bottom: 0px;
    }

    .news .news-row-info-column h6 {
        font-size: 13px;
    }

    .news>.news-row .news-forward-link>a {
        font-size: 12px;
    }

    .subscribe-content .subscribe-video-container iframe {
        width: 600px;
        height: 330px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    h5 {
        font-size: 16px;
    }

    h6 {
        font-size: 14px;
    }

    .reviews .gallery-slider .gallery-slider-slide-img img {
        min-height: 300px;
        max-height: 300px;
    }

    .reviews .reviews-slider-bottom .reviews-slider-arrows {}

    .reviews .reviews-slider .reviews-slider-slide-content {
        padding: 40px;
    }

    button.button,
    a.button {
        padding: 10px 25px;
        height: 40px;
        font-size: 13px;
    }

    .button.button-circle {
        width: 40px;
    }

    .form-select,
    .form-input input {
        height: 40px;
    }

    .movies .movies-box>a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .movies .movies-box .movies-box-image {
        height: 300px;
        max-width: 200px;
    }

    .movies.slick-slider .slick-arrow {
        top: calc((300px / 2) + (32px / 2));
    }

    .form-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-steps .form-step-arrow {
        display: none;
    }

    .top-line .row .col {
        justify-content: center !important;
    }

    .form-subtitle h4 {
        font-size: 18px;
    }

    #profile-content .form-container {
        padding: 40px;
    }

    .movies.slick-slider .slick-arrow.slick-prev {
        left: 0;
    }

    .movies.slick-slider .slick-arrow.slick-next {
        right: 0;
    }

    .award-winning-movies-slider button.slick-arrow {
        bottom: 40%;
    }

    .award-winning-movies-slider-slide-thumbnail img {
        min-height: 300px;
        max-height: 300px;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 420px 20px;
    }

    .award-winning-movies-slider-slide-thumbnail {
        bottom: 120px;
    }

    main {
        padding-top: 130px;
        padding-bottom: 100px;
    }

    .popup .popup-top {
        padding: 20px;
    }

    .popup .popup-top .popup-top-title {
        margin-right: 15px;
    }

    .popup .popup-content {
        padding: 20px;
    }

    .popup .popup-content-row {
        flex-direction: column;
    }

    .popup .popup-content-row .popup-content-col {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .popup .popup-content-row .popup-content-col:last-child {
        margin-bottom: 0;
    }

    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-bottom: 0;
    }

    .movie-featured-thumbnail>img {
        max-height: 250px;
    }

    .bidf-net-highlighted button.slick-arrow.slick-prev {
        left: -10px;
    }

    .bidf-net-highlighted button.slick-arrow.slick-next {
        right: -10px;
    }

    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-bottom: 30px;
    }

    .jury-box {
        flex-direction: column;
        max-width: 100%;
    }

    .jury-box .jury-box-img {
        transform: scale(1);
    }

    .jury-box .jury-box-img::before {
        width: 100%;
    }

    .jury-box .jury-box-img img {
        max-width: 100%;
        width: 100%;
        min-height: 200px;
        max-height: 500px;
    }

    section.section.movie-section:nth-child(odd) .movie-featured .movie-featured-categories-container {
        left: -5px;
    }

    section.section.movie-section:nth-child(even) .movie-featured .movie-featured-categories-container {
        right: -5px;
    }

    .movie-featured-categories-container {
        top: 20px;
    }

    .movie-featured-category {
        font-size: 10px;
    }

    .movie-featured-thumbnail .movie-featured-thumbnail-badge {
        width: 80px;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow {
        width: 30px;
        height: 30px;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-prev {
        left: -16px;
    }

    .screenings-top-highlight-slider-arrows button.slick-arrow.slick-next {
        left: auto;
        right: -16px;
    }

    .earlier-screening-top-date {
        font-size: 13px;
        min-width: 35px;
        max-width: 35px;
    }

    .earlier-screening-item {
        margin-left: 45px;
    }

    .earlier-screening-item-thumbnail {
        max-height: 140px;
    }

    .screenings-container {
        padding: 20px;
    }

    .screenings-top-highlight-slider-slide {
        max-height: initial;
    }

    .cookie-consent {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }

    .gallery-content .grid-container .item {
        grid-column: span 6;
    }
}

@media only screen and (max-width: 560px) {
    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 400px 20px;
    }
}

@media only screen and (max-width: 510px) {
    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 380px 20px;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container iframe {
        max-height: 335px;
    }
}

@media only screen and (max-width: 480px) {
    #main-header .header-menu {
        margin: auto;
        width: 90%;
    }

    #main-header .header-date-wrapper {
        height: 50px;
        width: 50px;
    }

    #main-header .header-date-wrapper .header-date span {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    #main-header .header-date-wrapper .header-date .header-date-year {
        letter-spacing: 4px;
        text-indent: 4px;
    }

    #main-header .header-date-wrapper .header-date .header-date-month-day {
        letter-spacing: 0.5px;
        text-indent: 0px;
    }

    .header-mobile-facebook a i {
        font-size: 12px;
        height: 26px;
        width: 26px;
    }

    .header-mobile-menu-icon.header-mobile-menu-icon-active span {
        width: 25px;
    }

    .header-mobile-menu-icon.header-mobile-menu-icon-active span:first-child {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .header-mobile-menu-icon.header-mobile-menu-icon-active span:last-child {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .subscribe-content .subscribe-video-container iframe {
        width: 480px;
        height: 264px;
    }

    .subscribe-content .subscribe-form-container {
        padding: 20px;
    }

    .reviews-slider-wrapper {
        max-height: 100%;
    }

    .reviews .reviews-slider .reviews-slider-slide-content {
        padding: 30px 20px;
    }

    .reviews .reviews-slider .reviews-slider-slide-content .button {
        position: relative;
        bottom: auto;
        width: auto;
        margin: 30px auto 0;
    }

    .reviews .reviews-slider-bottom {
        height: auto;
        position: relative;
    }

    .reviews .reviews-slider-bottom .reviews-slider-arrows {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 30px;
        justify-content: space-between;
    }

    .reviews .reviews-slider-arrows .slick-arrow.slick-prev {
        order: 1;
    }

    .reviews .reviews-slider-arrows .reviews-slider-page-info {
        order: 2;
        margin-right: 0;
        text-indent: 8px;
    }

    .supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-prev {
        left: -12px;
    }

    .supporters .supporters-content.supporters-content-mobile .slick-arrow.slick-next {
        right: -12px;
    }

    .form-title h1 {
        font-size: 24px;
    }

    .form-file .jFiler .jFiler-input .jFiler-input-button {
        padding: 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .movie-featured-thumbnail>img {
        max-height: 200px;
    }

    .movie-featured-details {
        padding: 40px 30px 30px !important;
    }

    .movie-featured-details-buttons {
        flex-direction: column;
    }

    .movie-featured-details-buttons .button:first-child {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-bottom: 70px;
    }

    .bidf-net-highlighted-slider-arrows {
        min-height: 250px;
        max-height: 250px;
    }

    .bidf-net-highlighted-slider-slide-thumbnail>img {
        min-height: 250px;
        max-height: 250px;
    }

    .bidf-net-slider .bidf-net-slider-slide img {
        height: 320px;
    }

    .bidf-net-highlighted-slider-bottom {
        bottom: auto;
        top: calc(250px + 40px - 3px);
        width: 100%;
        margin: 0;
    }

    .jury-box .jury-box-img img {
        max-height: 420px;
    }

    .earlier-screening-item-thumbnail-left {
        font-size: 13px;
        min-width: 100px;
        max-width: 110px;
    }

    .earlier-screening-item-thumbnail-left .earlier-screening-item-thumbnail-month {
        margin-bottom: 0 !important;
    }

    .earlier-screening-item-thumbnail-day {
        font-size: 36px;
        margin-bottom: 0 !important;
    }

    .earlier-screening-item-thumbnail {
        max-height: 120px;
    }

    .back-to-top {
        width: 35px;
        height: 35px;
    }

    .press-container .press-downloads-list-items-wrapper>.press-downloads-top {
        padding-left: 15px;
        padding-right: 7px;
    }

    .press-downloads-list-items {
        padding-left: 7px;
        padding-right: 15px;
    }

    .press-downloads-top-item {
        font-size: 13px;
    }

    .press-downloads-list-item {
        font-size: 13px;
    }

    .press-downloads-title h4 {
        font-size: 16px;
    }

    .press-downloads-title {
        padding-left: 15px;
        padding-right: 15px;
    }

    .movie-page-top-left-subtitle {
        margin-bottom: 20px;
    }

    .movie-page-top-left {
        padding-top: 80px;
        margin-bottom: 20px;
    }

    .movie-page-content-container {
        padding: 30px 20px;
    }

    .movie-page-content-director.row img {
        max-width: 280px;
    }

    .award-winning-movies-slider button.slick-arrow {
        bottom: 34%;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 360px 20px;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container iframe {
        max-height: 316px;
    }
}

#movie-info .program-sidebar-close-button {
    grid-area: screening-list-close;
}

#movie-info .program-sidebar-video {
    grid-area: screening-list-video;
}

#movie-info #event-container {
    grid-area: screening-list-event-container;
}

#movie-info>.program-sidebar-event {
    grid-area: screening-list-content;
}

@media all and (max-width: 767px) {
    main.program-container .filter-list .filter-list-inner {
        margin-left: 40px;
    }

    .program-wrapper .program-inner {
        margin-left: 40px;
    }

    .program-room-numbers .program-room-number {
        width: 20px;
    }

    .program-filter .select2.select2-container .select2-selection {
        padding: 0 8px;
    }

    main.program-container .filter-list {
        height: 45px;
    }

    .filter-by-alphabetical-trigger, .filter-by-section-trigger, .filter-by-category-trigger, .filter-by-year-trigger, .filter-by-day-trigger, .filter-by-city-trigger, .filter-by-place-trigger, .filter-by-type-trigger, .filter-by-location-trigger {
        height: 39px;
    }

    .program-container .filters .filter {
        min-width: 170px;
    }

    .program-container .filters .filter .fa-chevron-down {
        right: 8px;
    }

    .program-wrapper .program-inner {
        width: calc(100% - 41px);
    }
}

@media all and (max-width: 553px) {
    #movie-info {
        display: block;
    }

    .program-hz-table-movies-items-item-inner {
        display: grid !important;
        grid-template-columns: 1fr 50px;
    }

    .program-hz-table-movies-items-item-label {
        width: 100%;
    }

    .filters {
        flex-direction: column;
    }

    .filters .filter:not(:last-child) {
        border-bottom: 1px solid var(--secondary_neutral_color);
    }

    #movie-info.program-sidebar.program-sidebar-active {
        right: 0;
        transition: all 0.3s 0s ease-in-out;
    }

    main.program-container .filter-list {
        height: auto;
    }

    .program-hz-table {
        height: calc(100vh - 250px);
    }

    .program-hz-table-movies-items,
    .program-hz-table-movies-items-item .program-hz-table-movies-items-item-inner {
        height: 55px;
    }

    .program-room-numbers .program-room-number {
        height: 60px;
    }

    .program-hz-table-movies-items {
        min-height: 60px;
    }

    .program-sidebar-video {
        margin-top: 31px;
    }

    .program-sidebar-event-buttons {
        display: block;
    }

    .program-sidebar-event-buttons .button {
        width: 100%;
    }

    .program-hz-table-movies-items-item-title-text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media all and (max-width: 470px) {

    #movie-other-screenings {
        margin-bottom: 45px;
    }

    #movie-page-screening-all-button {
        float: none !important;
        margin-top: 20px;
    }

    .movie-page-top-left-screenings {
        height: 264px;
    }
}

@media only screen and (max-width: 440px) {
    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 320px 20px;
    }

    .award-winning-movies-slider button.slick-arrow {
        bottom: 33%;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container iframe {
        max-height: 289px;
    }
}

@media only screen and (max-width: 400px) {
    .award-winning-movies-slider-slide-thumbnail img {
        min-height: 250px;
        max-height: 250px;
    }

    .award-winning-movies-slider-slide-content {
        padding: 0;
    }

    .award-winning-movies-slider-slide .award-winning-movies-title {
        margin-top: 30px;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 300px 20px;
    }

    .award-winning-movies-slider-slide-thumbnail {
        bottom: 117px;
    }

    .award-winning-movies-slider button.slick-arrow {
        bottom: 39%;
    }

    .award-winning-movies-slider button.slick-arrow.slick-prev {
        left: 50px;
    }

    .award-winning-movies-slider button.slick-arrow.slick-next {
        right: 50px;
    }

    .movie-featured-thumbnail>img {
        max-height: 185px;
    }

    .movie-featured-details {
        padding: 40px 15px 30px !important;
    }

    .bidf-net-highlighted-slider-arrows-wrapper .empty-space {
        margin-bottom: 180px;
    }

    .bidf-net-highlighted-slider-slide-right-buttons {
        flex-direction: column;
    }

    .bidf-net-highlighted-slider-slide-right-buttons .button:first-child {
        margin-bottom: 20px;
    }

    .bidf-net-highlighted-slider-slide-right-buttons .button:last-child {
        margin-left: 0;
    }

    .bidf-net-slider .bidf-net-slider-slide img {
        height: 280px;
    }

    .jury-box .jury-box-img img {
        max-height: 360px;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container iframe {
        max-height: 258px;
    }

    main.page-container.program-container .container {
        width: 95%;
    }
}

@media only screen and (max-width: 370px) {
    #main-header .logo img {
        max-width: 160px;
    }

    #main-header .logo img.logo-dark {
        max-width: 140px;
    }

    .form-buttons .button:last-child {
        padding-left: 10px;
        padding-right: 10px;
    }

    .form-file .jFiler .jFiler-input .jFiler-input-caption {
        font-size: 13px;
    }

    .pagination .pagination-item a,
    .pagination .pagination-item span {
        width: 26px;
    }

    .movie-page-top-left-title h1 {
        font-size: 24px;
    }

    .movie-page-top-left-subtitle h4 {
        font-size: 16px;
    }

    .movie-page-top-left-screenings-top-title {
        font-size: 15px;
    }

    .movie-page-content-sidebar {
        border: 0;
        padding: 0;
    }

    #main-header .header-date-wrapper {
        margin-left: 10px;
    }

    #main-header .header-mobile-menu .header-mobile-menu-icon {
        margin-left: 8px;
        margin-right: 8px;
    }

    .award-winning-movies-slider-slide-left-text {
        padding: 20px 20px 280px 20px;
    }

    /* Gallery page */
    .galleries-top .bidf-live .video-container iframe {
        max-height: 210px;
    }
}

@media all and (max-width: 1300px) {
    .section.supporters>.container.strategic-and-main-media-partners {
        display: block;
    }

    .supporters>.container.strategic-and-main-media-partners .supporters-content {
        justify-content: center;
        column-gap: 10px;
    }
}

/*

End of Responsivity

*/


/* 2026 design */

.movies-view-2.movies-view-dark {
    display: none;
}

.owl-page.active {
    background-color: var(--primary_brand_color);
}

.cookie-consent button.cookie-consent__agree {
    border-color: var(--primary_brand_color);
    color: var(--primary_brand_color);
}

@media all and (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

@media all and (max-width: 767px) {
    #home-news-list {
        display: block;
    }

    #home-news-list .news-row {
        border-right: #000 1px solid;
    }

    .header-mobile-menu-icon span {
        background-color: var(--secondary_neutral_color);
    }

    .mobile-menu-support-us>.header-menu-item>a.header-menu-profile {
        color: var(--secondary_neutral_color);
    }

    .mobile-menu-items-top>div.has-child a {
        border-bottom: 1px solid var(--secondary_neutral_color);
        border-left: 1px solid var(--secondary_neutral_color);
        background-color: var(--primary_neutral_color);
    }

    .mobile-menu-items-overlay .mobile-menu-items-top a {
        color: var(--secondary_neutral_color);
    }

    #main-header .mobile-menu-item.mobile-current-festival-date {
        background-color: var(--secondary_neutral_color);
        color: var(--primary_neutral_color) !important;
    }

    .mobile-menu-items-top {
        border-top: var(--secondary_neutral_color) 1px solid;
    }

    .mobile-menu-items-top>a {
        border-left: 1px solid var(--secondary_neutral_color);
        border-bottom: 1px solid var(--secondary_neutral_color);
    }

    .mobile-menu-main-item.active, .mobile-menu-support-us.active {
        background-color: var(--secondary_neutral_color);
        color: var(--primary_neutral_color) !important;
    }

    .mobile-menu-support-us {
        border: 1px solid var(--secondary_neutral_color);
    }

    #home-news-container {
        padding-top: 75px;
    }

    .mobile-menu-support-us.active .header-menu-profile {
        color: var(--primary_neutral_color) !important;
    }

    .mobile-menu-support-us .header-menu-dropdown {
        background: var(--primary_neutral_color);
    }

    .mobile-menu-support-us>.header-menu-item>.header-menu-dropdown>.header-menu-dropdown-item {
        border-left: 1px solid var(--secondary_neutral_color);
        border-bottom: 1px solid var(--secondary_neutral_color);
    }

    .mobile-menu-support-us>.header-menu-item>.header-menu-dropdown>.header-menu-dropdown-item a {
        color: var(--secondary_neutral_color);
    }

    #main-header .header-menu-login .header-menu-dropdown {
        border-top: var(--secondary_neutral_color) 1px solid;
    }

    section.section.movie-section {
        margin: 20px 0px !important;
    }

    .pagination .pagination-item a, .pagination .pagination-item span {
        width: 30px;
        height: 30px;
    }

    #news-list .news-big-container, #news-list .news-small-container {
        padding-bottom: 25px;
        margin-bottom: 25px;
        border-bottom: 1px solid var(--secondary_neutral_color);
    }

    #home-news-list .news-row-button-column {
        position: relative;
        bottom: unset;
    }

    .news-hero-container {
        flex-direction: column-reverse;
    }

    .news-hero-container .news-hero-right {
        aspect-ratio: 16/9;
        margin-bottom: 30px;
    }

    #news-content .news-page-title * {
        font-size: 16px;
    }

    #news-content .lead-text {
        font-size: 30px;
    }

    #screening-carousel {
        width: 100%;
        padding: 0px;
    }

    .movie-page-content-sidebar {
        border: none;
        padding: 0px;
    }

    .movie-page-content-left {
        width: 100%;
        padding-left: 0px;
    }

    .movie-page-content {
        flex-direction: column-reverse;
    }

    #main-header {
        background-color: var(--primary_neutral_color);
    }

    .about-us-image {
        width: 100%;
    }

    .hide-mobile {
        display: none !important;
    } 

    .press-downloads-list-items {
        border-bottom: 1px solid var(--secondary_neutral_color); 
    }
}

/* END 2026 responsive design */