@charset "UTF-8";
.Flex {
  display: flex;
}

.Flex--inline {
  display: inline-flex;
}

.Flex--wrap {
  flex-wrap: wrap;
}

.Flex--row {
  flex-direction: row;
}

.Flex--column {
  flex-direction: column;
}

.Flex--center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Flex--center-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.Flex--center-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.Flex--center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.Flex--center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Flex--stretch-between {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.Flex--stretch-start {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.Flex--stretch-end {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.Flex--stretch-center {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.Flex--start-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.Flex--start-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.Flex--start-end {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.Flex--start-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.Flex--start-around {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.Flex--end-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.Flex--end-start {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.Flex--end-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.Flex--end-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  4.16666666666667% {
    opacity: 1;
  }
  20.8333333333333% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingFade {
  0% {
    background: rgba(133, 133, 133, 0.35);
  }
  100% {
    background: rgba(133, 133, 133, 0.55);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes flyover {
  0% {
    transform: translateY(0) translateZ(0);
  }
  100% {
    transform: translateY(-80.5%) translateZ(0);
  }
}
@keyframes sheen {
  10% {
    transform: translate(90%, 0);
  }
  20% {
    transform: translate(90%, 0);
  }
  25% {
    transform: translate(25%, 0);
  }
  100% {
    transform: translate(25%, 0);
  }
}
@keyframes wiggle {
  0% {
    transform: rotate(7deg) scale(1);
  }
  25% {
    transform: rotate(0) scale(1);
  }
  50% {
    transform: rotate(-7deg) scale(1.1);
  }
  25% {
    transform: rotate(0) scale(1);
  }
  100% {
    transform: rotate(7deg) scale(1.1);
  }
}
@keyframes helperDot {
  from {
    background: rgba(255, 255, 255, 0.2);
    transform: translate3d(-50%, -50%, 0) scale(1);
    transform-origin: center;
  }
  to {
    background: rgba(255, 255, 255, 0.6);
    transform: translate3d(-50%, -50%, 0) scale(2);
    transform-origin: center;
  }
}
@keyframes validateFadeIn {
  from {
    opacity: 0;
    max-height: 0;
    min-height: 0;
  }
  to {
    opacity: 1;
    min-height: 1em;
    max-height: 3em;
  }
}
@keyframes fadeOut {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes PFilterEntrance {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes PFilterMenuExpand {}
@keyframes barGrow {
  0% {
    width: 15%;
    opacity: 0.3;
  }
  10% {
    width: 100%;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}
@keyframes barGlow {
  0% {
    opacity: 0.5;
  }
  3% {
    opacity: 1;
  }
  7% {
    opacity: 1;
  }
  9% {
    opacity: 0.5;
  }
  11% {
    opacity: 0.5;
  }
  13% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  19% {
    opacity: 0.5;
  }
  21% {
    opacity: 0.5;
  }
  23% {
    opacity: 1;
  }
  27% {
    opacity: 1;
  }
  30% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes softGlow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6667;
  }
  100% {
    opacity: 1;
  }
}
[class*=Fade] {
  transition: all 300ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}

.Fade-enter, .Fade-appear {
  opacity: 0.01;
}
.Fade-enter-active, .Fade-appear-active {
  opacity: 1;
}
.Fade-leave {
  opacity: 0.01;
}

@keyframes scrollArrow {
  0% {
    opacity: 0.4;
  }
  45% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.4;
  }
}
@media (max-width: 600px) {
  .Util--hideMobile {
    display: none;
  }
}
@media (max-width: 1100px) {
  .Util--hideNarrow {
    display: none;
  }
}
@media (min-width: 601px) {
  .Util--hideDesktop {
    display: none;
  }
}

/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

html {
  font-size: 62.5% !important;
  font-family: "Montserrat", "Proxima Nova", Segoe UI, Myriad Pro, sans-serif;
  max-width: 100vw;
  overflow: auto;
  min-width: 280px;
  color: #333;
  background: #F6F6F6;
  transition: color 200ms 0ms ease-in-out, background 200ms 0ms ease-in-out;
}
@media (min-width: 1600px) {
  html {
    font-size: 0.63vw;
  }
}
html.Mode--Night {
  background: #202020;
  color: #f6f6f6;
}

body {
  padding-top: 60px;
}

*:focus {
  outline: none;
}

a {
  font: inherit;
  color: inherit;
  text-decoration: inherit;
}
a:not([class]):hover {
  color: white;
  text-decoration: underline;
}

button:not([class]) {
  font: initial;
  color: initial;
  border: initial;
  background: initial;
  text-transform: initial;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: inherit;
}

input[class] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-family: "Montserrat", "Proxima Nova", Segoe UI, Myriad Pro, sans-serif;
}

p {
  margin: 0;
  line-height: 30px;
}

address {
  font-style: normal;
  padding-left: 30px;
}
@media (max-width: 600px) {
  address {
    padding-left: 15px;
  }
}
[ng-app=indieflix] address {
  padding-left: 15px;
}

figure {
  margin: 0;
}

select:not([class]) {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  outline: none !important;
  text-transform: inherit;
  border: none;
  font: inherit;
  padding: 0 30px 0 10px;
}
[ng-app=indieflix] select:not([class]) {
  font-size: 10px;
}

select:-moz-focusring {
  outline: transparent;
}

ul, ol {
  padding: 0;
  margin: 0;
}

li {
  padding: 0;
  list-style: none;
}

small {
  font-size: inherit;
}

code, pre {
  font-family: Monaco, Cascadia Mono, Consolas, "Courier New", Courier, monospace;
  background: black;
  color: white;
  padding: 10px;
  font-size: 14px;
  display: block;
}

blockquote,
address {
  margin: 0;
}

img {
  width: 100%;
  height: auto;
}

/* montserrat-regular - vietnamese_latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.eot?#iefix") format("embedded-opentype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff2") format("woff2"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.woff") format("woff"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.ttf") format("truetype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-regular.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-700 - vietnamese_latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.eot?#iefix") format("embedded-opentype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff2") format("woff2"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.woff") format("woff"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.ttf") format("truetype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-italic - vietnamese_latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.eot?#iefix") format("embedded-opentype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff2") format("woff2"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.woff") format("woff"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.ttf") format("truetype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-700italic - vietnamese_latin-ext_latin_cyrillic-ext_cyrillic */
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.eot"); /* IE9 Compat Modes */
  src: local(""), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.eot?#iefix") format("embedded-opentype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff2") format("woff2"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.woff") format("woff"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.ttf") format("truetype"), url("fonts/montserrat-v24-vietnamese_latin-ext_latin_cyrillic-ext_cyrillic-700italic.svg#Montserrat") format("svg"); /* Legacy iOS */
}
.Type--h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--h1 {
    font-size: 27px;
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--h1 {
    font-size: 24px;
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--h1 {
    font-size: 21px;
    margin-bottom: 15px;
  }
}

.Type--h2 {
  font-size: 23px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--h2 {
    font-size: 21px;
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--h2 {
    font-size: 19px;
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.Type--h3 {
  font-size: 21px;
  font-weight: 700;
}

.Type--h4 {
  font-size: 21px;
  font-weight: 400;
}

.Type--h5 {
  font-size: 18px;
  font-weight: 700;
}

.Type--h6 {
  font-size: 18px;
  font-weight: 400;
}

.Type--lead {
  font-size: 18px;
  font-weight: 400;
}

.Type--faded {
  transition: color 200ms 0ms ease-in-out;
  color: #666;
}
.Mode--Night .Type--faded {
  color: #DBDBDB;
}

.Type--link {
  font-weight: bold;
  transition: color 200ms 0ms ease-in-out;
  color: #269037;
}
.Film--Angst .Type--link {
  color: #269037;
}
.Mode--Night.Film--Angst .Type--link {
  color: #43C758;
}
.Film--Org .Type--link {
  color: #425F98;
}
.Mode--Night.Film--Org .Type--link {
  color: #4984F8;
}
.Film--Corp .Type--link {
  color: #E89F12;
}
.Film--LIKE .Type--link {
  color: #1E68EC;
}
.Mode--Night.Film--LIKE .Type--link {
  color: #55D6FF;
}
.Film--Upstanders .Type--link {
  color: #C75525;
}
.Mode--Night.Film--Upstanders .Type--link {
  color: #F3771C;
}
.Film--Nevertheless .Type--link {
  color: #39658E;
}
.Mode--Night.Film--Nevertheless .Type--link {
  color: #4493DE;
}
.Film--RTBH .Type--link {
  color: #996410;
}
.Mode--Night.Film--RTBH .Type--link {
  color: #E7BA78;
}

.Type--body {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--body {
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--body {
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--body {
    margin-bottom: 15px;
  }
}
.Type--body a {
  font-weight: bold;
  font-weight: bold;
  transition: color 200ms 0ms ease-in-out;
  color: #269037;
}
.Film--Angst .Type--body a {
  color: #269037;
}
.Mode--Night.Film--Angst .Type--body a {
  color: #43C758;
}
.Film--Org .Type--body a {
  color: #425F98;
}
.Mode--Night.Film--Org .Type--body a {
  color: #4984F8;
}
.Film--Corp .Type--body a {
  color: #E89F12;
}
.Film--LIKE .Type--body a {
  color: #1E68EC;
}
.Mode--Night.Film--LIKE .Type--body a {
  color: #55D6FF;
}
.Film--Upstanders .Type--body a {
  color: #C75525;
}
.Mode--Night.Film--Upstanders .Type--body a {
  color: #F3771C;
}
.Film--Nevertheless .Type--body a {
  color: #39658E;
}
.Mode--Night.Film--Nevertheless .Type--body a {
  color: #4493DE;
}
.Film--RTBH .Type--body a {
  color: #996410;
}
.Mode--Night.Film--RTBH .Type--body a {
  color: #E7BA78;
}

.Type--bodyReverse {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--bodyReverse {
    margin-top: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--bodyReverse {
    margin-top: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--bodyReverse {
    margin-top: 15px;
  }
}
.Type--bodyReverse a {
  font-weight: bold;
  font-weight: bold;
  transition: color 200ms 0ms ease-in-out;
  color: #269037;
}
.Film--Angst .Type--bodyReverse a {
  color: #269037;
}
.Mode--Night.Film--Angst .Type--bodyReverse a {
  color: #43C758;
}
.Film--Org .Type--bodyReverse a {
  color: #425F98;
}
.Mode--Night.Film--Org .Type--bodyReverse a {
  color: #4984F8;
}
.Film--Corp .Type--bodyReverse a {
  color: #E89F12;
}
.Film--LIKE .Type--bodyReverse a {
  color: #1E68EC;
}
.Mode--Night.Film--LIKE .Type--bodyReverse a {
  color: #55D6FF;
}
.Film--Upstanders .Type--bodyReverse a {
  color: #C75525;
}
.Mode--Night.Film--Upstanders .Type--bodyReverse a {
  color: #F3771C;
}
.Film--Nevertheless .Type--bodyReverse a {
  color: #39658E;
}
.Mode--Night.Film--Nevertheless .Type--bodyReverse a {
  color: #4493DE;
}
.Film--RTBH .Type--bodyReverse a {
  color: #996410;
}
.Mode--Night.Film--RTBH .Type--bodyReverse a {
  color: #E7BA78;
}

.Type--shrunk {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--shrunk {
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--shrunk {
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--shrunk {
    margin-bottom: 15px;
  }
}
.Type--shrunk a {
  font-weight: bold;
  font-weight: bold;
  transition: color 200ms 0ms ease-in-out;
  color: #269037;
}
.Film--Angst .Type--shrunk a {
  color: #269037;
}
.Mode--Night.Film--Angst .Type--shrunk a {
  color: #43C758;
}
.Film--Org .Type--shrunk a {
  color: #425F98;
}
.Mode--Night.Film--Org .Type--shrunk a {
  color: #4984F8;
}
.Film--Corp .Type--shrunk a {
  color: #E89F12;
}
.Film--LIKE .Type--shrunk a {
  color: #1E68EC;
}
.Mode--Night.Film--LIKE .Type--shrunk a {
  color: #55D6FF;
}
.Film--Upstanders .Type--shrunk a {
  color: #C75525;
}
.Mode--Night.Film--Upstanders .Type--shrunk a {
  color: #F3771C;
}
.Film--Nevertheless .Type--shrunk a {
  color: #39658E;
}
.Mode--Night.Film--Nevertheless .Type--shrunk a {
  color: #4493DE;
}
.Film--RTBH .Type--shrunk a {
  color: #996410;
}
.Mode--Night.Film--RTBH .Type--shrunk a {
  color: #E7BA78;
}

.Type--small {
  font-size: 13px;
  line-height: 15px;
}
@media (min-width: 0) and (max-width: 520px) {
  .Type--small {
    font-size: 14px;
  }
}

.Type--cite {
  font-style: italic;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  text-align: right;
  margin-bottom: 30px;
}
@media (min-width: 0) and (max-width: 520px) {
  .Type--cite {
    font-size: 14px;
  }
}
@media (min-width: 0) and (max-width: 960px) {
  .Type--cite {
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Type--cite {
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Type--cite {
    margin-bottom: 15px;
  }
}

.Type--smallCode {
  font-family: Monaco, Cascadia Mono, Consolas, "Courier New", Courier, monospace;
  -webkit-user-select: all;
  -moz-user-select: all;
  user-select: all;
  padding: 6px 10px;
  background: rgba(111, 111, 111, 0.2);
  border-radius: 30px;
  line-height: 30px;
  height: 30px;
}

.Flex {
  display: flex;
}

.Flex--inline {
  display: inline-flex;
}

.Flex--wrap {
  flex-wrap: wrap;
}

.Flex--row {
  flex-direction: row;
}

.Flex--column {
  flex-direction: column;
}

.Flex--center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Flex--center-around {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.Flex--center-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.Flex--center-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.Flex--center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.Flex--stretch-between {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.Flex--stretch-start {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.Flex--stretch-end {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.Flex--stretch-center {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.Flex--start-between {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.Flex--start-start {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.Flex--start-end {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.Flex--start-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.Flex--start-around {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}

.Flex--end-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.Flex--end-start {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.Flex--end-end {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.Flex--end-center {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.Button__text {
  flex: 0 0 auto;
  display: block;
}

img.Button__icon {
  width: 1em;
  height: auto;
}

.Button--s {
  font-size: 14px;
  height: 30px;
  padding: 0 10px;
}

.Button--m {
  font-size: 16px;
  height: 37px;
}

.Button--l {
  font-size: 16px;
  height: 45px;
}

.Button--xl {
  font-size: 16px;
  height: 60px;
}

.Button--xxl {
  font-size: 26px;
  height: 65px;
}

.Button--square {
  box-sizing: border-box;
  padding: 0;
  width: 37px;
}
.Button--square.Button--s {
  width: 30px;
}
.Button--square.Button--l {
  width: 45px;
}
.Button--square.Button--xl {
  width: 60px;
}

.Button--fw {
  display: flex;
}

.Button--Angst {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  font-weight: 300;
  text-shadow: none;
  text-decoration: none !important;
  padding: 0 15px;
  font-weight: 500;
  border-radius: 60px;
  height: 34px;
  font-size: 14px;
  flex: 0 0 auto;
  font-size: 16px;
  height: 45px;
  background: #268F37;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
  color: white !important;
}
.Button--Angst > * + * {
  margin-left: 0.8em;
}
.Button--Angst button + * {
  margin-left: 0;
}
.Button--Angst button {
  border: none !important;
  background: none !important;
}
.Button--Angst .Living-logo {
  display: none;
}

.Button--LIKE {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  font-weight: 300;
  text-shadow: none;
  text-decoration: none !important;
  padding: 0 15px;
  font-weight: 500;
  border-radius: 60px;
  height: 34px;
  font-size: 14px;
  flex: 0 0 auto;
  font-size: 16px;
  height: 45px;
  background: #1E68EC;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
  color: white !important;
}
.Button--LIKE > * + * {
  margin-left: 0.8em;
}
.Button--LIKE button + * {
  margin-left: 0;
}
.Button--LIKE button {
  border: none !important;
  background: none !important;
}
.Button--LIKE .Living-logo {
  display: none;
}

.Button--Upstanders {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  font-weight: 300;
  text-shadow: none;
  text-decoration: none !important;
  padding: 0 15px;
  font-weight: 500;
  border-radius: 60px;
  height: 34px;
  font-size: 14px;
  flex: 0 0 auto;
  font-size: 16px;
  height: 60px;
  background: #F85A03;
  border-radius: 3px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
}
.Button--Upstanders > * + * {
  margin-left: 0.8em;
}
.Button--Upstanders button + * {
  margin-left: 0;
}
.Button--Upstanders button {
  border: none !important;
  background: none !important;
}
.Button--Upstanders .Living-logo {
  display: none;
}

.Button--FindingKind {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  font-weight: 300;
  text-shadow: none;
  text-decoration: none !important;
  padding: 0 15px;
  font-weight: 500;
  border-radius: 60px;
  height: 34px;
  font-size: 14px;
  flex: 0 0 auto;
  font-size: 16px;
  height: 60px;
  background: #EC008C;
  border-radius: 3px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
}
.Button--FindingKind > * + * {
  margin-left: 0.8em;
}
.Button--FindingKind button + * {
  margin-left: 0;
}
.Button--FindingKind button {
  border: none !important;
  background: none !important;
}
.Button--FindingKind .Living-logo {
  display: none;
}

.Button--Liberty {
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  font-weight: 300;
  text-shadow: none;
  text-decoration: none !important;
  padding: 0 15px;
  font-weight: 500;
  border-radius: 60px;
  height: 34px;
  font-size: 14px;
  flex: 0 0 auto;
  font-size: 16px;
  height: 60px;
  background: #1a1446;
  color: #F2F2FC;
  border-radius: 3px;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
}
.Button--Liberty > * + * {
  margin-left: 0.8em;
}
.Button--Liberty button + * {
  margin-left: 0;
}
.Button--Liberty button {
  border: none !important;
  background: none !important;
}
.Button--Liberty .Living-logo {
  display: none;
}

.FeedbackBtn {
  box-sizing: border-box;
  padding: 30px;
  border-radius: 30px;
  border: 2px solid rgba(133, 133, 133, 0.2);
  max-width: 510px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  max-width: 480px;
  line-height: 30px;
  background: white;
  font-weight: 700;
  transition: all 180ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.FeedbackBtn > * + * {
  margin-left: 30px;
}
.Mode--Night .FeedbackBtn {
  background: black;
}
.FeedbackBtn:hover, .FeedbackBtn:focus-visible {
  border-color: #858585;
}
.FeedbackBtn:hover .path1::before, .FeedbackBtn:hover .path2::before, .FeedbackBtn:focus-visible .path1::before, .FeedbackBtn:focus-visible .path2::before {
  transform: scale(1.3) !important;
}
.Film--Angst .FeedbackBtn:hover .path1, .FeedbackBtn:hover .path2, .Film--Angst .FeedbackBtn:focus-visible .path1, .FeedbackBtn:focus-visible .path2 {
  color: #269037;
}
.FeedbackBtn--complete {
  border-color: transparent;
  background-color: rgba(133, 133, 133, 0.11) !important;
  color: #858585;
  pointer-events: none;
}
.FeedbackBtn--complete .path1::before, .FeedbackBtn--complete .path2::before {
  color: inherit !important;
  transform: scale(1.2) !important;
}
.FeedbackBtn--complete .path1, .FeedbackBtn--complete .path2, .FeedbackBtn--complete .path3 {
  color: inherit !important;
}
.FeedbackBtn__Icon {
  font-size: 30px;
  transition: inherit;
}
.FeedbackBtn__Icon .path1, .FeedbackBtn__Icon .path2, .FeedbackBtn__Icon .path3 {
  transition: inherit;
}
.FeedbackBtn__Icon .path1::before, .FeedbackBtn__Icon .path2::before, .FeedbackBtn__Icon .path3::before {
  display: inline-block;
  transition: inherit;
}
.FeedbackBtn__Icon .path3 {
  color: rgba(133, 133, 133, 0.5);
}

.DropdownButton {
  border-radius: 15px;
  background-color: #269037;
  line-height: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 15px;
  position: relative;
  min-width: 120px;
  overflow: hidden;
  height: 30px;
  transition: 100ms 0ms ease-out;
}
.DropdownButton::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: 14px;
  right: 14px;
}
.DropdownButton:focus, .DropdownButton:hover, .DropdownButton:active {
  height: auto;
}
.DropdownButton__Item {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.DropdownButton__Item:hover {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 15px;
}
.DropdownButton__Item a {
  padding: 0 45px 0 15px;
}
.DropdownButton__Item a:hover {
  text-decoration: none;
}

@font-face {
  font-family: "dashboard";
  src: url("fonts/dashboard.eot?vl26js");
  src: url("fonts/dashboard.eot?vl26js#iefix") format("embedded-opentype"), url("fonts/dashboard.ttf?vl26js") format("truetype"), url("fonts/dashboard.woff?vl26js") format("woff"), url("fonts/dashboard.svg?vl26js#dashboard") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=Icon--], [class*=" Icon--"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "dashboard" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.Icon--cct .path1:before {
  content: "\e92a";
}

.Icon--cct .path2:before {
  content: "\e92b";
  margin-left: -2.7998046875em;
}

.Icon--cct .path3:before {
  content: "\e92c";
  margin-left: -2.7998046875em;
}

.Icon--cct .path4:before {
  content: "\e92d";
  margin-left: -2.7998046875em;
  color: rgb(0, 172, 196);
}

.Icon--cct .path5:before {
  content: "\e92e";
  margin-left: -2.7998046875em;
  color: rgb(0, 172, 196);
}

.Icon--cct .path6:before {
  content: "\e92f";
  margin-left: -2.7998046875em;
  color: rgb(0, 172, 196);
}

.Icon--cct .path7:before {
  content: "\e930";
  margin-left: -2.7998046875em;
  color: rgb(0, 172, 196);
}

.Icon--walgreens:before {
  content: "\e928";
  color: #e42b25;
}

.Icon--calHope .path1:before {
  content: "\e91b";
  color: rgb(249, 167, 28);
}

.Icon--calHope .path2:before {
  content: "\e91c";
  margin-left: -5.7041015625em;
  color: rgb(50, 89, 118);
}

.Icon--impactful .path1:before {
  content: "\e904";
}

.Icon--impactful .path2:before {
  content: "\e905";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path3:before {
  content: "\e910";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path4:before {
  content: "\e911";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path5:before {
  content: "\e912";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path6:before {
  content: "\e913";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path7:before {
  content: "\e914";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path8:before {
  content: "\e915";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path9:before {
  content: "\e916";
  margin-left: -5.2333984375em;
}

.Icon--impactful .path10:before {
  content: "\e917";
  margin-left: -5.2333984375em;
  color: rgb(0, 172, 196);
}

.Icon--impactful .path11:before {
  content: "\e918";
  margin-left: -5.2333984375em;
  color: rgb(0, 172, 196);
}

.Icon--impactful .path12:before {
  content: "\e919";
  margin-left: -5.2333984375em;
  color: rgb(0, 172, 196);
}

.Icon--impactful .path13:before {
  content: "\e91a";
  margin-left: -5.2333984375em;
  color: rgb(0, 172, 196);
}

.Icon--people:before {
  content: "\e923";
}

.Icon--person:before {
  content: "\e924";
}

.Icon--check .path1:before {
  content: "\e925";
}

.Icon--check .path2:before {
  content: "\e926";
  margin-left: -1em;
}

.Icon--check .path3:before {
  content: "\e927";
  margin-left: -1em;
  opacity: 0.5;
}

.Icon--quickStart:before {
  content: "\e932";
}

.Icon--Course101:before {
  content: "\e931";
}

.Icon--return:before {
  content: "\e91f";
}

.Icon--link:before {
  content: "\e900";
}

.Icon--quiz:before {
  content: "\e901";
}

.Icon--survey:before {
  content: "\e902";
}

.Icon--download:before {
  content: "\e906";
}

.Icon--activities:before {
  content: "\e907";
}

.Icon--chapters:before {
  content: "\e908";
}

.Icon--video:before {
  content: "\e909";
}

.Icon--settings:before {
  content: "\e90a";
}

.Icon--menu:before {
  content: "\e90a";
}

.Icon--moon:before {
  content: "\e90b";
}

.Icon--sun:before {
  content: "\e90c";
}

.Icon--info:before {
  content: "\e90d";
}

.Icon--logoCorp:before {
  content: "\e90e";
}

.Icon--logoEdu:before {
  content: "\e90f";
}

.Icon--close:before {
  content: "\e929";
}

.Icon--learningBursts:before {
  content: "\e920";
}

.Icon--bulb:before {
  content: "\e920";
}

.Icon--list:before {
  content: "\e91d";
}

.Icon--feed:before {
  content: "\e91d";
}

.Icon--column:before {
  content: "\e91d";
}

.Icon--group:before {
  content: "\e91e";
}

.Icon--grid:before {
  content: "\e91e";
}

.Icon--cluster:before {
  content: "\e91e";
}

.Icon--lock:before {
  content: "\e903";
}

.Icon--chevron .path1:before {
  content: "\e921";
}

.Icon--chevron .path2:before {
  content: "\e922";
  margin-left: -1em;
}

.Logo__iNDIEFLIXEducation * {
  fill: black !important;
  transition: fill 200ms 0ms ease-in-out;
}
.Mode--Night .Logo__iNDIEFLIXEducation * {
  fill: white !important;
}

.OrgLogo {
  margin: 0 0;
  width: auto;
  text-align: center;
}
.OrgLogo__link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.OrgLogo--noURL {
  pointer-events: none;
}
.OrgLogo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60px;
}
.OrgLogo svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 60px;
}
.Mode--Night .OrgLogo svg *:not(.OrgLogo__RetainFill) {
  fill: white;
}

.DropSelect {
  cursor: pointer;
  color: white;
  height: 30px;
  line-height: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 15px;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  position: relative;
  transition: -webkit-clip-path 140ms 1s ease-in-out;
  transition: clip-path 140ms 1s ease-in-out;
  transition: clip-path 140ms 1s ease-in-out, -webkit-clip-path 140ms 1s ease-in-out;
  z-index: 100;
}
.Film--Corp .DropSelect {
  background: #E89F12;
}
.Film--Org .DropSelect {
  background: #425F98;
}
.Film--Angst .DropSelect {
  background: #269037;
}
.Film--LIKE .DropSelect {
  background: #1E68EC;
}
.Film--Upstanders .DropSelect {
  background: #E57E3A;
}
.Film--Nevertheless .DropSelect {
  background: #4493DE;
}
.Film--RTBH .DropSelect {
  background-image: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
  transition: none;
  text-shadow: none;
}
.Film--RTBH .DropSelect::before {
  content: " ";
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  left: 2px;
  border-radius: 15px;
}
.Film--RTBH.Mode--Day .DropSelect::before, .Film--RTBH.Mode--Day .DropSelect:hover ul::before, .Film--RTBH.Mode--Day .DropSelect:active ul::before, .Film--RTBH.Mode--Day .DropSelect:focus-visible ul::before, .Film--RTBH.Mode--Day .DropSelect:focus-within ul::before {
  background: white;
}
.Film--RTBH.Mode--Night .DropSelect::before, .Film--RTBH.Mode--Night .DropSelect:hover ul::before, .Film--RTBH.Mode--Night .DropSelect:active ul::before, .Film--RTBH.Mode--Night .DropSelect:focus-visible ul::before, .Film--RTBH.Mode--Night .DropSelect:focus-within ul::before {
  background: black;
}
.Film--RTBH .DropSelect ul {
  transition: none;
  position: relative;
}
.Film--RTBH .DropSelect ul::before {
  content: " ";
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  left: 2px;
  border-radius: 13px;
}
.DropSelect::after {
  content: " ";
  position: absolute;
  top: 12px;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
}
.Film--RTBH.Mode--Day .DropSelect::after {
  border-color: #5F3F0D transparent transparent transparent;
}
.Film--RTBH.Mode--Night .DropSelect::after {
  border-color: #ffffff transparent transparent transparent;
}
.DropSelect:hover, .DropSelect:active, .DropSelect:focus-visible, .DropSelect:focus-within {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 600%, 0 600%);
  clip-path: polygon(0 0, 100% 0, 100% 600%, 0 600%);
  transition: -webkit-clip-path 140ms 0s ease-in-out;
  transition: clip-path 140ms 0s ease-in-out;
  transition: clip-path 140ms 0s ease-in-out, -webkit-clip-path 140ms 0s ease-in-out;
}
.DropSelect:hover ul, .DropSelect:active ul, .DropSelect:focus-visible ul, .DropSelect:focus-within ul {
  background: inherit;
  transition: all 160ms 0ms ease-in-out;
}
.DropSelect ul {
  background: none;
  border-radius: 15px;
  transition: background 160ms 1s ease-in-out;
}
.DropSelect li {
  position: relative;
}
.DropSelect li:first-of-type .DropSelect__option, .DropSelect--active {
  font-weight: bold;
}
.DropSelect__option {
  padding: 0 40px 0 15px;
  height: 30px;
  display: block;
  cursor: default;
  border-radius: 15px;
}
.Film--RTBH.Mode--Day .DropSelect__option {
  color: #5F3F0D;
}
.Film--RTBH.Mode--Night .DropSelect__option {
  color: white;
}
.DropSelect a.DropSelect__option {
  background: transparent;
  cursor: pointer;
}
.DropSelect a.DropSelect__option:hover, .DropSelect a.DropSelect__option:focus-visible, .DropSelect a.DropSelect__option:focus-within {
  background: rgba(0, 0, 0, 0.25);
}
.Film--RTBH.Mode--Day .DropSelect a.DropSelect__option:hover, .Film--RTBH.Mode--Day .DropSelect a.DropSelect__option:focus-visible, .Film--RTBH.Mode--Day .DropSelect a.DropSelect__option:focus-within {
  background: rgba(0, 0, 0, 0.15);
}
.Film--RTBH.Mode--Night .DropSelect a.DropSelect__option:hover, .Film--RTBH.Mode--Night .DropSelect a.DropSelect__option:focus-visible, .Film--RTBH.Mode--Night .DropSelect a.DropSelect__option:focus-within {
  background: rgba(255, 255, 255, 0.25);
}

.ModeSwitcher {
  cursor: pointer;
  color: white;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  font-weight: bold;
  position: relative;
  width: 75px;
  background: #E1E1E1;
  transition: all 200ms 0ms ease-in-out;
}
.ModeSwitcher:before {
  right: 0;
  transform: translateX(-35px);
  transition: transform 200ms 0s ease-in-out;
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  width: 40px;
  border-radius: 15px;
}
.ModeSwitcher:after {
  right: 2px;
  transform: translateX(-35px);
  transition: transform 200ms 0s ease-in-out;
  content: " ";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: auto;
  width: 36px;
  border-radius: 15px;
}
.Film--Corp .ModeSwitcher:before {
  background: #E89F12;
}
.Film--Org .ModeSwitcher:before {
  background: #425F98;
}
.Film--Angst .ModeSwitcher:before {
  background: #269037;
}
.Film--LIKE .ModeSwitcher:before {
  background: #1E68EC;
}
.Film--Upstanders .ModeSwitcher:before {
  background: #E57E3A;
}
.Film--Nevertheless .ModeSwitcher:before {
  background: #4493DE;
}
.Film--RTBH .ModeSwitcher:before {
  background: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
}
.Film--RTBH .ModeSwitcher:after {
  background: white;
}
.ModeSwitcher .Icon--moon {
  transition: transform 300ms 0s ease-in-out;
  font-size: 15px;
  position: absolute;
  top: 7px;
  right: 12px;
  transform: rotate(-110deg);
  transform-origin: center;
  color: #444;
  z-index: 1;
}
.ModeSwitcher .Icon--sun {
  transition: transform 300ms 0s ease-in-out;
  font-size: 15px;
  position: absolute;
  transform-origin: center;
  top: 7px;
  left: 12px;
  color: white;
  transform: rotate(-67deg);
  z-index: 1;
}
.Film--RTBH .ModeSwitcher .Icon--sun {
  color: #5F3F0D;
}
.Mode--Night .ModeSwitcher {
  background: #202020;
}
.Mode--Night .ModeSwitcher:before {
  transform: translateX(0);
}
.Mode--Night .ModeSwitcher .Icon--moon {
  color: white;
  transform: rotate(0deg);
}
.Mode--Night .ModeSwitcher .Icon--sun {
  color: #DBDBDB;
  transform: rotate(0deg);
}
.Mode--Night.Film--RTBH .ModeSwitcher:after {
  transform: translateX(0px);
  background: black;
}

.ViewSwitcher {
  cursor: pointer;
  color: white;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  font-weight: bold;
  position: relative;
  width: 75px;
  background: #E1E1E1;
  transition: all 200ms 0ms ease-in-out;
  flex: 0 0 auto;
}
.ViewSwitcher:before {
  right: 0;
  transform: translateX(-35px);
  transition: transform 200ms 0s ease-in-out;
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  width: 40px;
  border-radius: 15px;
}
.ViewSwitcher:after {
  right: 2px;
  transform: translateX(-35px);
  transition: transform 200ms 0s ease-in-out;
  content: " ";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: auto;
  width: 36px;
  border-radius: 15px;
}
.Film--Corp .ViewSwitcher:before {
  background: #E89F12;
}
.Film--Org .ViewSwitcher:before {
  background: #425F98;
}
.Film--Angst .ViewSwitcher:before {
  background: #269037;
}
.Film--LIKE .ViewSwitcher:before {
  background: #1E68EC;
}
.Film--Upstanders .ViewSwitcher:before {
  background: #E57E3A;
}
.Film--Nevertheless .ViewSwitcher:before {
  background: #4493DE;
}
.Film--RTBH .ViewSwitcher:before {
  background: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
}
.Film--RTBH .ViewSwitcher:after {
  background: white;
}
.ViewSwitcher .Icon--grid {
  transition: transform 300ms 0s ease-in-out;
  font-size: 15px;
  position: absolute;
  top: 7px;
  right: 12px;
  transform-origin: center;
  color: #444;
  z-index: 1;
}
.ViewSwitcher .Icon--feed {
  transition: transform 300ms 0s ease-in-out;
  font-size: 15px;
  position: absolute;
  transform-origin: center;
  top: 7px;
  left: 12px;
  color: white;
  z-index: 1;
}
.Film--RTBH .ViewSwitcher .Icon--feed {
  color: #5F3F0D;
}
.ViewSwitcher--catView .Icon--feed {
  color: #444;
}
.ViewSwitcher--catView .Icon--grid {
  color: white;
}
.Film--RTBH .ViewSwitcher--catView .Icon--feed {
  color: #444;
}
.Film--RTBH .ViewSwitcher--catView .Icon--grid {
  color: #5F3F0D;
}
.Mode--Night .ViewSwitcher {
  background: #202020;
}
.Mode--Night .ViewSwitcher .Icon--feed {
  color: white;
}
.Mode--Night .ViewSwitcher .Icon--grid {
  color: #DBDBDB;
}
.Mode--Night.Film--RTBH .ViewSwitcher:after {
  background: black;
}
.ViewSwitcher--catView:before {
  transform: translateX(0);
}
.Film--RTBH .ViewSwitcher--catView:after {
  transform: translateX(0px);
}

.PageBG {
  position: absolute;
  z-index: -1;
  height: 444px;
  width: 100%;
  background: white;
  box-sizing: border-box;
  background-size: cover;
  max-height: 444px;
  background-position: center;
  background-repeat: no-repeat;
}
.PageBG::before {
  content: " ";
  background: linear-gradient(180deg, rgba(32, 32, 32, 0.62) 0%, #202020 100%);
  position: absolute;
  top: 0;
  bottom: -1px;
  right: -1px;
  left: -1px;
}
.PageBG--Liberty {
  background-image: url(images/AngstBGAlt.jpg) !important;
}
.PageBG--Liberty::before {
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.3) 0%, #181818 100%);
}
.PageBG--Portal {
  background-image: url(images/PortalBG.jpg);
}
.PageBG--LIKE {
  background-image: url(images/LIKEBG.jpg);
}
.PageBG--Upstanders {
  background-image: url(images/UpstandersBG.jpg);
}
.PageBG--FindingKind {
  background: transparent;
}
.PageBG--FindingKind::before {
  display: none;
}
.PageBG--Angst {
  background-image: url(images/AngstBG.jpg);
}
.PageBG--Nevertheless {
  background-image: url(images/NeverthelessBG.jpg);
}

.PortalOptions {
  margin: 0 auto;
  max-width: 780px;
}
.PortalOptions .PortalOptions__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 690px) {
  .PortalOptions .PortalOptions__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
  }
}
.PortalOptions .PortalOptions__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin-bottom: 90px;
  max-width: 330px;
  flex: 330px 0 1;
  width: 100%;
}
@media (max-width: 690px) {
  .PortalOptions .PortalOptions__item {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 30px;
  }
}
.PortalOptions .PortalOptions__item img {
  max-width: 270px;
  height: auto;
}
.PortalOptions .PortalOptions__item p {
  text-transform: capitalize;
}
.PortalOptions .PortalOptions__item .Button {
  width: 100%;
  max-width: 270px;
}

.ProgramSwitcher {
  height: 60px;
  font-size: 16px;
  color: #F1F1F1;
  line-height: 60px;
}
.ProgramSwitcher--language {
  height: auto;
  line-height: 30px;
  padding: 0px 0;
}
.ProgramSwitcher--language a {
  color: #EEE !important;
}
.ProgramSwitcher--language a:hover {
  color: white;
  text-decoration: underline;
}
@media (max-width: 500px) {
  .ProgramSwitcher {
    display: none;
  }
}
.ProgramSwitcher__Fence {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1200px;
}
.ProgramSwitcher--language .ProgramSwitcher__Fence {
  flex-wrap: wrap;
  height: auto;
  min-height: 60px;
  font-size: 15px;
  max-width: 900px;
}
.ProgramSwitcher__Fence > * + * {
  margin-left: 15px;
}
.ProgramSwitcher__label {
  color: #BCBCBC;
}
.ProgramSwitcher__Angst, .ProgramSwitcher__LIKE, .ProgramSwitcher__Upstanders, .ProgramSwitcher__Nevertheless {
  position: relative;
}
.ProgramSwitcher__Angst:hover::after, .ProgramSwitcher__LIKE:hover::after, .ProgramSwitcher__Upstanders:hover::after, .ProgramSwitcher__Nevertheless:hover::after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 7.5px 0 7.5px;
  border-color: #4d4d4d transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}
.ProgramSwitcher__active {
  font-weight: 700;
  height: 60px;
  line-height: 60px;
  cursor: text;
}
.ProgramSwitcher__active:hover {
  color: #F1F1F1 !important;
}
.ProgramSwitcher__active::after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 7.5px 0 7.5px;
  border-color: #4d4d4d transparent transparent transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
}
.ProgramSwitcher__Angst:hover, .ProgramSwitcher__Nevertheless:hover {
  color: #F07272;
}
.ProgramSwitcher__LIKE:hover {
  color: #34D4F4;
}
.ProgramSwitcher__Upstanders:hover {
  color: #F97A34;
}

.Container {
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1170px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Container {
    padding: 0 15px;
  }
}

.TopBar {
  display: block;
  height: 60px;
  background: white;
  transition: background 200ms 0ms ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.TopBar__Branding {
  font-size: 25px;
  color: black;
}
.TopBar__Branding h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.TopBar__Branding a:hover {
  color: inherit;
  text-decoration: none;
}
.Mode--Night .TopBar__Branding {
  color: white;
}
.TopBar__Branding--corp .TopBar__Branding__retainFill::before {
  color: #FFB119;
}
.TopBar__Branding--edu .TopBar__Branding__retainFill::before {
  color: #0AA55C;
}
.TopBar__Branding--org .TopBar__Branding__retainFill::before {
  color: #425F98;
}
.Mode--Night .TopBar {
  background: black;
}
.TopBar .Container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}
.TopBar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.TopBar__menu > * + * {
  margin-left: 15px;
}
.TopBar__menuLabel {
  display: none;
}
.TopBar__Hamburger {
  display: none;
}
@media (max-width: 600px) {
  .TopBar--menuActive .TopBar__menu {
    display: flex;
  }
  .TopBar--menuActive .TopBar__Hamburger {
    transform: rotate(65deg);
  }
  .TopBar__Hamburger {
    cursor: pointer;
    font-size: 25px;
    color: black;
    display: block;
    transition: all 200ms 0ms ease-in-out;
  }
  .Mode--Night .TopBar__Hamburger {
    color: white;
  }
  .Film--Angst .TopBar__Hamburger:hover, .Film--Angst .TopBar--menuActive .TopBar__Hamburger {
    color: #269037;
  }
  .Film--Corp .TopBar__Hamburger:hover, .Film--Corp .TopBar--menuActive .TopBar__Hamburger {
    color: #FFB119;
  }
  .Film--RTBH .TopBar__Hamburger:hover, .Film--RTBH .TopBar--menuActive .TopBar__Hamburger {
    color: #DD880C;
  }
  .Film--LIKE .TopBar__Hamburger:hover, .Film--LIKE .TopBar--menuActive .TopBar__Hamburger {
    color: #1E68EC;
  }
  .Film--Nevertheless .TopBar__Hamburger:hover, .Film--Nevertheless .TopBar--menuActive .TopBar__Hamburger {
    color: #39658E;
  }
  .Film--Upstanders .TopBar__Hamburger:hover .Film--Upstanders .TopBar--menuActive .TopBar__Hamburger {
    color: #C75525;
  }
  .TopBar__hideMobile {
    display: none;
  }
  .TopBar__menu {
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 100;
    background: white;
    padding: 0 30px 30px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    display: none;
  }
  .Mode--Night .TopBar__menu {
    background: black;
  }
  .TopBar__menuLabel {
    margin: 15px 15px 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 30px;
    display: block;
  }
  .TopBar__menu .ModeSwitcher {
    margin: 8px 0 0 15px;
  }
  .TopBar__menu .DropSelect {
    margin: 0 0 0;
    width: 100%;
    height: auto;
    -webkit-clip-path: none;
    clip-path: none;
    background: none;
    color: #333;
    text-shadow: none;
  }
  .Mode--Night .TopBar__menu .DropSelect {
    color: #DBDBDB;
  }
  .Mode--Night .TopBar__menu .DropSelect a:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
  .TopBar__menu .DropSelect a {
    font-weight: normal;
  }
  .TopBar__menu .DropSelect li span:before {
    content: "✓ ";
  }
  .TopBar__menu .DropSelect:after {
    display: none;
  }
}

.Main {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: "statusMsg" "mainHeader" "mainTop" "sideHeader" "sidebar" "mainBottom" "footer";
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
@media (min-width: 800px) {
  .Main {
    grid-template-columns: 63.88888889% auto;
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: "statusMsg statusMsg" "mainHeader sideHeader" "mainTop sidebar" "mainBottom sidebar" "footer footer";
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}
.Mode--Night .Main {
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.Main__full {
  grid-area: footer;
  margin: 30px 0 60px;
  text-align: center;
}
.Main .StatusMsg {
  grid-area: statusMsg;
}
.Main__wideCellA {
  grid-area: mainHeader;
  align-self: center;
}
.Main__wideCellA h1 {
  margin-bottom: 0;
}
.Main__narrowCellA {
  grid-area: sideHeader;
  align-self: end;
}
.Main__narrowCellA h1, .Main__narrowCellA h2 {
  margin-bottom: 0;
  padding-left: 15px;
}
.Main__wideCellB {
  grid-area: mainTop;
}
.Main__narrowCellB {
  grid-area: sidebar;
}
.Main__wideCellC {
  grid-area: mainBottom;
}
@media (min-width: 800px) {
  .Main__wideCellC {
    padding-right: 15px;
  }
}
.Main--ExpiredMsg {
  display: block;
}
.Main--Bursts > .Container {
  display: grid;
  grid-template-columns: auto;
  align-items: start;
  grid-template-rows: auto;
  grid-template-areas: "header header" "subheader subheader" "wideA narrowA" "footer footer";
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: 63.88888889% auto;
  grid-template-rows: auto auto auto auto;
}
@media (max-width: 800px) {
  .Main--Bursts > .Container {
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "header" "narrowA" "subheader" "wideA" "footer";
  }
}
@media (max-width: 600px) {
  .Main--Bursts > .Container {
    padding: 0;
  }
}
.Main--Bursts .Burst__PageHeader {
  grid-area: header;
}
.Main--Bursts .Burst__PageSubHeader {
  grid-area: subheader;
}
.Main--Bursts .Burst__List {
  grid-area: wideA;
}
.Main--Bursts .Burst__Sidebar {
  grid-area: narrowA;
  position: sticky;
  top: 30px;
}
@media (max-width: 800px) {
  .Main--Bursts .Burst__Sidebar {
    position: static;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .Main--Bursts .Burst__Sidebar > * {
    margin: 0;
    flex: 1 1 50%;
  }
  .Main--Bursts .Burst__Sidebar > * + * {
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .Main--Bursts .Burst__Sidebar > * + * {
    display: none;
  }
}
.Main--Bursts .Burst__Categories {
  display: none;
}
.Main--Bursts .Footer {
  grid-area: footer;
}
.Main--BurstExpert > .Container {
  display: grid;
  grid-template-columns: auto;
  align-items: start;
  grid-template-rows: auto;
  grid-template-areas: "header header" "subheader subheader" "narrowA wideA" "footer footer";
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: auto 63.88888889%;
  grid-template-rows: auto auto auto auto;
}
@media (max-width: 800px) {
  .Main--BurstExpert > .Container {
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
    grid-template-areas: "header" "narrowA" "subheader" "wideA" "footer";
  }
}
@media (max-width: 600px) {
  .Main--BurstExpert > .Container {
    padding: 0;
  }
}
.Main--BurstExpert .Burst__PageHeader {
  grid-area: header;
}
.Main--BurstExpert .Burst__PageSubHeader {
  grid-area: subheader;
}
.Main--BurstExpert .Burst__List {
  grid-area: wideA;
}
.Main--BurstExpert .Burst__Sidebar {
  grid-area: narrowA;
  position: sticky;
  top: 30px;
}
@media (max-width: 800px) {
  .Main--BurstExpert .Burst__Sidebar {
    position: static;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .Main--BurstExpert .Burst__Sidebar > * {
    margin: 0;
    flex: 1 1 50%;
  }
  .Main--BurstExpert .Burst__Sidebar > * + * {
    margin-left: 15px;
  }
}
@media (max-width: 600px) {
  .Main--BurstExpert .Burst__Sidebar > * + * {
    display: none;
  }
}
.Main--BurstExpert .Burst__Categories, .Main--BurstExpert .Burst__SidebarItem--catList {
  display: none;
}
.Main--BurstExpert .Footer {
  grid-area: footer;
}
.Main--BurstCategories > .Container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: "header " "subheader " "wideA" "footer ";
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  grid-template-columns: auto;
  grid-template-rows: auto auto auto auto;
}
.Main--BurstCategories .Burst__PageHeader {
  grid-area: header;
}
.Main--BurstCategories .Burst__PageSubHeader {
  grid-area: subheader;
}
.Main--BurstCategories .Burst__List {
  display: none;
}
.Main--BurstCategories .Burst__Categories {
  display: block;
  grid-area: wideA;
}
.Main--BurstCategories .Burst__Sidebar {
  display: none;
}
.Main--BurstCategories .Footer {
  grid-area: footer;
}

.Gallery {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0;
}
.Gallery > * {
  display: block;
  padding: 15px;
  box-sizing: border-box;
}
.Gallery > * img {
  border-radius: 5px;
}
.Gallery__wide {
  flex: 0 0 100%;
}
.Gallery__narrow {
  flex: 0 0 50%;
}

.SproutFrame {
  display: block;
  position: relative;
  height: 0;
  margin: 0;
  padding-top: 56.25%;
  border-radius: 30px;
  overflow: hidden;
}
.SproutFrame__Scheduled {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: rgba(51, 51, 51, 0.85);
  color: white;
  text-align: center;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
.SproutFrame__Overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.SproutFrame__Overlay::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.17%, #000000 100%);
}
.SproutFrame__Overlay .Button {
  position: relative;
  height: 45px;
  width: auto;
  display: inline-block;
  line-height: 45px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  padding: 0 15px;
  transition: transform 100ms 0ms ease-in-out;
  margin: 0 auto 30px;
  color: white;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
}
:hover > .SproutFrame__Overlay .Button, .SproutFrame__Overlay .Button:hover, .SproutFrame__Overlay .Button:focus-visible {
  transform: scale(1.1);
  transform-origin: center;
  outline-color: white !important;
}
.SproutFrame__Overlay--Angst {
  background-image: url(media/Posters/AngstTitleCard.jpg);
}
.SproutFrame__Overlay--Angst .Button {
  background: #269037;
}
.SproutFrame__Overlay--AngstCorp {
  background-image: url(media/Posters/AngstTitleCard-Corp.jpg);
}
.SproutFrame__Overlay--AngstCorp .Button {
  background: #269037;
}
.SproutFrame__Overlay--LIKE, .SproutFrame__Overlay--LIKECorp {
  background-image: url(media/Posters/LikeTitleCard.jpg);
}
.SproutFrame__Overlay--LIKE .Button, .SproutFrame__Overlay--LIKECorp .Button {
  background: #1E68EC;
}
.SproutFrame__Overlay--Upstanders, .SproutFrame__Overlay--UpstandersCorp {
  background-image: url(media/Posters/UpstandersTitleCard.jpg);
}
.SproutFrame__Overlay--Upstanders .Button, .SproutFrame__Overlay--UpstandersCorp .Button {
  background: #E57E3A;
}
.SproutFrame__Overlay--Nevertheless, .SproutFrame__Overlay--Nevertheless {
  background-image: url(media/Posters/NeverthelessTitleCard.jpg);
}
.SproutFrame__Overlay--Nevertheless .Button, .SproutFrame__Overlay--Nevertheless .Button {
  background: #4493DE;
}
.SproutFrame__Overlay--RTBH, .SproutFrame__Overlay--RTBHCorp {
  background-image: url(media/Posters/RTBHTitleCard.jpg);
}
.SproutFrame__Overlay--RTBH .Button, .SproutFrame__Overlay--RTBHCorp .Button {
  background-image: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
  color: #5F3F0D;
  text-shadow: none;
}
.Mode--Night .SproutFrame__Overlay--RTBH .Button, .Mode--Night .SproutFrame__Overlay--RTBHCorp .Button {
  color: white;
}
.SproutFrame__Overlay--RTBH .Button::before, .SproutFrame__Overlay--RTBHCorp .Button::before {
  content: " ";
  background: white;
  position: absolute;
  top: 2px;
  right: 2px;
  bottom: 2px;
  left: 2px;
  border-radius: 30px;
  transition: background 100ms 0ms ease-in-out;
}
.Mode--Night .SproutFrame__Overlay--RTBH .Button::before, .Mode--Night .SproutFrame__Overlay--RTBHCorp .Button::before {
  background: black;
}
.SproutFrame__Overlay--RTBH .Button span, .SproutFrame__Overlay--RTBHCorp .Button span {
  position: relative;
}
.SproutFrame__embed {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.MaterialsList {
  margin-bottom: 30px;
}
.MaterialsList__icon {
  position: relative;
  font-size: 25px;
  margin: auto 17px auto 18px;
  color: inherit;
}
.MaterialsList__item {
  transition: all 60ms 0ms ease-in-out;
}
.MaterialsList__item:hover {
  background: white;
}
.MaterialsList__item:hover + .MaterialsList__item .MaterialsList__link {
  border-color: white;
}
.Mode--Night .MaterialsList__item:hover {
  background: rgba(0, 0, 0, 0.3);
}
.Mode--Night .MaterialsList__item:hover + .MaterialsList__item .MaterialsList__link {
  border-color: rgba(0, 0, 0, 0.3);
}
.MaterialsList__item:first-of-type {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.MaterialsList__item:first-of-type .MaterialsList__link {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.MaterialsList__item:last-child {
  margin-bottom: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.MaterialsList__item:last-child .MaterialsList__link {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.MaterialsList__link {
  display: flex;
  align-items: center;
  justify-content: between;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  height: 58px;
  line-height: 15px;
  padding: 0;
  border-radius: 0;
  padding-right: 15px;
  background: rgba(0, 0, 0, 0.3);
  background-clip: padding-box;
  border-top: 2px solid transparent;
  transition: all 60ms 0ms ease-in-out;
  background-color: white;
}
@media (max-width: 600px) {
  .MaterialsList__link {
    font-size: 14px;
  }
}
.MaterialsList__link--qr {
  height: auto;
  pointer-events: none;
  overflow: hidden;
  padding: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 800px) {
  .MaterialsList__link--qr {
    display: none;
  }
}
.MaterialsList__link--qr span {
  opacity: 0.8;
}
.MaterialsList__link--qr img {
  width: 100%;
  height: auto;
  max-width: 260px;
  margin: 10px auto;
  transition: filter 100ms 0s cubic-bezier(0.5, 0, 0.1, 1);
}
.Mode--Night .MaterialsList__link--qr img {
  filter: invert(100%) brightness(120%);
}
.Mode--Night .MaterialsList__link {
  color: #DBDBDB;
  background-color: rgba(0, 0, 0, 0.3);
}
.MaterialsList__link::before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  left: 2px;
  bottom: 2px;
  display: block;
  border-radius: 30px;
}
.MaterialsList__link span {
  flex: 1 1 auto;
  position: relative;
}
.MaterialsList__link:hover, .MaterialsList__link:focus-visible, .MaterialsList__link:focus-within {
  color: white;
  z-index: 10;
  border-radius: 30px;
}
.MaterialsList__link:hover .MaterialsList__linkText, .MaterialsList__link:focus-visible .MaterialsList__linkText, .MaterialsList__link:focus-within .MaterialsList__linkText {
  color: white !important;
}
.Film--RTBH .MaterialsList__link:hover, .Film--RTBH .MaterialsList__link:focus-visible, .Film--RTBH .MaterialsList__link:focus-within {
  background-image: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
  transition: background 30ms 0ms ease-in-out;
}
.Film--RTBH.Mode--Day .MaterialsList__link:hover, .Film--RTBH.Mode--Day .MaterialsList__link:hover .MaterialsList__linkText, .Film--RTBH.Mode--Day .MaterialsList__link:focus-visible, .Film--RTBH.Mode--Day .MaterialsList__link:focus-visible .MaterialsList__linkText, .Film--RTBH.Mode--Day .MaterialsList__link:focus-within, .Film--RTBH.Mode--Day .MaterialsList__link:focus-within .MaterialsList__linkText {
  color: #5F3F0D !important;
}
.Film--RTBH.Mode--Night .MaterialsList__link:hover, .Film--RTBH.Mode--Night .MaterialsList__link:hover .MaterialsList__linkText, .Film--RTBH.Mode--Night .MaterialsList__link:focus-visible, .Film--RTBH.Mode--Night .MaterialsList__link:focus-visible .MaterialsList__linkText, .Film--RTBH.Mode--Night .MaterialsList__link:focus-within, .Film--RTBH.Mode--Night .MaterialsList__link:focus-within .MaterialsList__linkText {
  color: white !important;
}
.Film--RTBH.Mode--Day .MaterialsList__link:hover::before, .Film--RTBH.Mode--Day .MaterialsList__link:focus-visible::before, .Film--RTBH.Mode--Day .MaterialsList__link:focus-within::before {
  background: white;
}
.Film--RTBH.Mode--Night .MaterialsList__link:hover::before, .Film--RTBH.Mode--Night .MaterialsList__link:focus-visible::before, .Film--RTBH.Mode--Night .MaterialsList__link:focus-within::before {
  background: black;
}
.Film--Corp .MaterialsList__link:hover, .Film--Corp .MaterialsList__link:focus-visible, .Film--Corp .MaterialsList__link:focus-within {
  background-color: #FFB119;
}
.Film--Angst .MaterialsList__link:hover, .Film--Angst .MaterialsList__link:focus-visible, .Film--Angst .MaterialsList__link:focus-within {
  background-color: #269037;
}
.Film--LIKE .MaterialsList__link:hover, .Film--LIKE .MaterialsList__link:focus-visible, .Film--LIKE .MaterialsList__link:focus-within {
  background-color: #1E68EC;
}
.Film--Upstanders .MaterialsList__link:hover, .Film--Upstanders .MaterialsList__link:focus-visible, .Film--Upstanders .MaterialsList__link:focus-within {
  background-color: #E57E3A;
}
.Film--Nevertheless .MaterialsList__link:hover, .Film--Nevertheless .MaterialsList__link:focus-visible, .Film--Nevertheless .MaterialsList__link:focus-within {
  background-color: #4493DE;
}
.Film--Angst .MaterialsList__linkText {
  color: #333;
}
.Film--Corp .MaterialsList__linkText {
  color: #333;
}
.Film--RTBH .MaterialsList__linkText {
  color: #333;
}
.Film--LIKE .MaterialsList__linkText {
  color: #333;
}
.Film--Upstanders .MaterialsList__linkText {
  color: #333;
}
.Film--Nevertheless .MaterialsList__linkText {
  color: #333;
}
.Mode--Night .MaterialsList__linkText {
  color: #DBDBDB;
}

.Intro {
  position: relative;
  background: #1E1E1E;
  box-sizing: border-box;
  max-width: 780px !important;
  padding: 60px 30px 30px;
  border-radius: 3px;
}
.Intro--Liberty {
  background: #FFD000;
  color: #1a1446;
}
.Intro__close {
  position: absolute;
  top: 0;
  right: 0;
  height: 60px;
  width: 60px;
}

.Chapters {
  width: 100%;
  max-width: 100%;
}

.ChapterList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
  margin-top: 30px;
}
@media (max-width: 800px) {
  .ChapterList {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .ChapterList {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 400px) {
  .ChapterList {
    grid-template-columns: 1fr;
  }
}
.ChapterList__item {
  max-width: 270px;
}
@media (max-width: 400px) {
  .ChapterList__item {
    max-width: 100%;
  }
}
.ChapterList__link {
  position: relative;
  display: block;
  padding: 2px;
  border-radius: 15px;
  transition: all 130ms 130ms ease-in-out;
}
.ChapterList__link[href="#"] {
  pointer-events: none;
}
.ChapterList__item:not(.Sample--locked) .ChapterList__link--active {
  pointer-events: none;
}
.ChapterList__item:not(.Sample--locked) .ChapterList__link--active::after {
  content: "Now Playing";
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: auto;
  background: white;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  z-index: 1;
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  line-height: 30px;
  padding: 0 15px;
}
.Mode--Night .ChapterList__item:not(.Sample--locked) .ChapterList__link--active::after {
  background: black;
}
.ChapterList__item:not(.Sample--locked) .ChapterList__link--active img {
  filter: saturate(0);
}
.Sample--locked .ChapterList__link img {
  filter: brightness(0.5);
}
.ChapterList__link:hover {
  transform: scale(1.05);
  transition: all 130ms 60ms ease-in-out;
  filter: drop-shadow(0px 1.88976px 3.77953px rgba(0, 0, 0, 0.25));
}
.ChapterList__link * {
  position: relative;
}
.ChapterList__link::before {
  content: " ";
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  left: 2px;
  border-radius: 13px;
  transition: background 130ms 0ms ease-in-out;
}
.Mode--Day .ChapterList__link::before {
  background: white;
}
.Mode--Night .ChapterList__link::before {
  background: black;
}
.Mode--Day .ChapterList__link {
  background: white;
}
.Mode--Night .ChapterList__link {
  background: black;
}
.Film--RTBH .ChapterList__link:hover {
  background: linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
}
.Film--Angst .ChapterList__link:hover {
  background: #269037;
}
.Film--Upstanders .ChapterList__link:hover {
  background: #E57E3A;
}
.Film--LIKE .ChapterList__link:hover {
  background: #1E68EC;
}
.Film--Corp .ChapterList__link:hover {
  background: #FFB119;
}
.ChapterList__link.ChapterList__link--active {
  background: #858585;
}
.ChapterList__link img {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.ChapterList__details {
  line-height: 15px;
  padding: 7.5px 15px;
}
.ChapterList__details h3 {
  font-size: 14px;
  font-weight: 600;
  display: block;
  min-width: 0;
}
.Film--RTBH.Mode--Day .ChapterList__details h3 {
  color: #5F3F0D;
}
.Film--RTBH.Mode--Night .ChapterList__details h3 {
  color: white;
}
.Film--Angst.Mode--Day .ChapterList__details h3 {
  color: #269037;
}
.Film--Angst.Mode--Night .ChapterList__details h3 {
  color: white;
}
.Film--Upstanders.Mode--Day .ChapterList__details h3 {
  color: #E57E3A;
}
.Film--Upstanders.Mode--Night .ChapterList__details h3 {
  color: white;
}
.Film--LIKE.Mode--Day .ChapterList__details h3 {
  color: #1E68EC;
}
.Film--LIKE.Mode--Night .ChapterList__details h3 {
  color: white;
}
.Film--Corp.Mode--Day .ChapterList__details h3 {
  color: #353535;
}
.Film--Corp.Mode--Night .ChapterList__details h3 {
  color: white;
}
.ChapterList__details span {
  padding-top: 5px;
  font-size: 13px;
  font-weight: 400;
  flex: 0 0 auto;
  display: block;
}

.Entry {
  line-height: 30px;
  font-size: 16px;
}
.Entry > * + * {
  margin-top: 30px;
}
.Entry h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Entry h1 {
    font-size: 27px;
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Entry h1 {
    font-size: 24px;
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Entry h1 {
    font-size: 21px;
    margin-bottom: 15px;
  }
}
.Entry h2 {
  font-size: 23px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
  max-width: 1200px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Entry h2 {
    font-size: 21px;
    margin-bottom: 22.5px;
  }
}
@media (min-width: 0) and (max-width: 800px) {
  .Entry h2 {
    font-size: 19px;
    margin-bottom: 20.01px;
  }
}
@media (min-width: 0) and (max-width: 600px) {
  .Entry h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
.Entry h3 {
  font-size: 21px;
  font-weight: 700;
  max-width: 1200px;
}
.Entry h4 {
  font-size: 21px;
  font-weight: 400;
  max-width: 1200px;
}
.Entry p {
  font-size: 16px;
}
.Entry ul {
  margin: 0;
  max-width: 1200px;
}
.Entry ul li {
  font-size: 16px;
}
.Entry ul li::before {
  content: "•"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #C4C4C4; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  font-size: 25px;
  display: inline-block; /* Needed to add space between the bullet and the text */
  margin-right: 0.3em; /* Also needed for space (tweak if needed) */
}
.Entry ol {
  margin: 0;
  max-width: 1200px;
  padding-left: 20px;
}
.Entry ol li {
  font-size: 16px;
  list-style: decimal;
}
.Entry ol li ol {
  padding: 10px 0 10px 30px;
}
.Entry ol li ol li {
  list-style: lower-alpha;
}

.Reflections {
  background: white;
  padding: 60px 0;
  margin-bottom: 60px;
  text-align: left;
}
@media (min-width: 0) and (max-width: 600px) {
  .Reflections {
    padding: 30px 0;
    margin-bottom: 30px;
  }
}
.Mode--Night .Reflections {
  background: #131313;
}
.Reflections .Container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 30px;
}
@media (max-width: 640px) {
  .Reflections .Container {
    grid-template-columns: 1fr;
  }
}

.ChapterViewer {
  background: white;
  padding: 60px 0;
  margin-bottom: 60px;
  text-align: left;
}
.Mode--Night .ChapterViewer {
  background: #131313;
}
.ChapterViewer__Prompt {
  padding: 30px;
  background: rgba(133, 133, 133, 0.1);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.ChapterViewer ol {
  counter-reset: item;
  list-style: none;
}
.ChapterViewer ol li {
  position: relative;
  padding: 15px;
  counter-increment: item;
  list-style: none;
  padding-left: 45px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.ChapterViewer ol li:last-child {
  border-bottom: none !important;
  padding-bottom: 0;
}
.Mode--Night .ChapterViewer ol li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.ChapterViewer ol li::before {
  border-radius: 30px;
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  content: counter(item);
  background: white;
  width: 30px;
  height: 30px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.Mode--Night .ChapterViewer ol li::before {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ChapterViewer ol li ol li {
  list-style: none;
  border: none;
  padding-left: 0 !important;
  padding: 5px;
}
.ChapterViewer ol li ol li::before {
  content: counter(item, lower-alpha) ". ";
  width: auto;
  height: auto;
  position: static;
  font-weight: inherit;
  background: transparent !important;
  border-radius: none;
  border: none !important;
  font-size: inherit;
}

.ChaptersHeader {
  padding: 0 0 60px 0;
}
@media (max-width: 800px) {
  .ChaptersHeader {
    padding: 0 0 30px 0;
  }
}
.ChaptersHeader .Container {
  text-align: center;
}
.ChaptersHeader svg {
  max-width: 60vw;
}
@media (max-width: 800px) {
  .ChaptersHeader svg {
    max-width: 75vw;
  }
}
@media (max-width: 600px) {
  .ChaptersHeader svg {
    max-width: 85vw;
  }
}
.Mode--Night .ChaptersHeader svg *[fill=black] {
  fill: white !important;
}
.ChaptersHeader--SubPage {
  padding-bottom: 30px;
  margin-top: -30px;
}
.ChaptersHeader--SubPage .Container {
  text-align: left;
}
.ChaptersHeader--SubPage svg {
  max-height: 60px;
  width: auto;
}

.Footer {
  text-align: center;
  padding: 60px 0;
}

.Sample--locked {
  position: relative;
}
.Sample--locked .ChapterList__link::after {
  content: "\e903";
  font-family: "dashboard" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: white;
  position: absolute;
  height: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 22%;
  z-index: 1;
  text-align: center;
  font-size: 40px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.Sample--locked#VideoArea::before {
  content: "\e903";
  font-family: "dashboard" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  color: white;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8vmax;
  z-index: 1;
}
.Sample--locked#VideoArea::after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.Protected__Unlock {
  max-width: 300px;
  margin: 0 auto;
  padding: 30px;
  text-align: center;
}
.Protected__Unlock h3 {
  margin-bottom: 15px;
}
.Protected__Password {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  line-height: 15px;
  font-size: 16px;
  color: black;
  border: 2px solid #858585;
  padding: 8px;
  border-radius: 30px;
}
.Mode--Night .Protected__Password {
  background: black;
  color: white;
}
.Protected__Container {
  display: none;
}

.Landing {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.Landing__Header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 30px;
  text-align: center;
}
.Landing__Header .OrgLogo {
  margin: 30px 0;
}
.Landing__Header h2 {
  font-weight: 400;
}
@media (min-width: 960px) {
  .Landing__Header h2 {
    font-size: 24px;
  }
}
.Landing__Programs {
  width: 100%;
}
.Landing__ProgramsList {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-top: -30px;
}
@media (min-width: 0) and (max-width: 960px) {
  .Landing__ProgramsList {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 0px;
  }
}
.Landing__ProgramItem {
  flex: 0 0 33.333333%;
  padding: 30px;
  box-sizing: border-box;
  display: none;
  width: 100%;
}
@media (min-width: 0) and (max-width: 960px) {
  .Landing__ProgramItem {
    flex: 0 0 50%;
    padding: 15px;
  }
}
@media (min-width: 0) and (max-width: 460px) {
  .Landing__ProgramItem {
    flex: 0 0 100%;
    padding: 15px;
  }
}
.Landing__ProgramItem--Angst .Landing__ProgramImage {
  background-image: url(media/Posters/AngstTitleCard.jpg);
}
.Landing__ProgramItem--Angst:hover .Landing__ProgramLink, .Landing__ProgramItem--Angst:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--Angst:focus-within .Landing__ProgramLink {
  border-color: #269037;
}
.Landing__ProgramItem--AngstCorp .Landing__ProgramImage {
  background-image: url(media/Posters/AngstTitleCard-Corp.jpg);
}
.Landing__ProgramItem--AngstCorp:hover .Landing__ProgramLink, .Landing__ProgramItem--AngstCorp:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--AngstCorp:focus-within .Landing__ProgramLink {
  border-color: #269037;
}
.Landing__ProgramItem--LIKE .Landing__ProgramImage {
  background-image: url(media/Posters/LikeTitleCard.jpg);
}
.Landing__ProgramItem--LIKE:hover .Landing__ProgramLink, .Landing__ProgramItem--LIKE:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--LIKE:focus-within .Landing__ProgramLink {
  border-color: #1E68EC;
}
.Landing__ProgramItem--Upstanders .Landing__ProgramImage {
  background-image: url(media/Posters/UpstandersTitleCard.jpg);
}
.Landing__ProgramItem--Upstanders:hover .Landing__ProgramLink, .Landing__ProgramItem--Upstanders:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--Upstanders:focus-within .Landing__ProgramLink {
  border-color: #E57E3A;
}
.Landing__ProgramItem--RTBH .Landing__ProgramImage {
  background-image: url(media/Posters/RTBHTitleCard.jpg);
}
.Landing__ProgramItem--RTBH:hover .Landing__ProgramLink, .Landing__ProgramItem--RTBH:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--RTBH:focus-within .Landing__ProgramLink {
  background-image: linear-gradient(white, white), linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-color: transparent;
}
.Mode--Night .Landing__ProgramItem--RTBH:hover .Landing__ProgramLink, .Mode--Night .Landing__ProgramItem--RTBH:focus-visible .Landing__ProgramLink, .Mode--Night .Landing__ProgramItem--RTBH:focus-within .Landing__ProgramLink {
  background-image: linear-gradient(black, black), linear-gradient(to right bottom, #5F3F0D, #754B0C, #AC6B0B, #D7A153, #E7BA78);
}
.Landing__ProgramItem--Nevertheless .Landing__ProgramImage {
  background-image: url(media/Posters/NeverthelessTitleCard.jpg);
}
.Landing__ProgramItem--Nevertheless:hover .Landing__ProgramLink, .Landing__ProgramItem--Nevertheless:focus-visible .Landing__ProgramLink, .Landing__ProgramItem--Nevertheless:focus-within .Landing__ProgramLink {
  border-color: #4493DE;
}
.Landing__ProgramLink {
  background: white;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 180ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.Mode--Night .Landing__ProgramLink {
  background: rgba(0, 0, 0, 0.6);
}
.Landing__ProgramLink:hover, .Landing__ProgramLink:focus-visible, .Landing__ProgramLink:focus-within {
  transform: scale(1.05);
  box-shadow: 0px 2px 5px 0 rgba(0, 0, 0, 0.15);
  color: black;
}
.Mode--Night .Landing__ProgramLink:hover, .Mode--Night .Landing__ProgramLink:focus-visible, .Mode--Night .Landing__ProgramLink:focus-within {
  color: white;
  background-color: black;
}
.Landing__ProgramImage {
  padding-top: 54.5454545%;
  background: black;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.Landing__ProgramText {
  text-align: center;
  padding: 15px;
}
.Landing__ProgramText h3 {
  line-height: 30px;
  font-size: 18px;
}
.Landing__ProgramText h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  line-height: 15px;
  font-size: 14px;
  font-weight: 400;
}

.ExpiredMsg {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 30px;
}
.ExpiredMsg * {
  margin: 0;
}
.ExpiredMsg > * + * {
  margin-top: 15px;
}

.Burst {
  background: white;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .Burst {
    border-radius: 0;
  }
}
.Burst:not(:first-of-type) {
  margin-top: 15px;
}
.Burst__Container {
  padding: 30px;
  padding-bottom: 15px;
}
.Burst__Container > * + * {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .Burst__Container {
    padding: 15px;
    padding-bottom: 10px;
  }
  .Burst__Container > * + * {
    margin-top: 10px;
  }
}
.Mode--Night .Burst {
  background: rgba(0, 0, 0, 0.5);
}
.Burst__PageHeader {
  padding-top: 30px;
  text-align: center;
}
@media (max-width: 800px) {
  .Burst__PageHeader {
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 600px) {
  .Burst__PageHeader {
    padding: 15px 0 15px 0;
  }
}
.Burst__PageHeader svg {
  max-width: 60vw;
}
@media (max-width: 800px) {
  .Burst__PageHeader svg {
    max-width: 75vw;
  }
}
@media (max-width: 600px) {
  .Burst__PageHeader svg {
    max-width: 85vw;
  }
}
.Mode--Night .Burst__PageHeader svg *[fill=black] {
  fill: white !important;
}
.Burst__PageHeader--embedded {
  padding-top: 0;
}
@media (max-width: 800px) {
  .Burst__PageHeader--embedded {
    padding-top: 30px;
  }
}
.Burst__PageHeader--SubPage {
  padding-bottom: 30px;
  margin-top: -30px;
}
.Burst__PageHeader--SubPage .Container {
  text-align: left;
}
.Burst__PageHeader--SubPage svg {
  max-height: 60px;
  width: auto;
}
.Burst__PageSubHeader {
  background: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: -15px;
  padding: 15px;
  border-radius: 30px;
  font-size: 14px;
}
.Mode--Night .Burst__PageSubHeader {
  background: rgba(0, 0, 0, 0.5);
}
.Burst__PageSubHeader h1 {
  margin-top: 15px;
  margin-bottom: 0 !important;
}
@media (max-width: 800px) {
  .Burst__PageSubHeader {
    margin-bottom: 0;
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .Burst__PageSubHeader {
    border-radius: 0;
  }
}
.Burst__PageSubHeader span {
  margin-left: 15px;
}
.Burst__Header > * + * {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .Burst__Header > * + * {
    margin-top: 10px;
  }
}
.Burst__TakeAways {
  border: 2px solid rgba(133, 133, 133, 0.25);
  border-radius: 15px;
  transition: all 180ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
  padding: 13px;
  padding-bottom: 0px;
}
.Burst__TakeAways .path2::before {
  transition: transform 180ms 180ms cubic-bezier(0.5, 0, 0.1, 1);
  display: inline-block;
}
.Burst__TakeAways:hover {
  border: 2px solid rgba(133, 133, 133, 0.5);
}
.Burst__TakeAways--active {
  padding-bottom: 13px;
  border: 2px solid transparent !important;
}
.Burst__TakeAways--active .path2::before {
  transform: rotate(90deg);
  transition: transform 360ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.Burst__TakeAwaysButton {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 30px;
  padding-bottom: 13px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
.Burst__TakeAwaysButton i {
  font-size: 25px;
  margin-right: 15px;
}
.Burst__TakeAwaysButton::after {
  content: "Click to Expand";
  font-weight: 400;
  font-size: 12px;
  padding-left: 15px;
  line-height: 30px;
  display: block;
  text-align: right;
  flex: 1 1 auto;
  opacity: 0.6;
  transition: opacity 360ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.Burst__TakeAways--active .Burst__TakeAwaysButton::after {
  opacity: 0;
}
.Burst__TakeAwaysText {
  font-size: 14px;
  line-height: 20px;
  display: none;
  text-align: justify;
}
.Burst__Footer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;
  background-clip: padding-box;
  border-top: 2px solid #F6F6F6;
}
.Burst__Footer > * + * {
  margin-left: 15px;
}
@media (max-width: 600px) {
  .Burst__Footer {
    padding: 15px;
  }
}
.Mode--Night .Burst__Footer {
  border-color: #202020;
}
.Burst__Footer div {
  max-width: 400px;
}
.Burst__Footer h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.Burst__Footer p {
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
.Burst__PortraitWrap {
  width: 60px;
  height: 60px;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid #858585;
}
.Film--RTBH .Burst__PortraitWrap {
  background-image: linear-gradient(white, white), linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  border-radius: 30px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
}
.Film--Upstanders .Burst__PortraitWrap {
  border-color: #E57E3A;
}
.Film--Angst .Burst__PortraitWrap {
  border-color: #269037;
}
.Film--LIKE .Burst__PortraitWrap {
  border-color: #1E68EC;
}
.Burst__Portrait {
  display: block;
  border-radius: 50%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 15px;
}
.Burst__CatButton {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  line-height: 15px;
  min-height: 30px;
  border: 2px solid currentColor;
  background-color: transparent;
  font-size: 14px;
  border-radius: 30px;
  font-weight: 700;
  padding: 5.5px 15px;
  transition: all 100ms 0ms ease-in-out;
}
.Burst__CatButton > * + * {
  margin-left: 10px;
}
@media (max-width: 600px) {
  .Burst__CatButton {
    text-align: center;
  }
}
.Burst__SidebarItem .Burst__CatButton + .Burst__CatButton {
  margin-top: 10px;
}
.Burst__CatButton .Button__text {
  display: block;
  max-width: 100%;
}
.Burst__CatButton:hover, .Burst__CatButton:focus-visible {
  transform: scale(1.05);
  transform-origin: center;
}
.Film--Angst .Burst__CatButton {
  color: #269037;
}
.Film--Angst .Burst__CatButton:hover, .Film--Angst .Burst__CatButton:focus, .Film--Angst .Burst__CatButton--active {
  background: #269037;
  border-color: #269037;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Angst.Mode--Night .Burst__CatButton {
  color: white;
  border-color: #269037;
}
.Film--LIKE .Burst__CatButton {
  color: #092b68;
  border-color: #1E68EC;
}
.Film--LIKE .Burst__CatButton:hover, .Film--LIKE .Burst__CatButton:focus, .Film--LIKE .Burst__CatButton--active {
  background: #1E68EC;
  border-color: #1E68EC;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--LIKE.Mode--Night .Burst__CatButton {
  color: white;
  border-color: #1E68EC;
}
.Film--Upstanders .Burst__CatButton {
  color: #763810;
  border-color: #E57E3A;
}
.Film--Upstanders .Burst__CatButton:hover, .Film--Upstanders .Burst__CatButton:focus, .Film--Upstanders .Burst__CatButton--active {
  background: #E57E3A;
  border-color: #E57E3A;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Upstanders.Mode--Night .Burst__CatButton {
  color: white;
  border-color: #E57E3A;
}
.Film--Nevertheless .Burst__CatButton {
  color: #4493DE;
}
.Film--Nevertheless .Burst__CatButton:hover, .Film--Nevertheless .Burst__CatButton:focus, .Film--Nevertheless .Burst__CatButton--active {
  background: #4493DE;
  border-color: #4493DE;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Nevertheless.Mode--Night .Burst__CatButton {
  color: white;
  border-color: #4493DE;
}
.Film--RTBH .Burst__CatButton {
  background-image: linear-gradient(white, white), linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  border-radius: 30px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  color: #5F3F0D;
  text-shadow: none;
}
.Film--RTBH .Burst__CatButton:hover, .Film--RTBH .Burst__CatButton:focus, .Film--RTBH .Burst__CatButton--active {
  background-image: linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  background-clip: border-box;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Mode--Night.Film--RTBH .Burst__CatButton {
  color: white;
  background-image: linear-gradient(black, black), linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
}
.Mode--Night.Film--RTBH .Burst__CatButton:hover, .Mode--Night.Film--RTBH .Burst__CatButton:focus, .Mode--Night.Film--RTBH .Burst__CatButton--active {
  background-image: linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  background-clip: border-box;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Burst__CatButton i {
  font-size: 13px;
}
.Burst__Date {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}
.Burst__CatButton + .Burst__Date {
  margin-left: 10px;
}
.Burst__Headline {
  font-size: 23px;
  line-height: 30px;
}
@media (max-width: 800px) {
  .Burst__Headline {
    font-size: 19px;
  }
}
.Burst__Runtime {
  white-space: nowrap;
  font-size: 14px;
  font-weight: 400;
  display: none;
}
.Burst__CategoryItem {
  background: white;
  padding: 30px;
  border-radius: 30px;
}
.Burst__CategoryItem > * + * {
  margin-top: 15px;
}
@media (max-width: 600px) {
  .Burst__CategoryItem {
    padding: 15px;
  }
  .Burst__CategoryItem > * + * {
    margin-top: 10px;
  }
}
.Burst__CategoryItem:not(:first-of-type) {
  margin-top: 15px;
}
.Mode--Night .Burst__CategoryItem {
  background: rgba(0, 0, 0, 0.5);
}
.Burst__Clusters {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: calc(100% + 15px);
  margin-left: -7.5px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .Burst__Clusters {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .Burst__Clusters {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: nowrap;
    flex-direction: column;
  }
}
.Burst__ClusterItem {
  font-weight: 700;
  text-align: center;
  flex: 1 1 33%;
  padding: 7.5px;
  box-sizing: border-box;
  max-width: 33.333%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .Burst__ClusterItem {
    flex: 1 1 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .Burst__ClusterItem {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.Burst__ClusterItem a {
  font-size: 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 2px solid rgba(133, 133, 133, 0.3);
  padding: 15px;
  min-height: 150px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .Burst__ClusterItem a {
    min-height: 0;
  }
}
.Burst__ClusterItem a:hover {
  text-decoration: none;
}
.Film--Angst .Burst__ClusterItem a {
  color: #269037;
}
.Film--Angst .Burst__ClusterItem a:hover, .Film--Angst .Burst__ClusterItem a:focus, .Film--Angst .Burst__ClusterItem a--active {
  background: #269037;
  border-color: #269037;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Angst.Mode--Night .Burst__ClusterItem a {
  color: white;
  border-color: #269037;
}
.Film--LIKE .Burst__ClusterItem a {
  color: #092b68;
  border-color: #1E68EC;
}
.Film--LIKE .Burst__ClusterItem a:hover, .Film--LIKE .Burst__ClusterItem a:focus, .Film--LIKE .Burst__ClusterItem a--active {
  background: #1E68EC;
  border-color: #1E68EC;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--LIKE.Mode--Night .Burst__ClusterItem a {
  color: white;
  border-color: #1E68EC;
}
.Film--Upstanders .Burst__ClusterItem a {
  color: #763810;
  border-color: #E57E3A;
}
.Film--Upstanders .Burst__ClusterItem a:hover, .Film--Upstanders .Burst__ClusterItem a:focus, .Film--Upstanders .Burst__ClusterItem a--active {
  background: #E57E3A;
  border-color: #E57E3A;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Upstanders.Mode--Night .Burst__ClusterItem a {
  color: white;
  border-color: #E57E3A;
}
.Film--Nevertheless .Burst__ClusterItem a {
  color: #4493DE;
}
.Film--Nevertheless .Burst__ClusterItem a:hover, .Film--Nevertheless .Burst__ClusterItem a:focus, .Film--Nevertheless .Burst__ClusterItem a--active {
  background: #4493DE;
  border-color: #4493DE;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Film--Nevertheless.Mode--Night .Burst__ClusterItem a {
  color: white;
  border-color: #4493DE;
}
.Film--RTBH .Burst__ClusterItem a {
  background-image: linear-gradient(white, white), linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  border-radius: 30px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  color: #5F3F0D;
  text-shadow: none;
}
.Film--RTBH .Burst__ClusterItem a:hover, .Film--RTBH .Burst__ClusterItem a:focus, .Film--RTBH .Burst__ClusterItem a--active {
  background-image: linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  background-clip: border-box;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Mode--Night.Film--RTBH .Burst__ClusterItem a {
  color: white;
  background-image: linear-gradient(black, black), linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
}
.Mode--Night.Film--RTBH .Burst__ClusterItem a:hover, .Mode--Night.Film--RTBH .Burst__ClusterItem a:focus, .Mode--Night.Film--RTBH .Burst__ClusterItem a--active {
  background-image: linear-gradient(to right bottom, #5f3f0d, #754b0c, #ac6b0b, #d7a153, #e7ba78);
  background-clip: border-box;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.25);
  color: white;
}
.Burst__ClusterItem span {
  display: block;
}
.Burst__Embed {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 15px;
  overflow: hidden;
  animation-name: loadingFade;
  animation-timing-function: cubic-bezier(0.5, 0, 0.1, 1);
  animation-fill-mode: both;
  animation-duration: 500ms;
  animation-direction: alternate;
  animation-iteration-count: 15;
}
.Burst__Embed iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.Burst__Sidebar > * + * {
  margin-top: 15px;
}
.Burst__SidebarHeading {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}
.Burst__SidebarItem {
  background: white;
  padding: 30px;
  border-radius: 30px;
}
@media (max-width: 600px) {
  .Burst__SidebarItem {
    border-radius: 0;
    padding: 15px;
    margin-bottom: 30px;
  }
  .Burst__SidebarItem > * + * {
    margin-top: 10px;
  }
}
.Mode--Night .Burst__SidebarItem {
  background: rgba(0, 0, 0, 0.5);
}
.Burst__SidebarItem p {
  font-size: 14px;
  line-height: 20px;
}

.FormatSelector {
  text-align: center;
}
.FormatSelector__Title {
  font-size: 23px;
  margin-bottom: 30px;
}
.FormatSelector__Parent {
  min-height: calc(66vh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.FormatSelector__ButtonSet {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FormatSelector__ButtonSet > * + * {
  margin-left: 15px;
}
.FormatSelector__Btn {
  background: white;
  border-radius: 30px;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  flex-direction: column;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(133, 133, 133, 0.2);
  transition: all 180ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.FormatSelector__Btn:hover, .FormatSelector__Btn:focus-visible {
  border-color: #858585;
}
.Mode--Night .FormatSelector__Btn {
  background: black;
}
.FormatSelector__Icon {
  font-size: 60px;
  color: #858585;
  margin-bottom: 15px;
}
.FormatSelector__Text {
  font-size: 20px;
  line-height: 30px;
  display: block;
  font-weight: 700;
}

.ImpactPop {
  display: none;
  z-index: 1000;
  position: relative;
}
.ImpactPop__html {
  overflow: hidden;
}
.ImpactPop__Bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
.ImpactPop__Container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.ImpactPop__EmbedWrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: 100%;
  max-height: 420px;
  display: none;
}
.ImpactPop #ImpactPop__IframeInsert {
  position: relative;
  padding-bottom: 100%;
}
.ImpactPop__Close {
  position: absolute;
  top: -30px;
  right: -30px;
  color: white;
  font-size: 15px;
  opacity: 0.5;
  transition: all 180ms 0ms cubic-bezier(0.5, 0, 0.1, 1);
}
.ImpactPop__Close:hover, .ImpactPop__Close:focus {
  opacity: 1;
  transform: scale(1.1);
}
@media (max-width: 480px) {
  .ImpactPop__Close {
    right: 15px;
  }
}
.ImpactPop__Iframe {
  background: white;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;
}
.ImpactPop__Thanks {
  text-align: center;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ImpactPop__ThanksSmiley {
  max-width: 100%;
  max-height: 150px;
}
.Film--Angst .ImpactPop__ThanksSmiley {
  fill: #269037;
}
.Film--LIKE .ImpactPop__ThanksSmiley {
  fill: #1E68EC;
}
.Film--Upstanders .ImpactPop__ThanksSmiley {
  fill: #E57E3A;
}
.Film--Nevertheless .ImpactPop__ThanksSmiley {
  fill: #4493DE;
}
.Film--RTBH .ImpactPop__ThanksSmiley {
  fill: url(#RTBH);
}
.Film--Angst .ImpactPop__Thanks h2 {
  color: #269037;
}
.Film--LIKE .ImpactPop__Thanks h2 {
  color: #1E68EC;
}
.Film--Upstanders .ImpactPop__Thanks h2 {
  color: #E57E3A;
}
.Film--Nevertheless .ImpactPop__Thanks h2 {
  color: #4493DE;
}
.Film--RTBH .ImpactPop__Thanks h2 {
  color: #5F3F0D;
}

.fancybox-button--close, .fancybox-toolbar {
  opacity: 1 !important;
  visibility: visible !important;
}

.fancybox-is-modal .fancybox-toolbar {
  opacity: 0 !important;
  visibility: hidden !important;
}

.fancybox-button--zoom {
  display: none;
}

.fancybox-bg {
  background: black !important;
}

.fancybox-content {
  border-radius: 30px;
  overflow: hidden !important;
  max-height: calc(100vh - 44px);
}

.fancybox-slide {
  padding: 44px 0 0 0;
}

.fancybox-toolbar {
  right: auto;
  left: 0;
}

.fancybox-button--close {
  width: auto;
}
.fancybox-button--close svg {
  display: none;
}
.fancybox-button--close::before {
  content: "\e91f";
  font-family: "dashboard";
  font-size: 24px;
  line-height: 24px;
}
.fancybox-button--close::after {
  content: "Return to program";
  line-height: 12px;
  padding-left: 15px;
  font-size: 13px;
  display: inline-block;
  max-width: 77px;
  text-align: left;
  font-weight: 700;
}

@media (min-width: 600px) {
  .fancybox-slide {
    padding: 0;
  }
  .fancybox-content {
    max-height: 100vh;
  }
  .fancybox-content {
    max-width: 80%;
    max-width: 80vw;
  }
}
@media (min-width: 799.999px) {
  .Util--HideDesktop {
    display: none !important;
  }
}

@media (max-width: 800px) {
  .Util--HideMobile {
    display: none !important;
  }
}

.JSMessage {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  text-align: center;
  font-weight: bold;
  z-index: 1001;
  font-size: 21px;
}
.JSMessage__text {
  display: block;
  max-width: 30em;
  padding: 30px;
  margin: 0 auto;
}

.tf-v1-iframe-wrapper {
  max-width: 380px;
  max-height: 380px;
}

body {
  scrollbar-face-color: rgba(255, 255, 255, 0.3);
  scrollbar-track-color: rgba(255, 255, 255, 0.1);
}
body ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  /* /////////////////////////////////
  @include breakpoint($mobile) {
    @content
  }*/
}
html[class*=mobile-] body ::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
body ::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

input[type=date]::-webkit-inner-spin-button, input[type=date]::-webkit-clear-button {
  display: none;
}

.presentation {
  visibility: visible !important;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

*:focus {
  outline: none !important;
}

*:focus-visible {
  outline: 5px solid rgb(0, 172, 196) !important;
}
/*# sourceMappingURL=dashboard.css.map */
