@import url("https://use.typekit.net/xtg4joh.css");
@font-face {
  font-family: "edgy";
  src: url("../fonts/Edgy.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
h1 {
  font-family: "edgy";
  font-weight: 500;
  line-height: 1;
}

/* Defaults
-------------------------------------------------------------- */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  color: black;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
  font-family: "narkiss-tam", sans-serif;
  text-align: inherit;
  background: #008cff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "edgy";
  line-height: 1.5em;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2rem;
}

.text40 {
  font-size: 3.5rem;
}

.text25 {
  font-size: 2.2rem;
}

.text22 {
  font-size: 2.2rem !important;
}

.text17 {
  font-size: 1.7rem;
  line-height: 1.5;
}

.text18 {
  font-size: 1.8rem;
  line-height: 1.5;
}

.big-text {
  font-size: 12rem !important;
}

.text-stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
}

.text-2-col {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
}

label, span, input, textarea {
  max-width: 100%;
}

strong,
b {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

a,
input[type=submit],
button,
.transition {
  transition: all 400ms ease;
}

a {
  text-decoration: none;
  color: black;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: black;
}

img {
  max-width: 100%;
}

img.grayscale {
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.site_logo svg path, .site_logo svg rect {
  fill: #ccb3c8;
}

.medium-text {
  font-weight: 600;
}

.round {
  border-radius: 50%;
}

.content ol,
.content ul {
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 8px;
}

.content ul {
  list-style: disc;
}

.content ol {
  list-style: decimal;
}

.content p {
  font-size: 1rem;
  line-height: 1.2em;
  margin-bottom: 0.6rem;
}

.yellow {
  color: #008cff;
}

.text-med {
  font-weight: 500;
}

.tag-black {
  background: black;
  padding: 0.3rem 0.7rem 0;
  display: inline-block;
  color: #ccb3c8;
  font-size: 1.7rem;
}

.tag-white {
  background: #ccb3c8;
  padding: 0.3rem 0.7rem 0;
  display: inline-block;
  color: black;
  font-size: 1.7rem;
}

.accessibility-icon rect, .accessibility-icon path {
  fill: #ccb3c8;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: block;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  padding-top: 60px;
}

.logo img {
  width: 200px;
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
}

ul#main-menu > li {
  position: relative;
}

ul#main-menu > li > a {
  position: relative;
  display: block;
  font-size: 1rem;
  color: #008cff;
  line-height: 1.667rem;
  padding: 5px 10px;
}

ul#main-menu > li.current-menu-item > a {
  color: black;
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: black;
}

ul#main-menu > li > a:after {
  content: "|";
  padding-left: 15px;
}

/** Sub Menu  ***/
ul#mobile-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: 15px;
  top: 100%;
  width: 250px;
  display: none;
}

ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}

ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  background: #fff;
}

ul#main-menu ul.sub-menu li a {
  position: relative;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 10px;
  color: #008cff;
  border-right: 1px solid #008cff;
  border-left: 1px solid #008cff;
  border-bottom: 1px solid #a1a1a1;
  margin-right: 2px;
  margin-left: 2px;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: black;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: black;
}

/************/
.acf-map {
  width: 100%;
  height: 400px;
  border: #ccc solid 1px;
  margin: 20px 0;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

#header-top {
  width: 100%;
  z-index: 999;
}
#header-top .container {
  display: flex;
  justify-content: space-between;
}

.accessibility-icon {
  margin-right: 10px;
}
.accessibility-icon img, .accessibility-icon svg {
  max-height: 30px;
}

.lang-switcher {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.8rem;
}
.lang-switcher li {
  padding: 4px 0 4px 4px;
}
.lang-switcher li a {
  color: #ccb3c8;
}
.lang-switcher li:first-child::after {
  content: "|";
  display: inline-block;
  margin: 0 4px 0 6px;
  color: #ccb3c8;
}

#personal-area {
  padding: 0 20px;
  flex: 0 0 100%;
  color: #fff;
  font-weight: 300;
}
#personal-area a.login {
  border: 1px solid #008cff;
  padding: 6px 10px;
  transition: all ease 0.2s;
}
#personal-area a.login:hover {
  background: #008cff;
  color: #000;
  transition: all ease 0.2s;
  text-decoration: none;
}

#acwp-toolbar-btn {
  z-index: 9999995;
  background: #008cff;
  color: #000;
}

.acwp-toolbar {
  z-index: 9999995;
}
.acwp-toolbar input:checked + .acwp-switch {
  background-color: #008cff !important;
}
.acwp-toolbar input:checked + .acwp-switch:before {
  background-color: #000;
}
.acwp-toolbar .acwp-heading {
  background: #008cff;
  color: #000;
}
.acwp-toolbar #acwp-close-toolbar {
  color: #000;
}
.acwp-toolbar.acwp-style-default .acwp-toggler label {
  font-size: 2rem;
}

#acwp-toolbar.acwp-style-default .acwp-toggler label {
  font-size: 2rem;
}

#acwp-toolbar-btn-wrap {
  display: none;
}

button.tlv-button {
  font-size: 2rem;
  border: 2px solid black;
  border-radius: 30px;
  color: black;
  background: transparent;
  font-weight: 300;
  padding: 1.5rem 2rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  outline: none;
}
button.tlv-button:after {
  background-color: black;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s all ease-out;
  z-index: -1;
}
button.tlv-button:hover {
  color: #008cff;
}
button.tlv-button:hover::after {
  transform: translate(0, 0);
}

.event-more {
  margin-bottom: 2rem;
}
.event-more button {
  border: 2px solid black;
  border-radius: 30px;
  color: black;
  background: transparent;
  font-weight: 300;
  padding: 1.5rem 2rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  outline: none;
}
.event-more button:after {
  background-color: black;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s all ease-out;
  z-index: -1;
}
.event-more button:hover {
  color: #008cff;
}
.event-more button:hover::after {
  transform: translate(0, 0);
}

header.has-video {
  position: absolute;
  width: 100%;
  z-index: 999;
}

#footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2rem;
}
#footer-menu li {
  margin-bottom: 2rem;
}

#event-iframe a.action-order {
  font-size: 2rem;
  padding: 0.3em 1em;
}
#event-iframe h3.sold-out {
  font-size: 1.8rem;
  font-weight: 600;
}
#event-iframe #event-order-iframe {
  width: 100%;
  border: none;
  background: url(../../images/loader.gif) center center no-repeat;
  height: 0;
}

.bottom-border {
  border-bottom: 1px solid black;
}

.title-logo {
  max-width: 60px;
  display: inline-block !important;
  margin-top: -12px;
}

/*---------------------------------- Home Page ---------------------------------------*/
#mobile-video {
  display: none;
}

