@charset "UTF-8";
/* Greyscale from light to dark */
/* z-index: map-get($zindex, z-index-#); */
/* For use if no auto-prefixer is being used */
/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/*
* 	Owl Carousel Owl Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut 0.7s both ease;
  -moz-animation: fadeOut 0.7s both ease;
  animation: fadeOut 0.7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn 0.7s both ease;
  -moz-animation: fadeIn 0.7s both ease;
  animation: fadeIn 0.7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade 0.7s ease both;
  -moz-animation: scaleToFade 0.7s ease both;
  animation: scaleToFade 0.7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown 0.6s ease both;
  -moz-animation: goDown 0.6s ease both;
  animation: goDown 0.6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom 0.5s ease both;
  -moz-animation: scaleUpFrom 0.5s ease both;
  animation: scaleUpFrom 0.5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo 0.5s ease both;
  -moz-animation: scaleUpTo 0.5s ease both;
  animation: scaleUpTo 0.5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: 0.5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: 0.5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/* Functional / structural styles for custom dropdowns */
/* 
html5doctor.com Reset Stylesheet v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html, body {
  height: 100%;
  font-size: 100%;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Slide In Element */
@-moz-keyframes slideIn {
  from {
    -moz-transform: translateY(-120%);
  }
  to {
    -moz-transform: translateY(0);
  }
}
@-webkit-keyframes slideIn {
  from {
    -webkit-transform: translateY(-120%);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-120%);
  }
  to {
    transform: translateY(0);
  }
}
/* Fade In */
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Fade Out - hide on finish */
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    z-index: 100000;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
    z-index: 100;
  }
}
@-moz-keyframes fade-out {
  0% {
    opacity: 1;
    z-index: 100000;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
    z-index: 100;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
    z-index: 100000;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
    z-index: 100;
  }
}
/* Headings */
body {
  font-size: 100%;
  font-family: "Founders-Grotesk", sans-serif;
  font-weight: 400;
  line-height: 1em;
  color: #333;
  background-color: #fff;
}
body ::selection {
  background-color: #ffd200;
  color: #000;
}
body ::-moz-selection {
  background-color: #ffd200;
  color: #000;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  color: #000;
  font-weight: 400;
}
a:hover {
  background-color: #322F31;
}

b, strong {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

h1 {
  color: #000;
  font-weight: 400;
  margin-bottom: 36px;
}

h2 {
  color: #000;
  margin-bottom: 30px;
  font-weight: 400;
}
h2 strong,
h2 b {
  font-weight: 900;
}

h3 {
  font-weight: 400;
  margin-bottom: 10px;
}

h4 {
  font-weight: 400;
  margin-bottom: 8px;
}

h5 {
  font-weight: 400;
  margin-bottom: 3px;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

.rich-text a:not(.internal-ad) {
  color: #322F31;
  border-bottom: 1px solid transparent;
  text-decoration: underline;
}
.rich-text a:not(.internal-ad):hover {
  border-bottom: 1px solid #322F31;
  color: #FFF;
}
.rich-text ol {
  list-style-type: none;
  counter-reset: step-counter;
}
.rich-text ol > li:before {
  content: counter(step-counter) ".";
  counter-increment: step-counter;
  font-weight: bold;
  padding-right: 6px;
}
.rich-text ol > li > ol {
  margin-top: 10px;
  margin-left: 30px;
}
.rich-text ul {
  list-style-type: none;
}
.rich-text ul > li:before {
  content: "•";
  color: #322F31;
  padding-right: 6px;
}
.rich-text ul > li > ul {
  margin-top: 10px;
  margin-left: 30px;
}
.rich-text ul > li > ul > li:before {
  color: #000;
}
.rich-text ul > li > ul > li > ul > li:before {
  color: #322F31;
}
.rich-text ul > li > ul > li > ul > li > ul > li:before {
  color: #000;
}
.rich-text ol, .rich-text ul {
  margin-bottom: 30px;
  padding-left: 4px;
}
.rich-text ol li + li, .rich-text ul li + li {
  padding-top: 10px;
}
.rich-text p {
  margin-bottom: 30px;
}
.rich-text p:last-child {
  margin-bottom: 0;
}
.rich-text blockquote {
  background-color: #f1f1f1;
  padding: 30px;
  margin-left: -30px;
  margin-bottom: 30px;
}
.rich-text .photo-credit {
  text-align: right;
  text-transform: uppercase;
  margin-top: 10px;
}

.rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  color: #fff;
  border-bottom: none !important;
  text-decoration: none;
}
.rich-text .btn-primary-mini a:hover, .rich-text a.btn-primary-mini:hover {
  border-bottom: 0;
}
.rich-text .btn-primary-small a, .rich-text a.btn-primary-small {
  color: #fff;
  border-bottom: none !important;
  text-decoration: none;
}
.rich-text .btn-primary-small a:hover, .rich-text a.btn-primary-small:hover {
  border-bottom: 0;
}
.rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium {
  color: #fff;
  border-bottom: none !important;
  text-decoration: none;
}
.rich-text .btn-primary-medium a:hover, .rich-text a.btn-primary-medium:hover {
  border-bottom: 0;
}
.rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall {
  color: #fff;
  border-bottom: none !important;
  text-decoration: none;
}
.rich-text .btn-primary-tall a:hover, .rich-text a.btn-primary-tall:hover {
  border-bottom: 0;
}
.rich-text .btn-outline a, .rich-text a.btn-outline {
  color: #ffd200 !important;
  border-bottom: 3px solid #ffd200 !important;
  text-decoration: none;
}
.rich-text .btn-outline a:hover, .rich-text a.btn-outline:hover {
  border-bottom: 3px solid #ffd200;
  color: #fff !important;
}
.rich-text .btn-secondary-mini a {
  text-decoration: none;
}
.rich-text .btn-secondary-small a {
  text-decoration: none;
}
.rich-text .btn-secondary-medium a {
  text-decoration: none;
}
.rich-text .btn-secondary-tall a {
  text-decoration: none;
}
.rich-text .btn-secondary-outline a {
  text-decoration: none;
}

/* Sizing and Line Height */
.pdp-side-col-bottom-icons, .footer-dropdown, .nav-utility-search-input, .nav-utility li a {
  font-size: 0.75rem;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  .pdp-side-col-bottom-icons, .footer-dropdown, .nav-utility-search-input, .nav-utility li a {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

/* Groupings */
.nav-utility-search-input, .nav-utility li a {
  text-transform: uppercase;
  font-weight: 700;
}

.main-content-highlight-block-image-caption, .breadcrumbs, .pdp-photos-carousel-photo-caption, .pdp-side-col-top-icons, footer a, .footer-secondary-text, .footer-secondary-links li, .footer-heading, .rich-text .photo-credit {
  font-size: 0.8rem;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  .main-content-highlight-block-image-caption, .breadcrumbs, .pdp-photos-carousel-photo-caption, .pdp-side-col-top-icons, footer a, .footer-secondary-text, .footer-secondary-links li, .footer-heading, .rich-text .photo-credit {
    font-size: 0.8rem;
    line-height: 1.1;
  }
}

.footer-heading {
  text-transform: uppercase;
  font-weight: 900;
}

input[type=text]:not(.nav-utility-search-input),
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
textarea, .internal-ad-cta, .cta-link, .nav-toplevel-link > a {
  font-size: 0.91rem;
  line-height: 1.1;
}
@media screen and (max-width: 640px) {
  input[type=text]:not(.nav-utility-search-input),
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
textarea, .internal-ad-cta, .cta-link, .nav-toplevel-link > a {
    font-size: 0.91rem;
    line-height: 1.1;
  }
}

/* Groupings */
.nav-toplevel-link > a {
  text-transform: uppercase;
  font-weight: 700;
}

.pdp-header-info-message-content p, .pdp-header-info-promo-content p, .rich-text .btn-secondary-outline a, .rich-text .btn-secondary-tall a, .rich-text .btn-secondary-medium a, .rich-text .btn-secondary-small a, .rich-text .btn-secondary-mini a, .panzoom-modal .reset, .rich-text .btn-outline a, .rich-text a.btn-outline, .search-pagination-number-active, .event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit], .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  .pdp-header-info-message-content p, .pdp-header-info-promo-content p, .rich-text .btn-secondary-outline a, .rich-text .btn-secondary-tall a, .rich-text .btn-secondary-medium a, .rich-text .btn-secondary-small a, .rich-text .btn-secondary-mini a, .panzoom-modal .reset, .rich-text .btn-outline a, .rich-text a.btn-outline, .search-pagination-number-active, .event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit], .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
    font-size: 0.9rem;
    line-height: 1.1;
  }
}

.rich-text .btn-secondary-outline a, .rich-text .btn-secondary-tall a, .rich-text .btn-secondary-medium a, .rich-text .btn-secondary-small a, .rich-text .btn-secondary-mini a, .panzoom-modal .reset, .rich-text .btn-outline a, .rich-text a.btn-outline, .search-pagination-number-active, .event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit], .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  text-transform: uppercase;
  font-weight: 700;
}

