body {
  font-family: "Roboto", sans-serif;
}

.display-container {
  width: 80%;
  margin-top: 5%;
  text-align: center;
}

.display-container .display {
  width: 100%;
  height: auto;
}

.display-container.display-margin {
  margin-top: -60%;
}

.display-max-height {
  max-height: 70vh;
}

.background-video {
  position: fixed;
  right: 0;
  height: 100vh;
}

section {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  /* background-image: url(./skull-only-white.jpg); */
}

section.section2 {
  background: #000;
  box-shadow: 0px 0px 50px #454545;
  z-index: 6;
  top: 100vh;
}

.margin-mid {
  margin-left: 25%;
  margin-top: -30%;
}

.schmoo {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.screen {
  overflow: hidden;
  background: #fff;
  position: absolute;
  width: 47%;
  height: 23%;
  left: 26%;
  top: 19%;
}

.screen-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;

  background-image: url(./bg.gif);
  background-size: cover;
  background-position: center;

  -webkit-animation: flickering 5s linear alternate infinite;
  -moz-animation: flickering 5s linear alternate infinite;
  animation: flickering 5s linear alternate infinite;
}

.screen-hover {
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;

  background-size: cover;
  background-position: center;
}

.screen:hover .screen-hover {
  opacity: 1;
}

.screen .icon {
  width: 60%;
  margin: 0 auto;
  margin-top: 40%;
  transform: translateY(-50%);
}

.topcont {
  margin-left: -8% !important;
}

.absolute-bottom {
  font-size: 8px;
  text-align: right;
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  z-index: 10;
}

.event-flyer {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
}

.event-flyer img {
  box-shadow: 0px 0px 50px #000;
}

.event-flyer a {
  width: 100%;
}

.event-flyer img {
  width: 100%;
}

section.section2 .container {
  height: 100%;
}

section.section2 .container .row {
  height: 100%;
}

section.section2 {
  background-image: url("/assets/background.jpg");
  background-size: cover;
}

.event {
  box-shadow: 0px 0px 30px #000;
  display: flex;
  flex-direction: row;
  justify-content: center;

  align-items: stretch;
  width: 100%;

  background-image: url("/assets/grunge.jpg");
  background-size: cover;

  margin-top: 50px;
  color: #efefef;
}

.event:first-child{
  margin-top: 0px;
}

.event .date {
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  width: 120px;
}

.event .date .month {
  font-weight: 900;
  font-size: 24px;
}

.event .date .time {
  font-weight: 900;
  font-size: 20px;
}

.event .content {
  width: 100%;
  padding: 15px;
}

.event .content h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 10px;
}

.event .content a {
  font-size: 16px;
  color: #efefef;
  display: inline-block;
  text-decoration: none;
  padding: 3px 7px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease-in-out;
}

.event .content a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.event .content a i {
  margin-right: 5px;
}

.event .content .description {
  margin-bottom: 15px;
}

.event .side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.event .side .link {
  color: #efefef;
  font-size: 28px;
  padding: 4px 2px;
  height: 40px;
  width: 40px;
  background-color: #3b5998;
}

.event .side .price {
  width: 40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: #983b3b;
  height: 115px;
  padding: 5px;
  font-size: 20px;
  font-weight: 900;
}

.events {
  margin-top: 40px;
  overflow-y: auto;
  max-height: calc(100vh - 300px); /* Adjust height as needed */
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: #444 #000; /* For Firefox */
  padding-right: 20px;
}

.events::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

.events::-webkit-scrollbar-track {
  background: #000; /* Background of the scrollbar track */
}

.events::-webkit-scrollbar-thumb {
  background-color: #efef; /* Color of the scrollbar thumb */
  border-radius: 10px; /* Rounded corners for the scrollbar thumb */
}

.events::-webkit-scrollbar-thumb:hover {
  background-color: #fff; /* Color of the scrollbar thumb on hover */
}

.event .side .price span {
  font-size: 13px;
}

.event.past {
  pointer-events: none;
  opacity: .5;
}

.event .side .price.free {
  background-color: #3b983b;
  text-transform: uppercase;
}

@keyframes flickering {
  0% {
    opacity: 0;
  }

  90% {
    opacity: 0;
  }

  91% {
    opacity: 1;
  }

  99% {
    opacity: 1;
  }
}

.flyer-mobile {
  display: none;
}

@media screen and (max-width: 1023px) and (orientation: portrait) {
  .container.p-5 {
    padding: 15px !important;
  }

  .spacer-top {
    height: 45vh;
  }

  .topcont {
    margin-left: 20px !important;
  }

  .absolute-bottom {
    display: none;
  }

  .mobile-margin {
    margin-top: 40vh !important;
  }

  .margin-mid {
    margin-top: -25vh;
    width: 50%;
  }

  .background-video {
    width: 90vw;
    margin-top: 7vh;
    margin-left: auto;
    margin-right: auto;
    height: auto;
  }

  .event {
    flex-direction: column;
  }

  .event .date {
    width: 100%;
    flex-direction: row;
    padding: 5px 15px;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }

  .event .date .month {
    font-size: 18px;
  }

  .event .bands a {
    margin-bottom: 5px;
  }

  .event .side {
    width: 100%;
    height: 40px;
    flex-direction: row-reverse;
  }

  .event .side .price {
    width: 100%;
    height: 40px;
    writing-mode: unset;
    transform: rotate(0deg);
    font-size: 20px;
    padding-left: 45px;
  }

  .events {
    overflow-y: none;
    max-height: inherit;
    height: auto;
    padding-right: 0px;
    padding-bottom: 50px;
  }

  section.section2 {
    overflow-y: auto;
  }

  .flyer-mobile {
    margin-top: 50px;
    padding: 0;
    width: 100%;
    height: auto;
    display: block !important;
  }

  .event-flyer {
   display: none;
  }
}