@charset "UTF-8";
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ---------------------------------------------------------- */
/*                                                            */
/* A media query that captures:                               */
/*                                                            */
/* - Retina iOS devices                                       */
/* - Retina Macs running Safari                               */
/* - High DPI Windows PCs running IE 8 and above              */
/* - Low DPI Windows PCs running IE, zoomed in                */
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in  */
/* - Android hdpi devices and above                           */
/* - Android tvdpi devices, including Google Nexus 7          */
/* - Chrome running on high DPI Macs and PCs                  */
/* - Opera running on high DPI Macs, PCs and mobile devices   */
/*                                                            */
/* Please note that that this code assumes you'll swap a      */
/* 2× version of your images. If you'd like to supply         */
/* finer increments, other thresholds might be appropriate.   */
/*                                                            */
/* A test for CSS pixel densites can be found here:           */
/* http://bjango.com/articles/min-device-pixel-ratio/         */
/*                                                            */
/*                                  @marcedwards from @bjango */
/*                                                            */
/* ---------------------------------------------------------- */
/* This is hacky and awesome. it should be part of mixins or something.
   I found it once on stack overflow and couldn't find it later when I looked */
/* XXX: test in browsers */
/* ratio is the height divided by width in percentage form */
/* This function is used to get the max height for multi-line ellipses
 * We use px values for line-height in styleguide, and unitless values for line-height in core
 * so we need to handle the possibility for both here
 */
.event-listing__header {
  height: 400px;
  height: -webkit-calc(100vh - 60px);
  height: calc(100vh - 60px);
  min-height: 300px;
  overflow: hidden;
  position: relative;
  width: 100%; }
  @media only screen and (max-width: 479px) {
    .event-listing__header {
      height: auto;
      min-height: 0;
      min-height: -webkit-calc(100vh - 60px);
      min-height: calc(100vh - 60px); } }

.listing-notification {
  position: absolute;
  z-index: 10000;
  top: 10px;
  width: 100%; }

/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ---------------------------------------------------------- */
/*                                                            */
/* A media query that captures:                               */
/*                                                            */
/* - Retina iOS devices                                       */
/* - Retina Macs running Safari                               */
/* - High DPI Windows PCs running IE 8 and above              */
/* - Low DPI Windows PCs running IE, zoomed in                */
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in  */
/* - Android hdpi devices and above                           */
/* - Android tvdpi devices, including Google Nexus 7          */
/* - Chrome running on high DPI Macs and PCs                  */
/* - Opera running on high DPI Macs, PCs and mobile devices   */
/*                                                            */
/* Please note that that this code assumes you'll swap a      */
/* 2× version of your images. If you'd like to supply         */
/* finer increments, other thresholds might be appropriate.   */
/*                                                            */
/* A test for CSS pixel densites can be found here:           */
/* http://bjango.com/articles/min-device-pixel-ratio/         */
/*                                                            */
/*                                  @marcedwards from @bjango */
/*                                                            */
/* ---------------------------------------------------------- */
/* This is hacky and awesome. it should be part of mixins or something.
   I found it once on stack overflow and couldn't find it later when I looked */
/* XXX: test in browsers */
/* ratio is the height divided by width in percentage form */
/* This function is used to get the max height for multi-line ellipses
 * We use px values for line-height in styleguide, and unitless values for line-height in core
 * so we need to handle the possibility for both here
 */