.minical-events-organization, .main-content-xform-block, .sidebar-block-xform, .sidebar-block-text .rich-text p, .modal-forgot a, .modal-tab-header, .modal-dialog input[type=text], .modal-dialog input[type=password], .sidebar-block-image-cta, .home-free-link, .cookieNotification, .notification, .event-details-time, .event-find-search input[type=text], .home-news-desc, .pdp-vip-accordion-content-item, .pdp-artists-list > div .pdp-artist-note, .pdp-artists-list > div .pdp-artist-character, .video-block-subtitle, .video-block-title, .pdp-overview-intermissions, .pdp-overview-runtime, .date-comparison-tool-block-price, .date-comparison-tool-filters .filter-selector-filters > li, .nav-meganav a, .calendar-detail-event-learn, .event-filters-list input[type=radio] + label, .event-filters-navigation-clear, .pdp-anchor-tags a, .mobile-navigation > li, .nav-meganav-title {
  font-size: 1.12rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .minical-events-organization, .main-content-xform-block, .sidebar-block-xform, .sidebar-block-text .rich-text p, .modal-forgot a, .modal-tab-header, .modal-dialog input[type=text], .modal-dialog input[type=password], .sidebar-block-image-cta, .home-free-link, .cookieNotification, .notification, .event-details-time, .event-find-search input[type=text], .home-news-desc, .pdp-vip-accordion-content-item, .pdp-artists-list > div .pdp-artist-note, .pdp-artists-list > div .pdp-artist-character, .video-block-subtitle, .video-block-title, .pdp-overview-intermissions, .pdp-overview-runtime, .date-comparison-tool-block-price, .date-comparison-tool-filters .filter-selector-filters > li, .nav-meganav a, .calendar-detail-event-learn, .event-filters-list input[type=radio] + label, .event-filters-navigation-clear, .pdp-anchor-tags a, .mobile-navigation > li, .nav-meganav-title {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}

input[type=text].home-hero-dropdowns-keyword, .pdp-header-dates-date {
  font-size: 1.3rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  input[type=text].home-hero-dropdowns-keyword, .pdp-header-dates-date {
    font-size: 1.2rem;
    line-height: 1.25;
  }
}

.calendar-detail-event-learn, .event-filters-list input[type=radio] + label, .event-filters-navigation-clear, .pdp-anchor-tags a, .mobile-navigation > li, .nav-meganav-title {
  text-transform: uppercase;
  font-weight: 700;
}

.section-list-title, .pdp-vip-accordion-btn-label, .pdp-also-more, .date-comparison-tool-block-time, .date-comparison-tool-block-date, .date-comparison-tool-block-day, .date-comparison-tool-filters .current-production, .footer-cta-inner span, .dropdown label, h5, .rich-text ol, .rich-text ul, .rich-text p, .rich-text blockquote {
  font-size: 1.46rem;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .section-list-title, .pdp-vip-accordion-btn-label, .pdp-also-more, .date-comparison-tool-block-time, .date-comparison-tool-block-date, .date-comparison-tool-block-day, .date-comparison-tool-filters .current-production, .footer-cta-inner span, .dropdown label, h5, .rich-text ol, .rich-text ul, .rich-text p, .rich-text blockquote {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}

.calendar-carousel-day-number, .home-hero-dropdowns-inner span,
.home-hero-dropdowns-inner label {
  font-size: 1.62rem;
  line-height: 1.75;
}
@media screen and (max-width: 640px) {
  .calendar-carousel-day-number, .home-hero-dropdowns-inner span,
.home-hero-dropdowns-inner label {
    font-size: 1.52rem;
    line-height: 1.65;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (max-width: 640px) {
  h4 {
    font-size: 1.3rem;
    line-height: 1.1;
  }
}

.minical-events-dates, h3 {
  font-size: 1.65rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .minical-events-dates, h3 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}

.minical-events-title, .minical-nav, h2 {
  font-size: 2.4rem;
  line-height: 1.15;
}
@media screen and (max-width: 1025px) {
  .minical-events-title, .minical-nav, h2 {
    font-size: 2.2rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 640px) {
  .minical-events-title, .minical-nav, h2 {
    font-size: 2rem;
    line-height: 1.05;
  }
}

h1 {
  font-size: 2.8rem;
  line-height: 1.15;
}
@media screen and (max-width: 1025px) {
  h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
@media screen and (max-width: 640px) {
  h1 {
    font-size: 2.2rem;
    line-height: 1.05;
  }
}

.internal-ad-cta, .cta-link {
  color: #322F31;
  text-transform: uppercase;
}

.cta-link:hover {
  color: #000;
  background-color: #ffd200;
}

body {
  opacity: 0;
  overflow-x: hidden;
}

.fade-in {
  opacity: 1;
  animation-name: fade-in;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.calendar-detail-content, .calendar-carousel-header, .calendar-carousel-wrapper, .minical-header, .event-list, .event-results, .event-no-results, .home-featured-content, .pdp-blog-posts-container, .pdp-also, .pdp-credits-brought-wrapper, .pdp-credits-twitter-wrapper, .only-brought .pdp-credits-brought-wrapper, .only-twitter .pdp-credits-twitter-wrapper, .only-twitter .pdp-credits-twitter-content, .pdp-artists-wrapper, .pdp-photos, .pdp-videos, .pdp-additional, .pdp-footer, .pdp-packages, .pdp-alert, .pdp-main-content, .main-content, .max-width-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-secondary-inner, .flexpage-highlight, .main-content-inner, .main-content-header, .medium-max-width-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1285px;
  padding-left: 20px;
  padding-right: 20px;
}

.event-find-digital-checkbox-wrapper, .event-find-category-advanced-button-wrapper, .event-find-category, .event-find-search, .home-section-title-inner, .footer-inner, .footer-cta-inner, .header-inner, .inner-max-width-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1175px;
  padding-left: 20px;
  padding-right: 20px;
}

.main-content-container {
  border-top: 5px solid #ffd200;
  margin-top: 60px;
}
.main-content-header {
  padding-top: 20px;
}
.main-content-inner {
  padding-bottom: 70px;
  padding-top: 20px;
}
.main-content-full-width {
  padding-top: 20px;
  padding-bottom: 70px;
}

.flexpage-highlight {
  padding-top: 20px;
  padding-bottom: 50px;
}

.flexpage-contentarea {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.interior-container {
  display: flex;
  flex-wrap: wrap;
}
.interior-container > div {
  flex-grow: 0;
}
.interior-container > div:first-child {
  flex-basis: 70%;
  padding-left: 0;
  padding-right: 15px;
  max-width: 70%;
}
.interior-container > div:last-child {
  flex-basis: 30%;
  padding-right: 0;
  padding-left: 15px;
  max-width: 30%;
}
.interior-container > div:only-child {
  flex-basis: 100%;
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
}

.scroll-lock {
  overflow: hidden;
}

.inline-margin {
  display: inline-block;
  margin-right: 15px;
}

.full-width {
  width: 100%;
  height: auto;
}
.full-width img {
  width: 100%;
  height: auto;
}

.text-indent {
  text-indent: 50px;
}

.banner-img {
  width: 100%;
  margin-bottom: 12px;
}

img {
  max-width: 100%;
  border: 0;
  outline: 0;
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.error {
  color: red;
}

.svg-sprite {
  display: none;
}

.ng-cloak {
  visibility: hidden !important;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1025px) {
  .interior-container {
    display: flex;
    flex-wrap: wrap;
  }
  .interior-container > div {
    flex-grow: 1;
    margin-bottom: 30px;
  }
  .interior-container > div:first-child {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
  .interior-container > div:last-child {
    flex-basis: 100%;
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
  }
  .interior-container > div:only-child {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}
textarea {
  outline: 0;
  resize: none;
  border: 0;
}

input[type=text]:not(.nav-utility-search-input),
input[type=password],
input[type=number],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  border: 1px solid #d2d2d2;
  background-color: #f9f8f6;
  padding: 8px;
  font-family: "Founders-Grotesk";
  min-width: 300px;
}
input[type=submit] {
  -webkit-appearance: none;
  outline: 0;
  border: 0;
  border: 1px solid #ffd200;
  color: #fff;
  padding: 8px;
  font-family: "Founders-Grotesk";
  cursor: pointer;
}

select {
  padding: 8px;
  font-family: "Founders-Grotesk";
  border: 1px solid #d2d2d2;
  background-color: #fff;
}

.xform div + div {
  margin-top: 10px;
}
.xform label {
  margin-right: 6px;
}

.main-content-xform-block #id_matrix {
  width: 100%;
}

.main-content-xform-block #id_matrix label, .main-content-xform-block #id_matrix fieldset {
  margin-bottom: 0 !important;
  margin-top: 10px !important;
}

.main-content-xform-block #id_matrix input[type=submit] {
  margin-top: 10px;
}

.main-content-xform-block #id_matrix legend {
  margin-bottom: 0 !important;
}

.main-content-xform-block #id_matrix fieldset input {
  margin-top: -5px !important;
}

.main-content-xform-block #id_matrix fieldset label {
  display: inline !important;
  margin-right: 10px;
}

.dropdown {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #d2d2d2;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  /* Transparent black overlay */
  position: absolute;
  top: 0;
  /* Hover states */
  /* Border between icon and label */
}
.dropdown.active input[type=radio]:not(:checked) + label {
  visibility: visible;
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  height: auto;
}
.dropdown.active input[type=radio]:not(:first-child) + label {
  padding-top: 5px;
  padding-bottom: 5px;
}
.dropdown input[type=radio] {
  display: none;
  pointer-events: none;
}
.dropdown input[type=radio]:checked + label {
  z-index: 10;
}
.dropdown input[type=radio]:not(:checked) + label {
  visibility: hidden;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  height: 0;
}
.dropdown label {
  cursor: pointer;
  position: relative;
  display: block;
  background-color: #fff;
}
.dropdown:before {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 40;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  will-change: opacity;
  visibility: hidden;
  cursor: default;
}
.dropdown:hover {
  border-color: #322F31;
}
.dropdown:hover label {
  color: #322F31;
}
.dropdown:hover input[type=radio]:checked + label:before {
  background-color: #322F31;
}
.dropdown:hover .dropdown-arrow {
  fill: #322F31;
}
.dropdown label {
  padding-left: 15px;
  padding-right: 60px;
  text-transform: uppercase;
  height: 50px;
  transition: color 0.2s ease-in;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  backface-visibility: hidden;
  text-align: left;
  line-height: 1.95;
  color: #000;
  line-height: 2.2;
}
.dropdown input[type=radio]:checked + label:before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #d2d2d2;
  position: absolute;
  top: 0;
  right: 45px;
  transition: background-color 0.2s ease-in;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
}
.dropdown-arrow {
  position: absolute;
  z-index: 50;
  width: 25px;
  height: 12px;
  top: 20px;
  right: 10px;
  pointer-events: none;
}
.dropdown-close {
  width: 17px;
  height: 17px;
}
.dropdown-close-container {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 37px;
  height: 37px;
  right: 0;
  padding: 15px 15px 5px 5px;
  visibility: hidden;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.dropdown.active {
  border-color: #fff;
}
.dropdown.active:before {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.dropdown.active label {
  z-index: 50 !important;
}
.dropdown.active label:hover {
  background-color: #322F31;
  color: #fff;
}
.dropdown.active input[type=radio]:checked + label:before {
  visibility: hidden;
}
.dropdown.active .dropdown-close-container {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.dropdown.active .dropdown-arrow {
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

.home-hero-dropdowns-dropdown-close, .home-hero-dropdowns-dropdown-arrow, .dropdown-arrow, .dropdown-close {
  fill: #000;
  transition: fill 0.2s ease-in;
  -webkit-transition: fill 0.2s ease-in;
  -moz-transition: fill 0.2s ease-in;
  -o-transition: fill 0.2s ease-in;
}

form[action*="epieditmode=True"] .owl-wrapper-outer .owl-wrapper {
  width: 100% !important;
}
form[action*="epieditmode=True"] .owl-wrapper-outer .owl-item {
  width: auto !important;
}
form[action*="epieditmode=True"] .pdp-photos-carousel-navigation-left {
  display: none;
}
form[action*="epieditmode=True"] .pdp-photos-carousel-navigation-right {
  display: none;
}

form[action*="epieditmode=False"] .pdp-photos {
  overflow: hidden;
}

.rich-text .btn-secondary-tall a, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall, .event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-secondary-medium a, .rich-text .btn-outline a, .rich-text a.btn-outline, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium, .pdp-header-info-promo-content input[type=submit], .rich-text .btn-secondary-small a, .search-pagination-number-active, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit], .panzoom-modal .reset, .rich-text .btn-secondary-mini a, .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  display: inline-block;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.rich-text .btn-secondary-tall a.disabled, .rich-text .btn-primary-tall a.disabled, .rich-text a.disabled.btn-primary-tall, .disabled.event-navigation-button, .disabled.event-find-search-button, .disabled.membership-founders-content-join, .disabled.membership-content-join, .rich-text .btn-secondary-medium a.disabled, .rich-text .btn-outline a.disabled, .rich-text a.disabled.btn-outline, .disabled.modal-submit, .disabled.home-hero-dropdowns-btn, .disabled.pdp-header-info-buy-content, .rich-text .btn-primary-medium a.disabled, .rich-text a.disabled.btn-primary-medium, .rich-text .btn-secondary-small a.disabled, .disabled.search-pagination-number-active, .disabled.minical-list-item-cta-link, .main-content-highlight-block-button a.disabled, .disabled.date-comparison-tool-block-find-seats, .disabled.date-comparison-tool-header-close, .disabled.search-pagination-next, .disabled.search-pagination-last, .disabled.search-pagination-number, .disabled.search-pagination-prev, .disabled.search-pagination-first, .rich-text .btn-primary-small a.disabled, .rich-text a.disabled.btn-primary-small, input.disabled[type=submit], .panzoom-modal .disabled.reset, .rich-text .btn-secondary-mini a.disabled, .panzoom-modal .disabled.zoom-in, .panzoom-modal .disabled.zoom-out, .disabled.pdp-packages-learn-more, .disabled.pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a.disabled, .rich-text a.disabled.btn-primary-mini, .rich-text .btn-secondary-tall a[disabled=disabled], .rich-text .btn-primary-tall a[disabled=disabled], .rich-text a[disabled=disabled].btn-primary-tall, [disabled=disabled].event-navigation-button, [disabled=disabled].event-find-search-button, [disabled=disabled].membership-founders-content-join, [disabled=disabled].membership-content-join, .rich-text .btn-secondary-medium a[disabled=disabled], .rich-text .btn-outline a[disabled=disabled], .rich-text a[disabled=disabled].btn-outline, [disabled=disabled].modal-submit, [disabled=disabled].home-hero-dropdowns-btn, [disabled=disabled].pdp-header-info-buy-content, .rich-text .btn-primary-medium a[disabled=disabled], .rich-text a[disabled=disabled].btn-primary-medium, .rich-text .btn-secondary-small a[disabled=disabled], [disabled=disabled].search-pagination-number-active, [disabled=disabled].minical-list-item-cta-link, .main-content-highlight-block-button a[disabled=disabled], [disabled=disabled].date-comparison-tool-block-find-seats, [disabled=disabled].date-comparison-tool-header-close, [disabled=disabled].search-pagination-next, [disabled=disabled].search-pagination-last, [disabled=disabled].search-pagination-number, [disabled=disabled].search-pagination-prev, [disabled=disabled].search-pagination-first, .rich-text .btn-primary-small a[disabled=disabled], .rich-text a[disabled=disabled].btn-primary-small, input[disabled=disabled][type=submit], .panzoom-modal [disabled=disabled].reset, .rich-text .btn-secondary-mini a[disabled=disabled], .panzoom-modal [disabled=disabled].zoom-in, .panzoom-modal [disabled=disabled].zoom-out, [disabled=disabled].pdp-packages-learn-more, [disabled=disabled].pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a[disabled=disabled], .rich-text a[disabled=disabled].btn-primary-mini {
  pointer-events: none;
  cursor: default;
}
.rich-text .btn-secondary-tall a:empty:not(input[type=submit]), .rich-text .btn-primary-tall a:empty:not(input[type=submit]), .rich-text a.btn-primary-tall:empty:not(input[type=submit]), .event-navigation-button:empty:not(input[type=submit]), .event-find-search-button:empty:not(input[type=submit]), .membership-founders-content-join:empty:not(input[type=submit]), .membership-content-join:empty:not(input[type=submit]), .rich-text .btn-secondary-medium a:empty:not(input[type=submit]), .rich-text .btn-outline a:empty:not(input[type=submit]), .rich-text a.btn-outline:empty:not(input[type=submit]), .modal-submit:empty:not(input[type=submit]), .home-hero-dropdowns-btn:empty:not(input[type=submit]), .pdp-header-info-buy-content:empty:not(input[type=submit]), .rich-text .btn-primary-medium a:empty:not(input[type=submit]), .rich-text a.btn-primary-medium:empty:not(input[type=submit]), .rich-text .btn-secondary-small a:empty:not(input[type=submit]), .search-pagination-number-active:empty:not(input[type=submit]), .minical-list-item-cta-link:empty:not(input[type=submit]), .main-content-highlight-block-button a:empty:not(input[type=submit]), .date-comparison-tool-block-find-seats:empty:not(input[type=submit]), .date-comparison-tool-header-close:empty:not(input[type=submit]), .search-pagination-next:empty:not(input[type=submit]), .search-pagination-last:empty:not(input[type=submit]), .search-pagination-number:empty:not(input[type=submit]), .search-pagination-prev:empty:not(input[type=submit]), .search-pagination-first:empty:not(input[type=submit]), .rich-text .btn-primary-small a:empty:not(input[type=submit]), .rich-text a.btn-primary-small:empty:not(input[type=submit]), input[type=submit]:empty:not(input[type=submit]), .panzoom-modal .reset:empty:not(input[type=submit]), .rich-text .btn-secondary-mini a:empty:not(input[type=submit]), .panzoom-modal .zoom-in:empty:not(input[type=submit]), .panzoom-modal .zoom-out:empty:not(input[type=submit]), .pdp-packages-learn-more:empty:not(input[type=submit]), .pdp-overview-venue-details-seats:empty:not(input[type=submit]), .rich-text .btn-primary-mini a:empty:not(input[type=submit]), .rich-text a.btn-primary-mini:empty:not(input[type=submit]) {
  display: none;
}

/* Meant to always be used in conjunction with a style */
.panzoom-modal .reset, .rich-text .btn-secondary-mini a, .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  padding: 10px 14px;
}

.pdp-header-info-promo-content input[type=submit], .rich-text .btn-secondary-small a, .search-pagination-number-active, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit] {
  padding: 13px 30px;
}

.event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-secondary-medium a, .rich-text .btn-outline a, .rich-text a.btn-outline, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium {
  padding: 16px 30px;
}

.rich-text .btn-secondary-tall a, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall {
  padding: 26px 36px;
}

.event-navigation-button, .event-find-search-button, .membership-founders-content-join, .membership-content-join, .rich-text .btn-primary-tall a, .rich-text a.btn-primary-tall, .modal-submit, .home-hero-dropdowns-btn, .pdp-header-info-buy-content, .rich-text .btn-primary-medium a, .rich-text a.btn-primary-medium, .search-pagination-number-active, .minical-list-item-cta-link, .main-content-highlight-block-button a, .date-comparison-tool-block-find-seats, .date-comparison-tool-header-close, .search-pagination-next, .search-pagination-last, .search-pagination-number, .search-pagination-prev, .search-pagination-first, .rich-text .btn-primary-small a, .rich-text a.btn-primary-small, input[type=submit], .panzoom-modal .zoom-in, .panzoom-modal .zoom-out, .pdp-packages-learn-more, .pdp-overview-venue-details-seats, .rich-text .btn-primary-mini a, .rich-text a.btn-primary-mini {
  color: #000;
  background-color: #ffd200;
  text-align: center;
}
.event-navigation-button:hover, .event-find-search-button:hover, .membership-founders-content-join:hover, .membership-content-join:hover, .rich-text .btn-primary-tall a:hover, .rich-text a.btn-primary-tall:hover, .modal-submit:hover, .home-hero-dropdowns-btn:hover, .pdp-header-info-buy-content:hover, .rich-text .btn-primary-medium a:hover, .rich-text a.btn-primary-medium:hover, .search-pagination-number-active:hover, .minical-list-item-cta-link:hover, .main-content-highlight-block-button a:hover, .date-comparison-tool-block-find-seats:hover, .date-comparison-tool-header-close:hover, .search-pagination-next:hover, .search-pagination-last:hover, .search-pagination-number:hover, .search-pagination-prev:hover, .search-pagination-first:hover, .rich-text .btn-primary-small a:hover, .rich-text a.btn-primary-small:hover, input[type=submit]:hover, .panzoom-modal .zoom-in:hover, .panzoom-modal .zoom-out:hover, .pdp-packages-learn-more:hover, .pdp-overview-venue-details-seats:hover, .rich-text .btn-primary-mini a:hover, .rich-text a.btn-primary-mini:hover {
  background-color: #000;
  color: #ffd200;
}

.panzoom-modal .reset, .rich-text .btn-secondary-outline a, .rich-text .btn-outline a, .rich-text a.btn-outline, .search-pagination-number-active {
  color: #ffd200;
  background-color: #fff;
  text-align: center;
  border: 3px solid #ffd200;
}
.panzoom-modal .reset:hover, .rich-text .btn-secondary-outline a:hover, .rich-text .btn-outline a:hover, .rich-text a.btn-outline:hover, .search-pagination-number-active:hover {
  background-color: #ffd200;
  color: #fff;
}

.rich-text .btn-secondary-outline a, .rich-text .btn-secondary-tall a, .rich-text .btn-secondary-medium a, .rich-text .btn-secondary-small a, .rich-text .btn-secondary-mini a {
  color: #FFF;
  background-color: #322F31;
  text-align: center;
}
.rich-text .btn-secondary-outline a:hover, .rich-text .btn-secondary-tall a:hover, .rich-text .btn-secondary-medium a:hover, .rich-text .btn-secondary-small a:hover, .rich-text .btn-secondary-mini a:hover {
  background-color: #000;
  color: #ffd200;
}

/* Top Gutter */
.col-gutter-top {
  padding-top: 30px;
}

/* Buttom Gutter */
.col-gutter-bottom {
  padding-bottom: 30px;
}

/* Right Gutter */
.col-gutter-right {
  margin-right: 30px;
}

/* Left Gutter */
.col-gutter-left {
  margin-right: 30px;
}

header {
  background-color: #fff;
  z-index: 60;
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.header-logo-img {
  width: 160px;
  position: absolute;
  z-index: 10;
  margin-right: 15px;
  margin-top: 5px;
}
@media only screen and (max-width: 1025px) {
  .header-logo-img {
    width: 110px;
    margin-top: 20px;
  }
}

.header-navigation {
  padding-left: 110px;
}

nav {
  margin-top: 21px;
  margin-bottom: 21px;
  margin-right: -10px;
}

.nav-toplevel {
  display: flex;
  position: relative;
  justify-content: flex-end;
}
.nav-toplevel-link:hover .nav-meganav {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.nav-toplevel-link + .nav-toplevel-link {
  padding-left: 5px;
}
.nav-toplevel-link > a {
  padding: 6px 10px 6px 10px;
  border-bottom: 3px solid #fff;
}
.nav-toplevel-link > a:hover {
  color: #000;
  background-color: #ffd200;
  border-bottom: 10px solid #ffd200;
}
.nav-toplevel-link.active-page > a {
  border-bottom: 3px solid #e6e6e6;
}
.nav-toplevel-link.active-page > a:hover {
  border-bottom: 10px solid #ffd200;
}

.nav-meganav {
  background-color: #fff;
  padding: 30px;
  box-shadow: inset 0 0 8px 2px #F4F4F4;
  width: 100%;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  backface-visibility: hidden;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  visibility: hidden;
  z-index: 20;
}
.nav-meganav a {
  display: block;
  outline: 4px solid transparent;
}
.nav-meganav a:hover {
  background-color: #e6e7e8;
  outline: 4px solid #e6e7e8;
}
.nav-meganav-title {
  margin-bottom: 20px;
}
.nav-meganav-title + ul,
.nav-meganav-title + div > ul {
  margin-top: 15px;
}
.nav-meganav li + li {
  margin-top: 15px;
}

.mobile-header {
  display: none;
}

.nav-utility svg.nav-utility-icon-gift {
  fill: #000;
}
.nav-utility li a:hover svg.nav-utility-icon-gift {
  fill: #ffd200;
  background-color: #000;
}
.nav-utility #hlDonateLink {
  color: #000;
  background-color: #ffd200;
  padding: 5px;
}
.nav-utility #hlDonateLink:hover {
  color: #ffd200;
  background-color: #000;
  transition: fill 0.2s ease-in;
  -webkit-transition: fill 0.2s ease-in;
  -moz-transition: fill 0.2s ease-in;
  -o-transition: fill 0.2s ease-in;
}

@media (max-width: 1140px) {
  .nav-toplevel-link > a {
    font-size: 0.75rem;
  }
}
@media (max-width: 1025px) {
  nav {
    margin-bottom: 0;
  }

  .nav-utility li {
    text-align: center;
  }
  .nav-utility li a {
    font-size: 0.65rem;
  }

  .nav-toplevel-link > a {
    text-align: center;
    display: inline-block;
    font-size: 0.75rem;
    border-bottom: 10px solid #fff;
    padding: 6px;
  }
  .nav-toplevel-link > a:hover {
    border-bottom-color: #ffd200;
  }
}
.mobile-header {
  position: relative;
}
.mobile-header-bottom {
  display: flex;
  width: 100%;
}
.mobile-navigation {
  display: flex;
}
.mobile-navigation > li {
  flex: 1 0 auto;
  margin: 15px 0;
  text-transform: uppercase;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
}
.mobile-navigation > li a {
  color: #939598;
}
.mobile-navigation > li + li {
  border-left: 2px solid #939598;
}
.mobile-navigation > li .nav-utility-search-input {
  margin: 0 auto;
  width: 20px;
  border-bottom: none;
}
.mobile-logo {
  width: 100%;
}
.mobile-logo-wrapper {
  width: 100%;
}
.mobile-menu {
  background-color: #fff;
  border-top: 1px solid #939598;
}
.mobile-menu-wrapper {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
}
.mobile-menu .nav-toplevel-link {
  position: relative;
  box-shadow: 0 4px 2px -2px #d9d9d9;
}
.mobile-menu .nav-toplevel-link.active-page > a {
  border-left: 8px solid #ffd200;
  pointer-events: none;
}
.mobile-menu .nav-toplevel-link:not(:first-child):after {
  content: "+";
  position: absolute;
  font-family: Arial;
  font-size: 30px;
  top: 12px;
  right: 30px;
  color: #939598;
}
.mobile-menu .nav-toplevel-link:not(:first-child).active:after {
  content: "-";
  position: absolute;
  top: 8px;
  right: 32px;
  font-size: 38px;
}
.mobile-menu .nav-toplevel-link:not(:first-child).active > a {
  pointer-events: initial;
  text-decoration: underline;
}
.mobile-menu .nav-toplevel-link:first-child > a {
  pointer-events: initial;
}
.mobile-menu .nav-toplevel-link:last-child {
  border-bottom: 1px solid #939598;
}
.mobile-menu .nav-toplevel-link > a {
  border-left: 8px solid transparent;
  pointer-events: none;
  display: inline-block !important;
}
.mobile-menu .nav-toplevel-link a {
  display: block;
  padding: 12px 10px;
  border-bottom: 0;
}
.mobile-menu .nav-toplevel-link a:hover {
  border-bottom: 0;
  background-color: inherit;
  color: inherit;
}
.mobile-menu .nav-toplevel-link + .nav-toplevel-link {
  padding-left: 0;
  border-top: 1px solid #939598;
}
.mobile-menu .nav-toplevel-link:hover .nav-meganav {
  opacity: 0;
  visibility: hidden;
}
.mobile-menu .nav-toplevel-link .nav-meganav {
  position: static;
  max-height: 0;
  padding: 0;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  background-color: #d2d2d2;
}
.mobile-menu .nav-toplevel-link .nav-meganav a {
  outline: none;
  padding-left: 50px;
}
.mobile-menu .nav-toplevel-link .nav-meganav a:hover {
  outline: none;
}
.mobile-menu .nav-toplevel-link .nav-meganav li {
  margin-top: 0;
  border-top: 1px solid #939598;
  box-shadow: inset 0 4px 10px -4px #939598;
}
.mobile-menu .nav-toplevel-link .nav-meganav.active {
  max-height: 1000px;
  opacity: 1;
  visibility: visible;
}
.mobile-menu .nav-toplevel-link .nav-meganav-title {
  display: none;
}
.mobile-menu .nav-toplevel-link .nav-meganav-title + ul {
  margin-top: 0;
}
.mobile-menu .nav-toplevel-link .nav-meganav-title + div > ul {
  margin-top: 0;
}
.mobile-menu .nav-toplevel-link .meganav-twocol {
  display: block;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-leftcol {
  display: block;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-leftcol > div {
  padding-left: 0;
  padding-right: 0;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-rightcol {
  padding: 0;
  margin: 0;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-venue-info {
  width: 100%;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-venue-container img {
  display: none;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-venue-container > a {
  display: none;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-venue-container .meganav-twocol-venue-info > a {
  display: none;
}
.mobile-menu .nav-toplevel-link .meganav-twocol-venue-container + .meganav-twocol-venue-container {
  margin-top: 0;
}
.mobile-menu .nav-toplevel-link .meganav-multicol {
  display: block;
  margin-bottom: 0;
}
.mobile-menu .nav-toplevel-link .meganav-multicol > div {
  padding-right: 0;
}
.mobile-menu .nav-toplevel-link .meganav-multicol img {
  display: none;
}
.mobile-menu .nav-toplevel-link .meganav-multicol-col {
  padding-left: 0;
}
.mobile-menu .nav-toplevel-link .meganav-multicol-col a {
  width: 100%;
  border-top: 1px solid #939598;
  box-shadow: inset 0 4px 10px -4px #939598;
}

.mobile-email, .mobile-account, .mobile-cart, .mobile-donate {
  text-align: center;
  border-bottom: 1px solid #939598;
  background-color: #fff;
  flex: 1 0 50%;
}
.mobile-email a, .mobile-account a, .mobile-cart a, .mobile-donate a {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  padding: 12px 10px;
  color: #939598;
}

.mobile-email {
  box-shadow: 0 4px 2px -2px #d9d9d9;
}
.mobile-email svg {
  fill: #939598;
}

.mobile-account {
  border-right: 1px solid #939598;
  box-shadow: inset 0 4px 5px -4px #939598;
  border-bottom: 0;
}
.mobile-account svg {
  height: 16px;
  fill: #939598;
}

.mobile-cart {
  box-shadow: inset 0 4px 5px -4px #939598;
  border-bottom: 0;
}
.mobile-cart svg {
  height: 16px;
  fill: #939598;
}

.mobile-donate {
  background-color: #ffd200;
  border-bottom: 0;
}
.mobile-donate a {
  color: #fff;
  padding: 15px 10px;
}
.mobile-donate svg {
  fill: #fff;
  height: 16px;
}

@media (max-width: 640px) {
  .header-logo {
    display: none;
  }
  .header-navigation {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}
.nav-utility {
  margin-top: 5px;
}
.nav-utility ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-utility li {
  padding-top: 5px;
  padding-bottom: 5px;
}
.nav-utility li a {
  display: flex;
  align-items: center;
  color: #7f7f7f;
  padding: 5px;
}
.nav-utility li a:hover {
  color: #ffd200;
}
.nav-utility li a:hover svg {
  fill: #ffd200;
}
.nav-utility li + li {
  padding-left: 10px;
  margin-left: 10px;
  border-left: 1px solid #d9d9d9;
}
.nav-utility li svg {
  fill: #939598;
  margin-left: 10px;
  transition: fill 0.2s ease-in;
  -webkit-transition: fill 0.2s ease-in;
  -moz-transition: fill 0.2s ease-in;
  -o-transition: fill 0.2s ease-in;
}
.nav-utility li.nav-utility-search {
  padding-left: 0;
  padding-bottom: 0;
  padding-top: 3px;
}
.nav-utility li .cart-count {
  margin-right: 10px;
}
.nav-utility-icon-email {
  width: 18px;
  height: 12px;
}
.nav-utility-icon-user {
  width: 16px;
  height: 22px;
}
.nav-utility-icon-cart {
  width: 24px;
  height: 22px;
}
.nav-utility-icon-gift {
  width: 20px;
  height: 21px;
}

.nav-utility-search {
  position: relative;
}
.nav-utility-search-input {
  margin-left: 10px;
  outline: 0;
  background-position: 100% center;
  background-repeat: no-repeat;
  transition: all 0.4s ease-in;
  -webkit-transition: all 0.4s ease-in;
  -moz-transition: all 0.4s ease-in;
  -o-transition: all 0.4s ease-in;
  color: transparent;
  outline: 0;
  border: none;
  width: 21px;
  height: 22px;
  height: 31px;
  cursor: pointer;
  border-bottom: 1px solid #fff;
  cursor: auto;
  width: 240px;
  border-bottom: 1px solid #e6e6e6;
  margin-left: 0;
  padding-left: 10px;
  color: #7f7f7f;
}
.nav-utility-search-input::-ms-clear {
  display: none;
}
.nav-utility-search-input:focus::-webkit-input-placeholder {
  color: #7f7f7f;
}
.nav-utility-search-input:focus::-moz-placeholder {
  color: #7f7f7f;
}
.nav-utility-search-input:focus:-ms-input-placeholder {
  color: #7f7f7f;
}
.nav-utility-search-button {
  position: absolute;
  top: 3px;
  right: 0;
}

.meganav-twocol {
  display: flex;
  flex-flow: row nowrap;
}
.meganav-twocol-leftcol {
  flex-grow: 1;
  display: flex;
}
.meganav-twocol-leftcol > div {
  flex-basis: 0;
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 10px;
}
.meganav-twocol-leftcol > div:first-child {
  padding-left: 0;
}
.meganav-twocol-leftcol > div:last-child {
  padding-right: 0;
}
.meganav-twocol-rightcol {
  padding-left: 30px;
  border-left: 1px solid #d9d9d9;
  margin-left: 30px;
  margin-right: 30px;
}

.meganav-twocol-venue-container {
  display: flex;
  align-items: flex-start;
}
.meganav-twocol-venue-container img {
  margin-right: 10px;
}
.meganav-twocol-venue-container + .meganav-twocol-venue-container {
  margin-top: 20px;
}

.meganav-multicol {
  display: flex;
  margin-bottom: 20px;
}
.meganav-multicol > div {
  flex-basis: 0;
  flex-grow: 1;
  padding-left: 10px;
  padding-right: 10px;
}
.meganav-multicol > div:first-child {
  padding-left: 0;
}
.meganav-multicol > div:last-child {
  padding-right: 0;
}
.meganav-multicol-col {
  display: flex;
  align-items: center;
}
.meganav-multicol-col img {
  margin-right: 10px;
}

@media (max-width: 1025px) {
  .nav-meganav {
    top: 100%;
  }

  .meganav-twocol-leftcol-col img {
    flex: 1 0 100%;
    margin-bottom: 5px;
  }
  .meganav-twocol-venue-container {
    flex-wrap: wrap;
  }

  .meganav-multicol-col {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .meganav-multicol-col img {
    flex: 1 0 100%;
    margin-bottom: 5px;
  }
}
.footer-banner-ad {
  text-align: center;
  margin-top: 50px;
}

.footer-cta {
  background-color: #322F31;
  padding: 30px 0;
}
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
}
.footer-cta-inner span {
  color: #fff;
}
.footer-cta-text {
  font-weight: 700;
}

@media (max-width: 640px) {
  .footer-cta-inner {
    flex-wrap: wrap;
  }
  .footer-cta-inner span {
    flex: 1 0 100%;
  }
  .footer-cta-inner span + span {
    margin-top: 20px;
  }
}
.footer-secondary {
  background-color: #000;
  padding: 30px 0;
}
.footer-secondary-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-secondary-links {
  display: flex;
}
.footer-secondary-links a {
  color: #fff;
}
.footer-secondary-links li {
  color: #fff;
}
.footer-secondary-links li + li {
  margin-left: 10px;
}
.footer-secondary-links li + li:before {
  content: "//";
  margin-right: 10px;
}
.footer-secondary-text {
  color: #fff;
}

@media (max-width: 1025px) {
  .footer-secondary-inner {
    flex-wrap: wrap;
  }
  .footer-secondary-inner .footer-col {
    flex: 1 0 50%;
  }
  .footer-secondary-inner .footer-col:nth-child(n+3) {
    margin-top: 30px;
  }
  .footer-secondary-links {
    flex-wrap: wrap;
  }
  .footer-secondary-links > li {
    margin-top: 10px;
  }
  .footer-secondary-text {
    margin-top: 20px;
  }
}
footer {
  background-color: #e6e6e6;
  padding: 30px 0;
}
footer a:hover {
  color: #FFF;
}
footer ul + .footer-heading {
  margin-top: 30px;
}
footer li {
  padding-top: 5px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}
.footer-heading + .footer-heading {
  margin-top: 30px;
}
.footer-social-container {
  margin-top: 15px;
}
.footer-social-container a:hover {
  background-color: transparent;
}
.footer-social-icon {
  width: 29px;
  height: 29px;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.footer-dropdown {
  margin: 15px 0;
  padding: 6px 3px;
  margin-left: -8px;
}

@media (max-width: 1025px) {
  .footer-inner {
    flex-wrap: wrap;
    justify-content: initial;
  }
  .footer-inner .footer-col {
    flex: 1 0 33.33333%;
    flex-grow: 0;
  }
  .footer-inner .footer-col:nth-child(n+4) {
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner .footer-col {
    flex: 1 0 calc((100% - 20px) / 2);
  }
  .footer-inner .footer-col:nth-child(even) {
    margin-left: 20px;
  }
  .footer-inner .footer-col:nth-child(n+3) {
    margin-top: 30px;
  }
  .footer-inner .footer-col select {
    display: none;
  }
  .footer-inner .footer-col > p.footer-heading:nth-of-type(n+2) {
    display: none;
  }
  .footer-inner .footer-col > ul {
    display: none;
  }
  .footer-inner .footer-col > .footer-social-container {
    margin-top: 30px;
  }
}
.blog-article-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.blog-article-page-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 405px;
  overflow: hidden;
}
.blog-article-page-image-element {
  max-height: 405px;
}
.blog-article-page-title {
  text-align: center;
}
.blog-article-page-title-banner {
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding: 20px;
}
.blog-article-page-title-sub {
  font-style: italic;
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding-bottom: 30px;
  vertical-align: baseline;
  text-align: center;
}
.blog-article-page-title-sub-posted-on {
  padding-left: 2px;
}
.blog-article-page-text-wrapper {
  line-height: 1.5rem;
  width: 100%;
  max-width: 720px;
  padding: 8px;
}
.blog-article-page-kimmel-tags {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  padding: 20px;
}
.blog-article-page-kimmel-tags-property {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
.blog-article-page-kimmel-tags-element {
  padding: 10px;
}
.blog-article-page-social-media-wrapper {
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-article-page-social-media-wrapper .fb-xfbml-parse-ignore {
  margin-right: 10px;
}
.blog-article-page-articles-nav {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.blog-article-page-articles-nav-prev {
  padding: 10px;
  cursor: pointer;
}
.blog-article-page-articles-nav-next {
  margin-right: 0px;
  padding: 10px;
  cursor: pointer;
}

.blog-listing-page {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.blog-listing-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-listing-page-header-sub-header {
  font-style: italic;
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding-bottom: 25px;
}
.blog-listing-page-header-title {
  padding: 20px;
}
.blog-listing-page-listing-item img {
  max-width: 100%;
}
.blog-listing-page-listing-item-title {
  text-align: left;
  width: 100%;
  padding-top: 20px;
  font-size: 20px;
}
.blog-listing-page-listing-item-title-text {
  color: #322f31 !important;
}
.blog-listing-page-listing-item-title-text:hover {
  text-decoration: underline;
}
.blog-listing-page-listing-item-sub-title {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.blog-listing-page-listing-item-teaser {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.blog-listing-page-listing-item-read-more {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.blog-listing-page .pdp-header-info-share {
  text-align: left;
  padding: 0px !important;
}
.blog-listing-page .blog-listing-page-social-media-wrapper {
  width: 100%;
  padding: 0px !important;
  padding-top: 20px !important;
}
.blog-listing-page .blog-listing-page-social-media-wrapper span {
  text-align: left;
  margin-bottom: 5px;
}
.blog-listing-page .pagination {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.blog-listing-page .pagination-wrapper {
  margin-top: 25px;
}
.blog-listing-page .pagination-element {
  padding: 10px;
  border-right: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.blog-listing-page .pagination-element:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}
.blog-listing-page .pagination-element:first-child {
  border-left: 1px solid #dcdcdc;
}
.blog-listing-page .pagination .active {
  background-color: black;
  color: white;
}

.blog-listing-page-sidebar-tags {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.blog-listing-page-sidebar-tags-header {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffd200;
  border: 1px solid #ffd200;
  color: #000;
  padding: 15px;
}
.blog-listing-page-sidebar-tags-header-plus {
  font-size: 24px;
}
.blog-listing-page-sidebar-tags-header-plus:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-tags-header-minus {
  font-size: 24px;
  display: none;
}
.blog-listing-page-sidebar-tags-header-minus:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-tags-active {
  border: none;
  padding: 10px;
  text-decoration: underline;
}
.blog-listing-page-sidebar-tags-active-text {
  border: none;
  padding: 10px;
  text-decoration: none;
}
.blog-listing-page-sidebar-tags-active:last-child {
  border: none;
}
.blog-listing-page-sidebar-tags-active-wrapper {
  background-color: #322f31;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 12px;
}
.blog-listing-page-sidebar-tags-element {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px;
}
.blog-listing-page-sidebar-tags-element:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-tags-element:last-child {
  border: none;
}
.blog-listing-page-sidebar-archive {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.blog-listing-page-sidebar-archive-header {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  background-color: #ffd200;
  border: 1px solid #ffd200;
  color: #000;
  padding: 15px;
}
.blog-listing-page-sidebar-archive-header-plus {
  font-size: 24px;
}
.blog-listing-page-sidebar-archive-header-plus:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-archive-header-minus {
  font-size: 24px;
  display: none;
}
.blog-listing-page-sidebar-archive-header-minus:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-archive-active {
  border: none;
  padding: 10px;
  text-decoration: underline;
}
.blog-listing-page-sidebar-archive-active-text {
  border: none;
  padding: 10px;
  text-decoration: none;
}
.blog-listing-page-sidebar-archive-active:last-child {
  border: none;
}
.blog-listing-page-sidebar-archive-active-wrapper {
  background-color: #322f31;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 12px;
}
.blog-listing-page-sidebar-archive-element {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px;
}
.blog-listing-page-sidebar-archive-element:hover {
  cursor: pointer;
}
.blog-listing-page-sidebar-archive-element:last-child {
  border: none;
}
.blog-listing-page-sidebar .sidebar-block-image {
  margin: auto;
  flex: none !important;
  width: 100% !important;
}

.interior-col {
  margin-top: 30px;
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.video-container::after {
  display: block;
  padding-bottom: 56.25%;
  padding-top: 30px;
  content: "";
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .blog-listing-page #breadcrumbs {
    margin-left: 200px;
  }
  .blog-listing-page-listing-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    max-width: 720px;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid #dcdcdc;
  }
  .blog-listing-page-main-content {
    display: flex;
    padding-bottom: 50px;
    padding-left: 20px;
  }
  .blog-listing-page-articles-repository {
    width: 75%;
    max-width: 1000px;
  }

  .blog-listing-page-main-content {
    flex-direction: row;
    justify-content: center;
  }

  .blog-listing-page-sidebar {
    padding-top: 25px;
    width: 25%;
    max-width: 405px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .blog-listing-page-listing-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid #dcdcdc;
  }
  .blog-listing-page-main-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
  }
  .blog-listing-page-articles-repository {
    width: 100%;
  }

  .pdp-header-info-share {
    text-align: left !important;
  }

  .blog-listing-page-sidebar {
    width: 100%;
  }
  .blog-listing-page-sidebar .interior-col {
    max-width: 405px;
    padding-right: 20px;
  }

  .sidebar-block-image-inner {
    flex: none !important;
    width: 100% !important;
  }
}
.press-release-article-page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.press-release-article-page-title {
  text-align: center;
}
.press-release-article-page-title-banner {
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding: 20px;
}
.press-release-article-page-title-sub {
  font-style: italic;
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding-bottom: 30px;
  vertical-align: baseline;
  text-align: center;
}
.press-release-article-page-title-sub-posted-on {
  padding-left: 2px;
}
.press-release-article-page-text-wrapper {
  line-height: 1.5rem;
  width: 100%;
  max-width: 720px;
  padding: 8px;
}
.press-release-article-page-press-tags {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  padding: 20px;
}
.press-release-article-page-press-tags-property {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
}
.press-release-article-page-press-tags-element {
  padding: 10px;
}
.press-release-article-page-social-media-wrapper {
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.press-release-article-page-social-media-wrapper .fb-xfbml-parse-ignore {
  margin-right: 10px;
}
.press-release-article-page-articles-nav {
  display: flex;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
.press-release-article-page-articles-nav-prev {
  padding: 10px;
  cursor: pointer;
  margin-right: 30px;
}
.press-release-article-page-articles-nav-next {
  padding: 10px;
  cursor: pointer;
}

.press-release-listing-page {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.press-release-listing-page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.press-release-listing-page-header-sub-header {
  font-style: italic;
  width: 100%;
  max-width: 720px;
  padding: 8px;
  padding-bottom: 25px;
}
.press-release-listing-page-header-title {
  padding: 20px;
}
.press-release-listing-page-listing-item-title {
  text-align: left;
  width: 100%;
  padding-top: 20px;
  color: #322f31 !important;
  font-size: 20px;
}
.press-release-listing-page-listing-item-sub-title {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.press-release-listing-page-listing-item-teaser {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.press-release-listing-page-listing-item-read-more {
  text-align: left;
  width: 100%;
  padding-top: 20px;
}
.press-release-listing-page .pdp-header-info-share {
  text-align: left;
  padding: 0px !important;
}
.press-release-listing-page .press-release-listing-page-social-media-wrapper {
  width: 100%;
  padding: 0px !important;
  padding-top: 20px !important;
}
.press-release-listing-page .press-release-listing-page-social-media-wrapper span {
  text-align: left;
  margin-bottom: 5px;
}
.press-release-listing-page .pagination {
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.press-release-listing-page .pagination-wrapper {
  margin-top: 25px;
}
.press-release-listing-page .pagination-element {
  padding: 10px;
  border-right: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
}
.press-release-listing-page .pagination-element:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}
.press-release-listing-page .pagination-element:first-child {
  border-left: 1px solid #dcdcdc;
}
.press-release-listing-page .pagination .active {
  background-color: black;
  color: white;
}

.press-release-listing-page-sidebar-tags {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.press-release-listing-page-sidebar-tags-header {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #ffd200;
  border: 1px solid #ffd200;
  color: #000;
  padding: 15px;
}
.press-release-listing-page-sidebar-tags-header-plus {
  font-size: 24px;
}
.press-release-listing-page-sidebar-tags-header-plus:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-tags-header-minus {
  font-size: 24px;
  display: none;
}
.press-release-listing-page-sidebar-tags-header-minus:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-tags-active {
  border: none;
  padding: 10px;
  text-decoration: underline;
}
.press-release-listing-page-sidebar-tags-active-text {
  border: none;
  padding: 10px;
  text-decoration: none;
}
.press-release-listing-page-sidebar-tags-active:last-child {
  border: none;
}
.press-release-listing-page-sidebar-tags-active-wrapper {
  background-color: #322f31;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 12px;
}
.press-release-listing-page-sidebar-tags-element {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px;
}
.press-release-listing-page-sidebar-tags-element:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-tags-element:last-child {
  border: none;
}
.press-release-listing-page-sidebar-archive {
  width: 100%;
  border: 1px solid #dcdcdc;
}
.press-release-listing-page-sidebar-archive-header {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  background-color: #ffd200;
  border: 1px solid #ffd200;
  color: #000;
  padding: 15px;
}
.press-release-listing-page-sidebar-archive-header-plus {
  font-size: 24px;
}
.press-release-listing-page-sidebar-archive-header-plus:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-archive-header-minus {
  font-size: 24px;
  display: none;
}
.press-release-listing-page-sidebar-archive-header-minus:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-archive-active {
  border: none;
  padding: 10px;
  text-decoration: underline;
}
.press-release-listing-page-sidebar-archive-active-text {
  border: none;
  padding: 10px;
  text-decoration: none;
}
.press-release-listing-page-sidebar-archive-active:last-child {
  border: none;
}
.press-release-listing-page-sidebar-archive-active-wrapper {
  background-color: #322f31;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 12px;
}
.press-release-listing-page-sidebar-archive-element {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 15px;
}
.press-release-listing-page-sidebar-archive-element:hover {
  cursor: pointer;
}
.press-release-listing-page-sidebar-archive-element:last-child {
  border: none;
}
.press-release-listing-page-sidebar .sidebar-block-image {
  margin: auto;
  flex: none !important;
  width: 100% !important;
}

.sidebar-block-image {
  margin: auto;
  flex: none !important;
  width: 100% !important;
}

.interior-col {
  margin-top: 30px;
}

@media only screen and (min-width: 769px) {
  .press-release-listing-page #breadcrumbs {
    margin-left: 200px;
  }
  .press-release-listing-page-listing-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 75%;
    max-width: 720px;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid #dcdcdc;
  }
  .press-release-listing-page-main-content {
    display: flex;
    padding-bottom: 50px;
    padding-left: 20px;
  }
  .press-release-listing-page-articles-repository {
    width: 75%;
    max-width: 1000px;
  }

  .press-release-listing-page-main-content {
    flex-direction: row;
    justify-content: center;
  }

  .press-release-listing-page-sidebar {
    padding-top: 25px;
    width: 25%;
    max-width: 405px;
    margin-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .press-release-listing-page-listing-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid #dcdcdc;
  }
  .press-release-listing-page-main-content {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin-left: 20px;
    margin-right: 20px;
  }
  .press-release-listing-page-articles-repository {
    width: 100%;
  }

  .pdp-header-info-share {
    text-align: left !important;
  }

  .press-release-listing-page-sidebar {
    width: 100%;
  }
  .press-release-listing-page-sidebar .interior-col {
    max-width: 405px;
    padding-right: 20px;
  }

  .sidebar-block-image-inner {
    flex: none !important;
    width: 100% !important;
  }
}
.membership {
  margin-top: 20px;
  width: 100%;
}
.membership .rich-text p, .membership .rich-text li {
  font-size: 1.15rem;
}
.membership-header {
  padding: 15px 30px;
  border: 1px solid #d9d9d9;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.membership-header h3 {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 0;
}
.membership-header-content {
  position: relative;
}
.membership-header-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  opacity: 0.8;
}
.membership-content {
  display: flex;
  padding: 30px;
  border: 1px solid #d9d9d9;
  border-top: 0;
}
.membership-content > li {
  flex: 1 0 calc((100% - 30px * 2) / 3);
}
.membership-content > li + li {
  margin-left: 30px;
}
.membership-content > li:first-child {
  max-width: 33.3333%;
}
.membership-content-select {
  width: 100%;
  margin-bottom: 30px;
}
.membership-content-range {
  font-size: 1.15rem;
  margin-top: 15px;
}
.membership-content-amount {
  margin-top: 30px;
  padding-left: 20px;
  position: relative;
}
.membership-content-amount:before {
  content: "$";
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 20px;
}
.membership-content-amount input[type=number] {
  width: 100%;
  margin-bottom: 15px;
}
.membership-content-join {
  margin-top: 30px;
}
.membership-founders-content {
  display: flex;
  padding: 30px;
  border: 1px solid #d9d9d9;
  border-top: 0;
}
.membership-founders-content > li + li {
  margin-left: 30px;
}
.membership-founders-content > li:first-child {
  flex: 1 0 calc((100% - 30px) / 3);
  max-width: calc((100% - 30px * 2) / 3);
}
.membership-founders-content-image {
  width: 100%;
}
.membership-founders-content-join {
  margin-top: 30px;
}

@media (max-width: 1025px) {
  .membership-content {
    flex-wrap: wrap;
  }
  .membership-content > li {
    min-width: calc((100% - 30px * 2) / 2);
    flex: 1 0 calc((100% - 30px * 2) / 2);
  }
  .membership-content > li:first-child {
    max-width: initial;
  }
  .membership-content > li:last-child {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .membership-content > li {
    flex: 1 0 100%;
  }
  .membership-content > li + li {
    margin-left: 0;
  }
}
.search-button {
  padding: 8px 30px !important;
}
.search-summary {
  margin: 20px 0;
}
.search-results li + li {
  margin-top: 20px;
}
.search-result-title {
  margin-bottom: 5px;
}
.search-result-summary {
  margin-bottom: 5px;
}
.search-result-url {
  color: #322F31;
  word-break: break-all;
}
.search-pagination {
  margin: 40px 0;
}
.gsc-search-box {
  display: flex;
}
.gsc-search-box input {
  min-width: initial !important;
}

.gsc-text-box {
  flex-grow: 1;
}

.gsc-result .gs-title {
  display: block;
  height: auto !important;
  margin-bottom: 5px;
}

.gsc-results {
  margin-top: 20px;
}

.gsc-header {
  padding-top: 20px;
  margin-bottom: 10px;
}

.search-interior {
  padding-bottom: 0px;
}

.gsc-control-cse {
  padding-left: 0 !important;
}

.gsc-table-result .gs-title {
  display: none;
}

.gsc-table-result .gs-snippet {
  padding-left: 8px;
}

@media (max-width: 640px) {
  .search-box input[type=text] {
    width: 100%;
    min-width: initial;
    min-width: auto;
  }
  .search-box input[type=submit] {
    width: 100%;
  }
  .search-button {
    margin-top: 15px;
  }
  .search-pagination-first {
    display: none;
  }
  .search-pagination-last {
    display: none;
  }
  .search-pagination-number {
    display: none;
  }
  .search-pagination-number-active {
    display: none;
  }
}
.date-comparison-tool-main .icon-arrow-right, .date-comparison-tool-main .icon-arrow-left {
  width: 38px;
  height: 20px;
  cursor: pointer;
}

.date-comparison-tool-filters .icon-arrow-up, .date-comparison-tool-filters .icon-arrow-down {
  width: 22px;
  height: 11px;
  cursor: pointer;
}

.date-comparison-tool-select-title {
  font-weight: 400;
}
.date-comparison-tool-header {
  position: relative;
  padding-right: 120px;
}
.date-comparison-tool-header-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.date-comparison-tool-filters.filter-selector {
  display: inline-block;
  cursor: pointer;
}
.date-comparison-tool-filters .filter-selector-filters {
  margin-top: 10px;
}
.date-comparison-tool-filters .filter-selector-filters > li + li {
  margin-top: 5px;
}
.date-comparison-tool-filters .current-production {
  text-decoration: underline;
  margin-right: 5px;
}
.date-comparison-tool-filters .icon-arrow-up {
  transform: rotate(180deg);
}
.date-comparison-tool-main {
  margin: 40px 0;
  position: relative;
  text-align: center;
}
.date-comparison-tool-main-inner {
  text-align: center;
  width: calc(100% - (38px * 2));
  margin: 0 auto;
}
.date-comparison-tool-main .icon-arrow-left {
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% - (20px / 2));
  left: 0;
}
.date-comparison-tool-main .icon-arrow-left.tablet {
  display: none;
}
.date-comparison-tool-main .icon-arrow-left.mobile {
  display: none;
}
.date-comparison-tool-main .icon-arrow-right {
  transform: rotate(270deg);
  position: absolute;
  top: calc(50% - (20px / 2));
  right: 0;
}
.date-comparison-tool-main .icon-arrow-right.tablet {
  display: none;
}
.date-comparison-tool-main .icon-arrow-right.mobile {
  display: none;
}
.date-comparison-tool-block {
  padding: 20px;
  transition: background 0.2s ease-in-out;
}
.date-comparison-tool-block:hover {
  background-color: #f1f1f1;
}
.date-comparison-tool-block-date {
  font-weight: 700;
}
.date-comparison-tool-block-price {
  font-style: italic;
}
.date-comparison-tool-block-find-seats {
  margin-top: 15px;
}

@media (max-width: 1025px) {
  .date-comparison-tool-header {
    padding: 0;
  }
  .date-comparison-tool-header-close {
    position: static;
    margin-bottom: 20px;
  }
  .date-comparison-tool-main .icon-arrow-left {
    display: none;
  }
  .date-comparison-tool-main .icon-arrow-left.tablet {
    display: block;
  }
  .date-comparison-tool-main .icon-arrow-right {
    display: none;
  }
  .date-comparison-tool-main .icon-arrow-right.tablet {
    display: block;
  }
}
@media (max-width: 640px) {
  .date-comparison-tool-header {
    padding: 0;
  }
  .date-comparison-tool-header-close {
    position: static;
    margin-bottom: 20px;
  }
  .date-comparison-tool-main .icon-arrow-left.tablet {
    display: none;
  }
  .date-comparison-tool-main .icon-arrow-left.mobile {
    display: block;
  }
  .date-comparison-tool-main .icon-arrow-right.tablet {
    display: none;
  }
  .date-comparison-tool-main .icon-arrow-right.mobile {
    display: block;
  }
}
.pdp-main-content-inner {
  padding: 0 30px;
  display: flex;
}
@media (max-width: 1025px) {
  .pdp-main-content-inner {
    flex-direction: column;
    padding: 0;
  }
}
.pdp-main-col {
  width: 70%;
}
@media (max-width: 1280px) {
  .pdp-main-col {
    width: calc(100% * (2/3));
  }
}
@media (max-width: 1025px) {
  .pdp-main-col {
    width: 100%;
  }
}
.pdp-side-col {
  width: 30%;
  padding: 30px 0 0 30px;
}
@media (max-width: 1280px) {
  .pdp-side-col {
    width: calc(100% * (1/3));
  }
}
@media (max-width: 1025px) {
  .pdp-side-col {
    order: -1;
    width: 100%;
    padding: 30px 0;
  }
}
.pdp-side-col-details-title {
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 400;
}
@media (max-width: 1025px) {
  .pdp-side-col-details-container {
    display: flex;
  }
  .pdp-side-col-details-container > div {
    width: calc(50% - 0.5rem);
    flex: 1 0 auto;
  }
  .pdp-side-col-details-container > div:first-of-type {
    margin-right: 1rem;
  }
}
@media (max-width: 640px) {
  .pdp-side-col-details-container {
    display: block;
  }
  .pdp-side-col-details-container > div {
    width: 100%;
  }
}
.pdp-side-col-additional-details {
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .pdp-side-col-additional-details {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}
.pdp-side-col-icons-container {
  margin-top: 2.1875rem;
}
@media (max-width: 1025px) and (min-width: 640px) {
  .pdp-side-col-icons-container {
    margin-top: 0;
  }
}
@media (min-width: 640px) and (max-width: 1025px) {
  .pdp-side-col-top-icons:first-child {
    margin-top: -1.25rem;
  }
}
.pdp-side-col-top-icons .pdp-side-col-icon-container {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}
.pdp-side-col-top-icons .pdp-side-col-icon-container img {
  max-width: 3rem;
}
.pdp-side-col-top-icons .pdp-side-col-icon-container p {
  margin-left: 0.75rem;
}
.pdp-side-col-top-icons .pdp-side-col-icon-container p a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.pdp-side-col-top-icons .pdp-side-col-icon-container p a:hover {
  text-decoration: none;
  color: #FFF;
}
.pdp-side-col-bottom-icons {
  margin-top: 1.75rem;
  padding: 0.625rem;
  background-color: #f1f1f1;
}
.pdp-side-col-bottom-icons > div {
  display: flex;
  flex-wrap: wrap;
}
.pdp-side-col-bottom-icons > div > div {
  width: 33.3333333333%;
}
.pdp-side-col-bottom-icons > div > div:nth-child(n+4) {
  margin-top: 1rem;
}
.pdp-side-col-bottom-icons .pdp-side-col-icon-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.125rem;
}
.pdp-side-col-bottom-icons .pdp-side-col-icon-container img {
  max-width: 3rem;
}
.pdp-side-col-bottom-icons .pdp-side-col-icon-container p {
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
}
.pdp-side-col-bottom-icons .pdp-side-col-icon-container p a {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
}
.pdp-side-col-bottom-icons .pdp-side-col-icon-container p a:hover {
  text-decoration: none;
  color: #FFF;
}

.pdp-overview-venue {
  display: flex;
  margin-bottom: 1.875rem;
}
.pdp-overview-venue-image + .pdp-overview-venue-details {
  margin-left: 20px;
}
.pdp-overview-venue-details {
  flex: 1 0 calc((100% - 20px) /2);
  display: flex;
  flex-direction: column;
}
.pdp-overview-venue-details-address {
  margin-bottom: 20px;
  line-height: 1.4;
}
.pdp-overview-venue-details-seats {
  font-size: 0.9rem;
}
.pdp-overview-runtime {
  margin-bottom: 1.25rem;
}
.pdp-overview-intermissions {
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .pdp-overview-venue {
    flex-wrap: wrap;
  }
  .pdp-overview-venue-image {
    flex: 0 0 auto;
    margin-bottom: 20px;
  }
  .pdp-overview-venue-image img {
    width: auto;
  }
  .pdp-overview-venue-details {
    flex: 0 0 auto;
    margin-left: 0;
  }
}
.pdp-anchor-tags-content {
  padding: 30px 0 !important;
}
.pdp-anchor-tags-content-inner {
  border-top: 2px solid #ffd200;
  padding-top: 1rem;
}
.pdp-anchor-tags a {
  display: inline-block;
  color: #000;
  padding-right: 20px;
}
.pdp-anchor-tags a + a {
  padding-left: 20px;
  border-left: 2px solid #939598;
}
.pdp-anchor-tags a:hover {
  background-color: white;
  color: #000;
}

.pdp-header {
  display: flex;
  background-color: #f1f1f1;
  margin-left: auto;
  margin-right: auto;
}
.pdp-header-image {
  flex: 1 0 66.66666%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 600px;
}
.pdp-header-image-desktop {
  width: 100%;
}
.pdp-header-image-tablet {
  width: 100%;
  display: none;
}
.pdp-header-image-mobile {
  display: none;
  width: 100%;
}
.pdp-header-company {
  font-size: 1.5rem;
}
.pdp-header-title {
  line-height: 1.6;
  margin-bottom: 0px;
}
.pdp-header-subtitle {
  line-height: 1.3;
  margin-bottom: 30px;
  font-size: 2rem;
  font-weight: 400;
}
.pdp-header-info {
  background-color: #f1f1f1;
  flex: 1 0 33.33333%;
  display: flex;
  flex-direction: column;
}
.pdp-header-info-content {
  padding: 30px;
}
.pdp-header-info-share {
  padding: 30px;
  padding-top: 0;
  flex: 1 0 auto;
  text-align: left;
}
@media (max-width: 1025px) {
  .pdp-header-info-share {
    padding: 1.875rem 1.25rem;
  }
}
.pdp-header-info-share a:hover {
  background-color: transparent;
}
.pdp-header-info-share-label {
  text-transform: lowercase;
  font-weight: 400;
  font-size: 1rem;
  vertical-align: bottom;
}
.pdp-header-info-share-svg {
  fill: #000;
  margin-right: 0.9375rem;
  height: 1.5625rem;
  width: 1.5625rem;
}
.pdp-header-info-share i {
  font-size: 2em;
  margin-left: 5px;
}
.pdp-header-info-buy {
  padding: 30px;
  flex: 1 0 auto;
  flex-grow: 0;
}
.pdp-header-info-buy-text {
  padding: 30px;
  flex: 1 0 auto;
  flex-grow: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 1.46rem;
  line-height: 1.6;
  color: black;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 640px) {
  .pdp-header-info-buy-text {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}
.pdp-header-info-buy-content {
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  font-size: 1.46rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .pdp-header-info-buy-content {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}
.pdp-header-info-buy-title {
  flex: 1 0 50%;
  text-align: left;
}
.pdp-header-info-buy-price {
  flex: 1 0 50%;
  text-align: right;
}
.pdp-header-info-buy + .pdp-header-info-promo-gray {
  padding-top: 0;
  margin-top: -1.25rem;
}
.pdp-header-info-promo {
  background-color: #d9d9d9;
  flex: 1 0 auto;
  flex-grow: 0;
  padding: 1.875rem;
}
@media (max-width: 1025px) {
  .pdp-header-info-promo {
    padding: 1.875rem 1.25rem;
  }
}
.pdp-header-info-promo-gray {
  background-color: transparent;
}
.pdp-header-info-promo-gray a {
  background-color: #939598;
  text-align: center;
  display: flex;
  justify-content: center;
}
.pdp-header-info-promo-gray a:hover {
  background-color: #7f7f7f;
}
.pdp-header-info-promo-content p {
  font-weight: 700;
  margin-bottom: 10px;
}
.pdp-header-info-promo-content > p {
  margin-top: 20px;
}
.pdp-header-info-promo-content input[type=text] {
  padding: 14px;
  width: calc(100% - 8.125rem);
  min-width: 0;
  margin-top: 0.125rem;
  height: 3.0625rem;
}
.pdp-header-info-promo-content input[type=submit] {
  width: 7rem;
  margin-left: 14px;
  padding: 13px 0;
  margin-top: 0.125rem;
  height: 2.9375rem;
}
.pdp-header-info-promo-modal-inner {
  background: #fff !important;
  border-radius: 0 !important;
  padding: 2.5rem 2.1875rem 1.25rem 2.1875rem;
  box-shadow: 0px 0.3125rem 1.25rem #333;
  bottom: auto !important;
}
.pdp-header-info-promo-modal-inner .modal-close {
  color: #ffd200;
  right: 0.875rem;
  top: 0.875rem;
}
.pdp-header-info-promo-modal-inner .modal-close:hover {
  background-color: transparent;
}
.pdp-header-info-promo-modal-message {
  padding: 0.625rem 1.875rem 2.1875rem 1.875rem;
  color: #000;
}
.pdp-header-info-promo-modal-message + .pdp-header-info-promo-modal-input {
  margin-top: 0;
}
.pdp-header-info-promo-modal-input {
  display: flex;
  margin-top: 2rem;
  background-color: #d2d2d2;
  padding: 1rem;
}
.pdp-header-info-promo-modal-input input[type=text] {
  border-radius: 0 !important;
  padding: 0.875rem !important;
  font-size: 0.91rem;
  line-height: 1.1;
  background-color: #fff;
  border: 1px solid white;
  min-width: 0 !important;
}
.pdp-header-info-promo-modal-input #MainContent_ucBuyTicketControl_PromoBox1_txtPromoCode::-webkit-input-placeholder {
  text-transform: initial;
}
.pdp-header-info-promo-btn {
  min-width: 7rem;
}
.pdp-header-info-message {
  background-color: #d9d9d9;
  flex: 1 0 auto;
  flex-grow: 0;
}
.pdp-header-info-message-content {
  padding: 30px;
}
.pdp-header-info-message-content p {
  font-weight: 700;
}
.pdp-header-info-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 0 auto;
}
.pdp-header-dates {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.pdp-header-dates-col {
  display: inline-block;
}
.pdp-header-dates-col + .pdp-header-dates-col {
  margin-left: 30px;
}
.pdp-header-dates-col + .pdp-header-dates-col:before {
  content: "-";
  position: absolute;
  top: 35%;
  left: 47.5%;
  font-size: 40px;
}
.pdp-header-dates-first + .pdp-header-dates-last:before {
  top: 43%;
  left: 48%;
}
.pdp-header-dates-date {
  font-size: 1.4rem;
}
@media (max-width: 640px) {
  .pdp-header-dates-date {
    font-size: 1.2rem;
  }
}

.pdp-alert {
  margin-top: 2.5rem;
}
.pdp-alert-inner, .pdp-packages-inner {
  background-color: #f1f1f1;
  padding: 0.9375rem 1.875rem;
  margin: 0 1.875rem;
  border-top: 2px solid #ffd200;
  font-size: 1.46rem;
  line-height: 1.6;
}
@media (max-width: 1025px) {
  .pdp-alert-inner, .pdp-packages-inner {
    margin: 0;
  }
}
@media (max-width: 640px) {
  .pdp-alert-inner, .pdp-packages-inner {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}
.pdp-alert + .pdp-packages {
  margin-top: 1.5rem;
}

.pdp-packages {
  margin-top: 2.5rem;
}
.pdp-packages-inner {
  border-top: none;
}
.pdp-packages-title {
  font-weight: 700;
  margin-bottom: 6px;
}
.pdp-packages-items {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1025px) {
  .pdp-packages-items {
    flex-direction: column;
  }
}
.pdp-packages-items > .pdp-packages-item {
  margin: 1rem 0;
}
.pdp-packages-items > .pdp-packages-item:first-child {
  flex-grow: 1;
}
.pdp-packages-items > .pdp-packages-item:nth-child(even) {
  margin-left: 2rem;
  border-left: 1px solid #d2d2d2;
  padding-left: 2rem;
}
@media (max-width: 1025px) {
  .pdp-packages-items > .pdp-packages-item:nth-child(even) {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
  }
}
.pdp-packages-item {
  width: calc(50% - 1rem);
  font-size: 1.46rem;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .pdp-packages-item {
    font-size: 1.36rem;
    line-height: 1.5;
  }
}
@media (max-width: 1025px) {
  .pdp-packages-item {
    width: 100%;
  }
}
.pdp-packages-sub-title {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0.5rem;
}
@media (max-width: 1025px) {
  .pdp-packages-sub-title {
    margin-top: 0;
  }
}
.pdp-packages-desc {
  display: block;
  margin: 0.25rem 0 0.625rem 0;
}
.pdp-packages-learn-more {
  margin-bottom: 0.5rem;
}
@media (max-width: 1025px) {
  .pdp-packages-learn-more {
    margin-bottom: 0;
  }
}

.pdp-footer {
  padding: 20px;
  padding-bottom: 50px;
  text-align: center;
}
.pdp-footer-change {
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 1025px) {
  .pdp-header {
    display: block;
    flex-wrap: wrap;
  }
  .pdp-header-image {
    min-height: 0;
    background: none !important;
    padding: 0;
  }
  .pdp-header-image-tablet {
    display: block;
  }
  .pdp-header-image-desktop {
    display: none;
  }
  .pdp-header-info-content {
    padding: 30px 20px;
  }
  .pdp-header-info-share {
    padding-top: 0;
  }
  .pdp-header-info-promo-content {
    padding: 30px 20px;
  }
  .pdp-header-info-buy {
    padding: 30px 20px;
  }

  .pdp-anchor-tags {
    padding: 0;
  }
  .pdp-anchor-tags a {
    font-size: 0.8rem;
    padding-right: 8px;
  }
  .pdp-anchor-tags a + a {
    padding-left: 8px;
  }
  .pdp-anchor-tags-content {
    padding: 30px 20px;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .pdp-header-image-tablet {
    display: none;
  }
  .pdp-header-image-desktop {
    display: none;
  }
  .pdp-header-image-mobile {
    display: block;
  }
}
.pdp-header-tessitura-down {
  font-size: 1.25rem;
  font-weight: bold;
  color: #000;
}

.pdp-additional {
  padding-top: 50px;
  padding-bottom: 50px;
}
.pdp-additional > div > div > div {
  display: flex;
  flex-wrap: wrap;
}
.pdp-additional > div > div > div > div {
  flex: 1 0 calc((100% - (30px * 2)) / 3);
  flex-grow: 0;
}
.pdp-additional > div > div > div > div + div {
  margin-left: 30px;
}
.pdp-additional > div > div > div > div:nth-child(n+4) {
  margin-top: 30px;
}
.pdp-additional > div > div > div > div:nth-child(3n+1) {
  margin-left: 0;
}
.pdp-additional .pdp-header-title {
  margin-bottom: 15px;
}
.pdp-additional .pdp-header-info-content {
  padding: 0;
  margin-bottom: 20px;
}
.pdp-additional .pdp-header-info-buy {
  padding: 0;
}

@media (max-width: 1025px) {
  .pdp-additional > div > div > div > div {
    flex: 1 0 100%;
    flex-grow: 0;
  }
  .pdp-additional > div > div > div > div + div {
    margin-left: 0;
    margin-top: 30px;
  }
}
.pdp-videos-header {
  padding: 30px;
  padding-bottom: 0;
}
.pdp-videos-content {
  padding-bottom: 30px;
}
.pdp-videos-list > div {
  display: flex;
  flex-wrap: wrap;
}
.pdp-videos-list > div > div {
  flex: 1 0 calc((100% - (20px * 2)) / 3);
  flex-basis: calc((100% - (20px * 2)) / 3);
  flex-grow: 0;
}
.pdp-videos-list > div > div + div {
  margin-left: 20px;
}
.pdp-videos-list > div > div:nth-child(3n+1) {
  margin-left: 0;
}
.pdp-videos-list > div > div:nth-child(n+4) {
  margin-top: 30px;
}

.video-block-title {
  margin-top: 20px;
}
.video-block-subtitle {
  margin-top: 10px;
}

@media (max-width: 1025px) {
  .pdp-videos-header {
    padding: 0;
  }
  .pdp-videos-list > div {
    display: flex;
    flex-wrap: wrap;
  }
  .pdp-videos-list > div > div {
    flex: 1 0 calc((100% - 20px) / 2);
    flex-basis: calc((100% - 20px) / 2);
    flex-grow: 0;
  }
  .pdp-videos-list > div > div + div {
    margin-left: 0;
  }
  .pdp-videos-list > div > div:nth-child(even) {
    margin-left: 20px;
  }
  .pdp-videos-list > div > div:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .pdp-videos-list > div > div {
    flex: 1 0 100%;
  }
  .pdp-videos-list > div > div + div {
    margin-left: 0;
    margin-top: 20px;
  }
  .pdp-videos-list > div > div:nth-child(even) {
    margin-left: 0;
  }
}
.pdp-photos {
  margin-bottom: 50px;
}
.pdp-photos-header {
  padding: 0 30px;
  padding-top: 30px;
}
.pdp-photos-header h2 {
  margin-right: 20px;
  display: inline-block;
}
.pdp-photos-carousel .owl-wrapper-outer {
  overflow: visible;
}
.pdp-photos-carousel-wrapper {
  position: relative;
  margin: 0 30px;
}
.pdp-photos-carousel-navigation-left {
  position: absolute;
  top: 0;
  bottom: 34px;
  left: -100%;
  right: 100%;
  border-right: 20px solid #fff;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.pdp-photos-carousel-navigation-left:before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #fff;
}
.pdp-photos-carousel-navigation-right {
  position: absolute;
  top: 0;
  bottom: 34px;
  right: -100%;
  left: 100%;
  border-left: 20px solid #fff;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.pdp-photos-carousel-navigation-right:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #fff;
}
.pdp-photos-carousel-photo img {
  width: 100%;
}
.pdp-photos-carousel-photo-caption {
  text-transform: uppercase;
  margin-top: 10px;
  margin-left: 20px;
}

@media (max-width: 1025px) {
  .pdp-photos {
    overflow: hidden;
  }
  .pdp-photos-header {
    padding: 0;
  }
}
@media (max-width: 640px) {
  .pdp-photos-carousel-wrapper {
    margin: 0;
  }
}
.pdp-artists {
  background-color: #f1f1f1;
}
.pdp-artists-header {
  padding: 30px;
  padding-bottom: 0;
}
.pdp-artists-content {
  padding: 30px;
  padding-top: 0;
}
.pdp-artists-more {
  padding: 20px 0;
  background-color: #322F31;
  color: #fff;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
.pdp-artists-more:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #322F31;
  bottom: -20px;
  left: calc(50% - 20px);
}
.pdp-artists-less {
  padding: 20px 0;
  background-color: #322F31;
  color: #fff;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
}
.pdp-artists-less:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #322F31;
  top: -20px;
  left: calc(50% - 20px);
}
.pdp-artists-list {
  display: flex;
  flex-wrap: wrap;
}
.pdp-artists-list > div {
  flex: 1 0 25%;
  flex-grow: 0;
}
.pdp-artists-list > div + .pdp-artists-list > div {
  margin-left: 20px;
}
.pdp-artists-list > div:nth-child(5n) {
  margin-left: 0;
}
.pdp-artists-list > div:nth-child(n+5) {
  margin-top: 30px;
}
.pdp-artists-list > div .pdp-artist {
  text-align: center;
}
.pdp-artists-list > div .pdp-artist-image {
  padding: 0 20px;
  margin-bottom: 20px;
}
.pdp-artists-list > div .pdp-artist-image img {
  width: 100%;
}
.pdp-artists-list > div .pdp-artist-name {
  margin-bottom: 5px;
}
.pdp-artists-list > div .pdp-artist-bio {
  margin-top: 5px;
}

@media (max-width: 1025px) {
  .pdp-artists-header {
    padding: 30px 0;
  }
  .pdp-artists-header h2 {
    margin-bottom: 0;
  }
  .pdp-artists-header span {
    display: block;
    margin-top: 10px;
  }
  .pdp-artists-content {
    padding: 0;
    padding-bottom: 30px;
  }
  .pdp-artists-list > div {
    flex: 1 0 calc((100% - (20px)) / 2);
    flex-grow: 0;
  }
  .pdp-artists-list > div + .pdp-artists-list > div {
    margin-left: 20px;
  }
  .pdp-artists-list > div:nth-child(4n) {
    margin-left: initial;
  }
  .pdp-artists-list > div:nth-child(2n) {
    margin-left: 20px;
  }
  .pdp-artists-list > div:nth-child(n+3) {
    margin-top: 20px;
  }
  .pdp-artists-list > div .pdp-artist-image {
    padding: 0;
  }
}
.pdp-credits {
  display: flex;
  flex-wrap: wrap;
}
.pdp-credits-twitter {
  flex: 1 0 50%;
  background-color: #f1f1f1;
}
.pdp-credits-twitter-wrapper {
  max-width: 700px;
  margin-right: 0;
}
.pdp-credits-twitter-header {
  padding-top: 50px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 0;
}
.pdp-credits-twitter-header .fa-twitter {
  font-size: 3em;
  color: #00aced;
}
.pdp-credits-twitter-content {
  max-width: 700px;
  margin-left: auto;
  padding-right: 30px;
  padding-bottom: 30px;
}
.pdp-credits-twitter-content > iframe {
  max-width: 700px !important;
}
.pdp-credits-brought {
  flex: 1 0 50%;
  background-color: #f5f5f5;
}
.pdp-credits-brought-wrapper {
  max-width: 700px;
  margin-left: 0;
}
.pdp-credits-brought-content {
  max-width: 700px;
  margin-right: auto;
  padding: 50px;
  padding-left: 30px;
  padding-bottom: 0;
}
.pdp-credits-brought-content-large {
  display: flex;
  flex-flow: row wrap;
  flex: 0 0 auto;
  justify-content: flex-start;
}
.pdp-credits-brought-content-large img {
  width: 270px;
  margin: 10px;
}
.pdp-credits-brought-content-medium {
  display: flex;
  flex-flow: row wrap;
  flex: 0 0 auto;
  justify-content: flex-start;
}
.pdp-credits-brought-content-medium img {
  width: 170px;
  margin: 10px;
}
.pdp-credits-brought-content-small {
  display: flex;
  flex-flow: row wrap;
  flex: 0 0 auto;
  justify-content: flex-start;
}
.pdp-credits-brought-content-small img {
  width: 125px;
  margin: 10px;
}

.pdp-credits-brought-block {
  display: flex;
  margin-bottom: 50px;
}
.pdp-credits-brought-block-image {
  flex: 1 0 calc(((100% - (20px)) / 5) * 2);
}
.pdp-credits-brought-block-image img {
  width: 100%;
}
.pdp-credits-brought-block-text {
  flex: 1 0 calc(((100% - (20px)) / 5) * 3);
  margin-left: 20px;
}

@media (max-width: 1025px) {
  .only-twitter .pdp-credits-twitter-content {
    padding-left: 0;
    padding-right: 0;
  }

  .only-brought .pdp-credits-brought-content {
    padding: 0;
    padding-top: 30px;
  }

  .pdp-credits-twitter {
    flex: 1 0 100%;
  }
  .pdp-credits-twitter-wrapper {
    max-width: initial;
  }
  .pdp-credits-twitter-header {
    padding-top: 50px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
  .pdp-credits-twitter-header .fa-twitter {
    font-size: 3em;
    color: #00aced;
  }
  .pdp-credits-twitter-content {
    max-width: initial;
    padding-right: 0;
  }
  .pdp-credits-brought {
    flex: 1 0 100%;
    background-color: #f5f5f5;
  }
  .pdp-credits-brought-content {
    max-width: 700px;
    margin-right: auto;
    padding: 30px 20px;
    padding-bottom: 0;
  }
}
.pdp-also-header {
  padding: 30px;
  padding-bottom: 0;
}
.pdp-also-carousel {
  width: calc(100% + (20px * 2));
  margin-left: -20px;
  margin-bottom: 30px;
}
.pdp-also-footer {
  padding: 30px;
}
.pdp-also-more {
  display: inline-block;
  margin-right: 15px;
}
.pdp-also-link {
  margin-right: 10px;
}
.pdp-also .home-featured-carousel-event {
  margin: 0 20px;
}
.pdp-also .home-featured-carousel-event-date {
  display: none;
}

@media (max-width: 1025px) {
  .pdp-also-header {
    padding: 30px 0;
    padding-bottom: 0;
  }
  .pdp-also-link {
    display: inline-block;
    margin-bottom: 10px;
  }
  .pdp-also-footer {
    padding: 30px 0;
  }
}
.pdp-overview {
  margin-bottom: 50px;
}
.pdp-overview-content {
  display: flex;
}
.pdp-overview-header {
  padding: 30px 0 0 0;
}
.pdp-overview-header h2 {
  display: inline-block;
}
.pdp-overview-main-col, .pdp-anchor-tags-content-inner {
  flex: 1 0 calc(66.66666% + (20px / 2));
  width: 100%;
}
.pdp-overview-details {
  padding: 0 0 30px 0;
}
.pdp-overview-quote {
  padding: 30px;
  background-color: #f1f1f1;
}
.pdp-overview-add-to-calendar {
  margin-top: 45px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 700;
}
.pdp-overview-add-to-calendar :hover {
  background: #322F31;
  color: #ffd200;
}
.pdp-overview-add-to-calendar-button {
  border: 2px solid #ffd200;
  padding: 16px 30px;
  cursor: pointer;
  background-color: #ffd200;
}
.pdp-overview-add-to-calendar-button i {
  font-size: 1.4em;
}

@media (max-width: 1025px) {
  .pdp-overview {
    padding: 0;
    margin-bottom: 20px;
  }
  .pdp-overview-header {
    padding: 0;
  }
  .pdp-overview-main-col, .pdp-anchor-tags-content-inner {
    flex: 1 0 100%;
  }
  .pdp-overview-content {
    flex-wrap: wrap;
  }
  .pdp-overview-details {
    padding: 30px 0;
    padding-top: 0;
  }
  .pdp-overview-quote {
    padding: 30px 20px;
  }
}
.pdp-blog-posts {
  display: flex;
}
@media (max-width: 1025px) {
  .pdp-blog-posts {
    flex-wrap: wrap;
  }
}
.pdp-blog-posts-header {
  padding: 30px 0 0 0;
}
@media (max-width: 1025px) {
  .pdp-blog-posts-header {
    padding: 0;
  }
}
.pdp-blog-posts-header h2 {
  display: inline-block;
}
.pdp-blog-posts-container {
  margin-bottom: 50px;
}
@media (max-width: 1025px) {
  .pdp-blog-posts-container {
    margin-bottom: 20px;
  }
}
.pdp-blog-posts-inner {
  padding: 0 30px;
}
@media (max-width: 1025px) {
  .pdp-blog-posts-inner {
    padding: 0;
  }
}
@media (max-width: 1025px) {
  .pdp-blog-posts > .pdp-blog-post:nth-child(even) {
    margin-left: 0.5rem;
  }
}
@media (max-width: 640px) {
  .pdp-blog-posts > .pdp-blog-post:nth-child(even) {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .pdp-blog-posts > .pdp-blog-post:not(:first-child) {
    margin-top: 1.5rem;
  }
}
@media (max-width: 1025px) {
  .pdp-blog-posts > .pdp-blog-post:nth-child(n+3) {
    margin-top: 1rem;
  }
}
@media (max-width: 640px) {
  .pdp-blog-posts > .pdp-blog-post:nth-child(n+3) {
    margin-top: 1.5rem;
  }
}
.pdp-blog-post {
  width: calc(25% - .375rem);
}
@media (max-width: 1025px) {
  .pdp-blog-post {
    width: calc(50% - .25rem);
  }
}
@media (max-width: 640px) {
  .pdp-blog-post {
    width: 100%;
  }
}
.pdp-blog-post + .pdp-blog-post {
  margin-left: 0.5rem;
}
@media (max-width: 1025px) {
  .pdp-blog-post + .pdp-blog-post {
    margin-left: 0;
  }
}
.pdp-blog-post-image {
  margin-bottom: 0.5rem;
}
.pdp-blog-post-image img[src=""] {
  padding-bottom: 57.22%;
  height: 0;
  width: 100%;
  overflow: hidden;
  display: block;
  position: relative;
  background-color: #f1f1f1;
}
.pdp-blog-post-image img[src=""]:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #f1f1f1;
}
.pdp-blog-post-link {
  font-weight: 700;
}

.pdp-vip-options {
  margin-bottom: 50px;
}
@media (max-width: 1025px) {
  .pdp-vip-options {
    margin-bottom: 20px;
  }
}
.pdp-vip-options-header {
  padding: 30px 0 0 0;
}
@media (max-width: 1025px) {
  .pdp-vip-options-header {
    padding: 0;
  }
}
.pdp-vip-options-header h2 {
  display: inline-block;
}
.pdp-vip-accordion-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: pointer;
  margin-bottom: 0.25rem;
}
.pdp-vip-accordion-btn-label {
  font-family: "Founders-Grotesk";
  font-weight: 700;
  background-color: #f1f1f1;
  border-top: 2px solid #ffd200;
  padding: 0.75rem 3rem 0.75rem 0.75rem;
  line-height: 1.25;
  margin-bottom: 0;
  text-align: left;
  position: relative;
  display: block;
}
.pdp-vip-accordion-btn-label:before, .pdp-vip-accordion-btn-label:after {
  content: "";
  width: 2px;
  height: 22px;
  display: block;
  position: absolute;
  right: 1.5rem;
  top: 0.875rem;
  background-color: #000;
  transition: transform 0.2s ease-in-out;
}
.pdp-vip-accordion-btn-label:after {
  transform: rotate(270deg);
}
.pdp-vip-accordion-btn-label-open:before {
  transform: rotate(-90deg);
}
.pdp-vip-accordion-content {
  display: none;
  padding: 0.5rem 0 0.75rem 0;
}
.pdp-vip-accordion-content-open {
  display: block;
}
.pdp-vip-accordion-content-item {
  padding: 0.25rem 0.5rem;
  position: relative;
}
.pdp-vip-accordion-content-item:before {
  content: none !important;
}
.pdp-vip-accordion-content-item p {
  margin-bottom: 0px;
  line-height: 1;
  font-size: 1rem;
}

.home-section-title {
  background-color: #322F31;
  padding: 30px 0;
  box-shadow: 0px 5px 7px 0px rgba(75, 75, 75, 0.4);
  position: relative;
  z-index: 30;
}
.home-section-title-inner {
  text-align: center;
}
.home-section-title-inner h2 {
  color: #fff;
  margin-bottom: 0;
}

html #feedbackify .fby-tab {
  top: 80%;
}

.home-featured {
  overflow: hidden;
}
.home-featured-content {
  padding: 30px calc(30px + 10px);
}
.home-featured-header {
  text-align: center;
  padding-bottom: 30px;
}
.home-featured-carousel .owl-wrapper-outer {
  overflow: visible;
}
.home-featured-carousel-wrapper {
  position: relative;
}
.home-featured-carousel-event {
  margin: 0 10px;
}
.main-content-block .home-featured-carousel-event {
  margin: 0;
}
.home-featured-carousel-event-date {
  position: absolute;
  top: 0;
  left: 0;
  color: #000;
}
.home-featured-carousel-event-date p {
  background-color: #ffd200;
  padding: 10px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.home-featured-carousel-event-date h4 {
  background-color: #ffd200;
  text-align: center;
  padding: 15px;
  margin-top: 5px;
  margin-bottom: 0;
}
.home-featured-carousel-event-image-wrapper {
  position: relative;
}
.home-featured-carousel-event-image img {
  width: 100%;
}
.home-featured-carousel-event-details {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: #fff;
  width: 100%;
  cursor: pointer;
  will-change: background-color;
  background-color: rgba(50, 47, 49, 0.9);
  transition: background-color 0.2s ease-in-out;
}
.home-featured-carousel-event-details:hover {
  background-color: #322F31;
}
.home-featured-carousel-navigation-left {
  position: absolute;
  top: 0;
  bottom: 34px;
  left: -100%;
  right: calc(100% - 10px);
  border-right: 20px solid #fff;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 1;
}
.home-featured-carousel-navigation-left:before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #fff;
}
.home-featured-carousel-navigation-right {
  position: absolute;
  top: 0;
  bottom: 34px;
  right: -100%;
  left: calc(100% - 10px);
  border-left: 20px solid #fff;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 1;
}
.home-featured-carousel-navigation-right:after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #fff;
}
.home-featured-carousel-photo {
  margin: 0 10px;
}
.home-featured-carousel-photo img {
  width: 100%;
}

@media (max-width: 1025px) {
  .home-featured-content {
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .home-featured-content {
    padding: 30px calc(20px / 2);
  }
}
.home-hero {
  position: relative;
}
.home-hero img,
.home-hero video {
  width: 100%;
}
.home-hero video {
  backface-visibility: hidden;
}
@media (max-width: 1025px) {
  .home-hero video {
    display: none;
  }
}
.home-hero video.disabled {
  display: none;
}
.home-hero video.disabled + .home-hero-img-mobile {
  display: block;
}
.home-hero-img-mobile {
  display: none;
}
@media (max-width: 1025px) {
  .home-hero-img-mobile {
    display: block;
  }
}
@media (max-width: 1025px) {
  .home-hero-img-desktop {
    display: none;
  }
}

.gm-style .gm-style-iw {
  font-family: "Founders-Grotesk" !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
}

.angular-google-map-container {
  height: 680px;
}

.home-map {
  position: relative;
}
.home-map-modal {
  background-color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px;
  display: flex;
  flex-direction: column;
  max-width: 275px;
}
.home-map-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.home-map-modal-details {
  flex: 1;
  margin-bottom: 10px;
}
.home-map-modal-directions {
  display: flex;
  flex: 1;
  align-items: flex-end;
}
.home-map-modal-image {
  width: 100%;
  padding-right: 30px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .angular-google-map-container {
    height: 350px;
  }

  .home-map-modal {
    position: relative;
    max-width: none;
  }
}
.res-companies-container {
  display: flex;
  flex-flow: row wrap;
}
.res-companies-container > div {
  flex-basis: 25%;
}
.res-companies-background {
  padding-bottom: 78.5%;
  position: relative;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.res-companies-background:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  opacity: 0.85;
  -khtml-opacity: 0.85;
  -moz-opacity: 0.85;
  filter: alpha(opacity=85);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  background-color: #fff;
  transition: all 0.25s ease-in;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  -o-transition: all 0.25s ease-in;
  will-change: opacity;
}
.res-companies-background:hover:before {
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.res-companies-background:hover .res-companies-logo {
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}
.res-companies-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 20;
  transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  will-change: opacity;
}

@media (max-width: 640px) {
  .res-companies-container > div {
    flex-basis: 50%;
  }
}
@media (max-width: 640px) {
  .res-companies-logo {
    padding: 10px;
  }
}
.home-hero-dropdowns {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 112px;
}
.home-hero-dropdowns-inner {
  display: flex;
  justify-content: center;
}
.home-hero-dropdowns-inner span,
.home-hero-dropdowns-inner label {
  line-height: 1.95;
  color: #000;
}
.home-hero-dropdowns-inner span {
  display: inline-block;
  vertical-align: top;
}
.home-hero-dropdowns-container {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}
.home-hero-dropdowns-btn {
  height: 52px;
  cursor: pointer;
  padding-left: 36px;
  padding-right: 36px;
}

.home-hero-dropdowns-dropdown {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin: 0 11px;
  border: 1px solid #d2d2d2;
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  /* Transparent black overlay */
  /* Hover states */
  /* Border between icon and label */
}
.home-hero-dropdowns-dropdown.active input[type=radio]:not(:checked) + label {
  visibility: visible;
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  height: auto;
}
.home-hero-dropdowns-dropdown.active input[type=radio]:not(:first-child) + label {
  padding-top: 5px;
  padding-bottom: 5px;
}
.home-hero-dropdowns-dropdown input[type=radio] {
  display: none;
  pointer-events: none;
}
.home-hero-dropdowns-dropdown input[type=radio]:checked + label {
  z-index: 10;
}
.home-hero-dropdowns-dropdown input[type=radio]:not(:checked) + label {
  visibility: hidden;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  height: 0;
}
.home-hero-dropdowns-dropdown label {
  cursor: pointer;
  position: relative;
  display: block;
  background-color: #fff;
}
.home-hero-dropdowns-dropdown-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 60;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  will-change: opacity;
  visibility: hidden;
  cursor: default;
}
.home-hero-dropdowns-dropdown:hover {
  border-color: #322F31;
}
.home-hero-dropdowns-dropdown:hover label {
  color: #322F31;
}
.home-hero-dropdowns-dropdown:hover input[type=radio]:checked + label:before {
  background-color: #322F31;
}
.home-hero-dropdowns-dropdown:hover .home-hero-dropdowns-dropdown-arrow {
  fill: #322F31;
}
.home-hero-dropdowns-dropdown label {
  padding-left: 15px;
  padding-right: 60px;
  height: 50px;
  transition: color 0.2s ease-in;
  -webkit-transition: color 0.2s ease-in;
  -moz-transition: color 0.2s ease-in;
  -o-transition: color 0.2s ease-in;
  backface-visibility: hidden;
}
.home-hero-dropdowns-dropdown input[type=radio]:checked + label:before {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #d2d2d2;
  position: absolute;
  top: 0;
  right: 45px;
  transition: background-color 0.2s ease-in;
  -webkit-transition: background-color 0.2s ease-in;
  -moz-transition: background-color 0.2s ease-in;
  -o-transition: background-color 0.2s ease-in;
}
.home-hero-dropdowns-dropdown-inner {
  display: flex;
  justify-content: center;
}
.home-hero-dropdowns-dropdown-arrow {
  position: absolute;
  z-index: 50;
  width: 25px;
  height: 12px;
  top: 20px;
  right: 10px;
  pointer-events: none;
}
.home-hero-dropdowns-dropdown-close {
  width: 17px;
  height: 17px;
}
.home-hero-dropdowns-dropdown-close-container {
  position: absolute;
  z-index: 50;
  top: 0;
  width: 37px;
  height: 37px;
  right: 0;
  padding: 15px 15px 5px 5px;
  visibility: hidden;
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.home-hero-dropdowns-dropdown-overlay.active {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}

.home-hero-dropdowns-dropdown.active {
  border-color: #fff;
  max-height: 300px;
  overflow-y: scroll;
  z-index: 70;
}
.home-hero-dropdowns-dropdown.active label {
  z-index: 50 !important;
  padding-right: 43px;
}
.home-hero-dropdowns-dropdown.active label:hover {
  background-color: #322F31;
  color: #fff;
}
.home-hero-dropdowns-dropdown.active input[type=radio]:checked + label:before {
  visibility: hidden;
}
.home-hero-dropdowns-dropdown.active .home-hero-dropdowns-dropdown-close-container {
  opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  visibility: visible;
}
.home-hero-dropdowns-dropdown.active .home-hero-dropdowns-dropdown-arrow {
  opacity: 0;
  -khtml-opacity: 0;
  -moz-opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  visibility: hidden;
}

input[type=text].home-hero-dropdowns-keyword {
  height: 50px;
  vertical-align: top;
  min-width: initial !important;
  width: 300px;
}

.home-hero-inline {
  display: inline-block;
}

.dropdown-arrow, .dropdown-close, .home-hero-dropdowns-dropdown-arrow, .home-hero-dropdowns-dropdown-close {
  fill: #000;
  transition: fill 0.2s ease-in;
  -webkit-transition: fill 0.2s ease-in;
  -moz-transition: fill 0.2s ease-in;
  -o-transition: fill 0.2s ease-in;
}

.dropdown-genres {
  max-width: 300px;
}
.dropdown-genres label {
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1180px) {
  .home-hero-dropdowns span, .home-hero-dropdowns label {
    font-size: 1.2rem;
  }
}
@media (max-width: 1025px) {
  .home-hero-dropdowns {
    position: static;
    background-color: #e6e7e8;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-hero-dropdowns-container.open-dropdown {
    position: static;
  }
  .home-hero-dropdowns-dropdown {
    margin-right: 0;
  }
  .home-hero-dropdowns span, .home-hero-dropdowns label {
    font-size: 1.62rem;
  }
  .home-hero-inline {
    display: block;
    width: 100%;
    text-align: right;
  }
  .home-hero-inline + .home-hero-inline {
    margin-top: 20px;
  }
  .home-hero-inline label {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .home-hero-inline label {
    text-align: left;
    font-size: 0.94rem;
    line-height: 3;
  }
}
.home-callouts {
  display: flex;
}
.home-callouts > div {
  flex-basis: 0;
  flex-grow: 1;
  padding-left: 30px;
  padding-right: 30px;
}
.home-callouts > div:first-child {
  padding-left: 0;
}
.home-callouts > div:last-child {
  padding-right: 0;
}
.home-callouts h2 {
  margin-bottom: 40px;
}
.home-callouts-section {
  z-index: 10;
}
.home-callouts-col:first-child {
  background-color: #f5f5f5;
}
.home-callouts-col:first-child .home-callouts-col-inner {
  position: relative;
  margin-left: auto;
  padding: 50px 0 50px 50px;
}
.home-callouts-col:last-child {
  background-color: #f1f1f1;
}
.home-callouts-col:last-child .home-callouts-col-inner {
  position: relative;
  margin-right: auto;
  padding: 50px 50px 50px 0;
}
.home-callouts-col-inner {
  max-width: 700px;
}

@media (max-width: 1025px) {
  .home-callouts {
    flex-wrap: wrap;
    /*&:nth-child(even) {
            background-color: #f1f1f1;

            .home-callouts-col-inner {
                margin-left: 0;
                margin-right: 0;
                padding-left: 0;
                position: relative;
                padding: $column-gutter-large 0 $column-gutter-large $column-gutter-large;
            }
        }*/
    /*&:last-child {
            .home-callouts-col-inner {
                margin-right: 0;
                padding-right: 0;
            }
        }*/
  }
  .home-callouts > div {
    flex: 1 0 100%;
  }
  .home-callouts > div:first-child {
    padding: 0 20px;
  }
  .home-callouts > div:last-child {
    padding: 0 20px;
  }
  .home-callouts-col .home-callouts-col-inner {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    position: relative;
    padding: 0 0 0 0;
  }
  .home-callouts-col:first-child {
    background-color: #f5f5f5;
  }
  .home-callouts-col:first-child .home-callouts-col-inner {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    position: relative;
    padding: 50px 50px 50px 50px;
  }
  .home-callouts-col:last-child {
    background-color: #f1f1f1;
  }
  .home-callouts-col:last-child .home-callouts-col-inner {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    position: relative;
    padding: 50px 50px 50px 50px;
  }
}
.home-free {
  display: flex;
  flex-wrap: wrap;
}
.home-free-header > div {
  display: inline-block;
  margin-right: 15px;
}
.home-free-header > a {
  display: inline-block;
}
.home-free-col {
  flex: 0 0 calc((100% - 20px) / 2);
  flex-basis: calc((100% - 20px) / 2);
  display: flex;
  align-items: flex-end;
  position: relative;
}
.home-free-col img {
  width: 100%;
}
.home-free-col:nth-child(2n) {
  margin-left: 20px;
}
.home-free-col:nth-child(n+3) {
  margin-top: 20px;
}
.home-free-link {
  bottom: 0;
  left: 0;
  position: absolute;
}

@media (max-width: 640px) {
  .home-free-col {
    flex: 0 0 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .home-free-col + div {
    margin-top: 20px;
  }
  .home-free-col:nth-child(2n) {
    margin-left: 0;
  }
}
.home-news {
  display: flex;
  flex-wrap: wrap;
}
.home-news-row {
  display: flex;
  flex: 0 0 100%;
  border-top: 3px solid #322F31;
  background-color: #fff;
}
.home-news-row + .home-news-row {
  margin-top: 23px;
}
.home-news-img {
  margin-right: 23px;
  flex: 0 0 calc((100% - 20px) / 4);
  flex-basis: calc((100% - 20px) / 4);
}
.home-news-img img {
  width: 100%;
}
.home-news-desc {
  flex: 0 0 calc(((100% - 20px) / 4) * 3);
  flex-basis: calc(((100% - 20px) / 4) * 3);
  padding: 5px 0px 5px 0px;
}
.home-news-desc a {
  color: #322F31;
}

.see-news {
  display: block;
  position: absolute;
  top: 95px;
}

.event-tabs {
  display: flex;
}
.event-tab {
  flex: 0 1 50%;
  border: 2px solid #939598;
  padding: 10px;
  text-align: center;
  color: #939598;
  cursor: pointer;
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.3;
}
@media screen and (max-width: 640px) {
  .event-tab {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}
.event-tab.active {
  color: #fff;
  background-color: #322F31;
  border-color: #322F31;
}
.event-loading {
  margin-bottom: 20px;
}
.event-no-results {
  margin-top: 30px;
}

.event-find-search {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: right;
  position: relative;
  display: flex;
  align-items: center;
}
.event-find-search h4 {
  flex: 0 0 200px;
  text-align: left;
}
.event-find-search input[type=text] {
  height: 50px;
  vertical-align: top;
  background-color: #fff;
  color: #000;
  width: 100%;
  background-image: url("/imgs/icon-search.png");
  background-repeat: no-repeat;
  background-position: 98%;
  padding-right: 55px;
  flex: 0 0 calc(100% - 200px);
}
.event-find-search-button {
  margin-left: 7px;
  width: 191px;
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
}
.event-find-category {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  height: 110px;
}
.event-find-category h4 {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 5px;
}
.event-find-category-wrapper {
  position: relative;
  background-color: #e6e7e8;
}
.event-find-category .home-hero-dropdowns {
  display: inline-block;
  position: relative;
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  width: auto;
}
.event-find-category .home-hero-dropdowns-container {
  justify-content: flex-end;
}
.event-find-category .home-hero-dropdowns-container.open-dropdown {
  right: 20px;
}
.event-find-category .home-hero-dropdowns-dropdown.active {
  position: absolute;
}
.event-find-category .home-hero-dropdowns-dropdown.dropdown-genres {
  max-width: 600px;
}
.event-find-category .home-hero-dropdowns-dropdown label {
  max-width: 600px;
}
.event-find-category-advanced-button {
  cursor: pointer;
}
.event-find-category-advanced-button-wrapper {
  padding-bottom: 30px;
  width: 100%;
  text-align: right;
}
.event-find-digital-checkbox-wrapper {
  position: relative;
}
.event-find-digital-checkbox-wrapper input {
  transform: scale(1.5);
  margin-bottom: 10px;
}
.event-find-digital-checkbox-wrapper label {
  font-style: italic;
  font-size: 1.5em;
  color: #333;
}

@media (max-width: 1025px) {
  .event-find-category {
    height: auto;
  }
  .event-find-category h4 {
    flex-grow: 1;
  }

  .event-find-digital-checkbox-wrapper {
    padding-left: 0px;
  }
}
@media (max-width: 640px) {
  .event-find-category {
    display: block;
    height: auto;
  }
  .event-find-category h4 {
    margin-bottom: 8px;
    display: block;
  }
  .event-find-category .home-hero-dropdowns {
    padding: 0;
  }
  .event-find-category .home-hero-dropdowns-dropdown {
    margin-left: 0;
  }
  .event-find-category .home-hero-inline {
    text-align: left;
  }
  .event-find-category .event-find-category-advanced-button-wrapper {
    text-align: left;
    padding: 0;
  }

  .event-find-search {
    display: block;
  }
  .event-find-search input[type=text] {
    width: 100%;
    min-width: initial;
  }
  .event-find-search-button {
    width: 100px;
    padding: 18px 15px;
    top: auto;
    bottom: 30px;
  }
}
.event-date {
  background-color: #322F31;
  padding: 10px 20px;
  color: #fff;
  font-weight: 400;
}

.event-filters {
  position: relative;
  padding: 30px 20px;
  margin: 0 auto;
  max-width: 1175px;
}
.event-filters-wrapper {
  background-color: #e6e7e8;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 60;
}
.event-filters-navigation {
  position: absolute;
  top: 30px;
  right: 20px;
}
.event-filters-navigation-clear {
  margin-right: 30px;
  color: #322F31;
  cursor: pointer;
}
.event-filters-list {
  display: flex;
}
.event-filters-list > li {
  flex: 1 0 calc((100% - (50px * 3)) / 2);
}
.event-filters-list > li + li {
  margin-left: 100px;
}
.event-filters-list h2 {
  margin-bottom: 30px;
  padding: 0 15px;
  font-weight: 400;
}
.event-filters-list input[type=radio] {
  display: none;
}
.event-filters-list input[type=radio] + label {
  display: block;
  padding: 10px;
  background-color: #fff;
  color: #939598;
  cursor: pointer;
  position: relative;
  border: 4px solid #fff;
  width: calc(100% - 4px);
  margin: 0 auto;
}
.event-filters-list input[type=radio] + label:after {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  bottom: -6px;
  right: -6px;
  border: 2px solid #fff;
}
.event-filters-list input[type=radio]:checked + label {
  color: #fff;
  background-color: #322F31;
}
.event-filters-list input[type=radio]:checked + label:after {
  border-color: #322F31;
}
.event-filters-list-tags {
  margin-bottom: 30px;
}
.event-filters-list-tags label {
  text-align: center;
}
.event-filters-list-tags ul {
  display: flex;
}
.event-filters-list-tags ul > li {
  flex: 1 0 calc((100% - (10px * 2)) / 3);
}
.event-filters-list-tags ul > li + li {
  margin-left: 10px;
}
.event-filters-list-spaces ul > li + li {
  margin-top: 14px;
}
.event-filters-list-companies ul > li + li {
  margin-top: 14px;
}

@media (max-width: 1025px) {
  .event-filters-list-tags ul {
    flex-wrap: wrap;
  }
  .event-filters-list-tags ul > li {
    flex: 1 0 100%;
  }
  .event-filters-list-tags ul > li + li {
    margin-left: 0;
    margin-top: 14px;
  }
}
@media (max-width: 640px) {
  .event-filters-navigation {
    position: static;
    margin-bottom: 30px;
  }
  .event-filters-list {
    flex-wrap: wrap;
  }
  .event-filters-list > li {
    flex: 1 0 100%;
  }
  .event-filters-list > li + li {
    margin-left: 0;
    margin-top: 30px;
  }
}
.event {
  display: flex;
}
.event-results {
  color: #fff;
}
.event-results-wrapper {
  background-color: #322F31;
  padding: 20px 0;
  text-align: right;
}
.event-results p {
  display: inline-block;
  margin-right: 10px;
}
.event-list > li {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
}
.event-list > li + li {
  border-top: 1px solid #322F31;
}
.event-show {
  padding: 20px 0;
  background-color: #322F31;
  color: #fff;
  text-align: center;
  position: relative;
  cursor: pointer;
}
.event-show:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #322F31;
  bottom: -20px;
  left: calc(50% - 10px);
}

.event-image {
  flex: 1 0 calc(((100% - (60px)) / 6) * 2);
  flex-basis: calc(((100% - (60px)) / 6) * 2);
}
.event-image img {
  width: 100%;
}
.event-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.event-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 2 0 calc(((100% - (60px)) / 6) * 3);
  flex-basis: calc(((100% - (60px)) / 6) * 3);
  margin-left: 30px;
}
.event-details a:hover {
  background-color: #fff;
}
.event-details-name {
  color: #322F31;
  margin-bottom: 20px;
}
.event-details-name:hover {
  background-color: #ffd200;
}
.event-details-subhead {
  margin-bottom: 30px;
}
.event-details-date {
  font-weight: 700;
  margin-bottom: 20px;
}
.event-details-time {
  margin-bottom: 20px;
}
.event-navigation {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 0 calc(((100% - (60px)) / 6) * 1);
  flex-basis: calc(((100% - (60px)) / 6) * 1);
  margin-left: 30px;
}
.event-navigation-button {
  margin-top: 30px;
}

@media (max-width: 1025px) {
  .event-details {
    flex: 2 0 calc(((100% - (30px * 2)) / 6) * 2);
  }
}
@media (max-width: 640px) {
  .event {
    flex-wrap: wrap;
  }
  .event-content {
    padding: 0 20px;
    width: 100%;
  }
  .event-image {
    flex: 1 0 100%;
    margin-bottom: 20px;
  }
  .event-details {
    flex: 1 0 100%;
    margin-left: 0;
  }
  .event-navigation {
    flex: 1 0 100%;
    margin-left: 0;
  }
}
.notification {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  padding-right: 90px;
  text-align: center;
  background-color: #ffd200;
  z-index: 90;
  color: #000;
}
.notification a {
  text-decoration: underline;
}
.notification a:hover {
  color: #FFF;
}
.notification-close {
  display: block;
  position: absolute;
  top: 12px;
  right: 30px;
  line-height: 1;
  font-size: 55px;
  color: #000;
  cursor: pointer;
  text-decoration: none !important;
}

.cookieNotification {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  padding-right: 90px;
  text-align: center;
  background-color: #000;
  z-index: 90;
  color: #fff;
}
.cookieNotification-close {
  display: block;
  position: absolute;
  top: 12px;
  right: 30px;
  line-height: 1;
  font-size: 55px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 640px) {
  .cookieNotification {
    padding-left: 20px;
    padding-right: 60px;
  }
  .cookieNotification-close {
    right: 20px;
    font-size: 50px;
    top: 35px;
  }
}
@media (max-width: 640px) {
  .notification {
    padding-left: 20px;
    padding-right: 60px;
  }
  .notification-close {
    right: 20px;
    font-size: 40px;
  }
}
#CDSWIDVRNB {
  max-width: 300px !important;
  width: auto !important;
  background: none !important;
  text-align: center !important;
  margin: 0 auto !important;
}
#CDSWIDVRNB iframe {
  width: 100%;
}

.breadcrumbs {
  color: #939598;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.breadcrumbs a {
  color: #939598;
}
.breadcrumbs .active {
  color: #000;
  font-weight: 700;
}

.sidebar-block-image-cta, .home-free-link {
  display: block;
  width: 100%;
  background-color: rgba(50, 47, 49, 0.9);
  color: #fff;
  padding: 15px;
  will-change: background-color;
  line-height: 1.5;
  text-transform: uppercase;
}
.sidebar-block-image-cta:hover, .home-free-link:hover {
  background-color: #322f31;
}
.sidebar-block-image-cta > span, .home-free-link > span {
  max-width: 215px;
  display: inline-block;
}

.internal-ad {
  display: block;
}
.internal-ad-background {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px;
  padding-bottom: 50px;
}
.internal-ad-background:before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background-color: #fff;
  opacity: 0.7;
  -khtml-opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.internal-ad-body {
  z-index: 20;
  position: relative;
}
.internal-ad-cta {
  position: absolute;
  text-align: right;
  z-index: 20;
  display: block;
  bottom: 20px;
  right: 20px;
}
.internal-ad p {
  margin-bottom: 0;
}

.wrap {
  padding: 40px;
  text-align: center;
}

.btn-close {
  font-size: 30px;
  text-decoration: none;
  position: absolute;
  right: 5px;
  top: 0;
}

.modal {
  display: none;
}
.modal:before {
  content: "";
  display: none;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
}
.modal.active:before {
  display: block;
}
.modal.active .modal-dialog {
  display: flex;
  flex-direction: column;
  -webkit-transform: translate2(0, 0);
  -ms-transform: translate2(0, 0);
  transform: translate2(0, 0);
  top: 10%;
}
@media (max-width: 640px) {
  .modal.active .modal-dialog {
    position: absolute;
    top: 38px;
    bottom: 7%;
  }
}

.modal-dialog {
  background: #322F31;
  border-radius: 5px;
  position: fixed;
  left: 30%;
  top: -100%;
  width: 40%;
  -webkit-transform: translate2(0, -500%);
  -ms-transform: translate2(0, -500%);
  transform: translate2(0, -500%);
  -webkit-transition: -webkit-transform "0.3s ease-out";
  -moz-transition: -moz-transform "0.3s ease-out";
  -o-transition: -o-transform "0.3s ease-out";
  transition: transform "0.3s ease-out";
  text-align: center;
  z-index: 90;
}
.modal-dialog input[type=text], .modal-dialog input[type=password] {
  display: block;
  width: 100%;
  border-radius: 4px;
  padding-left: 50px;
  min-width: auto;
  min-width: initial;
}
.modal-dialog input[type=text]::-webkit-input-placeholder, .modal-dialog input[type=password]::-webkit-input-placeholder {
  text-transform: uppercase;
}
.modal-dialog input[type=text]:-moz-placeholder, .modal-dialog input[type=password]:-moz-placeholder {
  /* Firefox 18- */
  text-transform: uppercase;
}
.modal-dialog input[type=text]::-moz-placeholder, .modal-dialog input[type=password]::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: uppercase;
}
.modal-dialog input[type=text]:-ms-input-placeholder, .modal-dialog input[type=password]:-ms-input-placeholder {
  text-transform: uppercase;
}
.modal-dialog span[style*=hidden] {
  display: none;
}

.modal-close {
  cursor: pointer;
  font-size: 55px;
  text-decoration: none;
  position: absolute;
  right: -32px;
  top: -30px;
  color: #fff;
}
.modal-tab {
  display: flex;
  flex: 0 0 auto;
}
.modal-tab .modal-tab-register, .modal-tab .modal-tab-login {
  flex: 0 1 50%;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}
.modal-tab .inactive {
  background-color: #000;
}
.modal-tab-login h3 {
  margin-bottom: 0;
}
.modal-tab-register h3 {
  margin-bottom: 0;
}
.modal-error {
  margin-bottom: 20px;
  color: #fff;
}
.modal-error .error {
  color: #fff;
}
.modal-register {
  display: none;
}
.modal-forgot {
  margin-bottom: 20px;
}
.modal-forgot a {
  text-transform: uppercase;
  color: #fff;
}
.modal-input {
  margin-bottom: 40px;
}
.modal-input-email {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  .modal-input-email {
    margin-bottom: 20px;
  }
}
.modal-input-email:before {
  position: absolute;
  color: #939598;
  font-family: FontAwesome;
}
.modal-input-email span {
  display: block;
  text-align: left;
  margin-top: 8px;
  color: #fff;
}
.modal-input-email:before {
  content: "";
  left: 15px;
  top: 12px;
  font-size: 20px;
}
.modal-input-name {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  .modal-input-name {
    margin-bottom: 20px;
  }
}
.modal-input-name:before {
  position: absolute;
  color: #939598;
  font-family: FontAwesome;
}
.modal-input-name span {
  display: block;
  text-align: left;
  margin-top: 8px;
  color: #fff;
}
.modal-input-name:before {
  content: "";
  left: 16px;
  top: 13px;
  font-size: 20px;
}
.modal-input-password {
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  .modal-input-password {
    margin-bottom: 20px;
  }
}
.modal-input-password:before {
  position: absolute;
  color: #939598;
  font-family: FontAwesome;
}
.modal-input-password span {
  display: block;
  text-align: left;
  margin-top: 8px;
  color: #fff;
}
.modal-input-password:before {
  content: "";
  left: 17px;
  top: 14px;
  font-size: 25px;
}
.modal-input-privacy-checkbox {
  display: inline-block;
}
.modal-input-privacy-notice {
  display: inline-block;
  color: #fff;
  margin-bottom: 20px;
}
.modal-input-privacy-notice a {
  color: #fff;
  text-decoration: underline;
}
.modal-title {
  text-transform: uppercase;
  color: #fff;
}
.modal-subtitle {
  color: #fff;
  margin-bottom: 40px;
  font-weight: 400;
}
.modal-body {
  flex: 1 0 auto;
  margin: 40px 80px;
  overflow: hidden;
  overflow-y: auto;
}
.user-interests {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  margin-bottom: 30px;
}
.user-interests > li {
  position: relative;
  flex: 0 0 50%;
}
.user-interests > li input {
  position: absolute;
}
.user-interests > li label {
  padding-left: 25px;
  display: block;
}
.user-interests > li:nth-child(n+3) {
  margin-top: 5px;
}

/*ADDED TO STOP SCROLLING TO TOP*/
#close {
  display: none;
}

@media (max-width: 1025px) {
  .modal-dialog {
    margin-left: 0;
    left: 10%;
    width: 80%;
  }
}
@media (max-width: 640px) {
  .modal-dialog {
    left: 15px;
    width: calc(100% - (30px));
  }
  .modal-dialog input[type=text], .modal-dialog input[type=password] {
    padding: 8px;
    padding-left: 40px;
    font-size: 1em;
  }
  .modal-body {
    margin: 40px;
  }
  .modal-close {
    right: -2px;
  }
  .modal-input-email:before {
    left: 13px;
    top: 11px;
    font-size: 20px;
  }
  .modal-input-name:before {
    left: 13px;
    top: 11px;
    font-size: 22px;
  }
  .modal-input-password:before {
    left: 15px;
    top: 13px;
    font-size: 25px;
  }

  .user-interests > li {
    flex: 0 0 100%;
  }
  .user-interests > li + li {
    margin-top: 5px;
  }
}
.modal-generic .modal-inner {
  padding: 40px;
  overflow: auto;
}
.modal-generic .modal-inner .rich-text h1, .modal-generic .modal-inner .rich-text h2, .modal-generic .modal-inner .rich-text h3, .modal-generic .modal-inner .rich-text h4, .modal-generic .modal-inner .rich-text h5, .modal-generic .modal-inner .rich-text h6, .modal-generic .modal-inner .rich-text p, .modal-generic .modal-inner .rich-text span {
  color: white;
}
.modal-generic .modal-inner .rich-text a {
  text-decoration: underline;
  color: white;
}
.modal-generic .modal-inner .rich-text a:hover {
  text-decoration: none;
}
.modal-generic .modal-dialog {
  left: 50%;
  transform: translate(-50%);
  width: 80%;
  max-width: 700px;
  top: 38px;
}
@media (max-width: 640px) {
  .modal-generic .modal-inner {
    padding: 30px;
  }
}

/*overrides to js-injected inline styles*/
.modal-body-content {
  position: relative;
}

#LoginControl_ModalPanelRetrievePassword {
  position: absolute !important;
  background-color: #322F31;
  bottom: 0;
  left: 0 !important;
  right: 0;
  top: 0 !important;
}
#LoginControl_ModalPanelRetrievePassword label {
  color: white;
  margin-bottom: 20px;
  display: inline-block;
}
#LoginControl_ModalPanelRetrievePassword .primary-button {
  padding: 10px !important;
  margin-top: 6px !important;
}
#LoginControl_ModalPanelRetrievePassword .primary-button:first-of-type {
  margin-right: 2px;
}

#modal-email-list .modal-dialog {
  left: 20%;
  width: 60%;
  overflow-y: auto;
  overflow-x: hidden;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@media (max-width: 640px) {
  .panzoom-modal {
    display: none !important;
  }
}
.panzoom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 10000;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  -webkit-overflow-scrolling: touch;
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}
.panzoom-modal-content {
  overflow: hidden;
  max-width: 700px;
  margin: auto;
}
@media (max-width: 640px) {
  .panzoom-modal-content {
    width: 100%;
  }
}
.panzoom-modal-content-image {
  display: block;
  width: 100%;
  animation-name: zoom;
  animation-duration: 0.6s;
}
.panzoom-modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.panzoom-modal-close:hover, .panzoom-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
.panzoom-modal-controls {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
@media (max-width: 640px) {
  .panzoom-modal-controls .zoom-range {
    max-width: 120px;
  }
}

.section-list {
  margin-left: 20px;
}
.section-list-container {
  margin: 80px 0;
}
.section-list-container:last-child {
  margin-bottom: 0;
}
.section-list-columns {
  display: flex;
}
.section-list-columns > div {
  flex-basis: 0;
  flex-grow: 1;
  padding-left: 15px;
  padding-right: 15px;
}
.section-list-columns > div:first-child {
  padding-left: 0;
}
.section-list-columns > div:last-child {
  padding-right: 0;
}
.section-list-title {
  margin-bottom: 20px;
  display: inline-block;
}
.section-list-link {
  color: #322F31;
  text-transform: uppercase;
  display: table;
}
.section-list-link + .section-list-link {
  margin-top: 20px;
}

@media (max-width: 640px) {
  .section-list {
    margin-left: 0;
    flex-wrap: wrap;
  }
  .section-list-columns > div {
    flex: 1 0 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .section-list-columns > div + div {
    margin-top: 30px;
  }
}
.sidebar-block {
  padding: 20px;
  background-color: #f1f1f1;
}
.sidebar-block + .sidebar-block {
  margin-top: 30px;
}

.sidebar-block-text-heading {
  color: #322F31;
}
.sidebar-block-image-inner {
  position: relative;
}
.sidebar-block-image-inner img {
  width: 100%;
  vertical-align: top;
}
.sidebar-block-image-cta {
  position: absolute;
  bottom: 0;
}

.sidebar-block-xform-heading {
  color: #322F31;
}
.sidebar-block-xform label {
  display: block;
  margin-bottom: 10px;
}
.sidebar-block-xform input[type=text], .sidebar-block-xform select {
  width: 100%;
  min-width: auto;
  min-width: initial;
}
.sidebar-block-xform textarea {
  width: 100%;
  min-height: 100px;
  min-width: initial;
  min-width: auto;
}
.sidebar-block-xform fieldset legend {
  margin-bottom: 15px;
}
.sidebar-block-xform fieldset label {
  margin-bottom: 0;
}

@media (max-width: 1025px) {
  .sidebar {
    display: flex;
    flex-wrap: wrap;
    order: -1;
  }
  .sidebar-container {
    padding-bottom: 0;
  }
  .sidebar-block {
    flex: 1 0 calc((100% - 30px) / 2);
    flex-grow: 0;
  }
  .sidebar-block:nth-child(even) {
    margin-left: 30px;
  }
  .sidebar-block + .sidebar-block {
    margin-top: 0;
  }
  .sidebar-block:nth-child(n+3) {
    margin-top: 30px;
  }

  .sidebar-below-main .sidebar {
    order: 1;
  }
}
@media (max-width: 640px) {
  .sidebar-block {
    flex: 1 0 100%;
  }
  .sidebar-block:nth-child(even) {
    margin-left: 0;
  }
}
.main-content-interior-col {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: -15px;
}
.main-content-block-partial-width {
  flex: 0 0 calc((100% - (30px * 2)) / 2);
  flex-grow: 0;
  margin: 0 calc(30px / 2);
  max-width: calc((100% - (30px * 2)) / 2);
  min-width: calc((100% - (30px * 2)) / 2);
}
.main-content-block-partial-width + .main-content-block-full-width {
  margin-top: 50px;
}
.main-content-block-full-width {
  flex: 0 0 100%;
  flex-grow: 0;
  padding: 0 calc(30px / 2);
  max-width: 100%;
  min-width: 100%;
}
.main-content-block-full-width + .main-content-block-full-width {
  margin-top: 50px;
}
.main-content-block-full-width + .main-content-block-partial-width {
  margin-top: 50px;
}
.main-content-block:nth-child(n+3) {
  margin-top: 50px;
}

.main-content-highlight-block-images {
  margin-bottom: 35px;
  position: relative;
}
.main-content-highlight-block .owl-theme .owl-controls {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: -35px;
}
.main-content-highlight-block .owl-theme .owl-controls .owl-page span {
  width: 20px;
  height: 20px;
}
.main-content-highlight-block-image img {
  width: 100%;
}
.main-content-highlight-block-image-caption {
  text-transform: uppercase;
  margin-top: 10px;
}
.main-content-highlight-block-buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.main-content-highlight-block-button {
  display: inline-block;
  flex: 0 0 calc(100% - (30px * 3))/4;
  flex-basis: calc((100% - (30px * 3)) / 4);
  display: flex;
}
.main-content-highlight-block-button + .main-content-highlight-block-button {
  margin-left: 30px;
}
.main-content-highlight-block-button:nth-child(5n) {
  margin-left: 0;
}
.main-content-highlight-block-button:nth-child(n+5) {
  margin-top: 30px;
}
.main-content-highlight-block-button a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-content-block-partial-width .main-content-highlight-block-button {
  flex: 0 0 calc((100% - 30px) / 2);
  flex-basis: calc((100% - 30px) / 2);
  flex-grow: 0;
}
.main-content-block-partial-width .main-content-highlight-block-button:nth-child(n+3) {
  margin-top: 30px;
}
.main-content-block-partial-width .main-content-highlight-block-button:nth-child(odd) {
  margin-left: 0;
}

.main-content-xform-block-heading {
  color: #322F31;
}
.main-content-xform-block label {
  display: block;
  margin-bottom: 10px;
}
.main-content-xform-block input[type=text], .main-content-xform-block select, .main-content-xform-block textarea {
  width: calc(50% - (15px));
  min-width: auto;
  min-width: initial;
}
.main-content-xform-block textarea {
  min-height: 100px;
}
.main-content-xform-block hr {
  width: calc(50% - (15px));
  margin-left: 0;
}
.main-content-xform-block fieldset legend {
  margin-bottom: 15px;
}
.main-content-xform-block fieldset label {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .main-content-block-partial-width {
    flex: 1 0 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 0 calc(30px / 2);
    max-width: 100%;
  }
  .main-content-block:nth-child(n+2) {
    margin-top: 50px;
  }
  .main-content-highlight-block-button {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .main-content-highlight-block-button:nth-child(odd) {
    margin-left: 0;
  }
  .main-content-highlight-block-button:nth-child(n+3) {
    margin-top: 30px;
  }
  .main-content-xform-block input[type=text], .main-content-xform-block select, .main-content-xform-block textarea, .main-content-xform-block hr {
    width: 100%;
  }
}
.hero-image img {
  width: 100%;
}

.minical {
  margin: 0 15px 50px;
}
.minical-header {
  position: relative;
  text-align: center;
  padding: 0 50px;
}
.minical-header-link {
  display: block;
  position: absolute;
  top: 20px;
  left: calc(100% + 15px);
  width: 100%;
}
@media (max-width: 1025px) {
  .minical-header-link {
    position: initial;
    margin-bottom: 20px;
  }
}
.minical-header-title {
  display: inline-block;
}
.minical-header-title-wrapper {
  display: inline-block;
  position: relative;
}
.minical-rowcol {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
}
.minical-rowcol > div {
  flex-basis: 0;
  flex-grow: 1;
  margin-left: 20px;
  margin-right: 20px;
}
@media (max-width: 1025px) {
  .minical-rowcol > div {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.minical-rowcol > div:first-child {
  margin-left: 0;
}
.minical-rowcol > div:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .minical-rowcol {
    flex-direction: column;
  }
  .minical-rowcol > div {
    flex-basis: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .minical-rowcol > div + div {
    margin-top: 20px;
  }
}

.minical-nav {
  font-weight: 700;
  line-height: 1;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #322F31;
  padding: 8px 20px;
}
@media (max-width: 1025px) {
  .minical-nav {
    padding: 8px;
    font-size: 1.5rem;
  }
}
.minical-nav-arrow {
  color: white;
  padding: 0 10px;
}
@media (min-width: 640px) {
  .minical-nav-arrow:hover {
    transform: scale(1.2);
    transition: 0.3s ease all;
  }
}

.minical-grid {
  display: flex;
  flex-wrap: wrap;
  background-color: #d2d2d2;
  padding: 10px 0;
}
.minical-grid + .minical-grid {
  padding-top: 0;
}
.minical-grid > .minical-days-cell {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 14.2857143%;
  text-align: center;
  font-weight: 700;
  padding: 8px 0;
}

.minical-days-item {
  display: block;
  max-width: 30px;
  margin: 0 auto;
  padding: 7px 0;
  position: relative;
  height: 30px;
  width: 30px;
  color: #939598;
}
.minical-days-item.current {
  color: #000;
  background-color: #ffd200;
}
.minical-days-link {
  color: #322F31;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-weight: 700;
}
.minical-days-link.current {
  color: #000;
  background-color: #ffd200;
}
.minical-days-link.selected {
  background-color: #322F31;
  color: white;
}
@media (min-width: 640px) {
  .minical-days-link:not(.selected):hover {
    transform: scale(1.2);
    transition: 0.3s ease all;
    background-color: #322F31;
    color: #ffd200;
  }
}

.minical-list-item {
  display: flex;
}
.minical-list-item + .minical-list-item {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .minical-list-item + .minical-list-item {
    margin-top: 25px;
  }
}
.minical-list-item-image {
  flex-basis: 115px;
  flex-grow: 0;
  flex-shrink: 0;
}
.minical-list-item-info {
  flex-basis: 50%;
  margin-right: 10px;
}
.minical-list-item-info-container {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .minical-list-item-info-container {
    flex-direction: column;
  }
}
.minical-list-item-info-item + .minical-list-item-info-item {
  margin-top: 5px;
}
.minical-list-item-cta {
  align-self: center;
}
@media (max-width: 767px) {
  .minical-list-item-cta {
    align-self: flex-start;
    margin-top: 15px;
  }
}
@media (min-width: 767px) and (max-width: 1025px) {
  .minical-list-item-cta-link {
    padding: 13px;
  }
}
.minical-list-showmore {
  color: #322F31;
  margin-top: 15px;
  display: inline-block;
  text-transform: none;
  cursor: pointer;
}
.minical-list-showmore:focus, .minical-list-showmore:hover {
  color: #322F31;
}

.minical-events .minical-nav {
  padding: 8px;
  font-size: 1.5rem;
}
@media (min-width: 1280px) {
  .minical-events .minical-list-item-info-container {
    margin-left: 30px;
  }
}
@media (max-width: 1280px) {
  .minical-events .minical-list-item-info-container {
    flex-direction: column;
  }
}
.minical-events .minical-list-item + .minical-list-item {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #322F31;
}
@media (min-width: 1280px) {
  .minical-events .minical-list-item-image {
    flex-basis: 300px;
  }
}
@media (min-width: 767px) {
  .minical-events .minical-list-item-image {
    flex-basis: 200px;
  }
}
.minical-events .minical-list-item-cta {
  align-self: flex-end;
}
@media (max-width: 1280px) {
  .minical-events .minical-list-item-cta {
    margin-top: 20px;
    align-self: flex-start;
  }
}
.minical-events-organization {
  font-weight: 700;
}
.minical-events-title {
  font-weight: 700;
  color: #322F31;
}
.minical-events-dates {
  font-weight: 700;
}
.minical-events .minical-list-item-info-item + .minical-list-item-info-item {
  margin-top: 10px;
}

.minical-events-rowcol {
  display: flex;
}
.minical-events-rowcol > div:first-child {
  flex-basis: 350px;
  flex-grow: 0;
  margin-left: 0;
  margin-right: 15px;
}
@media (max-width: 1025px) {
  .minical-events-rowcol > div:first-child {
    margin-right: 7.5px;
  }
}
.minical-events-rowcol > div:last-child {
  flex-grow: 1;
  flex-basis: 0;
  margin-right: 0;
  margin-left: 15px;
}
@media (max-width: 1025px) {
  .minical-events-rowcol > div:last-child {
    margin-left: 7.5px;
  }
}
@media (max-width: 767px) {
  .minical-events-rowcol {
    flex-direction: column;
  }
  .minical-events-rowcol > div:first-child {
    flex-basis: auto;
    margin-right: 0;
  }
  .minical-events-rowcol > div:last-child {
    margin-top: 15px;
    flex-basis: auto;
    margin-left: 0;
  }
}
@media (max-width: 1025px) {
  .minical-events-rowcol > div:first-child {
    flex-basis: 300px;
  }
}

.calendar-carousel {
  overflow: hidden;
  padding-bottom: 50px;
}
.calendar-carousel .owl-wrapper-outer {
  overflow: visible;
}
.calendar-carousel-wrapper {
  position: relative;
  padding: 0 50px;
  z-index: 20;
}
.calendar-carousel-header {
  position: relative;
  text-align: center;
  padding: 0 50px;
}
.calendar-carousel-section {
  position: relative;
  z-index: 40;
}
.calendar-carousel-title {
  display: inline-block;
}
.calendar-carousel-title-wrapper {
  display: inline-block;
  position: relative;
}
.calendar-carousel-view-full {
  display: block;
  position: absolute;
  top: 20px;
  left: calc(100% + 15px);
  width: 100%;
}
.calendar-carousel-jump {
  text-align: left;
  margin-bottom: 20px;
  min-height: 50px;
  display: flex;
  align-items: center;
  position: relative;
}
.calendar-carousel-jump p {
  display: inline-block;
  margin-right: 15px;
}
.calendar-carousel-jump .dropdown-wrapper {
  display: inline-block;
}
.calendar-carousel-navigation-left {
  position: absolute;
  top: 0;
  bottom: -20px;
  left: -100%;
  right: calc(100% - 55px);
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.calendar-carousel-navigation-left:before {
  content: "";
  position: absolute;
  right: 18px;
  top: calc(50% + 10px);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid #000;
}
.calendar-carousel-navigation-left:after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  height: 28px;
  background-color: #fff;
  width: calc(100% + 5px);
}
.calendar-carousel-navigation-right {
  position: absolute;
  top: 0;
  bottom: -20px;
  right: -100%;
  left: calc(100% - 55px);
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.calendar-carousel-navigation-right:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 28px;
  background-color: #fff;
  width: calc(100% + 5px);
}
.calendar-carousel-navigation-right:after {
  content: "";
  position: absolute;
  left: 18px;
  top: calc(50% + 10px);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #000;
}
.calendar-carousel-month {
  background-color: #322F31;
  height: 28px;
  margin-bottom: 10px;
}
.calendar-carousel-month p {
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
  padding: 5px;
}
.calendar-carousel-month.first {
  margin-left: 5px;
  width: 200px;
  position: relative;
}
.calendar-carousel-month.first p {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  z-index: 30;
}
.calendar-carousel-month.last {
  margin-right: 5px;
}
.calendar-carousel-day {
  flex: 1;
  text-align: center;
  position: relative;
}
.calendar-carousel-day-wrapper {
  display: flex;
}
.calendar-carousel-day-wrapper .owl-item {
  backface-visibility: initial;
  transform: initial;
}
.calendar-carousel-day-text {
  padding: 5px 0;
  margin: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  transition: all 0.2s ease-in;
}
.calendar-carousel-day-text-selected {
  background-color: #322F31 !important;
}
.calendar-carousel-day-number {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  margin-right: 5px;
  transition: all 0.2s ease-in;
}
.calendar-carousel-day-number-selected {
  background-color: #322F31 !important;
}
.calendar-carousel-day-selected:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #322F31;
}
.calendar-carousel-day.has-events {
  color: #fff;
  cursor: pointer;
}
.calendar-carousel-day.has-events .calendar-carousel-day-text {
  background-color: #ffd200;
}
.calendar-carousel-day.has-events .calendar-carousel-day-number {
  background-color: #ffd200;
}
.calendar-carousel-day.no-events .calendar-carousel-day-text {
  background-color: #f1f1f1;
}
.calendar-carousel-day.no-events .calendar-carousel-day-number {
  background-color: #f1f1f1;
}
.calendar-carousel-day.no-events .calendar-carousel-day-no-show {
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  margin-left: 5px;
  margin-right: 5px;
}

.calendar-detail-content {
  position: relative;
}
.calendar-detail-wrapper {
  position: absolute;
  top: calc(100% - 50px);
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 5px 7px 0px rgba(75, 75, 75, 0.4);
}
.calendar-detail-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.calendar-detail-events {
  padding: 50px 35px;
  padding-top: 60px;
  display: flex;
  flex-wrap: wrap;
}
.calendar-detail-events > li {
  flex: 0 0 calc((100% - (30px * 2)) / 3);
  flex-basis: calc((100% - (30px * 2)) / 3);
}
.calendar-detail-events > li + li {
  margin-left: 30px;
}
.calendar-detail-events > li:nth-child(3n+1) {
  margin-left: 0;
}
.calendar-detail-events > li:nth-child(n+4) {
  margin-top: 30px;
}
.calendar-detail-event {
  display: flex;
}
.calendar-detail-event-image {
  display: block;
  position: relative;
  flex: 0 0 calc((100% - 20px) / 2);
  flex-basis: calc((100% - 20px) / 2);
}
.calendar-detail-event-image img {
  width: 100%;
}
.calendar-detail-event-learn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #ffd200;
  color: #fff;
}
.calendar-detail-event-summary {
  flex: 0 0 calc((100% - 20px) / 2);
  flex-basis: calc((100% - 20px) / 2);
  margin-left: 20px;
}

@media (max-width: 1025px) {
  .calendar-carousel-view-full {
    position: static;
    margin-bottom: 20px;
  }

  .calendar-carousel-navigation-right {
    left: calc(100% - 56px);
  }
}
@media (max-width: 640px) {
  .calendar-carousel-header {
    padding: 0 20px;
  }
  .calendar-carousel-jump p {
    display: none;
  }
  .calendar-detail-events > li {
    flex: 0 0 100%;
  }
  .calendar-detail-events > li + li {
    margin-left: 0;
  }
  .calendar-detail-events > li:nth-child(n+2) {
    margin-top: 30px;
  }
}
.global-tp-modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 80;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.global-tp-modal.active {
  display: flex;
}
.global-tp-modal-inner {
  width: 40%;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.5);
  background: #fff;
  border-radius: 2px;
}
@media (max-width: 1025px) {
  .global-tp-modal-inner {
    width: 80%;
  }
}

.global-tp-modal-inner-content {
  text-align: center;
  padding: 0 10px;
}
.global-tp-modal-inner-content p {
  text-align: left;
  line-height: 20px;
}
.global-tp-modal-inner-content input {
  margin-top: 20px;
}

.global-tp-modal-inner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #322F31;
  border: 1px solid #ffd200;
  margin-bottom: 20px;
  border-radius: 2px;
}
.global-tp-modal-inner-header h6 {
  margin-bottom: 0;
  color: #ffd200;
}
.global-tp-modal-inner-header .global-tp-modal-close {
  color: #000;
  padding: 5px;
  background: #ffd200;
  border-radius: 2px;
  line-height: 15px;
  cursor: pointer;
  font-weight: bold;
}
.global-tp-modal-inner-header .global-tp-modal-close:hover {
  background: #000;
  color: #ffd200;
}

.accordionHeader {
  border-top: 4px solid #ffd200;
  cursor: pointer;
  background-color: #f1f1f1;
  padding-left: 10px;
  font-weight: bold;
  position: relative;
  /*For the expandable panel control*/
  /*For the accordion control*/
}
.accordionHeader p {
  margin-bottom: unset;
}
.accordionHeader .accordionIcon {
  max-height: 30px;
  position: absolute;
  right: 10px;
  top: 3px;
}
.accordionHeader.accordionExpanded img, .accordionHeader.accordionCollapsed img {
  max-height: 30px;
  position: absolute;
  right: 10px;
  top: 3px;
}
.accordionHeader.accordionExpanded .expandIcon, .accordionHeader.accordionCollapsed .collapseIcon {
  visibility: visible;
}
.accordionHeader.accordionExpanded .collapseIcon, .accordionHeader.accordionCollapsed .expandIcon {
  visibility: hidden;
}

.accordionBody {
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
/*# sourceMappingURL=main-kimmel.css.map */