.page-template-soon {
  background: black;
}
.page-template-soon main {
  width: 100vw;
  min-height: 100vh;
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #008cff;
  font-size: 2.8rem;
}
.page-template-soon main .nextyear-right {
  position: absolute;
  top: 0;
  right: 5%;
}
.page-template-soon main .nextyear-left {
  position: absolute;
  top: 0;
  left: 8%;
}
.page-template-soon main h1 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3rem;
}
.page-template-soon main h2 {
  font-size: 4.5rem;
  margin-bottom: 3rem;
}
.page-template-soon main a {
  color: #008cff;
  text-decoration: underline;
}
.page-template-soon main img.mobile {
  display: none;
}
.page-template-soon header, .page-template-soon footer, .page-template-soon #acwp-toolbar-btn-wrap {
  display: none;
}
.page-template-soon #soon-massage {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  text-align: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.page-template-soon #soon-massage h1 {
  font-size: 6rem;
  padding: 3rem 0;
  line-height: 1;
}
.page-template-soon #soon-stamp {
  position: fixed;
  left: 5%;
  top: calc(50% - 115px);
}

#soon_video_desktop, #soon_video_mobile {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

#soon_video_mobile {
  display: none;
}

.hp-events, #hp-pro-summer {
  padding: 10rem 0;
  position: relative;
  background: black;
}
.hp-events h2, #hp-pro-summer h2 {
  color: #ccb3c8;
}
.hp-events h2 a:hover, #hp-pro-summer h2 a:hover {
  text-decoration: none;
  color: #ccb3c8;
}
.hp-events .owl-stage, #hp-pro-summer .owl-stage {
  display: flex;
}
.hp-events .owl-stage .owl-item, #hp-pro-summer .owl-stage .owl-item {
  display: flex;
  flex: 1 0 auto;
}
.hp-events .owl-stage .owl-item .hp-single-event, #hp-pro-summer .owl-stage .owl-item .hp-single-event {
  width: 100%;
}
.hp-events .owl-stage .owl-item .hp-single-event .hp-details, #hp-pro-summer .owl-stage .owl-item .hp-single-event .hp-details {
  width: 100%;
  color: white;
}
.hp-events a, #hp-pro-summer a {
  color: #ccb3c8;
}
.hp-events .event-more button, #hp-pro-summer .event-more button {
  color: #008cff;
  border-color: #008cff;
}

.hp-events h2, #hp-pro-summer h2, #cat-events h2 {
  text-align: center;
  margin-bottom: 5rem;
}
.hp-events .hp-single-event, #hp-pro-summer .hp-single-event, #cat-events .hp-single-event {
  position: relative;
}
.hp-events .hp-single-event a, #hp-pro-summer .hp-single-event a, #cat-events .hp-single-event a {
  display: grid;
  height: 100%;
  width: 100%;
  font-size: 2.2rem;
}
.hp-events .hp-single-event a:hover, #hp-pro-summer .hp-single-event a:hover, #cat-events .hp-single-event a:hover {
  text-decoration: none;
}
.hp-events .hp-single-event .event-image, #hp-pro-summer .hp-single-event .event-image, #cat-events .hp-single-event .event-image {
  height: 380px;
  background-size: cover !important;
  margin-bottom: 2rem;
  background-position: center !important;
}
.hp-events .hp-single-event .hp-details h3, #hp-pro-summer .hp-single-event .hp-details h3, #cat-events .hp-single-event .hp-details h3 {
  line-height: 1.2;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #ccb3c8;
}
.hp-events .hp-single-event .hp-details p, #hp-pro-summer .hp-single-event .hp-details p, #cat-events .hp-single-event .hp-details p {
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-size: 2.2rem;
}
.hp-events .hp-single-event .hp-details p.show-date, #hp-pro-summer .hp-single-event .hp-details p.show-date, #cat-events .hp-single-event .hp-details p.show-date {
  margin-bottom: 0;
}
.hp-events .hp-single-event .hp-details .event-dates, #hp-pro-summer .hp-single-event .hp-details .event-dates, #cat-events .hp-single-event .hp-details .event-dates {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.hp-events .hp-single-event .hp-details .event-dates .show-date:after, #hp-pro-summer .hp-single-event .hp-details .event-dates .show-date:after, #cat-events .hp-single-event .hp-details .event-dates .show-date:after {
  content: " | ";
  display: inline-block;
}
.hp-events .hp-single-event .hp-details .event-dates .show-date:last-child:after, #hp-pro-summer .hp-single-event .hp-details .event-dates .show-date:last-child:after, #cat-events .hp-single-event .hp-details .event-dates .show-date:last-child:after {
  content: "";
}
.hp-events .hp-single-event .hp-event-name, #hp-pro-summer .hp-single-event .hp-event-name, #cat-events .hp-single-event .hp-event-name {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.hp-events .hp-single-event .hp-event-name img, #hp-pro-summer .hp-single-event .hp-event-name img, #cat-events .hp-single-event .hp-event-name img {
  max-height: 130px;
}
.hp-events .hp-single-event .hp-event-name .hp-event-title, #hp-pro-summer .hp-single-event .hp-event-name .hp-event-title, #cat-events .hp-single-event .hp-event-name .hp-event-title {
  border-left: 1px solid black;
  padding-left: 1rem;
  margin-top: 1rem;
}
.hp-events .hp-single-event .hp-event-name .hp-event-title p, #hp-pro-summer .hp-single-event .hp-event-name .hp-event-title p, #cat-events .hp-single-event .hp-event-name .hp-event-title p {
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.1;
  margin-bottom: 0;
}
.hp-events .hp-single-event .hp-event-name h3, #hp-pro-summer .hp-single-event .hp-event-name h3, #cat-events .hp-single-event .hp-event-name h3 {
  margin-bottom: 0;
  line-height: 1;
}
.hp-events .owl-nav, #hp-pro-summer .owl-nav, #cat-events .owl-nav {
  position: absolute;
  top: -11rem;
  width: 100%;
}
.hp-events .owl-nav .owl-prev, #hp-pro-summer .owl-nav .owl-prev, #cat-events .owl-nav .owl-prev {
  left: 0;
  position: absolute;
  transform: scale(-1);
}
.hp-events .owl-nav .owl-next, #hp-pro-summer .owl-nav .owl-next, #cat-events .owl-nav .owl-next {
  right: 0;
  position: absolute;
  transform: scale(-1);
}