.listing-footer {
  color: #94969a;
  color: rgba(255, 255, 255, 0.5);
  background-color: #282C35;
  padding: 20px 0 10px; }
  .listing-footer .listing-footer-text,
  .listing-footer .listing-footer-links {
    color: #94969a;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer; }
    .listing-footer .listing-footer-text .link:hover,
    .listing-footer .listing-footer-links .link:hover {
      text-decoration: none;
      color: white; }
  .listing-footer .listing-footer-text a {
    color: #eeeeef;
    color: rgba(255, 255, 255, 0.92); }
  .listing-footer .listing-footer-logo-wrapper {
    margin-top: 10px; }
  .listing-footer .footer-logo {
    color: #94969a;
    color: rgba(255, 255, 255, 0.5);
    line-height: 40px; }
    .listing-footer .footer-logo .ico-eventbrite-badge {
      font-size: 47px; }
    .listing-footer .footer-logo:hover {
      text-decoration: none;
      color: white; }
  .listing-footer .listing-footer-links {
    line-height: 25px; }
    .listing-footer .listing-footer-links .link {
      color: #eeeeef;
      color: rgba(255, 255, 255, 0.92);
      padding: 0 10px; }
    .listing-footer .listing-footer-links .link.first-link {
      padding-left: 0; }

@media only screen and (max-width: 479px) {
  .listing-footer {
    padding: 20px 0 94px; }
    .listing-footer .g-cell {
      font-size: 12px; }
    .listing-footer .listing-footer-logo-wrapper {
      margin-top: 0; }
    .listing-footer .footer-logo {
      line-height: 33px; }
    .listing-footer .footer-logo .ico-eventbrite-badge {
      font-size: 23px; }
    .listing-footer .listing-footer-links .link {
      padding: 0 6px; }
    .listing-footer .listing-footer-links li:first-child {
      display: block; } }

/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ---------------------------------------------------------- */
/*                                                            */
/* A media query that captures:                               */
/*                                                            */
/* - Retina iOS devices                                       */
/* - Retina Macs running Safari                               */
/* - High DPI Windows PCs running IE 8 and above              */
/* - Low DPI Windows PCs running IE, zoomed in                */
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in  */
/* - Android hdpi devices and above                           */
/* - Android tvdpi devices, including Google Nexus 7          */
/* - Chrome running on high DPI Macs and PCs                  */
/* - Opera running on high DPI Macs, PCs and mobile devices   */
/*                                                            */
/* Please note that that this code assumes you'll swap a      */
/* 2× version of your images. If you'd like to supply         */
/* finer increments, other thresholds might be appropriate.   */
/*                                                            */
/* A test for CSS pixel densites can be found here:           */
/* http://bjango.com/articles/min-device-pixel-ratio/         */
/*                                                            */
/*                                  @marcedwards from @bjango */
/*                                                            */
/* ---------------------------------------------------------- */
/* This is hacky and awesome. it should be part of mixins or something.
   I found it once on stack overflow and couldn't find it later when I looked */
/* XXX: test in browsers */
/* ratio is the height divided by width in percentage form */
/* This function is used to get the max height for multi-line ellipses
 * We use px values for line-height in styleguide, and unitless values for line-height in core
 * so we need to handle the possibility for both here
 */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
/* ---------------------------------------------------------- */
/*                                                            */
/* A media query that captures:                               */
/*                                                            */
/* - Retina iOS devices                                       */
/* - Retina Macs running Safari                               */
/* - High DPI Windows PCs running IE 8 and above              */
/* - Low DPI Windows PCs running IE, zoomed in                */
/* - Low DPI Windows PCs and Macs running Firefox, zoomed in  */
/* - Android hdpi devices and above                           */
/* - Android tvdpi devices, including Google Nexus 7          */
/* - Chrome running on high DPI Macs and PCs                  */
/* - Opera running on high DPI Macs, PCs and mobile devices   */
/*                                                            */
/* Please note that that this code assumes you'll swap a      */
/* 2× version of your images. If you'd like to supply         */
/* finer increments, other thresholds might be appropriate.   */
/*                                                            */
/* A test for CSS pixel densites can be found here:           */
/* http://bjango.com/articles/min-device-pixel-ratio/         */
/*                                                            */
/*                                  @marcedwards from @bjango */
/*                                                            */
/* ---------------------------------------------------------- */
/* This is hacky and awesome. it should be part of mixins or something.
   I found it once on stack overflow and couldn't find it later when I looked */
/* XXX: test in browsers */
/* ratio is the height divided by width in percentage form */
/* This function is used to get the max height for multi-line ellipses
 * We use px values for line-height in styleguide, and unitless values for line-height in core
 * so we need to handle the possibility for both here
 */
/* ============== Browser Support ============== */
/* ================== Colors ================== */
/* ================ Typography ================= */
/* ============ Heights and Widths ============= */
/* ========== Responsive breakpoints =========== */
/* ================= Elevations ================ */
/* ================= Animations ================ */
/* =================== Icons =================== */
/* ============== Module specific ============== */
/* ============== Accordion ============== */
/* ============== Avatar ============== */
/* ============== Badge ============== */
/* ============== Button ============== */
/* ============== Card ============== */
/* ============== Event Cards ============== */
/* ============== Form ============== */
/* ============== Overlay ============== */
/* ============== Reports ============== */
/* ============== Responsive Form ============== */
/* ============== Segmented Control ============== */
/* ============== Ticket Types ============== */
/* ============== Toggle / Switch ============== */
.text-body-small, .text-small, .text-detail {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400; }

body {
  font-family: "Benton Sans", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif;
  font-size: 15px;
  color: #45494E;
  letter-spacing: 0.5px; }

.text-heading-mega,
.text-mega {
  font-size: 65px;
  line-height: 90px;
  font-weight: 400;
  color: #282C35;
  text-rendering: optimizelegibility; }
  @media only screen and (min-width: 480px) and (max-width: 799px) {
    .text-heading-mega,
    .text-mega {
      font-size: 45px;
      line-height: 60px; } }
  @media only screen and (max-width: 479px) {
    .text-heading-mega,
    .text-mega {
      font-size: 35px;
      line-height: 50px; } }

.text-heading-epic,
.text-epic {
  font-size: 45px;
  line-height: 60px;
  font-weight: 400;
  color: #282C35;
  text-rendering: optimizelegibility; }
  @media only screen and (min-width: 480px) and (max-width: 799px) {
    .text-heading-epic,
    .text-epic {
      font-size: 35px;
      line-height: 50px; } }
  @media only screen and (max-width: 479px) {
    .text-heading-epic,
    .text-epic {
      font-size: 20px;
      line-height: 30px; } }

.text-heading-primary,
.text-primary {
  font-size: 35px;
  line-height: 50px;
  font-weight: 600;
  color: #282C35;
  text-rendering: optimizelegibility; }
  @media only screen and (min-width: 480px) and (max-width: 799px) {
    .text-heading-primary,
    .text-primary {
      font-size: 25px;
      line-height: 35px; } }
  @media only screen and (max-width: 479px) {
    .text-heading-primary,
    .text-primary {
      font-size: 20px;
      line-height: 30px; } }

.text-heading-secondary,
.text-secondary {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #282C35;
  text-rendering: optimizelegibility; }

.text-heading-tertiary {
  font-size: 15px;
  line-height: 22px;
  color: #282C35;
  font-weight: 400; }

.text-heading-quaternary {
  color: #666A73;
  font-size: 15px;
  line-height: 22px;
  font-weight: 400; }

.heading-secondary-responsive {
  font-size: 15px;
  line-height: 22px;
  color: #282C35; }
  @media only screen and (min-width: 480px) {
    .heading-secondary-responsive {
      font-size: 20px;
      line-height: 30px; } }

.label-primary, .listings-label--protected,
label.label-primary,
label.listings-label--protected {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #282C35;
  text-transform: uppercase; }

.label-secondary,
label.label-secondary {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #282C35;
  text-transform: uppercase;
  color: #666A73; }

.text-body-large {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400; }

.text-large {
  font-size: 25px;
  line-height: 35px;
  font-weight: 400; }
  @media only screen and (max-width: 479px) {
    .text-large {
      font-size: 20px;
      line-height: 30px; } }

.text-body-medium {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400; }

.text-medium {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400; }

.text-default {
  font-size: 15px;
  line-height: 22px;
  font-weight: 400; }

.text-small, .text-detail {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400; }

.text-xsmall {
  font-size: 9px;
  line-height: 12px;
  font-weight: 400; }

.text-body--understated, .text-body--faint, .text-understated {
  font-weight: 400; }

.text-body--faint {
  color: #666A73; }

.text-body--significant, .text-significant, .heading-secondary-responsive {
  font-weight: 600; }

.text-heading--understated {
  font-weight: 400; }

.text-heading--emphasized {
  color: white; }

.text-stressed {
  color: #282C35;
  text-transform: uppercase;
  font-weight: 600; }

.text-light {
  font-weight: 200; }

.text-detail {
  color: #666A73; }

.text-error {
  color: #D33732; }

.text--truncated {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block; }

.text--truncated-two-line {
  display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  max-height: 44px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative; }
  .text--truncated-two-line.text-heading-epic {
    display: block;
    /* Fallback for non-webkit */
    display: -webkit-box;
    max-height: 120px;
    /* Fallback for non-webkit */
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit; }
  .text--truncated-two-line.text-heading-primary {
    display: block;
    /* Fallback for non-webkit */
    display: -webkit-box;
    max-height: 100px;
    /* Fallback for non-webkit */
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit; }
  .text--truncated-two-line.text-heading-secondary {
    display: block;
    /* Fallback for non-webkit */
    display: -webkit-box;
    max-height: 60px;
    /* Fallback for non-webkit */
    margin: 0 auto;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inherit; }

.text--truncated-two-line__truncation {
  background-color: rgba(255, 255, 255, 0);
  background-image: -webkit-linear-gradient(-360deg, rgba(255, 255, 255, 0) 0%, white 30%);
  background-image: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, white 30%);
  position: absolute;
  right: 0;
  padding-left: 10px; }
  .text-heading-epic .text--truncated-two-line__truncation {
    top: 60px;
    height: 60px; }
  .text-heading-primary .text--truncated-two-line__truncation {
    top: 50px;
    height: 50px; }
  .text-heading-secondary .text--truncated-two-line__truncation {
    top: 30px;
    height: 30px; }
  .text--truncated-two-line__truncation:before {
    content: '\2026'; }

.text--separated {
  margin-left: 10px; }

.text--centered {
  text-align: center; }

.text--right {
  text-align: right; }

.text--normal {
  text-align: left; }

.high-visibility-alert {
  color: #f6682F;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none; }

.listing-hero-sub-footer {
  margin: 25px 0;
  padding: 0; }

.listing-hero-image__blurry-background {
  display: none;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%; }
  @media only screen and (max-width: 479px) {
    .listing-hero-image__blurry-background {
      height: 49vw;
      max-height: 640px;
      position: relative; } }
  .event-listing--has-image .listing-hero-image__blurry-background {
    display: block; }
    .event-listing--has-image .listing-hero-image__blurry-background .hero-image-overlay {
      background-image: -webkit-linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
      background-image: linear-gradient( rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
      bottom: 0;
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
      zoom: 1; }

.listing-hero-image {
  -webkit-filter: blur(10px);
  filter: blur(10px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  position: relative;
  top: 50%;
  width: 105%; }

@media only screen and (min-width: 480px) and (max-aspect-ratio: 7 / 4) {
  .listing-hero-image {
    height: 105%;
    width: auto; } }
  @media only screen and (max-width: 479px) {
    .listing-hero-image {
      -webkit-transform: none;
      -moz-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      position: static; } }

.listing-hero-header {
  padding-bottom: 5px; }
  @media only screen and (min-width: 800px) {
    .listing-hero-header {
      padding-bottom: 10px; } }

.listing-hero-date {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px; }

.listing-hero-body {
  padding: 0; }

.listing-hero-title {
  color: black;
  font-weight: 600; }
  @media only screen and (max-width: 600px) {
    .listing-hero-title {
      font-size: 25px; } }

.listing-hero-footer {
  padding-top: 5px; }
  @media only screen and (min-width: 800px) {
    .listing-hero-footer {
      padding-top: 10px; } }

.listing-hero-date,
.listing-hero-location {
  line-height: 22px; }
  @media only screen and (max-width: 799px) {
    .listing-hero-date,
    .listing-hero-location {
      font-size: 15px; } }

.listing-hero-image__locked {
  display: none; }

.listing-hero-sub-footer__password-header,
.listing-hero-sub-footer__contact-header {
  display: block;
  margin-bottom: 5px; }

.listing-hero-sub-footer__password {
  -webkit-appearance: none; }

.listing-hero-container--protected {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  flex-direction: column;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  box-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 100%;
  position: relative; }
  @media only screen and (max-width: 479px) {
    .listing-hero-container--protected {
      margin-top: 25px; } }

@media only screen and (max-width: 479px) {
  .listing-hero-sub-footer__contact-container {
    margin-top: 25px; } }

.listing-hero-sub-footer__contact-btn-over-image {
  display: none; }

@media only screen and (min-width: 480px) {
  .event-listing--has-image .listing-hero-title,
  .event-listing--has-image .listings-label--protected {
    color: white;
    color: white; }
  .event-listing--has-image .listing-hero-date,
  .event-listing--has-image .listing-hero-location,
  .event-listing--has-image .listing-hero-container .listing-hero-sub-footer__password-header,
  .event-listing--has-image .listing-hero-container .listing-hero-sub-footer__contact-header {
    color: #ebebeb;
    color: rgba(255, 255, 255, 0.92); }
  .event-listing--has-image .listing-organizer-title,
  .event-listing--has-image .listing-organizer-name {
    color: white;
    color: rgba(255, 255, 255, 0.92); }
  .event-listing--has-image .listing-hero-sub-footer__contact-btn {
    display: none; }
  .event-listing--has-image .listing-hero-sub-footer__contact-btn-over-image {
    display: inline-block; } }

@media only screen and (max-width: 479px) {
  .event-listing--has-image .listing-hero-container {
    display: block;
    margin-top: 25px; }
  .event-listing--has-image .listing-hero-image__locked {
    display: block;
    left: 50%;
    margin: -34px -19.5px;
    position: absolute;
    top: 50%; } }

.contact-organizer-modal .responsive-form .has-form-input-error {
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 3px 3px 0 0; }

.contact-organizer-modal .responsive-form .responsive-form__field-error {
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: #D33732;
  color: white;
  color: white;
  padding: 3px 11px;
  border-radius: 0 0 3px 3px;
  margin-top: 0; }
  .contact-organizer-modal .responsive-form .responsive-form__field-error.is-message-hidden {
    color: rgba(255, 255, 255, 0);
    margin-top: -21px; }
