@font-face {
  font-family: Inter;
  src: url(fonts/Inter-Regular.ttf);
  font-weight: 400;
}
@font-face {
  font-family: Inter;
  src: url(fonts/Inter-ExtraLight.ttf);
  font-weight: 100;
}
@keyframes glow {
  from {
    box-shadow: 0 0 0 var(--glow);
  }
  to {
    box-shadow: 0 0 20px var(--glow);
  }
}
:root {
  --blue: #2962ff;
  --gray: #5f6368;
  --light-gray: #f2f1ee;
  --dark-gray: #cdcdcd;
  --vh: 1vh;
  --glow: white;
  font-family: "Inter";
  font-weight: normal;
  color: white;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100vw;
  overflow: hidden;
  font-family: "Inter", sans-serif;
  background-color: black;
  background-color: #00b6ff;
  background-image: url("BG.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: bottom;
  transition: background-color 1s;
}

#wrapper {
  width: 100vw;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin: 0 auto;
  transition: filter 0.5s;
}
#wrapper .column {
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  width: calc(50vw - 30px);
  max-width: calc(80vh - 20px);
  min-width: calc(30vw - 30px);
  position: relative;
}
#wrapper .column section {
  width: 100%;
  position: relative;
}
#wrapper .column section .item {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0;
  max-height: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.1s;
  box-sizing: border-box;
  background-color: gray;
}
#wrapper .column section .item img {
  width: 100%;
  display: block;
  height: 40px;
  max-height: 80vh;
  transition: height 0.2s;
}
#wrapper .column section .item .content {
  display: none;
  position: relative;
  height: 40px;
  width: 100%;
  font-size: 8px;
  transition: font-size 0.2s;
  padding: 0 20px;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  border-bottom: red thin;
}
#wrapper .column section .item .content .prev, #wrapper .column section .item .content .next {
  display: none;
}
#wrapper .column section .item .content p, #wrapper .column section .item .content h3 {
  width: calc(100% - 40px);
  margin: 0;
  padding: 0;
  font-weight: normal;
}
#wrapper .column section .item .artist-image {
  padding: 0;
  display: block;
}
#wrapper .column section .item.open {
  height: calc(100vh - 160px);
  overflow-x: visible;
  background-color: transparent !important;
}
#wrapper .column section .item.open .filler, #wrapper .column section .item.open .content {
  display: block;
  max-height: none;
  height: calc(100vh - 180px);
  box-sizing: border-box;
}
#wrapper .column section .item.open .filler img, #wrapper .column section .item.open .content img {
  width: 100%;
  height: 100%;
  max-height: none;
}
#wrapper .column section .item.open .content {
  padding: 20px;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
  color: black;
}
#wrapper .column section .item.open .content h3 {
  margin: 0 0 10% 0;
  font-size: 2em;
}
#wrapper .column section .item.open .content h3 .act_title {
  color: var(--blue);
}
#wrapper .column section .item.open .content .date, #wrapper .column section .item.open .content .room, #wrapper .column section .item.open .content .meta {
  background-color: white;
  margin: 0 0 10px 0;
  border-radius: 200px;
  border: solid thin;
  color: var(--blue);
  padding: 7px 10px;
  display: inline-block;
}
#wrapper .column section .item.open .content .sim {
  margin: 0 0 10px 0;
  border-radius: 5px;
  padding: 10px 10px;
  border: solid thin var(--dark-gray);
  background-color: var(--light-gray);
}
#wrapper .column section .item.open .content .sim span {
  color: var(--blue);
  text-decoration: underline;
}
#wrapper .column section .item.open .content .sim:hover {
  border: solid thin var(--blue);
  cursor: pointer;
  color: var(--blue);
}
#wrapper .column section .item.open .content .description {
  border: thin solid var(--dark-gray);
  border-radius: 5px;
  padding: 10px 10px;
  background-color: var(--light-gray);
}
#wrapper .column section .item.open .content .description * {
  margin: 0;
}
#wrapper .column section .item.open .content .description p {
  margin-bottom: 10px;
}
#wrapper .column section .item.open .content p {
  margin-bottom: 5px;
  text-indent: 20px;
}
#wrapper .column section .item.open .artist-image.content {
  padding: 0;
  --glow: #bcff00;
  animation-name: glow;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}