.video-background {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.vimeo-wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.vimeo-wrapper iframe {
  width: 100vw;
  height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.expand-video .popup-vimeo svg .st1 {
  fill: #008cff !important;
}
.expand-video:hover svg .st1 {
  fill: #ccb3c8 !important;
}

#hp-vid {
  max-width: 100%;
}

.event-page .video-container {
  margin-top: 2rem;
}

.video-container {
  position: relative;
  top: 0;
}
.video-container video {
  -o-object-fit: cover;
     object-fit: cover;
}
.video-container .overlay {
  background: rgb(13, 16, 14);
  background: linear-gradient(180deg, rgba(13, 16, 14, 0.5) 0%, rgba(13, 16, 14, 0) 100%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.video-container .expand-video {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 85%;
  top: 85%;
  z-index: 999;
}
.video-container .expand-video circle {
  transition: all ease 0.3s;
  fill: #ccb3c8;
  stroke: #ccb3c8;
}
.video-container .expand-video:hover svg circle {
  fill: #008cff;
  stroke: #008cff;
}

#top-banner-image {
  background-size: cover !important;
  padding-top: 40%;
  margin-top: 2rem;
}

.page-template-home .header {
  position: absolute;
  width: 100%;
  z-index: 999;
  /*
  		.site-title {
  			position: absolute;
  			top: 0;
  			width: 100%;
  			height: 100vh;
  			display: flex;
  			justify-content: center;
  			align-items: center;
  			svg {
  				-webkit-filter: drop-shadow( 3px 3px 5px rgba(0, 0, 0, .5));
  				filter: drop-shadow( 3px 3px 5px rgba(0, 0, 0, .5));
  			}

  		}
  */
}
.page-template-home #main-menu {
  display: none;
}
.page-template-home #hp-message {
  text-align: center;
  font-size: 3rem;
  line-height: 1.1;
  color: #008cff;
  padding: 60px 0;
  background: #000;
}
.page-template-home #hp-about {
  color: #fff;
  padding: 200px 0 0;
}
.page-template-home #hp-about .container {
  border-bottom: 1px solid white;
  padding-bottom: 5rem;
}
.page-template-home #hp-about .sdc-image {
  padding-top: 100%;
  border-radius: 50%;
  background-size: cover !important;
}
.page-template-home #hp-about .about-image {
  padding-right: 50px;
}
.page-template-home #hp-about .hp-about-text {
  line-height: 1.8;
}
.page-template-home #hp-about h2 {
  color: #ccb3c8;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 3rem;
}
.page-template-home #hp-about .sponsors ul {
  display: flex;
  padding: 2rem 0;
  margin: 0;
  list-style: none;
  align-items: center;
}
.page-template-home #hp-about .sponsors ul li {
  margin: 0 20px;
}

/*---------------------------------- Event Page ---------------------------------------*/
#event-top {
  position: relative;
  top: 0;
  z-index: -1;
  max-width: 100%;
  background-size: cover !important;
  padding-top: 40%;
  margin-top: 2rem;
}
#event-top h1 {
  font-size: 4rem;
  line-height: 1.2;
}
#event-top h1 .title-logo {
  width: 90px;
  max-width: 90px;
  margin-top: 0;
}
#event-top .overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#event-top .event-title {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  color: #ccb3c8;
}
#event-top .event-title h1 {
  color: #008cff;
}
#event-top .event-title h1 span {
  color: #ccb3c8;
}
#event-top img {
  height: auto;
}
#event-top .event-info {
  position: absolute;
  top: 40%;
  width: 100%;
}

.video-container h1 {
  font-size: 4rem;
  line-height: 1.2;
}
.video-container h1 > span {
  display: inline-block;
}
.video-container h1 .title-logo {
  width: 90px;
  max-width: 90px;
  margin-top: 0;
}
.video-container .overlay {
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.video-container .event-title {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  color: #ccb3c8;
}
.video-container .event-title h1 {
  color: #008cff;
}
.video-container .event-title h1 span {
  color: #ccb3c8;
}
.video-container img {
  height: auto;
}
.video-container .event-info {
  position: absolute;
  top: 40%;
  width: 100%;
}

p.premiere {
  display: inline-block;
  border-top: 1px solid #ccb3c8;
  border-bottom: 1px solid #ccb3c8;
  padding: 0.7rem 0 0.5rem 0;
  font-size: 1.5rem;
  margin-top: -10px;
}

.left-border {
  border-right: 1px solid black;
}

.mfp-wrap {
  z-index: 999999999 !important;
}

.bottom-border {
  border-bottom: 2px solid #ccb3c8;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
}

#event-main {
  padding-top: 150px;
  position: relative;
}
#event-main .event-time {
  padding-top: 1rem;
}
#event-main p.premiere {
  margin-top: 0;
}
#event-main #watch-trailer {
  position: absolute;
  top: -50px;
  left: -20px;
  display: inline-block;
  color: #FFEA3D;
  border: 1px solid #FFEA3D;
  padding: 6px 20px 6px 40px;
  z-index: 99999;
  font-size: 1.2rem;
  transition: all ease 0.3s;
  font-weight: 500;
}
#event-main #watch-trailer a {
  text-decoration: none;
}
#event-main #watch-trailer:hover {
  padding-left: 60px;
  transition: all ease 0.3s;
}
#event-main #event-details h2 {
  font-size: 4rem;
  line-height: 1.2;
  padding-right: 2rem;
}
#event-main #event-details .event-date-time {
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
#event-main #event-details .event-date-time .event-date {
  font-size: 4rem;
  line-height: 1;
}
#event-main #event-details .event-date-time .event-time {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 1rem;
}
#event-main #event-details .event-available {
  padding: 0.5rem 1rem;
}
#event-main #event-details .multiple-artists {
  margin-bottom: 3rem;
}
#event-main #event-gallery {
  margin-top: 5rem;
}
#event-main .owl-image-wrapper {
  height: 600px;
  background-size: cover !important;
}
#event-main .owl-nav {
  position: absolute;
  top: calc(50% - 44px);
  width: 100%;
}
#event-main .owl-nav button {
  position: absolute;
}
#event-main .owl-nav .owl-prev {
  left: 1%;
  transform: scale(-1);
}
#event-main .owl-nav .owl-next {
  right: 1%;
  transform: scale(-1);
}
#event-main .owl-dots {
  text-align: center;
  margin-top: 3rem;
}
#event-main .owl-dots .owl-dot {
  margin: 0 4px;
}
#event-main .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  border: 1px solid black;
  border-radius: 50%;
  display: inline-block;
}
#event-main .owl-dots .owl-dot.active span {
  background: black;
}

