@charset "UTF-8";
blockquote, body, dd, dl, figure, h1, h2, h3, h4, h5, h6, hr, ol, p, pre, time, ul {
  margin: 0;
  padding: 0;
}

html, input, button {
  font: normal normal 105%/1.7 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "kern" 1;
  -moz-font-feature-settings: "kern" 1;
  -o-font-feature-settings: "kern" 1;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 600;
}

*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
}

.clickable {
  cursor: pointer;
}

[v-cloak], .hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .hide-until--narrow {
    display: none;
  }
}

@media (max-width: 900px) {
  .hide-until--medium {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hide-until--wide {
    display: none;
  }
}

@media (min-width: 600px) {
  .hide-from--narrow {
    display: none;
  }
}

@media (min-width: 900px) {
  .hide-from--medium {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hide-from--wide {
    display: none;
  }
}

.page-body {
  overflow-x: hidden;
  width: 100%;
  min-height: calc(100vh - 2 * 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-header {
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  order: 2;
}

.video-page-header {
  padding: 1rem 0 4rem;
}

@media (max-width: 768px) {
  .video-page-header {
    padding: 0 0 1rem;
  }
}

input[type=checkbox] {
  position: relative;
  cursor: pointer;
}

input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  border: 2px solid #000;
  background-color: #fff;
}

input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  left: 6px;
}

.content-wrapper, .feature, .single-stream, .content-simple {
  width: calc(100vw - 2rem);
  max-width: 900px;
}

.content-wrapper.narrow, .feature.narrow, .single-stream.narrow, .content-simple.narrow {
  max-width: 600px;
}

.content-wrapper.very-narrow, .feature.very-narrow, .single-stream.very-narrow, .content-simple.very-narrow {
  max-width: 440px;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
  /* The Close Button */
}

.modal .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 600px;
  /* Could be more or less, depending on screen size */
  max-width: 100%;
}

.modal .modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal .modal-close:hover,
.modal .modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.ccs-wrapper {
  flex: 3;
}

.ccs-wrapper .feature {
  width: calc(100% - 2rem);
}

.ccs-widget {
  flex: 2;
  min-width: 400px;
  padding-right: 20px;
}

@media (max-width: 768px) {
  .ccs-widget {
    margin-top: 6rem;
  }
}

@media (max-width: 568px) {
  .ccs-widget {
    min-width: 320px;
  }
  .ccs-widget.mobile-padding {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-header {
  width: 100%;
}

.page-attribution {
  padding: 10px;
  order: 4;
}

.page-header {
  padding: 1rem 0 4rem;
}

.page-header img {
  width: 80px;
}

.page-nav {
  position: fixed;
  z-index: 10;
  background-color: #D81017;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}

@media (min-width: 600px) {
  .page-nav {
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  }
}

.page-nav .nav-left {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 12;
  width: 100%;
}

@media (min-width: 600px) {
  .page-nav .nav-left {
    justify-content: space-between;
    width: calc(100% - 2rem);
  }
}

@media (min-width: 900px) {
  .page-nav .nav-left {
    width: auto;
  }
}

.page-nav .nav-button {
  background-color: #D81017;
  border: 0;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

@media (min-width: 600px) {
  .page-nav .nav-button {
    padding: 0 2rem;
  }
}

.page-nav .nav-button svg {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
}

.page-nav .nav-button svg path {
  stroke: #fff;
  transition: transform 0.2s, opacity 0.2s;
  transform-origin: 50% 50%;
  stroke-width: 2px;
  transform: scaleX(1);
  opacity: 1;
}

.page-nav .nav-button svg path.rotate_up {
  transform: rotate(45deg);
}

.page-nav .nav-button svg path.rotate_down {
  transform: rotate(-45deg);
}

.page-nav .nav-button svg path.hide {
  transform: scaleX(0);
  opacity: 0;
}

.page-nav .nav-logo {
  height: 100%;
  padding: 0 0 0 1rem;
  background-color: #D81017;
}

@media (min-width: 600px) {
  .page-nav .nav-logo {
    width: 50%;
    padding: 0 2rem 0 0;
    margin-right: 2rem;
  }
}

@media (min-width: 900px) {
  .page-nav .nav-logo {
    width: auto;
  }
}

.page-nav .nav-links a {
  padding: 0 1.33333rem;
}

@media (min-width: 1200px) {
  .page-nav .nav-links a {
    padding: 0 2rem;
  }
}

.page-nav .nav-user-logins {
  display: flex;
}

.page-nav .nav-user-logins .nav-user {
  padding-right: 2rem;
}

.page-nav .nav-sidebar {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 11;
  min-height: 100vh;
  left: -100%;
  background: #D81017;
  width: 100%;
  padding: 60px 1rem 0;
  display: flex;
  flex-direction: column;
  transition: 0.2s left cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

@media (min-width: 600px) {
  .page-nav .nav-sidebar {
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    left: -80%;
    width: 80%;
    padding: 60px 10% 0 2rem;
  }
}

@media (min-width: 900px) {
  .page-nav .nav-sidebar {
    left: -50%;
    width: 50%;
    padding: 60px 7% 0 2rem;
  }
}

@media (min-width: 1200px) {
  .page-nav .nav-sidebar {
    left: -40%;
    width: 40%;
    padding: 60px 5% 0 2rem;
  }
}

@media (min-width: 1700px) {
  .page-nav .nav-sidebar {
    left: -30%;
    width: 30%;
    padding: 60px 5% 0 2rem;
  }
}

.page-nav .nav-sidebar.isOpen {
  left: 0;
}

.page-nav .nav-sidebar section + section {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.page-nav .nav-sidebar section + section {
  padding-top: 2rem;
  margin-top: 2rem;
}

.page-nav .nav-sidebar div + section {
  margin-top: 2rem;
}

.page-nav .nav-sidebar section:last-child {
  margin-bottom: 2rem;
}

.page-nav .nav-sidebar span, .page-nav .nav-sidebar ul {
  margin-left: 1.33333rem;
  margin-right: 1.33333rem;
}

@media (min-width: 600px) {
  .page-nav .nav-sidebar span, .page-nav .nav-sidebar ul {
    margin-left: calc(2rem + 1.5rem);
    margin-right: calc(2rem + 1.5rem);
  }
}

.page-nav .nav-sidebar span + ul {
  margin-top: 1rem;
}

.page-nav .nav-sidebar ul {
  list-style: none;
}

.page-nav .nav-sidebar ul li {
  margin: 1vh 0;
}

.page-nav .nav-sidebar ul li a {
  line-height: 1.2;
  padding: 0.5rem 0;
  display: block;
}

.page-nav .nav-sidebar ul li a.ccs-link {
  color: #92c024;
  background-color: #fff;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 2vh;
}

.page-nav.ccs {
  background-color: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  padding-right: 8px;
  align-items: center;
}

.page-nav.ccs .ccs-logo {
  height: 56px;
}

.page-content {
  order: 3;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 80px;
}

.content-simple {
  margin: 2rem 0;
}

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

.preview-wrapper {
  margin: auto;
}

.preview-wrapper .preview {
  width: 900px;
  height: 506.25px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
}

@media (max-width: 768px) {
  .preview-wrapper .preview {
    width: 100vw;
    height: 56vw;
  }
}

.preview-wrapper .preview .preview-title {
  max-width: 60%;
  opacity: 0;
  margin-top: -1rem;
  transform: translateY(0);
  transition: opacity .15s ease-in-out, transform .15s ease-in-out;
}

.preview-wrapper .preview:hover .preview-title {
  opacity: 1;
  transform: translateY(1rem);
}

.preview-wrapper .preview .preview-header {
  padding: 0.5rem;
  padding-bottom: 4rem;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.preview-wrapper .preview .preview-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 2rem 0.5rem 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.preview-wrapper .preview .feature-countdown {
  background-color: transparent;
  padding: 0;
}

.preview-wrapper .preview .feature-countdown .feature-time {
  text-align: center;
}

.preview-wrapper .preview .feature-countdown .feature-time div:nth-child(2) {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.preview-wrapper .preview .favorite-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-feature .feature {
  width: 100%;
  max-width: 1200px;
  background-color: #fff;
}

.page-feature .feature .feature-wrapper {
  display: flex;
  flex-direction: row;
  margin: auto;
  position: relative;
}

@media (max-width: 768px) {
  .page-feature .feature .feature-wrapper {
    flex-wrap: wrap;
    max-width: 90%;
    -webkit-box-shadow: 6px 6px 0 #000;
    box-shadow: 6px 6px 0 #000;
    border: 2px solid #000;
  }
}

.page-feature .feature .feature-wrapper.ccs {
  flex-wrap: wrap;
}

.page-feature .feature .stream-info {
  width: 800px;
  height: 450px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

@media (min-width: 769px) {
  .page-feature .feature .stream-info {
    -webkit-box-shadow: 6px 6px 0 #000;
    box-shadow: 6px 6px 0 #000;
    border: 2px solid #000;
    margin-right: 2rem;
  }
}

@media (max-width: 768px) {
  .page-feature .feature .stream-info {
    width: 90vw;
    height: 50vw;
  }
}

.page-feature .feature .stream-info .play i {
  opacity: 1;
}

.page-feature .feature .feature-aside {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0;
  padding-top: 1rem;
  padding-right: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .page-feature .feature .feature-aside {
    padding: 0.5rem;
  }
}

.page-feature .feature .feature-aside .h1 {
  margin: 0;
}

.page-feature .feature .play {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.page-feature .feature .feature-tag {
  padding-top: 10px;
}

.page-feature + * {
  margin-top: 4rem;
}

.feature-countdown {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  padding-top: 2rem;
}

@media (max-width: 768px) {
  .feature-countdown {
    width: 100%;
    padding-top: 1rem;
  }
}

.feature-countdown .feature-time {
  justify-self: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}

@media (max-width: 768px) {
  .feature-countdown .feature-time {
    text-align: center;
    width: 100%;
  }
}

.feature-countdown .feature-time div:nth-child(2) {
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-single {
  margin-bottom: 4rem;
}

.page-single .single-stream {
  display: grid;
  grid-row-gap: 2rem;
}

.page-single .single-stream .supporter {
  padding-top: 80px;
}

.page-single .single-stream .supporter h3 {
  line-height: 3.4rem;
}

.page-single .single-stream .supporter img {
  display: block;
}

.page-single .single-stream .stream-header > * {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.page-single .single-stream .stream-header > span {
  display: block;
}

.page-single .single-stream .stream-tile {
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
}

.page-single .single-stream .stream-authors {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  flex-wrap: wrap;
}

.page-single .single-stream .stream-authors .stream-author {
  width: 30%;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.page-single .single-stream .stream-authors .options {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: row;
}

.page-single .single-stream .stream-authors .options > *:not(:first-child) {
  margin-left: 0.5rem;
}

.page-single .ccs-support {
  display: grid;
}

.page-single .ccs-support .tracker {
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
}

.page-single .stream-support {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-single .stream-support .content {
  width: 100%;
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
  position: relative;
  padding: 2rem;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  .page-single .stream-support .content {
    width: 100%;
    padding-left: 0.66667rem;
    padding-right: 0.66667rem;
    padding-top: 5rem;
  }
}

.page-single .stream-support .content .progress {
  height: 10px;
  width: 100%;
  border: 1px solid black;
  overflow: hidden;
}

.page-single .stream-support .content .progress .progressbar {
  height: 10px;
  background-color: #D81017;
}

.page-single .stream-support .content .sticker {
  position: absolute;
  background-color: #92c024;
  color: #fff;
  top: -8rem;
  left: -2rem;
  transform: rotate(-10deg);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .page-single .stream-support .content .sticker {
    width: 160px;
    height: 160px;
    top: -6rem;
    left: 0;
  }
}

.page-single .stream-support .content .support-box {
  display: grid;
  align-items: center;
}

.page-single .stream-support .content .support-box section {
  border-bottom: 2px solid #000;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-single .stream-support .content .support-box section:last-of-type {
  border: none;
}

.page-single .stream-support.content {
  grid-area: content;
}

.stream-author .modal-mask {
  display: block;
  overflow: auto;
}

.stream-author .modal-mask .modal-wrapper {
  display: block;
}

.stream-author .modal-mask .modal-container {
  margin: 4% auto;
  min-width: 540px;
  /* The Close Button */
}

@media (max-width: 768px) {
  .stream-author .modal-mask .modal-container {
    min-width: unset;
  }
}

.stream-author .modal-mask .modal-container .modal-close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
}

.stream-author .modal-mask .modal-container .modal-close:hover,
.stream-author .modal-mask .modal-container .modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.stream-author .subscription-plans {
  margin-bottom: 10px;
}

.stream-author .subscription-plan {
  margin-bottom: 10px;
}

.stream-author .subscription-plan .subscription-plan-details {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.stream-author .subscription-plan .subscription-plan-details:hover {
  background-color: initial;
}

.stream-author .subscription-plan .subscription-plan-details:hover .name {
  background-color: #D81017;
}

.stream-author .subscription-plan .description {
  font-size: 0.6em;
  color: black;
}

.stream-author .subscription-plan .price {
  align-self: flex-end;
  color: white;
  background-color: black;
}

@media (max-width: 768px) {
  .stream-author {
    width: 100%;
  }
}

.content-area {
  display: grid;
  grid-column-gap: 4rem;
}

.content-area .h1, .content-area .h2 {
  margin-left: 2rem;
}

.content-area .h1 {
  margin: 2rem 0 1rem 2rem;
}

.content-area .subtitle {
  margin: 2rem 0 1rem 2rem;
}

.content-area .streams {
  width: 100vw;
}

.content-area .streams .streams-wrapper {
  position: relative;
  overflow: hidden;
}

.content-area .streams .streams-wrapper .btn {
  border: none;
  position: absolute;
  font-size: 2.9rem;
  background-color: #000;
  top: calc(50% - 2.9rem);
  height: 5.8rem;
  z-index: 5;
  cursor: pointer;
  transition: left 0.5s, right 0.5s, background-color 0.5s;
}

@media (max-width: 768px) {
  .content-area .streams .streams-wrapper .btn {
    height: auto;
  }
}

.content-area .streams .streams-wrapper .btn i {
  color: #fff;
  margin: 0;
}

.content-area .streams .streams-wrapper .btn i::before {
  margin: 0;
}

.content-area .streams .streams-wrapper .btn:hover, .content-area .streams .streams-wrapper .btn:focus {
  background-color: #D81017;
  outline: none;
}

.content-area .streams .streams-wrapper .btn.prev {
  left: -0.66667rem;
}

.content-area .streams .streams-wrapper .btn.next {
  right: -0.66667rem;
}

.content-area .streams .streams-wrapper:hover .btn.prev {
  left: 0;
}

.content-area .streams .streams-wrapper:hover .btn.next {
  right: 0;
}

.content-area .streams .streams-list {
  overflow-y: hidden;
  display: flex;
}

.content-area .streams .streams-list .stream {
  position: relative;
  margin-left: 2rem;
  margin-bottom: 2rem;
  /* @include box(); */
}

.content-area .streams .streams-list .stream .stream-wrapper {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  position: relative;
}

.content-area .streams .streams-list .stream .stream-wrapper .more-tile {
  padding: 1rem;
  height: 14.4rem;
  min-height: 14.4rem;
  max-height: 14.4rem;
  width: 25.6rem;
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .stream .stream-wrapper .more-tile {
    height: 46.8vw;
    min-height: 46.8vw;
    max-height: 46.8vw;
    width: 83.2vw;
  }
}

.content-area .streams .streams-list .stream .stream-wrapper .bookmark-container {
  padding-left: 1rem;
}

.content-area .streams .streams-list .stream .stream-wrapper .header-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  box-sizing: border-box;
  background-color: #f3f3f3;
  height: 14.4rem;
  min-height: 14.4rem;
  max-height: 14.4rem;
  width: 25.6rem;
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .stream .stream-wrapper .header-image {
    height: 46.8vw;
    min-height: 46.8vw;
    max-height: 46.8vw;
    width: 83.2vw;
  }
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .stream .stream-wrapper {
    min-height: 12rem;
  }
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-header {
  padding: 0;
  z-index: 2;
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-header .h3-wrapper {
  line-height: 1.5em !important;
  max-height: 3.2em;
  overflow: hidden;
  padding: 0 5px;
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-header h3 {
  font-size: 22px;
}

.content-area .streams .streams-list .stream .stream-wrapper .play {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-footer {
  width: 25.6rem;
  border-top: 1px solid #000;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  padding-top: 0.5rem;
  height: 117px;
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .stream .stream-wrapper .stream-footer {
    width: 83.2vw;
  }
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-footer .caption-container {
  display: flex;
  flex-direction: row;
}

.content-area .streams .streams-list .stream .stream-wrapper .stream-footer.inverted {
  background-color: #000;
}

.content-area .streams .streams-list .page {
  position: relative;
  width: 250px;
  min-width: 250px;
  max-width: 250px;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .page {
    width: 60vw;
    min-width: 60vw;
    max-width: 60vw;
  }
}

.content-area .streams .streams-list .page .stream-header {
  width: 100% !important;
  height: 80px;
  max-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 1rem !important;
}

.content-area .streams .streams-list .page .stream-footer {
  width: 100% !important;
}

.content-area .streams .streams-list .page .page-image {
  background-size: cover;
  background-position: center;
  height: 12rem;
  width: 12rem;
  border-radius: 6rem;
  align-self: center;
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .content-area .streams .streams-list .page .page-image {
    height: 8rem;
    width: 8rem;
    border-radius: 4rem;
  }
}

.content-area.ccs {
  padding-bottom: 20px;
}

.content-area.ccs .streams {
  width: 40vw;
}

@media (max-width: 768px) {
  .content-area.ccs .streams {
    width: 100vw;
  }
}

@media (max-width: 768px) {
  .ccs-main {
    margin-bottom: 0px;
  }
}

.ccs-content {
  display: flex;
  flex-direction: row;
  max-width: 1500px;
  margin: auto;
}

@media (max-width: 768px) {
  .ccs-content {
    flex-direction: column;
    width: 100%;
  }
}

.ccs-content .ccs-wrapper {
  padding: 0px 80px;
}

@media (max-width: 768px) {
  .ccs-content .ccs-wrapper {
    padding: 0px 0px;
  }
  .ccs-content .ccs-wrapper p {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .ccs-content .ccs-wrapper .basic-text {
    padding: 0 1em;
  }
}

.ccs-logo {
  height: auto;
  width: 160px;
}

@media (max-width: 768px) {
  .ccs-logo {
    display: block;
    height: auto;
    width: 160px;
  }
}

.headline {
  background-color: #000;
  padding: 0.5rem 2rem;
  transform: rotate(-10deg);
  display: inline-block;
  margin-top: 2rem;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .mobile-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Class name via Modernizr */
aside.vertical {
  border-left: 48px solid white;
  /* Make a little room */
  position: relative;
  box-shadow: 6px 6px 0 #000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
}

aside.vertical h3 {
  width: 100%;
  margin: auto;
  color: black;
  padding: 5px 10px;
  margin: 0 0 10px 0;
  /* Abs positioning makes it not take up vert space */
  position: absolute;
  top: 0;
  left: 0;
  /* Border is the new background */
  background: none;
  transform-origin: 0 0;
  transform: rotate(90deg) translate(80px, 0);
}

.page-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (max-width: 568px) {
  .page-footer a {
    font-size: 0.5em;
  }
}

.stream-info-wrapper {
  width: 100%;
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 60px;
}

@media (max-width: 768px) {
  .stream-info-wrapper {
    flex-direction: column;
  }
}

.stream-info-wrapper a {
  max-width: calc(100vw - 2rem);
  display: inline-block;
  word-wrap: break-word;
}

.v--modal {
  border-radius: 0px !important;
  border: 1px solid black;
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
}

.side-menu {
  display: flex;
  z-index: 10;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 58px;
  bottom: 0;
  width: 200px;
  background-color: #fff;
  visibility: hidden;
  box-shadow: 6px 6px 26px 0px rgba(50, 50, 50, 0.31);
  transform: translate(-100px, 0);
  opacity: 0.0;
  transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
}

@media (max-width: 768px) {
  .side-menu {
    top: 50px;
  }
}

.side-menu .menu-top {
  flex: 1;
}

.side-menu .menu-item {
  color: #000;
  padding: 10px 0px;
  margin: 10px 5px;
  text-align: center;
  display: block;
  line-height: 20px;
}

.side-menu .artist {
  border: 2px solid #D81017;
}

.page-content {
  transition: width 1s;
}

.side-menu-visible .side-menu {
  visibility: visible;
  transform: translate(0px, 0px);
  opacity: 2;
  transition: opacity 0.3s, transform 0.3s, visibility 0s;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .blog-info {
    width: 90vw;
    max-width: 90vw;
  }
}

@media (min-width: 769px) {
  .hide-not-mobile {
    display: none;
  }
}

.sponsoring-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 768px) {
  .sponsoring-wrapper {
    flex-direction: column;
  }
}

.video-embed-fullwidth-wrapper {
  width: 180%;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .video-embed-fullwidth-wrapper.has-occupants-count {
    margin-top: 0.8em;
  }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
  .video-embed-fullwidth-wrapper.has-occupants-count {
    margin-top: 0.8em;
  }
}

.video-embed-fullwidth-wrapper .video-embed-wrapper {
  width: 100%;
  margin: auto;
  position: relative;
}

.video-embed-second-wrapper.no-chat {
  justify-content: center;
}

.video-embed {
  min-height: 506.25px;
  flex: 2;
}

.video-embed.has-vertical {
  flex: 2;
}

.video-embed.no-chat {
  height: 100%;
  flex: 0.725;
}

.video-embed.no-chat.youtube-embed, .video-embed.no-chat.vimeo-embed {
  height: auto;
}

.video-embed.no-chat #video {
  background-color: unset;
}

@media (max-width: 768px) {
  .video-embed {
    flex: 1;
    height: auto;
    min-height: auto;
  }
}

.video-trailer {
  height: 506.25px;
  width: 900px;
  max-width: 900px;
  min-width: 900px;
  margin: auto;
}

@media (max-width: 768px) {
  .video-trailer {
    height: auto;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.category-logo {
  margin-left: 0.3rem;
  width: auto;
  height: 1.8rem;
}

@media (max-width: 768px) {
  .category-logo {
    flex-direction: column;
    margin-left: 0px;
    height: 1.6rem;
  }
}

.category-presented-by {
  padding-top: 1rem;
}

.content-cities {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content-cities .content-wrapper {
  width: 95vw;
  max-width: 1200px;
  margin-top: 6rem;
  margin-bottom: 12rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content-cities .content-wrapper .cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.content-cities .content-wrapper .cities.cities--primary {
  max-width: 1000px;
}

.content-cities .content-wrapper .cities.cities--secondary {
  justify-content: space-between;
}

.content-cities .content-wrapper .cities .city {
  width: auto;
}

.content-cities .content-wrapper .cities .city.city--primary {
  text-align: center;
  margin: 0 2rem 6rem;
  position: relative;
}

.content-cities .content-wrapper .cities .city.city--primary .city-title {
  display: inline-block;
  padding: 0.25rem 1.33333rem;
}

.content-cities .content-wrapper .cities .city.city--primary .city-description {
  display: block;
  position: absolute;
  top: 3.8rem;
  left: 0;
  right: 0;
  color: #fff;
}

.content-cities .content-wrapper .cities .city.city--secondary {
  text-align: center;
  margin: 0 1rem 2rem;
}

.content-cities .content-wrapper .cities .city.city--secondary .city-title {
  display: block;
}

.content-cities .content-wrapper .cities .city.city--secondary .city-description {
  display: block;
}

.fade-enter-active, .fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.expand-enter-active,
.expand-leave-active {
  transition-property: opacity, height;
}

.expand-enter,
.expand-leave-to {
  opacity: 0;
}

.expand-enter-active,
.expand-leave-active {
  transition: height 1s ease-in-out;
  overflow: hidden;
}

.expand-enter,
.expand-leave-to {
  height: 0;
}

body.coma .page-single .single-stream {
  display: block;
}

body.video-embed-page,
html.video-embed-page {
  height: 100%;
}

body.video-embed-page {
  overflow: hidden;
}

.caption-container.stream-availability {
  position: absolute;
  z-index: 10;
  color: #D81017;
  background-color: white;
  opacity: 0.7;
  padding: 0.4em;
  font-size: 0.6em;
}

.color-accent {
  color: #D81017;
}

a {
  text-decoration: none;
}

a.ccs-link {
  color: #92c024;
}

a.ccs-link:hover, a.ccs-link:focus {
  color: black !important;
}

a.no-highlight {
  color: #000 !important;
}

a.no-highlight:focus, a.no-highlight:hover {
  background-color: transparent !important;
  color: #000 !important;
}

h1, .h1 {
  font-weight: 900;
  font-size: 2.9rem;
  line-height: 1.4;
  background-color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: -10px 0 0 #000, 10px 0 0 #000;
  transition: background-color 0.5s, box-shadow 0.5s;
}

@media (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
  }
}

h1.h1--feature, .h1.h1--feature {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1.h1--feature, .h1.h1--feature {
    font-size: 1.8rem;
  }
}

h2, .h2 {
  font-weight: 900;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  color: #000;
  text-transform: uppercase;
}

h3, .h3 {
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 1.2;
  color: #fff;
  display: inline;
  background-color: #000;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
  transition: background-color 0.5s, box-shadow 0.5s;
}

.caption, dd {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  line-height: 1;
  transition: opacity 0.5s;
  display: block;
}

.tag, .link {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #000;
  font-weight: 900;
}

.btn-yay {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.7rem;
  border: 2px solid #000;
  padding: 0.5rem 2rem;
  margin: 0.5rem 0;
  color: #fff;
  background-color: #000;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s, box-shadow 0.5s;
}

.btn-yay:hover, .btn-yay:focus {
  background-color: #fff;
  color: #000;
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
}

@media (max-width: 568px) {
  .btn-yay {
    font-size: 1.5rem;
  }
}

.btn--simple {
  cursor: pointer;
  border: 2px solid #000;
  padding: 0.4rem 0.5rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: color 0.2s, box-shadow 0.2s, width 0.2s;
  text-align: center;
}

.btn--simple:hover, .btn--simple:focus {
  background-color: #fff;
  color: #D81017;
  outline: none;
}

.btn--simple.isActive {
  background-color: #fff;
  color: #D81017;
  border-color: #000;
}

.btn--simple.isActive:hover, .btn--simple.isActive:focus {
  background-color: #fff;
  color: #D81017;
  border-color: #000;
  box-shadow: none;
}

.btn--simple, .btn--simple * {
  will-change: width;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

.btn--simple span {
  width: 100%;
  white-space: nowrap;
}

.page-url-button {
  display: inline-block;
  background-color: #D81017;
  color: #fff !important;
  padding: 0.125rem 0.25rem;
  margin: 0 0.25rem;
}

.page-address {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 2.5rem;
  padding: 1rem 0;
}

.bookmark-icon {
  width: 28px;
  height: auto;
}

@media (max-width: 768px) {
  .bookmark-icon {
    width: 20px;
  }
}

.bookmark-icon:hover, .bookmark-icon:focus {
  cursor: pointer;
}

.share-wrapper .caption {
  margin-bottom: 0.25rem !important;
}

.share-wrapper .share-icon {
  font-size: 1.7rem;
  color: #000;
}

.nav-logo, .video-logo {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  align-self: center;
}

.nav-logo strong, .video-logo strong {
  font-size: 1.1rem;
  line-height: 1.1rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-logo span, .video-logo span {
  font-size: 0.6rem;
  color: #fff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-logo:hover {
  background-color: transparent !important;
}

.nav-links a, .nav-links button, .nav-user a, .nav-user button {
  color: #000;
  border: none;
  background-color: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
  display: inline-block;
}

.nav-links a:hover, .nav-links a:focus, .nav-links button:hover, .nav-links button:focus, .nav-user a:hover, .nav-user a:focus, .nav-user button:hover, .nav-user button:focus {
  color: #D81017;
}

.nav-sidebar span, .nav-sidebar a {
  color: #fff;
}

.nav-sidebar a {
  font-size: 0.9rem;
  font-weight: 600;
  transition: padding 0.2s;
}

.nav-sidebar a:hover, .nav-sidebar a:focus {
  padding-left: 0.3em;
}

.page-header a {
  color: #000;
  text-decoration: none;
  margin: auto;
}

.page-header a .logo {
  margin: 0.5rem auto;
  max-width: 400px;
}

@media (max-width: 768px) {
  .page-header a .logo {
    padding-bottom: 10px !important;
  }
}

.page-header a .logo strong {
  font-size: 2.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .page-header a .logo strong {
    font-size: 1.8rem;
  }
}

.page-header a .logo span {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.video-page-header {
  text-align: center;
  margin: 0.5rem 0;
}

.video-page-header .h1 {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .video-page-header .h1 {
    font-size: 1.8rem;
  }
}

.video-page-header .subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}

.page-feature a:hover, .page-feature a:focus, .page-feature div:hover, .page-feature div:focus {
  text-decoration: none;
}

.page-feature a:hover .caption, .page-feature a:focus .caption, .page-feature div:hover .caption, .page-feature div:focus .caption {
  opacity: 1;
}

.page-feature a:hover .h1, .page-feature a:focus .h1, .page-feature div:hover .h1, .page-feature div:focus .h1 {
  background-color: #D81017;
  padding-top: 5px;
  padding-bottom: 5px;
  box-shadow: -10px 0 0 #D81017, 10px 0 0 #D81017;
  transition: background-color 0.5s, box-shadow 0.5s;
}

.page-feature a .h1, .page-feature div .h1 {
  background-color: #000;
  display: inline;
}

.page-feature a .feature-header, .page-feature a .play, .page-feature div .feature-header, .page-feature div .play {
  color: #fff;
}

.page-feature a .feature-header .caption, .page-feature div .feature-header .caption {
  color: #000;
  margin: 0.5rem 0;
}

.page-feature a .feature-header .h1, .page-feature div .feature-header .h1 {
  word-break: break-word;
}

@media (max-width: 768px) {
  .page-feature a .feature-header .h1, .page-feature div .feature-header .h1 {
    font-size: 1.3rem;
  }
}

.page-feature a .play, .page-feature div .play {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-feature a .play i, .page-feature div .play i {
  font-size: calc(5rem - 1rem);
  line-height: 5rem;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s, transform 0.5s, opacity 0.5s;
  transform-origin: center center;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: inline-block;
  opacity: 0;
}

.page-feature a:hover .play i, .page-feature div:hover .play i {
  opacity: 1;
  background-color: #D81017;
}

.favorite-button {
  cursor: pointer;
}

.feature-countdown {
  color: #000;
}

.feature-countdown .feature-time dt {
  font-weight: 900;
  font-size: 2.5rem;
  color: #D81017;
}

@media (max-width: 768px) {
  .feature-countdown .feature-time dt {
    font-size: 1.8rem;
  }
}

.feature-countdown.isPlayer dt {
  color: #fff;
}

.preview .preview-title {
  cursor: pointer;
}

.preview .preview-title h4 {
  font-size: 1.1rem;
  line-height: 1.1;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
}

@media (max-width: 768px) {
  .preview .preview-title h4 {
    font-size: 0.7rem;
    line-height: 0.7rem;
  }
}

@media (max-width: 768px) {
  .preview .logo strong {
    font-size: 0.5rem;
    line-height: 0.5rem;
  }
  .preview .logo span {
    font-size: 0.1rem;
  }
}

.preview .caption {
  color: #fff;
}

@media (max-width: 768px) {
  .preview .caption {
    font-size: 0.4rem;
    line-height: 0.5rem;
  }
}

.preview .feature-countdown .feature-time dt {
  font-size: 1.4rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .preview .feature-countdown .feature-time dt {
    font-size: 0.9rem;
    line-height: 1.2;
  }
}

.preview .feature-countdown .caption {
  color: #fff;
  font-size: 0.6rem;
}

@media (max-width: 768px) {
  .preview .feature-countdown .caption {
    font-size: 0.5rem;
  }
}

.preview .favorite-button .caption {
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  margin: 0 0.5rem;
  transform: translateY(2rem);
  transition: opacity .15s ease-in-out, transform .15s ease-in-out;
}

.preview .favorite-button .bookmark-icon {
  color: #fff;
  opacity: 0.8;
  font-size: 1.3rem;
  transition: opacity .15s;
}

.preview .favorite-button:hover .bookmark-icon, .preview .favorite-button.isFavorite .bookmark-icon {
  opacity: 1;
}

.preview:hover .favorite-button .caption {
  opacity: 1;
  transform: translateY(0);
}

.content-tracker .h2 {
  font-size: 2.9rem;
  padding: 2rem;
  line-height: 1.2;
  display: inline-block;
  margin-top: 0.5rem;
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
}

.page-content p + p {
  margin-top: 1rem;
}

.page-content ul {
  margin: 1rem 0 1rem 2rem;
}

.page-content .link-like {
  cursor: pointer;
}

.page-content a, .page-content .link-like {
  color: #D81017;
  transition: background-color 0.5s, color 0.5s;
}

.page-content a:hover, .page-content a:focus, .page-content .link-like:hover, .page-content .link-like:focus {
  background-color: #D81017;
  color: #fff;
}

.page-content a.ccs-link, .page-content .link-like.ccs-link {
  background-color: #fff;
  color: #92c024;
}

.page-content a.ccs-link:hover, .page-content .link-like.ccs-link:hover {
  background-color: #92c024;
  color: #fff;
}

.stream-support .h2 {
  font-size: 2.5rem;
  padding: 2rem;
  line-height: 1.2;
  display: inline-block;
  margin-top: 0.5rem;
  -webkit-box-shadow: 6px 6px 0 #000;
  box-shadow: 6px 6px 0 #000;
  border: 2px solid #000;
}

@media (max-width: 768px) {
  .stream-support .h2 {
    font-size: 1.7rem;
  }
}

.page-single .stream-header .caption {
  color: #000;
}

.page-single .stream-header .stream-authors .author-title {
  font-size: 1.2rem;
  line-height: 1.2;
  display: inline-block;
  color: #000;
}

.page-single .stream-header .stream-authors .author-title:hover, .page-single .stream-header .stream-authors .author-title:focus {
  background-color: #fff;
  color: #D81017;
}

.page-single .h1 {
  color: #fff;
  background-color: #000;
  display: inline;
}

.page-single .ccs-header .h2 {
  font-size: 1.7rem;
  color: #92c024;
}

.page-single .ccs-support .h2 {
  font-size: 2.5rem;
  padding: 2rem;
  padding-bottom: 0;
  line-height: 1.2;
  display: block;
  margin-top: 0.5rem;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .page-single .ccs-support .h2 {
    font-size: 1.7rem;
  }
}

.page-single .ccs-support .caption {
  margin: 0.5rem 0;
}

.page-single .ccs-support .currency {
  padding-bottom: 2rem;
  display: block;
  text-align: center;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-single .stream-support .h3 {
  background-color: transparent;
}

.page-single .stream-support .sticker {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 3rem;
  background-color: #fff;
  padding: 0 2rem;
  color: #92c024;
}

@media (max-width: 768px) {
  .page-single .stream-support .sticker {
    font-size: 1.7rem;
  }
}

.page-single .stream-support .love {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.01em;
}

.stream a:hover, .stream a:focus, .page a:hover, .page a:focus {
  text-decoration: none;
}

.stream a:hover .caption, .stream a:focus .caption, .page a:hover .caption, .page a:focus .caption {
  opacity: 1;
}

.stream a:hover .h3, .stream a:focus .h3, .page a:hover .h3, .page a:focus .h3 {
  background-color: #D81017;
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  box-shadow: -5px 0 0 #D81017, 5px 0 0 #D81017;
  transition: background-color 0.5s, box-shadow 0.5s;
}

.stream a:hover .play i, .stream a:focus .play i, .page a:hover .play i, .page a:focus .play i {
  opacity: 1;
}

.stream a .stream-header .caption, .page a .stream-header .caption {
  margin-top: 0.5rem;
  line-height: 20px;
}

@media (max-width: 768px) {
  .stream a .stream-header h3, .page a .stream-header h3 {
    font-size: 1.3rem;
  }
}

.stream a .play, .page a .play {
  color: #fff;
}

.stream a .stream-footer, .page a .stream-footer {
  color: #000;
}

.stream a .stream-footer.inverted, .page a .stream-footer.inverted {
  color: #fff;
}

.stream a .play, .page a .play {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stream a .play i, .page a .play i {
  font-size: calc(4rem - 0.75rem);
  line-height: 4rem;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.5s, transform 0.5s, opacity 0.5s;
  transform-origin: center center;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: inline-block;
  opacity: 0;
}

.stream a:hover .play i, .page a:hover .play i {
  opacity: 1;
  background-color: #D81017;
}

.live-tag {
  background-color: #D81017;
  display: inline-block;
  padding: 0.5rem 2rem;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 1.7rem;
}

@media (max-width: 768px) {
  .live-tag {
    padding: 0.25rem 1rem;
    font-size: 0.9rem;
  }
}

.stream .live-tag {
  background-color: #D81017;
  color: #fff;
  padding-left: 0.28571rem;
  padding-right: 0.28571rem;
  padding-top: 0px;
  padding-bottom: 0px;
}

.dr-color {
  color: #D81017;
}

.live-tag {
  -webkit-animation: live-tag-simple 0.5s ease-in-out infinite alternate;
  animation: live-tag-simple 0.5s ease-in-out infinite alternate;
}

.stream .live-tag {
  -webkit-animation: live-tag 0.5s ease-in-out infinite alternate;
  animation: live-tag 0.5s ease-in-out infinite alternate;
}

@keyframes live-tag {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes live-tag-simple {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.content-cities .city--primary .city-title {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
}

.content-cities .city--primary .city-title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  z-index: -1;
  -webkit-transform: rotate(-4deg);
  -moz-transform: rotate(-4deg);
  -o-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
}

.content-cities .city--primary .city-description {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: opacity 0.5s;
  display: block;
}

.content-cities .city--secondary {
  color: #000;
}

.content-cities .city--secondary .city-title {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-size: 1.7rem;
}

.content-cities .city--secondary .city-description {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  transition: opacity 0.5s;
  display: block;
}

@font-face {
  font-family: 'dringeblieben';
  src: url("/static/coma/themes/dringeblieben/icons/dringeblieben.eot?81655298&7536c3c2c78b");
  src: url("/static/coma/themes/dringeblieben/icons/dringeblieben.eot?81655298&7536c3c2c78b#iefix") format("embedded-opentype"), url("/static/coma/themes/dringeblieben/icons/dringeblieben.woff2?81655298&7536c3c2c78b") format("woff2"), url("/static/coma/themes/dringeblieben/icons/dringeblieben.woff?81655298&7536c3c2c78b") format("woff"), url("/static/coma/themes/dringeblieben/icons/dringeblieben.ttf?81655298&7536c3c2c78b") format("truetype"), url("/static/coma/themes/dringeblieben/icons/dringeblieben.svg?81655298&7536c3c2c78b#dringeblieben") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'dringeblieben';
    src: url('/static/coma/themes/dringeblieben/font/dringeblieben.svg?81655298#dringeblieben') format('svg');
  }
}
*/
[class^="icon-"]:before, [class*=" icon-"]:before {
  font-family: "dringeblieben";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: .2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-play:before {
  content: '\e802';
}

/* '' */
.icon-left-open:before {
  content: '\e803';
}

/* '' */
.icon-right-open:before {
  content: '\e804';
}

/* '' */
.field {
  padding-top: 10px;
  padding-bottom: 10px;
}

.field > input, .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: black;
  background-color: #fff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 0px;
  /*  @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075));*/
  /*  @include transition(border-color ease-in-out .15s, box-shadow ease-in-out .15s);*/
  /*@include placeholder;*/
}

.field > input:focus, .form-control:focus {
  border-color: black;
  outline: 0;
}

.field > input::-ms-expand, .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.field > input[disabled], .field > input[readonly],
fieldset[disabled] .field > input, .form-control[disabled], .form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eeeeee;
  opacity: 1;
}

.field > input[disabled],
fieldset[disabled] .field > input, .form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

.vimeo-wrapper {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .vimeo-wrapper {
    padding: 56.25% 0 0 0;
    position: relative;
  }
}

.vimeo-wrapper .vimeo-iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .vimeo-wrapper .vimeo-iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.facebook-vertical {
  max-width: 280px;
  margin: auto;
  height: 100%;
}

@media (max-width: 768px) {
  .facebook-vertical {
    max-width: 200px;
    height: 350px;
  }
}

.video-js-simple-wrapper {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.paywall-form {
  flex: 1;
  height: 506.25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
  padding: 1rem;
  max-width: 450px;
  background-color: #fff;
}

.paywall-form.paywall-form-height-adjusted-for-video-player {
  height: 499px;
}

.paywall-form .paywall-title {
  text-align: center;
  color: #D81017;
  text-transform: uppercase;
}

.paywall-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paywall-form input {
  margin: 2rem 0px;
  width: 150px;
}

@media (max-width: 768px) {
  .paywall-form {
    height: auto;
    margin: 1rem;
  }
  .paywall-form input {
    margin: 1rem 0px;
  }
  .paywall-form .paywall-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .paywall-form p {
    font-size: 0.8rem;
  }
  .paywall-form .btn-yay {
    font-size: 0.9rem;
  }
}

body.video-embed-page .paywall-form {
  width: 100%;
  max-width: unset;
  height: 100%;
}

@media (max-width: 768px) {
  body.video-embed-page .paywall-form {
    margin: 0;
  }
}

.bubble {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
}

.bubble.clap-anim {
  animation-name: wave-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: 1;
  /* Never stop waving :) */
  transform-origin: 50% 50%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes wave-animation {
  0% {
    transform: translate3D(0, 0, 0);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate3D(30px, -300px, 0);
  }
}

.bubble.balloon-anim {
  animation-name: balloon-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 5s;
  /* Change to speed up or slow down */
  animation-iteration-count: 1;
  /* Never stop waving :) */
  transform-origin: 50% 50%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes balloon-animation {
  0% {
    transform: translate3D(0, -60px, 0);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translate3D(30px, -500px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3D(30px, -520px, 0);
    opacity: 0;
  }
}

.bubble.beer-anim {
  animation-name: beer-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: 1;
  /* Never stop waving :) */
  transform-origin: 50% 50%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes beer-animation {
  0% {
    transform: translate3D(0, 0, 0) rotate(0deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translate3D(100px, -200px, 0) rotate(160deg);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate3D(200px, 20px, 0) rotate(320deg);
  }
}

.bubble.rock-anim {
  animation-name: rock-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: 1;
  /* Never stop waving :) */
  transform-origin: 50% 50%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes rock-animation {
  0% {
    transform: translate3D(0, 0, 0) rotate(0deg);
    animation-timing-function: ease-out;
  }
  10% {
    transform: translate3D(0, -60px, 0);
    animation-timing-function: ease-in;
  }
  20% {
    transform: translate3D(0, -50px, 0);
    animation-timing-function: ease-in;
  }
  30% {
    transform: translate3D(0, -62px, 0);
    animation-timing-function: ease;
  }
  40% {
    transform: translate3D(0, -52px, 0);
    animation-timing-function: ease;
  }
  50% {
    transform: translate3D(0, -63px, 0);
    animation-timing-function: ease;
  }
  60% {
    transform: translate3D(0, -55px, 0);
    animation-timing-function: ease;
  }
  70% {
    transform: translate3D(0, -65px, 0);
    animation-timing-function: ease;
  }
  80% {
    transform: translate3D(0, -52px, 0);
    animation-timing-function: ease;
  }
  90% {
    transform: translate3D(0, -60px, 0);
    animation-timing-function: ease;
    opacity: 1;
  }
  100% {
    transform: translate3D(0, 0, 0);
    opacity: 0;
  }
}

.bubble.hands_up-anim {
  animation-name: hands_up-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  animation-iteration-count: 1;
  /* Never stop waving :) */
  transform-origin: 30% 100%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes hands_up-animation {
  0% {
    transform: translate3D(0, 0, 0) rotate(0deg);
    animation-timing-function: ease-out;
  }
  10% {
    transform: translate3D(0, -60px, 0) rotate(0deg);
    animation-timing-function: ease-in;
  }
  20% {
    transform: translate3D(0, -50px, 0) rotate(-15deg);
    animation-timing-function: ease-in;
  }
  30% {
    transform: translate3D(0, -62px, 0) rotate(20deg);
    animation-timing-function: ease;
  }
  40% {
    transform: translate3D(0, -52px, 0) rotate(-17deg);
    animation-timing-function: ease;
  }
  50% {
    transform: translate3D(0, -63px, 0) rotate(15deg);
    animation-timing-function: ease;
  }
  60% {
    transform: translate3D(0, -55px, 0) rotate(-15deg);
    animation-timing-function: ease;
  }
  70% {
    transform: translate3D(0, -65px, 0) rotate(20deg);
    animation-timing-function: ease;
  }
  80% {
    transform: translate3D(0, -52px, 0) rotate(-15deg);
    animation-timing-function: ease;
  }
  90% {
    transform: translate3D(0, -60px, 0) rotate(0deg);
    animation-timing-function: ease;
    opacity: 1;
  }
  100% {
    transform: translate3D(0, 0, 0);
    opacity: 0;
  }
}

.bubble.hat-anim {
  animation-name: hat-animation;
  /* Refers to the name of your @keyframes element below */
  animation-duration: 2.5s;
  /* Change to speed up or slow down */
  transform-origin: 50% 50%;
  /* Pivot around the bottom-left palm */
  display: inline-block;
}

@keyframes hat-animation {
  0% {
    transform: translate3D(0, 0, 0) rotate(0deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: translate3D(30px, -300px, 0) rotate(290deg);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translate3D(60px, 20px, 0) rotate(580deg);
  }
}

#bubbler {
  position: relative;
  bottom: 0px;
}

.reaction-box {
  display: inline-block;
  cursor: pointer;
  width: 312px;
  height: 55px;
  background: #fff;
  left: -25px;
  bottom: 35px;
}

.reaction-box .reaction-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: inline-block;
  background: #D81017;
  border-radius: 20px;
  margin: 8px -1px 0 8px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translate(0, 100px) scale(0);
}

.reaction-box .reaction-icon.show {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reaction-box .reaction-icon:hover {
  transform: scale(1.4);
  transform-origin: bottom;
}

.reaction-box .reaction-icon:hover label {
  visibility: visible;
}

.reaction-box .reaction-icon img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.reaction-box .reaction-icon label {
  padding: 3px 5px 3px 5px;
  position: relative;
  top: -24px;
  border-radius: 10px;
  font-size: 11px;
  color: #FFF;
  background: #333;
  visibility: hidden;
}

.reaction-box .reaction-icon svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  transform: rotateY(-180deg) rotateZ(-90deg);
}

.reaction-box .reaction-icon svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 0px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #D81017;
  fill: none;
}

.reaction-box .reaction-icon.inactive {
  background: rgba(216, 16, 23, 0.2);
}

.reaction-box .reaction-icon.inactive img {
  opacity: 0.7;
}

.reaction-box .reaction-icon.inactive svg circle {
  animation: countdown 10s linear infinite forwards;
}

@keyframes countdown {
  to {
    stroke-dashoffset: 0px;
  }
  from {
    stroke-dashoffset: -113px;
  }
}

.occupants-counter {
  height: 40px;
  width: 40px;
  background-color: white;
  overflow: hidden;
  border-radius: 20px;
  position: absolute;
  right: 4px;
  top: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-width: 319px;
  overflow: hidden;
}

.chat-header {
  border-bottom: 2px solid black;
}

.chat-box {
  border: 0px solid black;
  height: 800px;
}

.chat-box.chat-box-moderator {
  width: 100vw;
  height: 65vh;
  max-width: 1200px;
}

@media (max-width: 1024px) {
  .chat-box.chat-box-moderator {
    height: 60vh;
    max-width: 1024px;
  }
}

@media (max-width: 768px) {
  .chat-box.chat-box-moderator {
    max-width: 768px;
  }
}

.chat-messages-box {
  position: relative;
  flex: 4;
  border-bottom: 2px solid black;
  overflow: hidden;
  background-color: white;
}

.chat-messages {
  height: 100%;
  overflow-y: scroll;
}

.chat-message {
  display: flex;
  flex-direction: row;
  padding: 2px 4px;
}

.chat-message .action-item {
  text-decoration: underline;
  font-size: 10px;
  cursor: pointer;
  opacity: 0.6;
}

.chat-message.moderator {
  background-color: #D81017;
}

.chat-message.moderator:hover .message-text {
  background-color: #f32b32;
}

.chat-message.moderator .chat-content {
  color: white;
}

.chat-message .remove {
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
}

.chat-message:hover .message-text {
  background-color: #f1eded;
}

.chat-message:hover .remove {
  visibility: visible;
}

.chat-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ddd;
}

.chat-avatar-box {
  padding: 4px;
}

.chat-content {
  flex: 1;
}

.chat-content .message-text {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-content .author {
  opacity: 1;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 320px;
}

.chat-content .author .author-actions {
  padding: 4px;
  width: 100px;
  background-color: white;
  border: 1px solid black;
  position: absolute;
  z-index: 10;
  top: 10px;
  left: 10px;
  font-size: 10px;
  visibility: hidden;
  color: black;
}

.chat-content .author:hover .author-actions {
  visibility: visible;
}

.chat-content .chat-message-time {
  font-size: 10px;
  opacity: 0.6;
}

.chat-content p {
  padding-left: 4px;
}

.chat-content .message-tags.tag-pills {
  display: flex;
  padding: 0 0 0 0;
}

.chat-content .message-tags.tag-pills .message-tag-pill.tag-pill {
  border-radius: 5px;
  border: 1px solid lightgrey;
  color: grey;
  cursor: pointer;
  font-size: 0.7em;
  margin-left: 1px;
  margin-right: 1px;
  padding: 0 1px;
}

.chat-content .message-tags.tag-pills .message-tag-pill.tag-pill.selected {
  color: white;
  background-color: black;
  border-color: black;
}

.chat-content .message-tags.tag-pills .message-tag-pill.tag-pill:first-child {
  margin-left: 0;
}

.chat-content .message-tags.tag-pills .message-tag-pill.tag-pill:last-child {
  margin-right: 0;
}

.tag-pills {
  display: flex;
  padding: 0 0 0 0;
}

.tag-pills .tag-pill {
  display: flex;
  border-radius: 5px;
  border: 2px solid lightgrey;
  color: grey;
  cursor: pointer;
  font-size: 1em;
  margin-left: 1px;
  margin-right: 1px;
  padding: 0 1px;
}

.tag-pills .tag-pill.selected {
  color: white;
  background-color: black;
  border-color: black;
}

.tag-pills .tag-pill:first-child {
  margin-left: 0;
}

.tag-pills .tag-pill:last-child {
  margin-right: 0;
}

.tag-pills .tag-pill .remove-tag-icon {
  height: 100%;
  align-items: center;
  display: flex;
  margin-left: 5px;
}

.tag-pills .tag-pill .remove-tag-icon i {
  font-size: 1.3em;
}

.tag-pills .tag-pill .remove-tag-icon:hover {
  color: #D81017;
}

.chat-content > strong {
  font-size: 14px;
}

.chat-input-box {
  width: 100%;
}

.chat-input-box .textarea-box {
  display: flex;
  flex-direction: row;
  background-color: white;
}

.chat-input-box .textarea-box input:disabled {
  cursor: not-allowed;
}

.chat-input-box .emoji-picker-wrapper {
  background-color: white;
}

.chat-input-box input, .chat-input-box textarea, .chat-input-box select, .chat-input-box a, .chat-input-box button {
  outline: none;
  font: normal normal 105%/1.7 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  resize: none;
}

.chat-input-box .send-button {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.chat-input-box .send-button:hover {
  opacity: 1;
}

@media only screen and (max-device-width: 768px) {
  .chat-input-box .send-button.emoji-button {
    display: none;
  }
}

.chat-input-box .send-button.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chat-input {
  padding-left: 6px;
  flex: 1;
  border: 0px solid white;
  height: 40px;
  font-size: 15px;
}

.chat-info-new-messages {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 10px;
  text-align: center;
  background-color: black;
  color: white;
  cursor: pointer;
}

.show-new-day {
  width: 100;
}

.old-message-loader {
  cursor: pointer;
  padding: 10px;
  text-align: center;
  font-size: 11px;
  color: #bbb;
  text-decoration: underline;
}

.chat-mobile-toggle {
  position: fixed;
  width: 55px;
  height: 55px;
  right: 10px;
  z-index: 1004;
  bottom: 10px;
  background-color: black;
  color: white;
  border-radius: 50%;
  border: 0px solid black;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media only screen and (min-device-width: 768px) {
  .chat-mobile-toggle {
    display: none;
  }
}

.close-chat-button {
  width: 40px;
  text-align: center;
}

@media only screen and (min-device-width: 768px) {
  .close-chat-button {
    display: none;
  }
}

.name-edit {
  background-color: white;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5em;
  border: 1px solid white;
}

.name-edit .name-edit-info-text {
  font-size: 0.8em;
}

.name-edit input, .name-edit textarea, .name-edit select, .name-edit a, .name-edit button {
  outline: none;
  font: normal normal 105%/1.7 "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  resize: none;
}

.name-edit input {
  width: 100%;
}

.name-edit .name-edit-buttons {
  display: flex;
  margin-top: 10px;
}

.name-edit .name-edit-buttons button {
  background-color: black;
  border: 0px solid black;
  color: white;
  font-size: 13px;
  flex: 1;
}

.name-edit .name-edit-buttons button.name-edit-confirm, .name-edit .name-edit-buttons button.name-edit-cancel {
  cursor: pointer;
}

.name-edit .name-edit-buttons .name-edit-cancel {
  opacity: 0.7;
  margin-right: 10px;
}

.mobile-chat-header {
  width: 100%;
  background-color: black;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mobile-chat-header .user-nick-display {
  margin-right: 5px;
}

.mobile-chat-header .change-nick-button {
  cursor: pointer;
  text-decoration: underline;
  font-size: 10px;
  font-weight: 400;
  align-self: center;
  margin-right: 5px;
}

#embed-chat-wrapper {
  right: 0;
  top: 0;
  bottom: 0;
  width: 20%;
  min-width: 319px;
  height: 100%;
  position: fixed;
  z-index: 1000;
  display: none;
}

#embed-chat-wrapper .close-chat-button {
  display: block;
}

#custom-chat-wrapper {
  flex: 1;
  height: 500px;
}

@media only screen and (max-device-width: 767px) {
  #custom-chat-wrapper {
    height: auto;
    z-index: 1005;
    position: fixed;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
  }
}

#custom-chat-wrapper.custom-chat-embedded {
  height: 100%;
  position: absolute;
  width: 100%;
  display: block;
}

@media only screen and (max-device-width: 767px) {
  #custom-chat-wrapper.custom-chat-embedded {
    top: 0;
  }
}

.converse-occupants-count-pseudo-wrapper {
  width: 0;
  height: 0;
  position: relative;
  left: 0;
  top: 0;
}

.converse-occupants-count-pseudo-wrapper .converse-occupants-count-wrapper {
  position: absolute;
  left: 0;
  top: -1.7em;
  height: 1.7em;
  line-height: 1.4em;
  padding: 0.3em;
  display: flex;
  align-items: center;
}

.converse-occupants-count-pseudo-wrapper .converse-occupants-count-wrapper .converse-occupants-count {
  padding: 0 5px;
}

.moderator-chat-nav {
  display: flex;
  justify-content: space-around;
  margin: 2em 0;
}

.moderator-chat-nav .selected {
  background-color: black;
  color: white;
}

.moderator-chat-wrapper {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.moderator-chat-wrapper .moderator-chat-module {
  flex: 1;
  height: 100%;
  margin: 0 0.5em;
}

.moderator-chat-wrapper .moderator-chat-module:first-child {
  margin-left: 0;
}

.moderator-chat-wrapper .moderator-chat-module:last-child {
  margin-right: 0;
}

.moderator-chat-settings .moderator-chat-setting {
  padding: 0;
  margin: 0;
  font-size: 0.8em;
  display: flex;
  justify-content: space-between;
}

.moderator-chat-settings .moderator-chat-setting.color-setting label {
  flex: 2;
}

.moderator-chat-settings .moderator-chat-setting.color-setting input {
  flex: 1;
  width: 100%;
}

.moderator-chat-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 2em;
}

.moderator-chat-centered-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.add-moderator-error {
  color: #D81017;
  padding: 3em 0;
}

.tagged-messages-wrapper .new-tag-input-wrapper {
  padding: 8px;
}

.tagged-messages-wrapper .new-tag-input-wrapper label {
  color: black;
}

.tagged-messages-wrapper .new-tag-input-wrapper label:hover i {
  color: white;
}

.tagged-messages-wrapper .new-tag-input-wrapper label i {
  color: #D81017;
}

.tagged-messages-wrapper .new-tag-input-wrapper .add-tag-button {
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.7;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.tagged-messages-wrapper .new-tag-input-wrapper .add-tag-button:hover {
  opacity: 1;
}

.search-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.search-wrapper .search-container {
  display: flex;
  flex-direction: row;
  border-bottom: 2px solid #D81017;
  width: 100%;
  padding: 0.25rem 0.66667rem 0.25rem 0;
}

.search-wrapper .search-container.search-open {
  border-bottom-color: #fff;
}

.search-wrapper .search-container .search-input {
  font-size: 0.9rem;
  color: #000;
  font-weight: 600;
  border: none;
  background-color: transparent;
  transition: color 0.2s;
  width: calc(100% - 2rem);
}

.search-wrapper .search-container .search-input:focus {
  outline: none;
}

.search-wrapper .search-container .search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 600px) {
  .search-wrapper .search-container .search-input::placeholder {
    color: #444;
  }
}

@media (min-width: 1200px) {
  .search-wrapper .search-container .search-input.menu-open {
    color: #000;
  }
  .search-wrapper .search-container .search-input.menu-open::placeholder {
    color: #000;
  }
}

.search-wrapper .search-container .search-icon {
  font-size: 1.0rem;
  color: #fff;
  min-width: 2rem;
  width: 2rem;
  line-height: 2rem;
  text-align: center;
}

@media (min-width: 600px) {
  .search-wrapper .search-container .search-icon {
    font-size: 0.8rem;
    color: #000;
  }
}

.search-wrapper .search-container ul {
  position: absolute;
}

@media (min-width: 600px) {
  .search-wrapper .search-container, .search-wrapper .search-container.search-open {
    border-bottom-color: #000;
  }
}

.search-wrapper .search-results {
  box-shadow: 6px 6px 0 #000;
  background-color: #fff;
  position: absolute;
  top: 2.43333rem;
  display: flex;
  flex-direction: column;
  z-index: 3;
  max-height: 60vh;
  overflow: scroll;
}

@media (min-width: 600px) {
  .search-wrapper .search-results li:first-child {
    border-top: 2px solid #000;
  }
  .search-wrapper .search-results li:last-child {
    border-bottom: 2px solid #000;
  }
}

.search-wrapper .search-results li {
  list-style: none;
  padding: 0.7rem 0.5rem 0;
  line-height: 1.2rem;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  background-color: #fff;
}

.search-wrapper .search-results li:last-child {
  padding-bottom: 0.7rem;
}

@media (max-width: 768px) {
  .search-wrapper .search-results li {
    border-left: 0px solid white;
    border-right: 0px solid white;
  }
  .search-wrapper .search-results li span {
    color: black;
  }
}

.search-wrapper .search-results li .caption {
  padding-top: 0.2rem;
}

.search-wrapper .search-results li .category {
  color: lightgrey;
  font-size: 0.7em;
  font-style: italic;
}

.search-wrapper .search-results li:hover, .search-wrapper .search-results li:focus {
  background-color: #D81017;
  color: #fff;
  cursor: pointer;
}

.search-wrapper .search-results li.no-result:hover, .search-wrapper .search-results li.no-result:focus {
  background-color: #fff;
  color: #000;
  cursor: default;
}

.nav-sidebar .search-wrapper .search-container {
  width: 100%;
  border-bottom: 2px solid #fff;
}

.nav-sidebar .search-wrapper .search-container i, .nav-sidebar .search-wrapper .search-container .search-input {
  color: #fff;
}

@media (max-width: 768px) {
  .nav-sidebar .search-wrapper .search-container i::placeholder, .nav-sidebar .search-wrapper .search-container .search-input::placeholder {
    color: white;
  }
}

.nav-search {
  position: absolute;
  right: 1rem;
  width: 2rem;
  background-color: #D81017;
  transition: width 0.2s;
}

.nav-search.search-open {
  width: calc(100% - 2rem);
}

@media (min-width: 600px) {
  .nav-search {
    position: unset;
    background-color: transparent;
    width: 50%;
  }
}

@media (min-width: 900px) {
  .nav-search {
    width: auto;
  }
}

.preview-wrapper-depublished {
  margin: auto;
}

.preview-wrapper-depublished .preview {
  width: 900px;
  height: 506.25px;
  position: relative;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: auto;
}

@media (max-width: 768px) {
  .preview-wrapper-depublished .preview {
    width: 100vw;
    height: 56vw;
  }
}

.preview-wrapper-depublished .preview .preview-title {
  max-width: 60%;
  opacity: 0;
  margin-top: -1rem;
  transform: translateY(0);
  transition: opacity .15s ease-in-out, transform .15s ease-in-out;
}

.preview-wrapper-depublished .preview:hover .preview-title {
  opacity: 1;
  transform: translateY(1rem);
}

.preview-wrapper-depublished .preview .preview-header {
  height: 20%;
  padding: 0.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .preview-wrapper-depublished .preview .preview-header {
    height: 35%;
  }
}

.preview-wrapper-depublished .preview .preview-body {
  height: 65%;
  padding: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .preview-wrapper-depublished .preview .preview-body {
    height: 45%;
  }
}

.preview-wrapper-depublished .preview .preview-body .depublished-text {
  padding: 1em;
  background: #00000099;
  color: white;
}

.preview-wrapper-depublished .preview .preview-footer {
  height: 15%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .preview-wrapper-depublished .preview .preview-footer {
    height: 45%;
  }
}

.preview-wrapper-depublished .preview .favorite-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.geoblocked-message {
  max-width: 450px;
  padding-top: 20%;
}

.geoblocked-message h3 {
  text-align: center;
}

.video-embed-with-chat-wrapper {
  display: flex;
  height: 100%;
}

.video-embed-with-chat-wrapper .embedded-player-wrapper {
  flex: 2;
}

.video-embed-with-chat-wrapper #custom-chat-wrapper-embedded {
  flex: 1;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .video-embed-with-chat-wrapper {
    display: flex;
    flex-direction: column;
  }
  .video-embed-with-chat-wrapper .embedded-player-wrapper {
    flex: 1;
  }
  .video-embed-with-chat-wrapper #custom-chat-wrapper-embedded {
    flex: 1;
    height: 275px;
  }
  .video-embed-with-chat-wrapper #custom-chat-wrapper-embedded .close-chat-button {
    display: none;
  }
}

.redeem-page-with-trailer .preview-wrapper {
  height: 100%;
}

.redeem-page-with-trailer .preview-wrapper .preview {
  width: 100%;
  height: 100%;
  position: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.redeem-page-with-trailer .preview-wrapper .preview .preview-footer {
  position: unset;
}

.redeem-page-with-trailer .video-trailer {
  height: 100%;
  width: 100%;
  max-width: unset;
  min-width: unset;
  display: flex;
}

.redeem-page-with-trailer .page-single {
  margin-bottom: 0;
  height: 100%;
  display: flex;
}

.redeem-page-with-trailer .video-js-simple-wrapper {
  max-width: unset;
}

@media screen and (max-width: 1024px) {
  .redeem-page-with-trailer .paywall-form {
    margin: 0;
  }
}