#wrapper #columnA .artist {
  background-color: #e6e4de;
  border-bottom: solid thin var(--blue);
}
#wrapper #columnA .artist .content {
  background-color: #e6e4de;
}
#wrapper.gallery {
  background-color: black;
  width: 100vw;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin: 0 auto;
  transition: filter 0.5s;
}
#wrapper.gallery .column {
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  width: calc(50vw - 30px);
  max-width: calc(80vh - 20px);
  min-width: calc(30vw - 30px);
  position: relative;
}
#wrapper.gallery .column section {
  width: 100%;
  position: relative;
}
#wrapper.gallery .column section .item {
  position: relative;
  width: 100%;
  height: 40px;
  margin: 0;
  max-height: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: height 0.1s;
  box-sizing: border-box;
  background-color: unset;
}
#wrapper.gallery .column section .item .content {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  flex-wrap: wrap;
}
#wrapper.gallery .column section .item .content img {
  width: 100%;
  display: block;
  height: 40px;
  max-height: 80vh;
  transition: height 0.2s;
}
#wrapper.gallery .column section .item .content .prev, #wrapper.gallery .column section .item .content .next {
  display: none;
}
#wrapper.gallery .column section .item.open {
  height: calc(100vh - 160px);
  overflow-x: visible;
  background-color: transparent !important;
}
#wrapper.gallery .column section .item.open .content img {
  width: 100%;
  height: auto;
}
#wrapper.gallery .column section .item.open .content .prev, #wrapper.gallery .column section .item.open .content .next {
  display: none;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 33%);
}
#overlay #search {
  position: fixed;
  left: 25vw;
  top: calc(50vh - 30px);
  cursor: pointer;
  transition: top 0.2s, left 0.2s;
}
#overlay #search input[type=text i] {
  width: 50vw;
  min-width: 400px;
  height: 60px;
  display: block;
  border-radius: 30px;
  padding: 5px 20px;
  box-shadow: 0 0 10px black;
  margin: 5px 0 0 0;
  font-size: 46px;
  background: white;
  background-image: url("search.png");
  background-repeat: no-repeat;
  background-size: auto 50%;
  background-position: 97% center;
  border: solid thin;
  color: black;
  --glow: white;
  animation-name: glow;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
  mix-blend-mode: invert;
}
#overlay #search input[type=text i]:hover {
  cursor: pointer;
}
#overlay #search input[type=text i]::placeholder {
  color: inherit;
  font-family: "Inter";
}
#overlay #search input[type=text i]:focus {
  background-color: var(--blue);
  background-image: url("search_w.png");
  color: white;
  cursor: auto;
}
#overlay #search input[type=text i]:focus::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
#overlay #search:hover {
  cursor: pointer;
}
#overlay #search.top {
  top: 15px;
}
#overlay #search.top input[type=text i] {
  cursor: auto;
}
#overlay #results {
  display: none;
  position: fixed;
  left: 20px;
  top: 100px;
  width: calc(100vw - 40px);
  background-color: white;
  border-radius: 8px;
  color: black;
  padding: 10px 0 0 0;
  box-shadow: 0 0 10px black;
  font-size: 0.8em;
  box-sizing: border-box;
  max-height: calc(100vh - 120px);
  transition: background-color 0.5s, height 0.5s;
}
#overlay #results nav {
  height: 20px;
  border-bottom: solid thin lightgray;
  margin-bottom: 20px;
  color: var(--blue);
}
#overlay #results nav ul {
  display: flex;
  justify-content: center;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  gap: 50px;
}
#overlay #results nav ul li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  cursor: pointer;
}
#overlay #results nav ul #program1, #overlay #results nav ul #program2 {
  display: none;
}
#overlay #results nav ul li:hover, #overlay #results nav ul li.underline {
  text-decoration: underline;
}
#overlay #results .block {
  max-height: calc(100vh - 180px);
}
#overlay #results #artists {
  overflow-y: auto;
  max-width: 50vw;
  margin: 0 auto;
}
#overlay #results #artists .result {
  margin-bottom: 40px;
  width: 70%;
}
#overlay #results #artists .result p {
  margin: 0;
  padding: 0;
  display: block;
}
#overlay #results #artists .result p.title {
  font-size: 1.5em;
  border-bottom: solid transparent;
  padding: 0;
  margin: 5px 0;
}
#overlay #results #artists .result p.title b {
  color: var(--blue);
}
#overlay #results #artists .result .description {
  font-size: 1em;
  color: var(--gray);
}
#overlay #results #artists .result:hover {
  cursor: pointer;
}
#overlay #results #artists .result:hover .title, #overlay #results #artists .result:hover b {
  text-decoration: underline;
}
#overlay #results #calendar {
  display: flex;
  width: 100%;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: center;
}
#overlay #results #calendar .day {
  overflow-y: auto;
  position: relative;
  width: calc(50vw - 30px);
  max-width: calc(80vh - 20px);
  min-width: calc(30vw - 30px);
  height: calc(100vh - 180px);
  box-sizing: border-box;
}
#overlay #results #calendar .day h2.cal_title {
  width: 100%;
  text-align: center;
  border-bottom: solid thin;
}
#overlay #results #calendar .day table {
  border-collapse: collapse;
  width: 100%;
  position: relative;
  column-gap: 20px;
  border-radius: 8px;
  padding: 0 2px 0 0;
  color: black;
  table-layout: fixed;
}
#overlay #results #calendar .day table tr {
  width: 100%;
}
#overlay #results #calendar .day table tr th:first-child, #overlay #results #calendar .day table tr td:first-child {
  width: 130px;
}
#overlay #results #calendar .day table tr th {
  text-align: left;
  font-weight: normal;
  color: #333;
  font-size: 0.7em;
  height: 20px;
  width: calc(30% - 33px);
}
#overlay #results #calendar .day table tr th.day_title {
  font-size: 1.9em;
  text-align: left;
}
#overlay #results #calendar .day table tr td, #overlay #results #calendar .day table tr th {
  height: 20px;
  box-sizing: border-box;
}
#overlay #results #calendar .day table tr td.hours {
  font-size: 4.7em;
  font-weight: lighter;
  background-color: transparent !important;
}
#overlay #results #calendar .day table tr td.full {
  padding: 2px 4px;
  border-left: solid thin black;
  cursor: pointer;
  border-bottom: none;
  vertical-align: top;
}
#overlay #results #calendar .day table tr td.full span {
  font-size: 0.7em;
}
#overlay #results #calendar .day table tr td.full hr {
  margin: 5px 0;
  width: 50%;
  border-style: none;
  border-bottom: solid thin black;
}
#overlay #results #calendar .day table tr td.full:hover {
  color: var(--blue);
  border-left: solid thin var(--blue);
}
#overlay #results #calendar .day table tr td.pause {
  height: 20px;
}
#overlay #results #calendar .day table tr td.line {
  border-left: solid thin black;
  cursor: pointer;
  border-bottom: none;
}
#overlay #results #calendar .day table tr td.end {
  vertical-align: bottom;
  border-left: solid thin black;
}
#overlay #results #calendar .day table tr td.empty {
  height: 8px;
  background-color: transparent;
}
#overlay #results #calendar .day table tr td.ongoing {
  background-color: var(--light-gray);
  color: var(--blue);
  border-color: var(--blue);
  border-bottom: solid 8px var(--light-gray);
  font-weight: bold;
}
#overlay #results #calendar .day table tr td.ongoing:hover {
  color: black;
  border-left-color: black;
}
#overlay #results #calendar .day table tr td.legend {
  color: black;
  font-weight: 400;
  vertical-align: top;
  font-size: 0.7em;
  padding: 0 4px;
}
#overlay #results #calendar .day table tr td.legend:hover {
  color: black;
  border-left-color: var(--blue);
}
#overlay #results #calendar .day table tr:nth-child(1) th {
  position: sticky;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.9);
}
#overlay #results .info_block {
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: row dense;
  gap: 20px;
  background-color: var(--light-gray);
  border-radius: 5px;
  padding: 20px;
  max-width: 800px;
  max-height: calc(100vh - 230px);
  overflow-y: auto;
  overflow-x: hidden;
}
#overlay #results .info_block .info p {
  margin: 0;
  padding: 0;
}