#event-order {
  background: #000;
  height: 60px;
}
#event-order .container {
  display: flex;
  align-items: flex-start;
}
#event-order a.order-button {
  border-left: 1px solid #008cff;
  border-right: 1px solid #008cff;
  border-bottom: 1px solid #008cff;
  background: #008cff;
  color: #000;
  font-size: 1.5rem;
  line-height: 1;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  transition: all ease 0.3s;
}
#event-order a.order-button:hover {
  padding-top: 30px;
  transition: all ease 0.3s;
}
#event-order a:nth-of-type(3) {
  margin: 0 !important;
}
#event-order a.popup-vimeo {
  border-left: 1px solid #008cff;
  border-right: 1px solid #008cff;
  border-bottom: 1px solid #008cff;
  color: #008cff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  transition: all ease 0.3s;
  margin: 0 20px;
}
#event-order a.popup-vimeo:hover {
  padding-top: 30px;
  transition: all ease 0.3s;
}

#event-credits {
  background: #ccb3c8;
  margin-top: 60px;
  line-height: 1.2;
  padding: 60px 0;
}
#event-credits p {
  margin-bottom: 1rem;
}
#event-credits h2 {
  font-size: 3rem;
  line-height: 3rem;
  padding-left: 2rem;
}
#event-credits .credits .row {
  margin-bottom: 1rem;
}
#event-credits .credit-sub-title {
  font-size: 1.7rem;
  font-weight: 500;
  margin-top: 20px;
}
#event-credits .more-content {
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 120px;
}
#event-credits .more-content h4 {
  font-weight: 500;
  font-size: 1.7rem;
  color: black;
}
#event-credits .acum span {
  font-weight: 300;
  padding: 10px 0 0 10px;
  display: inline-block;
}
#event-credits .acum img {
  vertical-align: top;
}

#event-supporters {
  padding: 50px 0 30px;
}
#event-supporters .event-logos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#event-supporters .event-logos img {
  height: auto;
  max-width: 150px;
  max-height: 100px;
  margin: 0 10px 20px 10px;
  align-self: center;
}

/*---------------------------------- Events schedule ---------------------------------------*/
.schedule .table-top {
  border-bottom: 1px solid #757373;
  padding-bottom: 10px;
  color: black;
}
.schedule .table-top span {
  padding-left: 20px;
}
.schedule .events-list a {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.1;
  padding: 20px 0;
  display: block;
  color: black;
  transition: all ease 0.3s;
}
.schedule .events-list a span {
  padding-left: 20px;
  display: inline-block;
}
.schedule .events-list a:hover {
  text-decoration: none;
  background: #008cff !important;
  color: black;
  transition: all ease 0.3s;
}
.schedule .events-list a:nth-child(even) {
  background: #181808;
}

.events-page #schedule-top {
  padding: 5rem 0 3rem;
}
.events-page #schedule-top h1 {
  font-size: 6rem;
  max-width: 600px;
  line-height: 1;
  color: #ccb3c8;
}
.events-page .events-single-day {
  padding-top: 4rem;
  font-size: 2.2rem;
}
.events-page .events-single-day::after {
  content: "";
  border-bottom: 2px solid #ccb3c8;
  width: calc(100% - 30px);
  display: inline-block;
  transform: translateX(15px);
}
.events-page .events-single-day .event-date h2 {
  font-size: 4rem;
  line-height: 1;
}
.events-page .events-single-day .single-event {
  margin-bottom: 6rem;
}
.events-page .events-single-day .single-event h3 span {
  font-family: "edgy";
}
.events-page .events-single-day .single-event .event-time {
  margin-bottom: 0;
}
.events-page .events-single-day .single-event .event-more {
  margin: 4rem 0 2rem;
}
.events-page .events-single-day .single-event .event-details {
  font-size: 1.7rem;
}
.events-page .events-single-day .single-event p.premiere {
  display: inline-block;
  border-top: 1px solid #ccb3c8;
  border-bottom: 1px solid #ccb3c8;
  padding: 0.7rem 0 0.5rem 0;
  font-size: 1.5rem;
  margin-top: -10px;
}

/*---------------------------------- Stream page ---------------------------------------*/
.stream #stream-actions {
  border-bottom: 1px solid #008cff;
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}
.stream #stream-actions .popup-vimeo {
  border: 1px solid #008cff;
  padding: 10px 20px;
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
}
.stream #stream-actions .popup-vimeo:hover {
  text-decoration: none;
  background: #008cff;
  color: #000;
  transition: all ease 0.3s;
}
.stream #claps {
  cursor: pointer;
}
.stream #claps #clapping-hands {
  display: inline-block;
  height: 100px;
  width: 100px;
}
.stream #claps p {
  color: #008cff;
  font-size: 1.2rem;
}
.stream #show-comment {
  margin-top: 100px;
}
.stream #show-comment h3 {
  text-align: center;
  color: black;
  margin-bottom: 2rem;
  font-size: 2rem;
}
.stream #show-comment label {
  width: 100%;
  font-weight: 300;
}
.stream #show-comment textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #7c7c7c;
  padding: 20px;
  color: black;
  font-weight: 300;
}
.stream #show-comment input[type=submit] {
  background: transparent;
  border: 1px solid black;
  color: black;
  font-size: 1.5rem;
  padding: 8px 30px;
  border-radius: 0;
  transition: all ease 0.3s;
}
.stream #show-comment input[type=submit]:hover {
  background: black;
  color: #008cff;
  transition: all ease 0.3s;
}
.stream .stream-support {
  color: #fff;
}
.stream p.donation {
  display: flex;
  align-items: center;
}
.stream p.donation .currency-input {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  padding: 4px 10px;
}
.stream p.donation input[type=number] {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  padding: 0 5px;
  color: #fff;
  font-weight: 300;
  max-width: 130px;
}
.stream p.donation input[type=number]:focus {
  outline: none;
}
.stream p.donation button {
  border: 1px solid #008cff;
  color: #008cff;
  background: transparent;
  font-size: 1.5rem;
  padding: 10px;
}
.stream #stream-error {
  color: red;
}

/*---------------------------------- Press ---------------------------------------*/
.press .press-item {
  margin-bottom: 5rem;
}
.press .press-item h2 {
  font-size: 1.2rem;
  line-height: 1.2;
  color: #008cff;
}
.press .press-item p {
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.press .press-item .press-logo-holder {
  width: 100%;
  border-radius: 50%;
  padding-top: 100%;
  background-size: cover !important;
}
.press .press-item .press-more {
  display: flex;
  padding-bottom: 8px;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 30%;
  margin-top: 1rem;
}
.press .press-item .press-more button {
  border: 1px solid #008cff;
  color: #008cff;
  background: transparent;
  font-weight: 300;
  padding: 6px 10px;
  font-size: 1.3rem;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: inline-block;
  outline: none;
}
.press .press-item .press-more button:after {
  background-color: #008cff;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s all ease-out;
  z-index: -1;
}
.press .press-item .press-more button:hover {
  color: #000;
  transition: all ease 0.2s;
}
.press .press-item .press-more button:hover::after {
  transform: translate(0, 0);
}

/*---------------------------------- Store ---------------------------------------*/
.store #store-top {
  background: url(../../images/store_top.jpg) center center no-repeat;
  height: 300px;
  position: relative;
  top: 0;
  width: 100%;
  text-align: center;
}
.store #store-top .overlay {
  background: rgb(13, 16, 14);
  background: linear-gradient(180deg, rgba(13, 16, 14, 0.5) 0%, rgba(13, 16, 14, 0) 100%);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.store #store-top .store-title {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: flex-end;
}
.store #store-top .store-title h1 {
  color: #008cff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 3rem;
}
.store #store-top .store-title h1 span {
  color: #fff;
  font-size: 2rem;
}
.store #store-top .store-title h1 span:nth-of-type(2) {
  color: #008cff;
}
.store #store-main {
  background: #000;
  padding: 100px 0;
  color: #fff;
}
.store #order-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}
.store #order-form .form-row input {
  border: 1px solid #fff;
  background: transparent;
  font-size: 1.2rem;
  padding: 6px 10px;
  color: #fff;
  font-weight: 300;
  width: 90%;
}
.store #order-form ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}
.store #order-form ul li {
  color: #AAAAAA;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 80px;
}
.store #order-form ul li input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.store #order-form ul li label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.2em;
  line-height: 1.2;
  padding: 25px 25px 25px 40px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
}
.store #order-form ul li .check {
  display: block;
  position: absolute;
  border: 3px solid #AAAAAA;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 34px;
  left: 0;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}
.store #order-form ul li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 13px;
  width: 13px;
  top: 3px;
  left: 3px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.store #order-form ul li input[type=radio]:checked ~ .check {
  border: 3px solid #008cff;
}
.store #order-form ul li input[type=radio]:checked ~ .check::before {
  background: #008cff;
}
.store #order-form ul li input[type=radio]:checked ~ label {
  color: #008cff;
}
.store #order-form ul li:hover .check {
  border: 3px solid #FFFFFF;
}
.store #order-form ul li:hover label {
  color: #FFFFFF;
}
.store #order-form .form-section {
  padding-bottom: 2rem 0;
  margin-bottom: 2rem;
}
.store #order-form .form-section h2 {
  background: #008cff;
  color: #000;
  padding: 2px 20px;
  margin-bottom: 1rem;
}
.store #order-form .form-section h3 {
  font-weight: 300;
}
.store #order-form .form-section.total p {
  border-bottom: 1px solid #008cff;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
}
.store #order-form p.donation {
  display: flex;
  align-items: center;
}
.store #order-form p.donation .currency-input {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  padding: 4px 10px;
}
.store #order-form p.donation input[type=number] {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  padding: 0 5px;
  color: #fff;
  font-weight: 300;
  max-width: 130px;
}
.store #order-form p.donation input[type=number]:focus {
  outline: none;
}
.store #order-form p.donation button {
  border: 1px solid #008cff;
  color: #008cff;
  background: transparent;
  font-size: 1.5rem;
  padding: 10px;
}
.store #order-form .form-submit {
  text-align: center;
}
.store #order-form .form-submit input {
  border: 1px solid #008cff;
  padding: 10px 30px;
  color: #008cff;
  font-size: 1.5rem;
  background: transparent;
}
.store #order-form .form-error {
  margin-bottom: 2rem;
  color: red;
  font-size: 1.5rem;
  font-weight: 500;
}
.store #order-form #order-more-shows {
  display: none;
  border-top: 1px solid #008cff;
  padding-top: 30px;
}
.store #order-form #order-more-shows h3 {
  color: #008cff;
  font-weight: 500;
}
.store #order-form #order-more-shows ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.store #order-form #order-more-shows li {
  position: static;
  float: none;
  height: auto;
}
.store #order-form #order-more-shows .styled-checkbox {
  position: absolute;
  opacity: 0;
}
.store #order-form #order-more-shows .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0 !important;
}
.store #order-form #order-more-shows .styled-checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #ccb3c8;
}
.store #order-form #order-more-shows .styled-checkbox:hover + label:before {
  background: #008cff;
  transition: all ease 0.2s;
}
.store #order-form #order-more-shows .styled-checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.store #order-form #order-more-shows .styled-checkbox:checked + label {
  color: #008cff;
}
.store #order-form #order-more-shows .styled-checkbox:checked + label:before {
  background: #008cff;
}
.store #order-form #order-more-shows .styled-checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: #000;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 #000, 4px 0 0 #000, 4px -2px 0 #000, 4px -4px 0 #000, 4px -6px 0 #000, 4px -8px 0 #000;
  transform: rotate(45deg);
}
.store #order-form .gift-intro {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}
.store #order-form.gift-form .form-row {
  margin-bottom: 2rem;
}
.store #order-form.gift-form textarea {
  width: 100%;
  min-height: 100px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  font-weight: 300;
}

.my-page .table-top {
  margin-top: 3rem;
}

.support-intro {
  font-size: 1.8rem;
  line-height: 1.2;
  color: #008cff;
  margin-bottom: 3rem;
}

#support-repeater .row {
  margin-bottom: 3rem;
  line-height: 1.1;
}
#support-repeater .row h3 {
  color: #008cff;
  font-size: 1.8rem;
}
#support-repeater .row .support-item-main {
  border-left: 1px solid #008cff;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.2;
}
#support-repeater .row .support-item-main a {
  display: inline-block;
  border: 1px solid #008cff;
  padding: 5px 10px;
  transition: all ease 0.2s;
}
#support-repeater .row .support-item-main a:hover {
  text-decoration: none;
  background: #008cff;
  color: #000;
  transition: all ease 0.2s;
}
#support-repeater .row .support-item-icon {
  text-align: center;
}

/*---------------------------------- About ---------------------------------------*/
.page-title {
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.page-title h1 {
  font-size: 6rem;
  line-height: 1.2;
  color: #ccb3c8;
}

.about-page h2 {
  font-size: 4rem;
  line-height: 1.2;
}
.about-page #about-festival {
  padding: 2rem 0 0;
}
.about-page .team-list {
  margin-top: 3rem;
}
.about-page .team-list .team-member {
  margin-bottom: 2rem;
}
.about-page #about-directors {
  margin-top: 5rem;
}
.about-page #about-directors p {
  font-size: 1.8rem;
}
.about-page #about-directors .row .single-director:first-child {
  padding-right: 4rem;
}
.about-page #about-directors .row .single-director:nth-child(2) {
  padding-left: 4rem;
}
.about-page #about-support img {
  max-height: 120px;
  max-width: 120px;
  margin: 10px;
  align-self: center;
}