@media only screen and (orientation: portrait) {
  #wrapper .column {
    width: calc(100vw - 20px);
    max-width: 90vh;
  }
  #wrapper #columnB {
    display: none;
  }

  #overlay #search {
    left: 5vw;
  }
  #overlay #search input[type=text i] {
    width: 90vw;
    min-width: 0;
  }
  #overlay #results {
    padding: 5px 8px 0 8px;
    width: calc(100vw - 12px);
    left: 6px;
  }
  #overlay #results nav {
    width: 90vw;
    height: 30px;
    font-size: 1.1em;
    margin: 0 auto;
  }
  #overlay #results nav ul {
    gap: 10px;
    align-items: center;
    padding: 0;
    height: 100%;
    justify-content: space-between;
  }
  #overlay #results nav ul #program1, #overlay #results nav ul #program2 {
    display: inline-block;
  }
  #overlay #results nav ul #program {
    display: none;
  }
  #overlay #results #artists {
    max-width: none;
    width: 90vw;
  }
  #overlay #results #artists .result {
    width: 100%;
  }
  #overlay #results #calendar .day {
    width: 100%;
  }
  #overlay #results #calendar .day table tr .hours {
    font-size: 2em;
    width: 50px;
  }
  #overlay #results #calendar #daytwo {
    display: none;
  }
}
@media only screen and (min-width: 700px) {
  #wrapper #columnA .artist .content {
    background-image: none !important;
  }
}
@media only screen and (max-width: 700px) {
  html {
    height: 100%;
  }

  body {
    background-image: none;
    background-color: var(--light-gray);
  }

  #wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  #wrapper .column {
    min-width: auto;
  }
  #wrapper #columnA {
    width: 100%;
  }
  #wrapper #columnA section {
    height: calc(var(--vh) * 100);
  }
  #wrapper #columnA section .item.open {
    height: calc(var(--vh) * 100 - 40px);
  }
  #wrapper #columnA section .item.open .filler, #wrapper #columnA section .item.open .content {
    height: calc(var(--vh) * 100);
  }
  #wrapper #columnA section .item.open .content {
    height: 100%;
    font-size: 0.8em;
    padding: 47px 10px 60px 10px;
    background-size: 100% 100%;
    background-position: center;
  }
  #wrapper #columnA section .item.open .content .prev, #wrapper #columnA section .item.open .content .next {
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    justify-content: center;
    background-color: #cecbbc;
    position: fixed;
    left: 0px;
    transition: opacity 0.2s;
  }
  #wrapper #columnA section .item.open .content .prev {
    top: 40px;
  }
  #wrapper #columnA section .item.open .content .next {
    top: calc(var(--vh) * 100 - 40px);
  }
  #wrapper #columnA section .item.open .content h3 {
    margin: 0 0 0 0;
  }

  #wrapper.gallery .column {
    min-width: auto;
  }
  #wrapper.gallery #columnA {
    width: 100%;
  }
  #wrapper.gallery #columnA section {
    height: calc(var(--vh) * 100);
  }
  #wrapper.gallery #columnA section .item.open {
    height: calc(var(--vh) * 100 - 40px);
  }
  #wrapper.gallery #columnA section .item.open .filler, #wrapper.gallery #columnA section .item.open .content {
    height: auto;
  }

  #overlay {
    top: 2px;
    position: relative;
  }
  #overlay #search {
    left: 1vw;
    top: calc(var(--vh) * 50 - 40px);
  }
  #overlay #search input[type=text i] {
    pointer-events: none;
    width: 98vw;
    height: 34px;
    font-size: 28px;
    background-image: none;
    box-sizing: border-box;
  }
  #overlay #search.top {
    top: -2px;
  }
  #overlay #results {
    top: 50px;
    max-height: none;
    max-height: calc(100vh - 120px);
  }
  #overlay #results .block {
    height: calc(100vh - 171px);
  }
  #overlay #results #artists {
    height: auto;
    max-height: calc(100vh - 171px);
  }
  #overlay #results #artists .result {
    margin: 20px 0;
  }
  #overlay #results #artists .result p.title {
    margin: 0 0;
    font-weight: normal;
  }
  #overlay #results #artists .result .link {
    color: var(--gray);
    width: 100%;
    overflow: hidden;
    display: block;
    height: 15px;
    position: relative;
  }
  #overlay #results #artists .result .link::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 86%, rgb(255, 255, 255) 96%);
  }
  #overlay #results #artists .result span.meta {
    font-size: 1em;
  }
  #overlay #results #artists .result span.meta .time {
    display: block;
  }
  #overlay #results #artists .result .description {
    display: none !important;
  }
  #overlay #results #calendar {
    justify-content: right;
  }
  #overlay #results #calendar .day {
    height: 100%;
  }
  #overlay #results #calendar .day table {
    width: 100%;
    margin: 0;
  }
  #overlay #results #calendar .day table tr th, #overlay #results #calendar .day table tr td {
    width: 33%;
  }
  #overlay #results #calendar .day table tr td.end span.time {
    display: none;
  }
  #overlay #results #calendar .day table tr td.hours, #overlay #results #calendar .day table tr th:first-child {
    width: 80px;
    overflow: hidden;
    font-size: 50px;
    vertical-align: super;
  }
  #overlay #results #calendar .day table tr td.ongoing {
    font-size: 0.7em;
  }
}

/*# sourceMappingURL=style2.css.map */