.page-template-performance_cat {
  background: black;
  color: white;
}
.page-template-performance_cat a {
  color: white;
}
.page-template-performance_cat .hp-single-event {
  margin-bottom: 5rem;
}
.page-template-performance_cat .video-container .expand-video {
  right: 85%;
  left: initial;
}
.page-template-performance_cat .event-more button {
  background: transparent;
  border: 1px solid #008cff;
  color: #008cff;
}
.page-template-performance_cat .event-more button:hover {
  color: black !important;
}
.page-template-performance_cat .event-more button::after {
  background: #008cff;
}
.page-template-performance_cat .event-dates {
  color: white;
}

/*---------------------------- Soon ------------------------------*/
.page-template-soon {
  background: url(../../images/pink_dots.svg) center top no-repeat black;
  line-height: 0.9;
}
.page-template-soon .tlv-title {
  padding-right: 10rem;
}
.page-template-soon .he {
  line-height: 0.7;
}
.page-template-soon h1 {
  color: #d5d5d5;
}
.page-template-soon .right-col {
  mix-blend-mode: difference;
}
.page-template-soon .left-col {
  mix-blend-mode: difference;
  direction: ltr;
  text-align: left;
  color: #d5d5d5;
  font-family: "edgy";
}
.page-template-soon .left-col .soon-date {
  display: flex;
  align-items: center;
  margin-top: 8.5rem;
}
.page-template-soon .left-col .soon-date span {
  height: 15px;
  width: 200px;
  background: #d5d5d5;
  display: inline-block;
  margin: 0 2rem;
}
.page-template-soon .left-col .logo-year {
  margin-top: 3rem;
}
.page-template-soon .left-col .logo-year img {
  max-width: 230px;
  margin-right: 3rem;
  display: inline-block;
}
.page-template-soon .soon-links {
  margin-top: 10rem;
  color: #008cff;
  mix-blend-mode: difference;
  font-size: 2.4rem;
}
.page-template-soon .soon-links a {
  color: #008cff;
  text-decoration: underline;
}

/*---------------------------- Contact Us ------------------------------*/
#contact-page .contact-form {
  font-size: 2rem;
  margin-top: 5rem;
}
#contact-page .contact-form input, #contact-page .contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid black;
  color: black;
}
#contact-page .contact-form .row {
  margin-bottom: 2rem;
}
#contact-page .contact-form textarea {
  max-height: 100px;
}
#contact-page .contact-form input[type=submit] {
  border: 2px solid black;
  border-radius: 30px;
  padding: 1.5rem 4rem;
}
#contact-page .contact-form .wpcf7-not-valid-tip {
  color: #ffb900;
  font-size: 1.6rem;
  margin-top: 1rem;
}
#contact-page .contact-text {
  line-height: 1.5;
}
#contact-page .footer-socials {
  justify-content: center !important;
  margin: 2rem auto;
}
#contact-page .footer-socials li {
  margin: 0 2rem;
}

/*---------------------------------- Linktree ---------------------------------------*/
.page-template-linktree header, .page-template-linktree footer {
  display: none;
}
.page-template-linktree .top-image {
  width: 200px;
  margin: 0 auto 3rem;
}
.page-template-linktree .top-image .top-image-bg {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-size: cover !important;
}
.page-template-linktree .page-wrap {
  padding: 3rem 0 5rem;
}
.page-template-linktree .page-wrap h1, .page-template-linktree .page-wrap h2 {
  font-size: 3rem;
}
.page-template-linktree .page-wrap p {
  font-size: 2.4rem;
  margin-top: 2rem;
}
.page-template-linktree .page-wrap a {
  color: white;
}
.page-template-linktree .page-wrap a:hover {
  color: white;
  text-decoration: none;
}
.page-template-linktree .page-wrap .linktree-event {
  border: 1px solid white;
  width: 100%;
  border-radius: 30px;
  margin: 2rem 0;
  font-size: 2rem;
  min-height: 50px;
  display: flex;
}
.page-template-linktree .page-wrap .linktree-event .linktree-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: cover !important;
  flex: 0 1 auto;
}
.page-template-linktree .page-wrap .linktree-event .linktree-title {
  flex: 1 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------------------------------- Footer ---------------------------------------*/
.footer {
  color: black;
  background: #008cff;
  padding: 100px 0 30px;
}
.footer svg {
  max-width: 250px;
}
.footer svg path, .footer svg rect {
  fill: black;
}
.footer a {
  color: black;
  text-decoration: none;
}
.footer .footer-shows {
  margin: 0;
  padding: 0;
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-rule: 1px solid #000;
       column-rule: 1px solid #000;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.footer .footer-shows li {
  list-style-type: none;
  margin-bottom: 1rem;
}
.footer .footer-shows li a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
}
.footer .footer-shows li a span {
  font-weight: 500;
}
.footer .footer-shows li a:hover {
  text-decoration: none;
}
.footer .footer-links-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1.5rem;
}
.footer a.accessibility {
  margin-top: 50px;
}
.footer a.accessibility:hover {
  text-decoration: underline;
}
.footer .credit {
  margin-top: 50px;
  text-align: right;
  color: black;
  font-weight: 300;
  font-size: 1.6rem;
}
.footer .credit a {
  font-weight: 500;
  color: black;
}
.footer .footer-show-list {
  border-left: 2px solid #000;
}
.footer .footer-show-list a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #000;
  text-decoration: none;
}
.footer .footer-show-list a .title {
  flex: 0 0 50%;
  padding: 5px;
  max-width: 50%;
}
.footer .footer-show-list a .time {
  flex: 0 0 50%;
  padding: 5px;
  max-width: 50%;
}
.footer a.support-button {
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  padding: 8px 20px;
  display: inline-block;
  margin-top: 1rem;
  transition: all ease 0.2s;
}
.footer a.support-button:hover {
  background: #000;
  color: #008cff;
  transition: all ease 0.2s;
}

.footer-socials {
  margin: 5rem 0 0;
  padding: 0;
  max-width: 250px;
  list-style: none;
  display: flex !important;
  justify-content: space-between;
}
.footer-socials li a {
  height: 22px;
  display: inline-block;
}
.footer-socials li a svg {
  height: 40px;
  width: auto;
}
.footer-socials svg {
  max-width: 250px;
}
.footer-socials svg path, .footer-socials svg rect {
  fill: #ccb3c8;
}
.footer-socials svg .st0 {
  stroke: #ccb3c8;
}

body.page-template-order-gift #order-form .form-error {
  font-size: 1.2rem;
  line-height: 1.1;
}

.postid-6299 h1 {
  font-feature-settings: "ss01" 1, "ss02" 1;
}

.page-template-schedule span {
  font-feature-settings: "ss01" 1, "ss02" 1;
}

@media (min-aspect-ratio: 16/9) {
  .video-foreground {
    height: 300%;
    top: -100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video-foreground {
    width: 300%;
    left: -100%;
  }
}
body.page-template-blockscreen #block-video {
  width: 100vw;
  height: 100vh;
  position: relative;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
body.page-template-blockscreen #block-video video {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}
body.page-template-blockscreen #block-video #unmute {
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
}
body.page-template-blockscreen #block-video #unmute svg {
  max-width: 100%;
}
body.page-template-blockscreen #block-video #unmute span {
  height: 100%;
  width: 3px;
  transform: rotate(45deg);
  background: white;
  display: none;
  position: absolute;
}
body.page-template-blockscreen #block-video #unmute span.mute {
  display: inline-block;
}
body.page-template-blockscreen #acwp-toolbar-btn-wrap, body.page-template-blockscreen #acwp-toolbar {
  display: none;
}

/* Edit Above Only*/
.single-events .site_logo svg, .page-template-schedule .site_logo svg, .page-template-contact .site_logo svg {
  min-width: 200px;
}

.mobile_menu_button {
  position: relative;
  padding: 0 20px;
}

.triggerMobileMenu {
  position: relative;
  width: 40px;
  height: 28px;
  padding: 0;
  border: 0;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}

.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #ccb3c8;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}

.triggerMobileMenu span:nth-child(2) {
  top: 11px;
}

.triggerMobileMenu span:nth-child(3) {
  top: 22px;
}

.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}

.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: transparent;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.off-canvas.is-open {
  z-index: 9999999;
  background: transparent;
  transform: translate(0);
}

.position-left {
  transform: translateX(-100%);
  left: 0;
}

.position-right {
  transform: translateX(100%);
  right: 0;
}

.position-top {
  transform: translateY(-100%);
  right: 0;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
  width: 500px;
  max-width: 100%;
  background: #008cff;
  padding: 50px 20px;
}

.mobile_menu_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  padding: 10px 0;
  background: #008cff;
  border-bottom: 1px solid #008cff;
  font-weight: 500;
  color: #fff;
}

ul#mobile-menu {
  margin-top: 30px;
  margin-left: 0;
  padding-left: 0;
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0;
  font-family: "edgy";
  color: black;
}
ul#mobile-menu > li:nth-child(2) > a {
  cursor: default;
}

ul#mobile-menu li {
  position: relative;
  display: block;
  border-bottom: 1px solid black;
}
ul#mobile-menu li:hover a {
  transform: translateX(1.5rem);
}
ul#mobile-menu li .sub-menu li {
  border: none;
  margin-top: 2rem;
}
ul#mobile-menu li.menu-item-has-children:hover a {
  transform: none;
}

ul#mobile-menu > li {
  padding: 2rem 0;
}
ul#mobile-menu > li > a {
  font-size: 2rem !important;
}

ul#mobile-menu li a {
  position: relative;
  display: block;
  font-size: 1rem;
  font-size: 2rem;
  text-decoration: none;
  color: black;
  transition: all ease-out 0.5s;
  color: black;
}

ul#mobile-menu ul.sub-menu {
  position: relative;
  display: none;
  padding: 0;
}
ul#mobile-menu ul.sub-menu li {
  transition: all ease 0.3s;
}
ul#mobile-menu ul.sub-menu li:hover {
  padding-left: 1rem;
  transition: all ease 0.3s;
}

ul#mobile-menu ul.sub-menu li a {
  font-size: 2rem;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1440px) {
  .hp-details h3, .hp-details p {
    font-size: 1.8rem;
  }
  .hp-details h3 {
    margin-bottom: 1rem;
  }
  .hp-details p {
    margin-bottom: 2rem !important;
  }
  .hp-details .text22 {
    font-size: 2rem;
  }
  .hp-details .event-more button {
    padding: 1.5rem 1.5rem;
  }
  .page-template-soon main {
    font-size: 2rem;
  }
  .page-template-soon main .nextyear-right {
    position: absolute;
    top: 0;
    right: 0;
  }
  .page-template-soon main .nextyear-left {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-template-soon main img {
    max-height: 80%;
  }
  .page-template-soon main h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
  }
  .page-template-soon main h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 1200px) {
  .page-template-home .homepage .hp-shows .hp-single-show {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mobile_menu_button {
    padding: 0 20px 0 0;
  }
  .big-text {
    font-size: 9rem !important;
  }
}
/* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 991px) {
  .logo img, .logo svg {
    width: 170px;
  }
  header {
    padding-top: 30px;
  }
  #event-top > img {
    height: 500px !important;
    width: auto;
    max-width: none;
    margin-left: -50%;
  }
  #event-top {
    min-height: 500px;
  }
  #event-top .event-info .event-title {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #event-top .event-info .event-title img {
    max-height: 100px;
    margin-bottom: 20px;
  }
  #event-main #watch-trailer {
    top: 50px !important;
  }
  .page-template-home .video-container {
    padding-top: 130px;
  }
  #acwp-toolbar-btn {
    top: 110px !important;
  }
  .stream #stream-actions {
    flex-wrap: wrap;
  }
  .stream #stream-actions .popup-vimeo {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stream #claps {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stream .stream-support {
    margin-top: 30px;
  }
  #store-main iframe {
    height: 500px;
  }
}
@media only screen and (max-width: 768px) {
  .text-2-col {
    -moz-column-count: 1;
         column-count: 1;
  }
  .mobile_menu_button {
    display: block;
  }
  .events-page #schedule-top h1 {
    padding: 0;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .left-border {
    border: none !important;
  }
  .page-template-home .homepage .hp-shows .hp-single-show {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-template-home #hp-about .about-image {
    margin-bottom: 50px;
  }
  #event-main .owl-image-wrapper {
    height: 480px;
  }
  #event-top h1 {
    line-height: 1;
  }
  .footer .footer-show-list {
    margin-top: 2rem;
    border: none;
  }
  #store-main iframe {
    height: 400px;
  }
  .events-page .events-single-day .event-date {
    padding: 0 15px !important;
  }
  #about-directors .row .single-director {
    padding: 0 15px !important;
  }
  .page-template-soon main img {
    display: none;
  }
  .page-template-soon main img.mobile {
    display: block;
    max-height: 80%;
  }
  .page-template-performance_cat .hp-single-event::after {
    content: "";
    border-bottom: 1px solid #ccb3c8;
    width: 100%;
    display: inline-block;
  }
  .bottom-border {
    border: none;
  }
  .bottom-border::after {
    content: "";
    border-bottom: 2px solid #ccb3c8;
    width: calc(100% - 30px);
    display: inline-block;
    transform: translateX(15px);
  }
}
/* end of (max-width: 768px) */
@media only screen and (max-width: 576px) {
  header.has-video {
    position: initial;
  }
  .bottom-border {
    padding-bottom: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .events-page #schedule-top {
    padding: 4rem 0 0;
  }
  #hp-events, #hp-pro-summer {
    margin-top: 0 !important;
  }
  .page-template-home .header {
    position: initial;
  }
  .vimeo-wrapper {
    height: 70vw;
    top: 20px;
  }
  .vimeo-wrapper iframe {
    min-height: 0;
    min-width: 0;
  }
  .vimeo-wrapper .overlay {
    display: none;
  }
  .footer {
    padding: 3rem 0;
  }
  .footer-info {
    margin-top: 30px;
    padding: 0 !important;
  }
  #event-top > img {
    margin-left: -70%;
  }
  #event-main .event-date {
    font-size: 3rem !important;
  }
  #event-main .event-time {
    font-size: 2rem !important;
  }
  .footer .footer-logo,
  .footer .footer-info {
    text-align: center;
    border: none !important;
    padding: 0;
  }
  .footer .footer-logo > svg {
    width: 200px;
  }
  .footer .footer-socials {
    justify-content: space-between;
    max-width: 250px;
    margin: 5rem auto 3rem;
  }
  .schedule .table-top span {
    padding-left: 10px;
  }
  .schedule .events-list a {
    font-size: 1rem;
  }
  .schedule .events-list a span {
    padding-right: 10px;
    display: inline-block;
  }
  #support-repeater .row h3 {
    font-size: 1.5rem;
  }
  #support-repeater .row .support-item-main {
    border-right: none;
    font-size: 1.1rem;
  }
  #support-repeater .row .support-item-icon {
    text-align: right;
  }
  #event-order a.order-button,
  #event-order a.popup-vimeo {
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 10px;
    padding: 10px;
  }
  #event-top .event-info .event-title h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  #store-main iframe {
    height: 300px;
  }
  .page-template-soon main {
    padding: 1.5rem;
  }
  .page-template-soon main h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
  }
  .page-template-soon main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }
  .big-text {
    font-size: 6rem !important;
  }
  .page-template-soon .soon-links {
    font-size: 1.8rem;
  }
}
/****************************************************************************************************************/
/* end of (max-width: 640px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  #mobile-video {
    display: block;
  }
  #desktop-video {
    display: none;
  }
  #hp-events .hp-single-event a .event-image, #hp-pro-summer .hp-single-event a .event-image .hp-single-event a .event-image {
    height: 300px;
  }
  .logo img, .logo svg {
    width: 140px;
    min-width: 0 !important;
  }
  header.has-video {
    position: absolute;
  }
  #event-top .event-title {
    top: 100%;
    height: auto;
    margin-top: 2rem;
  }
  #event-top .event-title h1 {
    color: black;
    font-size: 2rem;
  }
  #event-top .event-title h1 span {
    font-size: 3rem;
    line-height: 1.5;
  }
  .vimeo-wrapper {
    top: initial;
    height: 65vh;
    overflow: visible;
  }
  .vimeo-wrapper iframe {
    min-height: 100%;
    width: 250vw;
  }
  .vimeo-wrapper .expand-video {
    bottom: 20px;
    top: auto;
    width: 40px;
    height: 40px;
  }
  .vimeo-wrapper .expand-video svg {
    max-width: 100%;
    max-height: 100%;
  }
  .vimeo-wrapper.has-mobile {
    height: 100vh;
    top: 0;
  }
  .vimeo-wrapper.has-mobile iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .vimeo-wrapper.has-mobile .overlay {
    display: block;
  }
  .vimeo-wrapper .event-title {
    top: 100%;
    height: auto;
    margin-top: 3rem;
  }
  .page-title {
    padding: 3rem 15px 0;
  }
  .page-title h1 {
    font-size: 4rem;
  }
  #event-main {
    padding-top: 200px;
  }
  #event-main .owl-image-wrapper {
    height: 320px;
  }
  #event-main #event-details .text22 {
    font-size: 2rem !important;
  }
  #event-supporters .event-logos img {
    max-width: 100px;
  }
  .store #order-form p.donation input[type=number] {
    max-width: 110px;
  }
  .footer .footer-logo > svg {
    width: 170px;
  }
  #soon_video_mobile {
    display: block;
  }
  #soon_video_desktop {
    display: none;
  }
  #soon-stamp {
    top: 20px !important;
    left: calc(50% - 90px) !important;
  }
  #soon-stamp img {
    width: 180px;
  }
  .event-buy .text-right {
    text-align: initial !important;
  }
  .events-page #schedule-top h1 {
    font-size: 5rem;
  }
  .events-page .events-single-day .event-date {
    margin-bottom: 3rem;
  }
  .events-page .events-single-day .single-event .event-more {
    margin-top: 2rem;
  }
  .events-page .events-single-day .single-event .event-duration, .events-page .events-single-day .single-event .event-location {
    font-size: 1.8rem;
  }
  .events-page .events-single-day .single-event .event-duration {
    margin-bottom: 0;
    margin-top: 1rem;
  }
  #event-top h1 {
    font-size: 3rem;
  }
  #about-support img {
    max-width: 24%;
    margin: 10px 4%;
  }
  #top-banner-image {
    padding-top: 60%;
  }
  .page-template-linktree .page-wrap h1, .page-template-linktree .page-wrap h2 {
    font-size: 2.5rem;
  }
  .page-template-linktree .page-wrap p {
    font-size: 2.2rem;
  }
  .page-template-linktree .page-wrap .linktree-event {
    font-size: 1.8rem;
  }
  .video-container h1 {
    font-size: 2rem;
    color: black !important;
  }
  .video-container h1 > span {
    padding-bottom: 0;
    margin-bottom: 0;
    color: #ccb3c8 !important;
    font-size: 3rem !important;
  }
  .video-container .text18 {
    font-size: 1.4rem;
  }
  .page-template-soon main {
    font-size: 1.8rem;
  }
  .page-template-soon main .main-content {
    margin-top: -3rem;
  }
  .page-template-soon main h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2rem;
  }
  .page-template-soon main h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  .page-template-soon main h2 span {
    display: block;
  }
  .page-template-soon main h2 span.dot {
    display: none;
  }
  .page-template-soon .left-col .logo-year img {
    max-width: 150px;
  }
  #event-top {
    min-height: 360px;
  }
}
/* end of (max-width: 480px) */
/****************************************************************************************************************/
/* end of (max-width: 320px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */