/* DEFINING CUSTOM VARIABLES */
/* SCC RED: #E61E1E / rgb(230, 30, 30) / 	hsl(0, 80%, 51%) / 	cmyk(0%, 87%, 87%, 10%) */
/* SCC YELLOW:  #FFE600 / 	rgb(255, 230, 0) / 	hsl(54, 100%, 50%) / cmyk(0%, 10%, 100%, 0%) */
:root{
  --a-primary-color: rgba(49, 43, 114, 1);

  --a-primary-color-lt: rgba(49, 43, 114, 0.5);
  /* --a-primary-color-dk: #8c1c1c; */
  --a-primary-color-dk: rgb(54, 35, 21);
  
  /* --a-primary-color-md: #f27127; */
  --a-primary-color-md: #555;
  --clr-autumn: #ad4200;
  /* --a-contrast-text-color: #ececec; */
  --a-contrast-text-color: #EEE;
  --clr-light-yellow: #fbf9de;
  --a-background-color: #FFF;
  /* --a-background-color: #fced80; */
  --a-btn-hover: #d8b5e9bb;
  --lt-blue: #0D94F0;
  --dk-blue: #0062A3;
  --lt-green: #24F061;
  --dk-green: #21A348;
  --dk-grey: hsl(0, 0%, 40%);
  --lt-grey: hsl(0, 0%, 65%);
  --very-lt-grey: #f5f5f5;
  --off-black: #444;
  --clr-off-white: #FAF9F6;
  --white-text: hsl(0, 0%, 100%);

  /* Program colors */
  --clr-pgm-body-bg: hsl(0 0% 90%);
  --clr-pgm-car-bg: hsl(0 0% 100%);
  --clr-pgm-text: hsl(0 0% 15%);
  --clr-pgm-heading: hsl(0 0% 25%);

  /* --border-gradient:  */

  /* font-sizes */
  --fs-900: 9.375rem;
  --fs-800: 6.25rem;
  --fs-700: 3.5rem;
  --fs-600: 2rem;
  --fs-500: 1.75rem;
  --fs-400: 1.125rem;
  --fs-300: 1rem;
  --fs-200: 0.875rem;
  
  /* font-families */
  --ff-sans-condensed: "Roboto Condensed", sans-serif;
  --ff-sans-normal: "Roboto", sans-serif;

  /* Gap between livestream page elements */
  --gap-margin: 10px;

  /* GRID Gap */
  --grid-gap: 5px;
  --grid-first-column: 40px;

  /* Border-Radius */
  --border-radius-box: 10px;
  --border-radius-button: 5px;
 
  /* splash cube dimensions */
  --splash-cube-s: 70px;
  --splash-cube-m: 100px;
  --splash-cube-l: 130px;
}

/* Basic stuff */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth !important;
}

/* *, *:before, *:after {
  box-sizing: inherit;
} */

body {
  scroll-behavior: smooth !important;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, textarea, input, button, figure {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-sans-normal);
  font-weight: 500;
  /* letter-spacing: 1px; */
  color: var(--dk-grey);
  /* line-height: 1.4rem; */
  /* padding-bottom: 0.25rem; */
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  padding-top: 1em;
  line-height: 1.1em;
  font-weight: 900;
  text-transform: capitalize;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 3rem);
  /* padding-top: 0.5em; */
  line-height: 1em;
  font-weight: 900;
  text-transform: capitalize;
}

h3 {
  padding-top: 0.5em;
  line-height: 1.1em;
  text-transform: uppercase;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 700;
  line-height: 1.1em;
  padding-top: 0.5em;
  color: var(--a-primary-color-md);
  text-transform: uppercase;
}

h5 {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--clr-autumn);
  transition: color 250ms;
}

body, p, ol, ul, textarea, input, button, figure {
  line-height: 1.5;
  font-family: var(--ff-sans-normal);
  color: var(--off-black);
}

li, p {
  font-size: var(--fs-300);
  font-weight: 300;
  padding-bottom: 0.5em;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--a-primary-color-dk);
}

a button {
  color: var(--a-primary-color-dk);
}

a h5 {
  color: var(--clr-autumn);
  /* border: 3px solid var(--clr-autumn); */
  text-transform: uppercase;
  border-radius: var(--border-radius-button);
  width: fit-content;
  line-height: 1em;
  padding: 2px 5px;
  transition: border-color color 0.25s;
}

a:hover h5 {
  cursor: pointer;
  border-color: var(--a-primary-color);
}

.drop-zone,
select,
textarea,
input {
  padding-left: 5px;
  margin-bottom: 0.5rem;
  outline: none;
  /* border: solid 3px var(--lt-grey); */
  border: solid 3px var(--a-primary-color-lt);
  /* border-radius: var(--border-radius-button); */
}

.drop-zone-over,
textarea:focus,
input:focus {
  border: solid 3px var(--a-primary-color);
}

label {
  padding-left: 8px;
  text-align: left;
}

.error-success,
.error-alert {
  text-align: center;
  font-weight: 700;
  font-style: italic;
  color: red;
  /* background-color: rgba(213, 161, 236, 0.9); */
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

#thinking {
  width: 100%;
  display: flex;
  justify-content: center;
}

#ticketChart {
  background-color: var(--a-background-color);
}
/* From Kevin Powell */	
img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  background-color: var(--clr-off-white);
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {  
	*,
	*::before,
	*::after {
	  animation-duration: 0.01ms !important;
	  animation-iteration-count: 1 !important;
	  transition-duration: 0.01ms !important;
	  scroll-behavior: auto !important;
	}
}

/********************/
/*  Status Messages */
/********************/
.serverMessage {
  font-size: 1.5rem;
  line-height: 2rem;
  padding-top: 0.5rem;
}

.serverSuccess {
  color: green;
}

.serverError {
  color: red;
}

/********************/
/*    BACKGROUNDS   */
/********************/

.background-white {
  /* background-color: #f9f9f9; */
  background-color: white;
}

.splash-static {
  background-color: var(--a-primary-color);
  background: linear-gradient(124deg, rgba(2,0,36,1) 0%, rgba(129,29,94,1) 52%, rgba(152,50,117,1) 100%);
}

/********************/
/*    NAVIGATION    */
/********************/

.menu-bar {
  z-index: 100;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  position: sticky;
  top: 0px;
  min-height: 2.5rem;
  /* background-image:  var(--border-gradient); */
  /* background-color: var(--a-primary-color); */
  background: var(--a-primary-color);
  /* background: linear-gradient(124deg, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.9) 47%, rgba(242,184,114,0.9) 81%); */
  /* background: linear-gradient(124deg, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.9) 47%, rgba(252, 237, 128,0.9) 81%); */
  /* background: linear-gradient(124deg, rgba(0,0,0,0.9) 0%, rgba(255,0,0,0.9) 47%, rgba(255, 230, 0,0.9) 81%); */
}
 
.menu-bar a{
  color: var(--a-contrast-text-color);
  text-decoration: none;
  /* padding: 1px 7px; */
  padding: 7px 15px;
}

.menu-bar img {
  margin-left: 15px;
  width: 1.5rem;
}


/* .logo {
  min-height: 3rem;
} */

.logo1 {
  z-index: 20;
  position:absolute;
  top: 1.3rem;
  font-size: 1.2rem;
  /* line-height: 2; */
  font-weight: 500;
  /* font-family: 'Lemonada', cursive; */
  color: var(--a-contrast-text-color);
  white-space: nowrap;
  text-shadow: 0px 0px 1.5px #FFFFFF,
              -0.7px -0.7px 0px rgb(0 0 0 / 1);
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4),
            -0.1px -0.1px 0.5px rgba(255, 255, 255, 0.5); */
}

.logo2 {
  position: absolute;
  top: 2.45rem;
  padding-left: 0.1rem;
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 0.19rem;
  white-space: nowrap;
  color: var(--white-text);
}

.navigation {
  width: 100%;
	position: absolute;
	text-align: center;
	top: 0px;
	right: 0px;
  padding-top: 20px;
  background-color: var(--a-contrast-text-color);
	opacity: 0.95;
	transform: scale(0, 1);
	transform-origin: right;
	transition: transform 400ms ease-in-out;
}

.navigation li{
  padding: 0.35em 0px 20px;
}

.navigation a {
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.2rem;
  line-height: 1em;
	opacity: 0;
	transition: opacity 150ms ease-in-out;
  transition: 0.5s;
}

.nav-toggle:checked ~ .navigation {
	/* display: block; */
 transform: scale(1,1);
}

.nav-toggle:checked ~ .navigation a{
	opacity: 1;
	transition: opacity 100ms ease-in-out 350ms;
}

.nav-toggle{
	display: none;
}

.nav-toggle-label{
  position: absolute;
	top: 33px;
	right: 2.5em;
	width: 1em;
	height: 100%;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after{
	display: block;
  background: var(--a-contrast-text-color);
	/* background: var(--a-primary-color-dk); */
	height: 4px;
	width: 1.5em;
	border-radius: 2px;
	position: relative;
  transition: transform .25s, opacity 0.25s;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after{
	content: '';
	position: absolute;
}

/* .nav-toggle-label span::before{
	bottom: 7px;
}

.nav-toggle-label span::after{
	top: 7px;
} */

.nav-toggle-label span::before{
  transform-origin: top left;
	bottom: 7px;
}

.nav-toggle-label span::after{
  transform-origin: bottom left;
	top: 7px;
}

.nav-toggle:checked ~ .nav-toggle-label span,
.nav-toggle:checked ~ .nav-toggle-label span::before,
.nav-toggle:checked ~ .nav-toggle-label span::after {
  /* background-color: white; */

  background-color: var(--a-primary-color-dk);
}

.nav-toggle:checked ~ .nav-toggle-label span {
  height: 0px;
}

.nav-toggle:checked ~ .nav-toggle-label span::before {
  transform: rotate(45deg);
  width: 1.93em;
}

.nav-toggle:checked ~ .nav-toggle-label span::after {
  transform: rotate(-45deg);
  width: 1.93em;
}

.nav-head {
  background-color: var(--a-contrast-text-color);
}

.nav-head > a {
  color: var(--a-primary-color);
  font-weight: 600;
  cursor: default;
}

.nav-head ul {
  background-color: var(--a-primary-color);
}

.nav-head ul a {
  color: var(--a-contrast-text-color);
}

/*********************************/
/*        General styling        */
/*********************************/

.account-background {
  width: 100%;
  height: 100vh;
}

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

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

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

audio {
  width: 250px;
  margin-top: 15px;
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(180deg, #fff 0%, #312b72 91%);
  /* overflow: hidden; */
  /* background: radial-gradient(circle at 50% 50%, #bee0f7 0%, #83C8F7 75%, #0D94F0 100%); */
  /* background-color: var(--a-background-color); */
  /* background: radial-gradient(circle, rgba(240,240,240,1) 0%, rgba(152,50,117,0.35) 80%); */
  /* background: url(../images/stagelights.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.wrapper-content {
  /* position: relative; */
  width: 100%;
}

.searchlight-l {
  position: fixed;
  z-index: -10;
  width: 70vw;
  top: 20vh;
  right: 10vw;
  animation: search-left 25s linear infinite;
}
@keyframes search-left {
  from {
    transform: rotate(0deg) translate(100px) rotate(0deg);
  } to {
    transform: rotate(-360deg) translate(100px) rotate(360deg);
  }
}

.searchlight-r {
  position: fixed;
  top: 30%;
  z-index: -10;
  width: 75vw;
  left: 10vw;
  animation: search-right 20s linear infinite;
}

@keyframes search-right {
  from {
    transform: rotate(0deg) translate(-100px) rotate(0deg);
  } to {
    transform: rotate(360deg) translate(-100px) rotate(-360deg);

  }
}

.spot {
  fill: #ffff00;
  fill-opacity: 0.6;
}

/* .spot-trail {
  fill: #ffff00;
  fill-opacity: 0.2;
} */


.pageTitleText {
  text-align: center;
}

.page-body {
  max-width: 1000px;
  padding: 20px 10px;
  margin-left: auto;
  margin-right: auto;
  /* text-align: center; */
  /* background-color: rgba(206, 206, 206, 0.9); */
}

.page-body p {
  /* color: var(--white-text); */
  padding-bottom: 10px;
}

.page-body-title {
  margin-bottom: 20px;
  /* background-color: var(--pda-logo); */
  padding: 10px 0px;
}

hr {
  border-top: 2px solid var(--a-primary-color);
  border-bottom: none;
  border-left: none;
  border-right: none;
}

h3 span{
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
}

.tooltip {
  position: relative;
}


.tooltip .tooltiptextcenter,
.tooltip .tooltiptextleft,
.tooltip .tooltiptextright {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1.8rem;
  padding: 3px 10px;
  white-space: nowrap;
  font-size: var(--fs-400);
  border: 2px solid var(--a-primary-color);
  border-radius: 5px;
  background-color: var(--a-contrast-text-color);
  color: var(--a-primary-color);
  z-index: 100;
  transition: opacity 0.35s;
}

.tooltip .tooltiptextright {
  text-align: right;
  right: 8px;
}

.tooltip .tooltiptextleft {
  text-align: left;
  left: 8px;
}

.tooltip .tooltiptextcenter {
  text-align: center;
  left: calc(50% - 90px);
}

.tooltip:hover .tooltiptextcenter,
.tooltip:hover .tooltiptextleft,
.tooltip:hover .tooltiptextright {
  visibility: visible;
  opacity: 1;
}

/********************/
/*    INDEX PAGE    */
/********************/

section h2 {
  position: relative;
  margin-left: clamp(12px, calc(15vw - 60px), 300px);
  padding: 2rem;
  padding-bottom: 0.25rem;
  font-weight: 700;
  font-size: var(--fs-600);
  letter-spacing: 0.35rem;
}

section h2::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  bottom: 0px;
  transform: translateX(-210px);
}

.section-body {
  max-width: 750px;
  margin: 0 auto;
  /* margin: 0 5vw; */
  padding: 1rem 12px 3rem;
}

.section-body li {
  position: relative;
  padding-left: 40px;
}

.icon-awards::before,
.icon-mic::before,
.icon-music::before,
.icon-1::before,
.icon-2::before,
.icon-3::before  {
  position: absolute;

  content: "";

  /* background-image: url("/images/icons/microphone.svg"); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-awards::before,
.icon-mic::before,
.icon-music.icon-1::before  {

  left: 0px;
  top: 5px;

  width: 30px;
  height: 30px;

}

.icon-1::before,
.icon-2::before,
.icon-3::before  {

  left: 0px;
  top: px;

  width: 50px;
  height: 50px;

}

.icon-mic::before {
  background-image: url("/images/icons/microphone.svg");
}

.icon-awards::before {
  background-image: url("/images/icons/trophy.svg");
}

.icon-music::before {
  background-image: url("/images/icons/music.svg");
}

.winners {
  position: relative;
}

.winners p {
  padding: 0px 0px 25px 60px;
  line-height: 1.5em;
  /* padding-left: 60px; */
  font-weight: 500;
  font-size: 1.5rem;
}

.icon-1::before {
  background-image: url("/images/icons/1st.svg");
  animation: rotatingAward 3s infinite ease-in-out alternate;
}

.icon-2::before {
  background-image: url("/images/icons/2nd.svg");
  animation: rotatingAward 3s infinite ease-in-out alternate 1s;
}

.icon-3::before {
  background-image: url("/images/icons/3rd.svg");
  animation: rotatingAward 3s infinite ease-in-out alternate 2s;
}

@keyframes rotatingAward {

  80% {
    transform: rotateY(0deg);
  } to {
    transform: rotateY(90deg);
  }
}

.section-primary {
  /* background-color: rgba(255, 255, 255, 1); */
  background-color: var(--clr-off-white);
}

.section-primary h2 {
  /* color: var(--lt-blue); */
  color: var(--a-primary-color-md);
}

.section-primary h2::before {
  /* background-color: var(--lt-blue); */
  background-color: var(--a-primary-color-md);
}

.section-inverse {
  /* background-color: rgba(242, 184, 114, 0.75); */
  background-color: var(--a-background-color);
}

.section-inverse h2 {
  color: var(--a-primary-color-md);
  /* color: var(--lt-blue); */
}

.section-inverse h2::before {
  /* background-color: var(--lt-blue); */
  background-color: var(--a-primary-color-md);
}

.section-body a:hover h5 {
  color: var(--a-primary-color);
}


/********************/
/*   HERO SECTION   */
/********************/

.section-hero {
  width: 100%;
  height: 100%;
  /* overflow: hidden;
  position: relative;
  background-color: #000;
  background: rgb(0,0,0);background: linear-gradient(145deg, rgba(0,0,0,1) 37%, rgb(54, 35, 21) 67%); */
}

.hero-text {
  position: relative;
  z-index: 2;
  /* margin: 25vw 8vw; */
}

.section-hero h2 {
  color: var(--a-contrast-text-color);
  margin-left: 0px;
  letter-spacing: normal;
  font-size: clamp(2.5rem, 7vw, 6.5rem);
}

.section-hero h3 {
  color: var(--a-contrast-text-color);
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  padding-bottom: 1.25rem;
}
.section-hero p {
  color: var(--a-contrast-text-color);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-hero h2::before {
  display: none;
}

.section-hero a {
  display: inline-block;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 2rem;
  padding: 0.25em 0.8em;
  background-color: var(--a-primary-color);
  color: var(--a-contrast-text-color);
  transition: 0.25s;
  border-radius: var(--border-radius-button);
}

.section-hero a:hover {
  background-color: var(--a-contrast-text-color);
  color: var(--a-primary-color);
}

.hero-img {
  position: relative;
  background-image: url("../images/main-page/hero-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  /* opacity: 0.6;
  filter: saturate(0); */
}

/********************/
/*  SPLASH SECTION  */
/********************/
.section-splash {
  background-color: var(--a-primary-color);
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.splash-background {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
	align-items: center;
  /* background-image: url('../images/splash/splash-background.jpg'); */
  background-image: url('../images/splash/2022SCC_winners_ESA_SPLASHbw.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200vw;
  animation: zoomBckgrnd 10s ease-out;
}

@keyframes zoomBckgrnd {
  0% {
    background-size: 300vw;
    opacity: 0;
  } 10% {
    /* background-size: 295vw; */
    opacity: 1;
  } 100% {
    background-size: 200vw;
    opacity: 1;
  }
}

.splash-logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -20%;

  background-image: url('../images/splash/splash-logo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: splashLogo 2s ease-in;
}

@keyframes splashLogo {
  0% {
    transform: scale(0%);
    opacity: 0;
  }
  50% {
    transform: rotate(-360deg) scale(0%);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg) scale(100%);
    opacity: 1;
  }
}

.splash-btn-container {
  position: absolute;
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  top: 60%;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  animation: buttons 3.5s linear;
}

@keyframes buttons {
  0% {
    opacity: 0;
  }
  60% {
    transform:
        translateY(1000%)
        translateX(-50%);
    opacity: 0;
  }
  75% {
    transform:
      translateY(-50%)
      translateX(-50%);
  }
  80% {
    transform:
      translateY(5%)
      translateX(-50%); 
  }
  85% {
    transform:
      translateY(0%)
      translateX(-50%); 
  }
}

.splash-btn-container a {
  display: inline-block;
  margin: 3px;
  padding: 2px;
  width: 120px;
  font-size: 0.8rem;
  white-space: nowrap;
  text-align: center;
  color: var(--a-primary-color);
  background-color: var(--a-contrast-text-color);
  text-decoration: none;
  border: solid 3px var(--a-primary-color);
  transition: 0.5s;
  transform-origin: bottom;
  animation: button 3.5s linear;
}

.splash-btn-container a:hover {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
}

@keyframes button {
  0% {
    transform: scale(0.1, 0.1);
  }
  50% {
    transform: scale(0.1, 0.1);
  }
  60% {
    transform: scale(1, 1);
  }
  76% {
    transform: scale(0.9, 1.2);
  }
  80% {
    transform: scale(1.1, 0.9);
  }
  84% {
    transform: scale(0.9, 1.2);
  }
  90% {
    transform: scale(1, 1);
  }
}

.splash-banner {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  /* min-height: 10%; */
  width: 100%;
  text-align: center;
  padding: 1.5rem 0;
  font-weight: 900;
  line-height: 1;
  font-size: clamp(0.1rem, 4vw, 2.5rem);
  /* letter-spacing: clamp(5px, 2vw, 1.5rem); */
  letter-spacing: clamp(5px, 1.2vw, 1.5rem);
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
  transform: translateY(0%);
  animation: splash-banner 1s linear;
}

@keyframes splash-banner {
  0% {
    transform: translateY(100%);
  }
  60% {
    transform: translateY(100%);
  }
  90% {
    transform: translateY(0%) scaleY(1);
  }
  95% {
    transform: translateY(-3%) scaleY(1.1);
  }
  100% {
    transform: translateY(0%) scaleY(1);
  }
}

/*********************/
/*    SPLASH CUBE    */
/*********************/

.splash-cube-container {
  padding-top: 35px;
  width: 100%;
  display: flex;
  justify-content: center;
	align-items: center;
}

.menu-cube-container {
  position: absolute;
  top: clamp(1rem, 2vw, 3rem);
  left: clamp(1rem, 6vw, 10rem);
}

.splash-cube {
  position: relative;
  width: var(--splash-cube-s);
  height: var(--splash-cube-s);
  transform-style: preserve-3d;
  transform: rotate3d(1,1,0,45deg);
  animation: turn 20s linear infinite;
}

.sc-face {
  width: var(--splash-cube-s);
  height: var(--splash-cube-s);
  background: url("../images/splash/scc_logo.svg");
  background-size: var(--splash-cube-s);
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--a-background-color);
}

.sc-front {
  transform: translateZ(calc(var(--splash-cube-s)* 0.5));
}

.sc-back {
  transform: translateZ(calc(0px - (var(--splash-cube-s)* 0.5))) rotateY(180deg);
}

.sc-left {
  transform: translateX(calc(0px - (var(--splash-cube-s)* 0.5))) rotateY(-90deg);
}

.sc-right {
  transform: translateX(calc(var(--splash-cube-s)* 0.5)) rotateY(90deg);
}

.sc-top {
  transform: translateY(calc(0px - (var(--splash-cube-s)* 0.5))) rotateX(90deg);
}

.sc-bottom {
  transform: translateY(calc(var(--splash-cube-s)* 0.5)) rotateX(-90deg);
}

@keyframes turn {
  from { transform:  rotate3d(0,0,0,0);}
  to { transform:  rotate3d(1,1,0,360deg)}
}

.splash-cta {
  position: relative;
  background-color: var(--a-primary-color-dk);
  border-radius: var(--border-radius-button);
  padding: 1vw clamp(0.5rem, 4vw, 2rem);
  /* padding: 0.5em 1em; */
  font-size: clamp(1.5rem, 8vw, 3rem);
  font-weight: 500;
  text-align: center;
  animation: splash-cta 2s linear;
  overflow: hidden;
  transform:  translateY(-50%);
  transition: background-color 0.25s;
}

@keyframes splash-cta {
  0% {
    transform:  translateY(-50%) scale(0.5);
    opacity: 0;
  } 80% {
    transform:  translateY(-50%) scale(0.5);
    opacity: 0;
  } 95% {
    transform:  translateY(-50%) scale(1.05);
    opacity: 1;
  } 100% {
    transform:  translateY(-50%) scale(1);
    opacity: 1;
  }
}

.splash-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 80px;
  opacity: 0;
  background: linear-gradient(var(--a-primary-color-dk), var(--a-contrast-text-color), var(--a-contrast-text-color), var(--a-contrast-text-color), var(--a-primary-color-dk));
  animation: border-animation 8s infinite linear;
}

@keyframes border-animation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  } 95% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  } 97% {
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
  } 97.5% {
    transform: translate(-50%, -50%) rotate(135deg);
    opacity: 1;
  } 98% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  } 100% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 0;
  }
}

.splash-cta::after {
  content: "";
  position: absolute;
  inset: 5px;
  background-color: var(--a-background-color);
  transition: background-color 0.25s;
}

.splash-cta-content {
  position: absolute;
  inset: 0;
  padding: 1vw clamp(0.5rem, 4vw, 2rem);
  /* padding: 1vw 2vw; */
  font-size: clamp(1.5rem, 8vw, 3rem);
  transition: color 0.25s;
  z-index: 2;
}

.splash-cta:hover .splash-cta-content {
  color: var(--a-primary-color);
}

.splash-cta:hover {
  background-color: var(--a-primary-color);
}

.splash-cta:hover .splash-cta::after {
  background-color: var(--a-contrast-text-color);
}

/************************/
/* VIDEO SPLASH SECTION */
/************************/


.video-border {
  padding-top: 1.2vw;
  padding-bottom: 0.5vw;
  max-width: 1200px;
  max-height: 675px;
  margin: 0 auto;
  /* -webkit-box-shadow: 20px 20px 50px 50px rgba(0,0,0,0.44); 
  box-shadow: 20px 20px 50px 50px rgba(0,0,0,0.44); */
}


/*********************/
/*    INFO SECTION   */
/*********************/

.section-info .section-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 4vw;
}

.section-countdown h3,
.info-box h3 {
  color: var(--dk-grey);
  font-size: clamp(2rem, 4.5vw, 3rem);
  /* font-style: italic; */
  line-height: 0.8em;
  padding-bottom: 0.15em;
  font-weight: 900;
}

/********************/
/*     SPONSORS     */
/********************/


.sponsor-gallery {
  /* max-width: 600px; */
  margin: 35px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 4vw;
}

.sponsor-gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.sponsor-gallery figure {
  aspect-ratio: 6/1;
}

.sponsor-gallery img {
  max-width: 100%;
  height: auto;
  transition-duration: .25s;
}

.sponsor-gallery-item:hover img {
  transform: scale(1.1);
}

/********************/
/*     COUNTDOWN    */
/********************/

.counter-container {
  margin: 10px auto;
  max-width: 800px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.counter-unit {
  display: none;
  width: clamp(3.45rem, 10vw, 7.5rem);
  margin: 5px clamp(0.25rem, 1vw, 0.65rem) 10px;
  border-radius: var(--border-radius-button);
  background-color: var(--a-primary-color);
  border: solid 3px var(--a-contrast-text-color);
  -webkit-box-shadow: 5px 5px 15px 5px #777; 
  box-shadow: 5px 5px 15px 5px #777;
}

.counter-unit > * {
  text-align: center;
}

.counter-unit div {
  color: var(--white-text);
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 4rem);
}

.counter-unit h5 {
  color: var(--a-contrast-text-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(0.6rem, 1.5vw, 1.5rem);
  padding-bottom: 0.5rem;
}


.section-countdown .section-body {
  /* margin: 0; */
  padding-bottom: 1rem;
}

.section-fun .section-body{
  text-align: center;
}

.section-fun img {
  margin-left: auto;
  margin-right: auto;
}

.section-fun li,
.section-fun p {
  color: var(--a-contrast-text-color);
}

/* .section-agenda {
} */

.gallery-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-medium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.5rem;
}

.gallery-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.speaker {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  max-width: 300px;
  overflow: hidden;
  cursor: pointer;
}

.speaker img {
  position: absolute;
  object-fit: cover;
  object-position: center;
} 



/* .speaker::before, */
.speaker::after {
  content: "";
  position: absolute;
  inset: 5%;
  border: 1px solid var(--a-contrast-text-color);
  transform: scale(0);
  opacity: 0;
  transition: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: ease-out;
}

.speaker-insert {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.speaker-dim {
  position: absolute;
  inset: 0;
  background-color: var(--off-black);
  opacity: 0;
  transition: opacity ease-out 250ms;
}

.speaker-name,
.speaker-title,
.speaker-subtitle {
  text-align: center;
  color: var(--a-contrast-text-color);
  opacity: 0;
}

.speaker-name {
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: ease-out;
}

.speaker-title,
.speaker-subtitle {
  transform: scale(0);
  transition: transform, opacity;
  transition-duration: 250ms;
  transition-timing-function: ease-out;
}

.speaker-title {
  font-weight: 100;
  font-size: var(--fs-100);
}

.speaker-subtitle {
  font-weight: 100;
  font-style: italic;
  font-size: var(--fs-100);
}

.speaker:hover .speaker-dim {
  opacity: 0.75;
}

.speaker:hover::after {
  transform: scale(1);
  opacity: 1;
}

.speaker:hover .speaker-name {
  opacity: 1;
  transform: translateY(0%);
}

.speaker:hover .speaker-title {
  opacity: 1;
  transform: scale(1);
}

.speaker:hover .speaker-subtitle {
  opacity: 1;
  transform: scale(1);
}

.past-judges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  text-transform: uppercase;
  gap: 0.5rem;
  line-height: 1.1em;
}

.modal-form,
.modal-spkr {
  display: none;
  /* justify-content: center;
	align-items: center; */
  z-index: 100;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3rem 1rem;
  /* transform: translateY(-300px); */
  opacity: 0;

}

.modal-form-inner,
.modal-spkr-inner {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 600px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0px auto;
}

.modal-form-header,
.modal-spkr-header {
  /* width: 100%; */
  background-color: var(--a-primary-color);
  padding: 0.65rem 1.5rem;
  color: var(--a-contrast-text-color);
}

.modal-spkr-name,
.modal-spkr-title,
.modal-spkr-subtitle {
  font-weight: 100;
  text-transform: uppercase;
  color: var(--a-contrast-text-color)
}

.modal-spkr-name {
  font-size: 2rem;
}

.modal-form-body,
.modal-spkr-body {
  /* width: 100%; */
  padding: 1rem;
}

.modal-spkr-image > * {
  width: 100%;
}

.modal-spkr-about {
  margin-top: 1rem;
}
.modal-spkr-about p {
  margin-bottom: 0.75em;
}


.modal-close {
  font-size: 2rem;
  font-weight: 400;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  color: var(--a-contrast-text-color);
  opacity: 0.65;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: 0.25s
}

.modal-pckg-close:hover,
.modal-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* .section-packages {
} */

.package-section {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-around;
}

.package {
  text-align: center;
  max-width: 600px;
  border: solid 3px var(--a-primary-color);
  border-radius: var(--border-radius-button);
  padding: 1rem;
  margin: 0.5rem 2rem 2rem;
  background-color: var(--very-lt-grey);
}

.package h3 {
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 900;
}

.price {
  display: flex;
  justify-content: center;
	align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--a-primary-color);
  font-size: 4rem;
  font-weight: 500;
}

.price div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.package sup {
  padding-bottom: 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 0.5rem 0;
}

.flag-button {
  position: relative;
  margin: 0.5rem;
  transition: transform 0.25s
}

.flag-button > * {
  min-width: 125px;
  aspect-ratio: 3/2;
  border: none;

}

.flag-button button {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.flag {
  opacity: 0.4;
}

.flag-button:hover {
  transform: scale(1.1);
}

.modal-pckg {
  display: none;
  justify-content: center;
	align-items: center;
  z-index: 100;
  position: fixed;
  inset: 0;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1rem;
  opacity: 0;
}

.modal-pckg-form {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--very-lt-grey);
  padding: 2.5rem;
  max-width: 580px;
  margin: 1rem;
}

.modal-pckg-country {
  display: none;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 1rem;
}

.modalpckg-flag {
  width: 100%;
  max-width: 110px;
  aspect-ratio: 3/2;
  margin-right: 0.5rem;
  
}

.modal-pckg-close {
  font-size: 2rem;
  font-weight: 900;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  color: var(--a-primary-color);
  opacity: 0.35;
  background-color: transparent;
  border: none;
  transition: 0.25s
}

.modal-price {
  color: var(--a-primary-color);
  font-size: 4rem;
  font-weight: 500;
}

.modal-price sup {
  font-size: 1.5rem;
}

.faq-container,
.package-instructions {
  max-width: 600px;
  margin: 0 auto 1rem;
  padding: 0 2rem;
}

.package-instructions h4 {
  padding-top: 1rem;
}

.email-checkout {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  /* font-weight: 700; */
}


/*********************/
/*    MEMBERS PAGE   */
/*********************/

.auth-thumb-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.auth-thumb {
  aspect-ratio: 16/9;
  width: clamp(150px, 30vw, 250px);
  margin: 20px;

}

.auth-thumb img {
  margin-bottom: 10px;
  transition: transform 200ms;
}

.auth-thumb:hover img {
  transform: scale(1.1);
}


/* .section-additional {
} */

.qa h4 {
  padding-top: 1rem;
}


.qa h4::before {
  content: "Q.";
}

.qa p:first-of-type::before {
  content: "A.";
  color: var(--a-primary-color);
  font-weight: 700;
}

.qa h4::before,
.qa p::before {
  position: absolute;
  transform: translateX(-1.25rem);

}

.address {
  font-size: 1.25rem;
  color: var(--dk-grey);
  /* color: var(--off-black); */
  font-weight: 500;
  line-height: 1.25rem;
  text-align: left;
  letter-spacing: 0.05em;
  /* padding-left: clamp(0px, 4vw, 3rem); */
}


/********************/
/*      GALLERY     */
/********************/

.gallery-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-medium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.5rem;
}

.gallery-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.year-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
}

.year-button {
  font-size: clamp(2.5rem, 8vw, 3rem);
  padding: 0 clamp(0.5rem, 3vw, 1rem);
  line-height: 1.15em;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: transform 250ms;
}

.year-button:hover {
  transform: scale(1.1);
}

.pagenumbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  /* background-color: transparent; */
}

.pagenumbers button {
  width: 40px;
  height: 40px;

  appearance: none;
  border: none;
  outline: none;
  cursor: pointer;

  background-color: var(--a-contrast-text-color);

  margin: 5px;
  transition: 250ms;

  color: var(--a-primary-color);
  font-size: 1.5rem;
  font-weight: 300;

  border: 1px solid var(--a-primary-color);
}

.pagenumbers button.active {
  background-color: var(--a-primary-color);
  color: var(--a-contrast-text-color);
}

.pagenumbers *:hover {
  transform: scale(1.1);
}

.pagenumbers div {
  cursor: pointer;
  font-size: 2rem;
  font-weight: 500;
  padding: 0.5rem;
  color: var(--a-primary-color);
  transition: 250ms;
}

.responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-container {
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.recognition-container {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.recognition-container a {
  display: block;
  /* height: 100%; */
}

.recognition-container hr {
  color: white;
  border: 1px solid white;
}

.column-gallery {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.gallery2-thumb {
  position: relative;
  max-height: 190px;
  overflow: hidden;
  max-width: 400px;

  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 20px;
  width: 100%; */
  /* width: 300px;
  height: 225px; */
  box-shadow: 0 10px 16px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}

.gallery2-thumb img {
  width: 100%;
  /* object-fit: contain; */

  /* height: 100%; */
}

.gallery2-thumb a {
  text-decoration: none;
  color: var(--a-primary-color);
  transition: 0.3s;
  width: 100%;
}

.gallery2-hover-overlay {
  position: absolute;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  opacity: 0%;
  transition: 0.25ms;
}

.gallery2-top-banner {
  /* padding-left: 4vw; */
  top: 0px;
}

.gallery2-bottom-banner {
  bottom: 0px;
  cursor: pointer;
  /* display: flex;
  justify-content: space-between; */
}

.gallery2-top-banner,
.gallery2-bottom-banner {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  padding: 10px 20px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--a-primary-color);
  transition: 0.2s;
  text-align: center;

}


.gallery2-hover-overlay:hover {
  opacity: 100%;
}

.gallery2-top-banner:hover,
.gallery2-bottom-banner:hover {
  background-color: var(--a-primary-color);
  color: var(--a-contrast-text-color);
}

.gallery2-bottom-banner a:hover{
  color: var(--a-primary-color);
}

.thumb-title {
  text-align: center;
  font-size: 2rem;
  padding: 0.5rem 0;
  background-color: white;
}

.modal-photo {
	display: none;
	z-index: 100;
	position: fixed;
	inset: 0;
	overflow-y: auto;
	background-color: rgba(0, 0, 0, 0.9);
	padding: 3rem 1rem;
	opacity: 0;
}

.modal-photo-frame {
  display: flex;
  align-items: start;
	margin: 0 auto;
  width: 96%;
	max-width: 1200px;
}

.modal-nav {
  padding: 1vw;
  color: var(--white-text);
  opacity: 0.5;
  font-size: clamp(4rem, 10vw, 8rem);
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-nav:hover {
  opacity: 1;
}

.modal-photo-inner {
	position: relative;
	display: flex;
	flex-direction: column;

  background-color: white;
  width: 100%;
}

.modal-photo-header {
  display: flex;
  justify-content: space-between;
	align-items: center;
	width: 100%;
	min-height: 66px;
	background-color: var(--a-primary-color);
	/* padding: 0.65rem 1.5rem; */
	color: var(--white-text);
}

.modal-photo-name {
  text-transform: uppercase;
	color: var(--a-contrast-text-color);
	text-align: left;
  padding-left: 4vw;
	font-size: clamp(0.6rem, 3vw, 2rem);
}


/********************/
/*    LIVE PAGE     */
/********************/

#titleContainer {
  display: none;
  text-align: center;
  /* width: 100%; */
  border: solid 5px gold;
}

.mediaContainer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.mediaContainer h2 {
  width: 100%;
  text-align: center;
}

.videoContainer {
  display: none;
  position: relative;
  overflow: hidden;
  /* flex: 5 1 800px; */
  flex: 5 1 600px;
  border: solid 5px gold;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 0.25vw;
}

.singleVideo {
  aspect-ratio: 16 / 9;
}

.videoPlaylist {
  padding-top: clamp(400px, 60%, 70vh);
}


.videoContainer img {
  width: 100%;
}

.video {
  position: absolute;
  width: 100%;
  inset: 0;
  height: 100%;
  border: none;
}

.asset-selection-container {
  display: flex;
  justify-content: center;
}
.asset-selection {
  border: solid 3px var(--a-primary-color);
  max-width: 800px;
  margin: 0.5rem auto;
  padding: 0.5rem;
  font-size: clamp(1rem, 3vw, 2rem);
  text-align: center;
  color: var(--a-primary-color);
}

.chatswitch {
  display: none;
  align-items: center;
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 9000000001;
}

.chatswitch h5 {
  color: var(--a-contrast-text-color);
  text-align: center;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.chatswitch input:checked + .slider {
  background-color: var(--a-contrast-text-color);
  /* background-color: #2196F3; */
}

.chatswitch input:focus + .slider {
  box-shadow: 0 0 1px var(--a-contrast-text-color);
  /* box-shadow: 0 0 1px #2196F3; */
}

.chatswitch input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.testbox {
  width: 100px;
  height: 100px;
  background-color: orange;
}

/* Rounded sliders */
/* .slider.round {
  border-radius: 34px;
} */

/* .slider.round:before {
  border-radius: 50%;
} */

#chatContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-height: 60vh;
  /* margin: 0px 10px 10px 10px; */
  /* border: solid 5px gold; */
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  /* overflow: scroll; */
  /* min-height: 600px; */
}

#chatForm {
  background: rgba(0, 0, 0, 0.15);
  padding: 0.25rem;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 3rem;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
}

#chatInput {
  border: none;
  padding: 0 1rem;
  flex-grow: 1;
  border-radius: 2rem;
  margin: 0.25rem;
}

#chatInput:focus {
  outline: none;
}

#chatForm > button {
  background: var(--a-primary-color);
  border: none;
  padding: 0 1rem;
  margin: 0.25rem;
  border-radius: var(--border-radius-button);
  outline: none;
  color: #fff;
}

#messages {
  min-height: 230px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

#messages > li {
  display: flex;
  text-align: left;
  padding: 0.3rem 0.75rem;
}

#messages > li:nth-child(odd) {
  background: #efefef;
}

.chat-msg-avatar {
  display: flex;
  min-width: 2.25rem;
  height: 2.25rem;
  margin-top: 3px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 1rem;
  justify-content: center;
	align-items: center;
  font-weight: 500;
  color: white;
}

.chat-msg-info {
  font-size: 0.8rem;
  font-weight: 700;
}

.chat-msg-info span {
  font-weight: 300;
}

.chat-msg-text {
  line-height: 1.2rem;
}

/*********************************/
/*      FORM / CENTRE BLOCK      */
/*********************************/

.text-container {
  max-width: 800px;
  margin: 0 auto 1rem;
  padding: 0 2rem;
  z-index: 1000;
}

#ticketsDashboard {
  display: none;
}

.boxed-text {
  margin: 10px 10px 20px;
  padding: 25px 15px;
  max-width: 600px;
  border: solid 3px var(--a-contrast-text-color);
  /* border: solid 3px var(--a-primary-color-lt); */
  border-radius: var(--border-radius-box);
  text-align: center;
  background-color: hsl(0, 0%, 100%, 0.75);
  /* box-shadow:  20px 20px 40px #bebebe,
            -20px -20px 40px #ffffff,
            inset 5px 5px 10px #bebebe,
            inset -5px -5px 10px #ffffff; */
}

.boxed-text h2 {
  font-family: var(--ff-sans-condensed);
  line-height: 1.6rem;
  font-weight: 900;
  padding-bottom: 0.5rem;
}

.boxed-text h3 {
  line-height: 1.25rem;
  letter-spacing: 0.02rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
}

.boxed-text h5 {
  font-style: italic;
  font-weight: 300;
  line-height: 1rem;
  letter-spacing: 0.175rem;
  margin-bottom: 20px;
}

.boxed-text-list {
  max-width: 400px;
  margin: 0 auto;
}

.boxed-text li {
  list-style-type: none;
}

.boxed-text-list li {
  text-align: left;
  list-style: square;
  margin-left: 1rem;
  line-height: 1.3rem;
  padding-bottom: 0.8rem;
  text-decoration: none;
}

.boxed-text-list ul {
  padding-left: 10px;
}

.boxed-text form {
  margin: 0 auto;
  max-width: 450px;
  display: flex;
  flex-direction: column;
}

.boxed-text h1 {
  padding-top: 0px;
}


.boxed-text ul {
  text-align: left;
  list-style-type: square;
  padding: 1rem 0 1rem 2rem;
}

form label,
form p {
  padding-left: 0.75rem;
}

form input {
  padding-left: 0.6rem;
}

form p {
  font-weight: 400;
  font-size: 1.25em;
}

.formFieldGroup {
  display: flex;
  flex-wrap: wrap;
  margin: 1em 0;
}

.formFieldSubGroup {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.formFieldSubGroup p {
  text-align: left;
}


.form-button,
.form-button-secondary {
  min-width: 20ch;
  text-align: center;
  padding: 5px 10px;
  margin: 0.5rem auto;
  border-radius: var(--border-radius-button);
  transition: 0.25s;
}

.checkInBtn,
.form-button {
  color: var(--a-contrast-text-color);
  background-color: var(--a-primary-color);
  border: solid 3px var(--a-primary-color);
}

.form-button-secondary {
  color: var(--a-primary-color);
  background-color: white;
  border: solid 3px var(--a-primary-color-md);
}

.checkInBtn:hover,
.form-button-secondary:hover,
.form-button:hover {
  color: var(--a-primary-color-dk);
  background-color: var(--a-background-color);
  /* background-color: var(--a-contrast-text-color); */
  cursor: pointer;
}

.button-padding {
  padding: 0.5rem 1rem;
}

.forgotpassword {
  display: flex;
  flex-direction: column;
}

.formStatus {
  text-align: center;
  color: var(--a-primary-color);
  font-size: 0.8rem;
}


/********************/
/*    VIDEO LIST    */
/********************/
.video-list p,
.video-list h2 {
  text-align: left;
}

.video-list h2 {
  text-transform: uppercase;
}

.vl-song-title {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: var(--grid-first-column) auto;
  padding-top: 10px;
}

.vl-song-title p {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2em;
  color: var(--dk-grey);
  padding-top: 0.25em;
  padding-bottom: 0;
  line-height: 1.1em;
}

.video-list .song-num {
  text-align: right;
}

.video-list h2 {
  padding: 20px 0 clamp(5px, 1.5vw, 20px) calc(var(--grid-gap) + var(--grid-first-column));
}

.vl-video {
  display: grid;
  gap: var(--grid-gap);
  grid-template-columns: var(--grid-first-column) auto auto;
}

.vl-video p {
  padding-bottom: 0;
}

.video-list .grid-right {
  text-align: right;
}

.vl-video:hover p {
  color: hotpink;
}

/*********************************/
/*             TICKETS           */
/*********************************/

.ticket {
  padding: 3px;
  width: 100%;
  display: grid;
  gap: 0.5em;
  grid-template-areas: 
    'logo qr_info'
    'body body';
  margin: 3px 0;
  border: solid black 1px;
  background-color: white;
}

.ticketLeft {
  display: flex;
  flex-wrap: wrap;
}

.ticketLogo {
  grid-area: logo;
  /* margin: 2px; */
  width: clamp(100px, 40vw, 150px);
  height: clamp(100px, 40vw, 150px);
  background-image: url('/images/splash/scc_logo.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.ticketCenter {
  grid-area: body;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.ticketAdmit,
.ticketShow {
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1em;
}

.ticketRight {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  grid-area: qr_info;
  text-align: right;
  line-height: 1em;
}

.ticketQR {
  max-width: 100px;
  padding-bottom: 5px;
}

/*********************************/
/*             STRIPE            */
/*********************************/

/* form {
  width: 30vw;
  min-width: 500px;
  align-self: center;
  box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
  border-radius: 7px;
  padding: 40px;
} */

.hidden {
  display: none;
}

#payment-message {
  color: rgb(105, 115, 134);
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
  padding: 2rem;
}

#payment-form {
  padding: 20px;
  max-width: 450px;
  margin: 50px auto;
  background-color: var(--very-lt-grey);
  border: solid 3px var(--a-primary-color-lt);
  border-radius: var(--border-radius-box);
}

#payment-form button {
  width: 100%;
}

/* Buttons and links */
/* button {
  background: #5469d4;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
} */
/* button:hover {
  filter: contrast(115%);
}
button:disabled {
  opacity: 0.5;
  cursor: default;
} */

/* spinner/processing state, errors */
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 600px) {
  form {
    /* width: 80vw; */
    min-width: initial;
  }
}

/*********************/
/* MISSION STATEMENT */
/*********************/

.quotation {
  z-index: 10;
  text-indent: 2em;
  font-size: 1.25em;
  font-style: italic;
  padding-top: 2em;
  position: relative;
}

.quotation::before,
.quotation::after {
  font-family: 'Nunito Sans', sans-serif;
  font-style: normal;
  position: absolute;
  font-size: 10em;
  opacity: 0.25;
  color: var(--a-primary-color);
}

.quotation::before {
  top: -0.25em;
  left: -0.38em;
  content: "\0201C";
}

.quotation::after {
  bottom: -0.925em;
  right: 0em;
  content: "\0201D";
}

.icon-dropdown {
  fill: var(--a-primary-color);
  width: 22px;
  height: auto;
  margin-right: 0.4em;
  cursor: pointer;
  transform: translateY(5px);
}

.bio {
  display: none;
}

/************************/
/*   STAGE LAYOUT SVG   */
/************************/

#stageLayout {
  width: 100%;
  margin: 4vh auto;
}
.str4 {stroke:#343434;stroke-width:10.42;stroke-miterlimit:2.61313;}
.str3 {stroke:#E61E1E;stroke-width:41.67;stroke-miterlimit:2.61313;}
.str0 {stroke:#343434;stroke-width:27.78;stroke-miterlimit:2.61313;}
.str2 {stroke:#343434;stroke-width:6.94;stroke-miterlimit:2.61313;}
.str1 {stroke:#343434;stroke-width:6.94;stroke-miterlimit:2.61313;}
.fil3 {fill:none;}
.fil8 {fill:#343434;}
.fil1 {fill:#343434;}
.fil6 {fill:#E61E1E;}
.fil5 {fill:#E61E1E;}
.fil2 {fill:white;}
.fil7 {fill:#343434;fill-rule:nonzero;}
.fil4 {fill:#E61E1E;fill-rule:nonzero;}
.fil0 {fill:#EBECEC;}
.fnt1 {font-weight:normal;font-size:333.33px;font-family:'Arial';}
.fnt3 {font-weight:normal;font-size:333.33px;font-family:'Arial';}
.fnt5 {font-weight:normal;font-size:333.33px;font-family:'Arial';}
.fnt0 {font-weight:bold;font-size:333.33px;font-family:'Arial';}
.fnt2 {font-weight:bold;font-size:333.33px;font-family:'Arial';}
.fnt4 {font-weight:bold;font-size:333.33px;font-family:'Arial';}
.fnt6 {font-weight:bold;font-size:333.33px;font-family:'Arial';}

#CURTAIN_SL {
  transform-origin: right;
  animation: curtainsSL infinite 5s alternate ease-in-out;
}

@keyframes curtainsSL {
  0% {
    transform: translate(10%, -12%) scale(42%, 200%);
  } 30% {
    transform: translate(10%, -12%) scale(42%, 200%);
  } 80% {
    transform: translate(0, 0) scale(100%);
  }
}

#CURTAIN_SR {
  transform-origin: left;
  animation: curtainsSR infinite 5s alternate ease-in-out;
}

@keyframes curtainsSR {
  0% {
    transform: translate(-10%, -9%) scale(42%, 200%);
  } 30% {
    transform: translate(-10%, -9%) scale(42%, 200%);
  } 80% {
    transform: translate(0, 0) scale(100%);
  }
}

#CURTAIN_TEXT {
  opacity: 0;
  animation: curtainText infinite 5s alternate;
}

@keyframes curtainText {
  0% {
    opacity: 0;
  } 35% {
    opacity: 0;
  } 55% {
    opacity: 1;
  } 100% {
    opacity: 1;
  }
}

#STAGE_WIDTH {
  animation: stageWidth 5s infinite alternate ease-in-out;
}

@keyframes stageWidth {
  0% {
    transform: translateY(60%);
  } 15% {
    transform: translateY(60%);
  } 65% {
    transform: translateY(0);
  }
}


/********************/
/*   ADMIN PAGES    */
/********************/

.adminContent {
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 10px auto;
  gap: 2rem;
  padding: 10px;
  /* margin-left: auto;
  margin-right: auto; */
}

.admin-section {
  display: flex;
  flex: 0 1 375px;
  flex-direction: column;
}

.adminPageTitle {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
  margin-bottom: 25px;
  border: solid 3px var(--a-primary-color);
  border-radius: 20px;
}

.adminPageTitle button {
  border: 2px solid var(--a-primary-color);
  border-radius: 0px 12px 12px 0px;
}

.adminPageTitle button,
.speakerAllHeader button,
.speakerGroupHeader button {
  width: 3rem;
  font-size: var(--fs-500);
}

.speakerInAll button,
.speakerInGroup button {
  width: 4rem;
  font-size: var(--fs-400);
}

.adminPageTitle h1 {
  text-align: center;
  flex: auto;
}

.regChoir {
  font-weight: 900;
  font-size: var(--fs-500);
  text-transform: uppercase;
  line-height: 0.8em;
  padding-top: 1em;
  color: var(--dk-grey);
}

.regSchool {
  font-weight: 500;
  font-size: var(--fs-400);
  text-transform: uppercase;
  line-height: 1.25em;
  padding-bottom: 0.35em;
  color: var(--dk-grey);
}

.regContact {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  line-height: 0.65em;
}

.regContact p {
  line-height: 0.65em;
}

.regName {
  text-transform: capitalize;
}

.regDetails {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--fs-200);
}

.speakerTable {
  flex-grow: 1;
  text-align: center;
}

.speakerGroupHeader,
.speakerAllHeader {
  display: flex;
  background-color: var(--a-primary-color);
}

.speakerAllHeader,
.speakerAllHeader button,
.speakerGroupHeader,
.speakerGroupHeader button {
  border-radius: 15px 15px 0px 0px;
}

.speakerAllHeader h2,
.speakerGroupHeader h2 {
  padding: 0.5rem 0px;
  flex-grow: 1;
  /* padding-top: 0.5rem; */
  color: var(--a-contrast-text-color);
}

.speakerInAll,
.speakerInGroup {
  display: flex;
  padding: 6px 0px;
}

.speakerInAll,
.speakerInGroup {
  border-color: var(--a-primary-color);
  border-style: solid;
  border-width: 0px 1px 1px 1px;
}

.speakerInAll p,
.speakerInGroup p {
  flex-grow: 1;
  font-size: var(--fs-400);
}

.speakerInAll a {
  width: 100%;
}

.no-border {
  border: none;
}

.btn-pointer {
  cursor: pointer;
}

.btn-grab {
  cursor: grab;
}

.btn-primary svg {
  color: var(--a-primary-color);
}

.btn-contrast {
  background-color: var(--a-primary-color);
}

.btn-contrast svg {
  color: var(--a-contrast-text-color);
}

.btn-add-bottom {
  flex-grow: 1;
  color: var(--a-primary-color);
}
.speaker-group {
  margin-bottom: 20px;
}

.speakers-group {
  background-color: transparent;
} 

.wide-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

#bio {
  min-height: 200px;
}

.drop-zone {
  padding: 3px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 10px 0px 40px;
  /* margin-right: auto;
  margin-left: auto; */
}

.drop-zone-input {
  display: none;
}

.drop-zone-small {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.drop-zone-small .drop-zone-thumb {
  border-radius: 50%;
}

.drop-zone-medium {
  max-width: 500px;
  aspect-ratio: 4/3;
}

.drop-zone-large {
  max-width: 500px;
  aspect-ratio: 16/9;
}

.drop-zone-thumb {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-button);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--a-primary-color-lt);
}

.drop-zone-thumb::after {
  content: attr(data-label);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 0;
  color: var(--a-contrast-text-color);
  background: var(--a-primary-color) 0.5;
  text-align: center;
}

.drop-zone-text {
  color:hsl(0, 0%, 60%);
}

.drop-zone span {
  font-size: var(--fs-400);
  padding: 15px;
}

.drop-zone label {
  position: absolute;
  inset: 0;
}

.circle {
  border-radius: 50%!important;
}

label span {
  font-size: var(--fs-200);
  font-style: italic;
}

/*********************************/
/*        TICKET CHECKIN         */
/*********************************/

.tcktCheckIn {
  max-width: 500px;
  margin: 0 auto;
  padding: 2vw;
}

.formFieldGrid {
  display: grid;
  margin-top: 20px;
}

.formFieldGrid label {
  text-align: center;
}
.formFieldGrid input[type="checkbox"] {
  margin-left: 12px;
}

#ticketIDStatus,
#orderIDStatus
 {
  min-height: 30px;
}
#ticketIDStatus p,
#orderIDStatus p
 {
  line-height: 1;
  padding-bottom: 0px;
}

#emailStatus button {
  margin: 5px;
  padding: 3px 15px;
  font-weight: 500;
  font-size: 1.25rem;
}

.checkInBtn {
  height: 30px;
  border-width: 0;
  padding: 0px 5px;
}

.tabContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.tabBtn {
  text-align: center;
  /* border: red 3px solid; */
  width: 33.3%;
  font-weight: 700;
  padding: 10px 15px;
  border-radius: 10px 10px 0px 0px;
  border-width: 0.5px 0.5px 0px 0.5px;
}

.tabBtn-active {
  background-color: var(--a-primary-color);
  color: var(--a-contrast-text-color);
}

.tabContent {
  display: none;
}

/*********************************/
/*           PROGRAM             */
/*********************************/

.color-picker > fieldset {
  position: absolute;
  top: 0;
  left: 20%;

  border: 0;
  display: flex;
  gap: 2rem;
  width: fit-content;
  background: var(--a-background-color);
  padding: 1rem 1rem 0.5rem;
  border-radius:  0 0 1rem 1rem;
}

.color-picker input[type="radio"] {
  appearance: none;
  width: 1rem;
  height: 1rem;
  border: none;
  outline: 3px solid var(--radio-color, currentColor);
  outline-offset: 2px;
  border-radius: 50%;
}

.color-picker input[type="radio"]:checked {
  background-color: var(--radio-color);
}

.color-picker input[type="radio"]#dark {
  --radio-color: #333;
}

.color-picker input[type="radio"]#mid {
  --radio-color: #888;
}

.color-picker input[type="radio"]#light {
  --radio-color: #fff;
}

.color-picker input[type="radio"]#red {
  --radio-color: var(--a-primary-color);
}

.color-picker input[type="radio"]#pink {
  --radio-color: pink;
}

:root:has(#dark:checked) {
  --pgm-body-bg: hsl(0, 0%, 10%);
  --pgm-heading: var(--a-contrast-text-color);
  --pgm-text: hsl(0, 0%, 95%);
  --pgm-sponsor-bg:hsl(0, 0%, 75%);
}

.dark {
  --pgm-body-bg: hsl(0, 0%, 10%);
  --pgm-heading: var(--a-contrast-text-color);
  --pgm-text: hsl(0, 0%, 95%);
  --pgm-sponsor-bg:hsl(0, 0%, 75%);
}

:root:has(#mid:checked) {
  --pgm-body-bg: hsl(0, 0%, 75%);
  --pgm-heading: hsl(0, 0%, 35%);;
  --pgm-text: hsl(0, 0%, 10%);
  --pgm-sponsor-bg:hsl(0, 0%, 75%);
}

.mid {
  --pgm-body-bg:hsl(0, 0%, 75%);
  --pgm-heading:hsl(0, 0%, 35%);;
  --pgm-text:hsl(0, 0%, 10%);
  --pgm-sponsor-bg:hsl(0, 0%, 75%);
}

:root:has(#light:checked) {
  --pgm-body-bg:hsl(0, 0%, 98%);
  --pgm-heading: var(--off-black);
  --pgm-text: var(--dk-grey);
  --pgm-sponsor-bg:hsl(0, 0%, 98%);
}

.light {
  --pgm-body-bg:hsl(0, 0%, 98%);
  --pgm-heading:rgb(14, 10, 10);
  --pgm-text: var(--dk-grey);
  --pgm-sponsor-bg:hsl(0, 0%, 98%);
}

:root:has(#pink:checked) {
  --pgm-body-bg:hsl(310 50% 90%);
  --pgm-heading:hsl(310 50% 25%);
  --pgm-text:hsl(310 50% 15%);
  --pgm-sponsor-bg:hsl(310 50% 90%);
}

.pink {
  --pgm-body-bg:hsl(310 50% 90%);
  --pgm-heading:hsl(310 50% 25%);
  --pgm-text:hsl(310 50% 15%);
  --pgm-sponsor-bg:hsl(310 50% 90%);
}

:root:has(#red:checked) {
  --pgm-body-bg: var(--a-primary-color);
  --pgm-heading: var(--a-contrast-text-color);
  --pgm-text: white;
  --pgm-sponsor-bg:  var(--a-contrast-text-color);
}

.red {
  --pgm-body-bg: var(--a-primary-color);
  --pgm-heading: var(--a-contrast-text-color);
  --pgm-text: white;
  --pgm-sponsor-bg:  var(--a-contrast-text-color);
}

.schedule {
  display: grid;
  row-gap: 5px;
  grid-template-columns: 100px 1fr;
}

.schedule h5 {
  text-align: right;
  padding-right: 10px;
  font-size: 1.35rem;
}

.schedule p {
  font-weight: 300;
  font-size: 1.35rem;
}

.pgmcontent {
  background-color: var(--pgm-body-bg);
}

.pgmwrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.pgmwrapper section h2 {
  padding: 0.25em 0;
}

.pgmcontent section {
  padding: 0.5em 1em;
}

.pgmcontent p,
.pgmcontent a,
.pgmcontent ul li {
  color: var(--pgm-text);
  padding-bottom: 0;
}

.pgmcontent h2,
.pgmcontent h3,
.pgmcontent h4,
.pgmcontent h5 {
  color: var(--pgm-heading);
  margin-left: 0;
  /* margin-top: 0.5em; */
 }
/* .section-poster {
  background-color: #000;
} */

.pgmcontent h5,
.pgmcontent p {
  line-height: 1.35rem;
}
 
.pgm-poster-img {
  background-image: url("../images/main-page/hero-image.png");
  min-height: 500px;

  background-attachment: fixed;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;

  /* background-color: #000; */
  /* opacity: 0.6; */
  filter: saturate(0.65);
}

.pgm-poster-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    background-color: rgb(0 0 0 / 0.75);
    padding-bottom: 15px;
}

.pgm-poster-text h2 {
  font-size: var(--fs-600);
  color: var(--a-background-color);
}

.pgm-list-grid {
  display: grid;
  row-gap: 5px;
  grid-template-columns: 1fr 1fr;
}

.pgmschedule {
  display: grid;
  row-gap: 5px;
  grid-template-columns: 100px 1fr;
}

.pgm-list-key {
  text-align: right;
  padding-right: 0.75em;
}

.pgm-list-value {
  margin-bottom: 0.5em;
}

.pgmjudge img {
  width: 150px;
  height: 200px;
  float: left;
  margin-top: 0.3em;
  margin-right: 0.75em;
  margin-bottom: 0.5em;
}

.section-contents {
  text-align: center;
}

.pgmsponsors {
  background-color: var(--pgm-sponsor-bg);
}

.pgmquotation {
  padding-top: 0.5em;
  margin-bottom: 1em;
  z-index: 10;
  text-indent: 2em;
  font-size: 1.25em;
  font-style: italic;
  /* padding-top: 2em; */
  position: relative;
}

.pgmquotation::before,
.pgmquotation::after {
  font-family: 'Nunito Sans', sans-serif;
  font-style: normal;
  position: absolute;
  font-size: 10em;
  opacity: 0.5;
  color: var(--a-primary-color);
}

.pgmquotation::before {
  top: 0.2em;
  left: -0.33em;
  content: "\0201C";
}

.pgmquotation::after {
  bottom: -0.35em;
  right: 0em;
  content: "\0201D";
}





/*********************************/
/*            FOOTER             */
/*********************************/

footer p,
footer a {
  /* color: var(--a-background-color); */
  color: var(--clr-off-white);
  letter-spacing: 0.1em;
  /* font-size: var(--fs-200); */
  transition: 0.25s;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4vw;
  /* color: var(--a-background-color); */
  background: var(--a-primary-color);
  /* background-color: var(--a-primary-color-dk); */
  padding: 20px 10px;
  text-align: center;
  /* font-size: 0.7rem; */
}


footer a:hover {
  color: var(--a-contrast-text-color);
  transform: translateY(-2px);
  /* text-shadow: 0px 5px 20px rgba(255, 255, 255, 0.75); */
  /* text-shadow: 0px 0px 10px rgba(251, 249, 222, 0.75); */
}

.footer-credits,
.footer-about {
  display: flex;
  flex-direction: column;
  min-width: 145px;
}


.footer-about {
  text-align: right;
  text-transform: uppercase;
  font-weight: 500;
  font-size: var(--fs-400);
}

.footer-credits p {
  font-size: var(--fs-200);
  line-height: 1.4em;
}

.footer-social {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 20px;
  margin-bottom: 8px;
}

.social-icon {
  display: block;
  margin: 0px auto;
  width: 40px;
  height: 40px;
  fill: var(--clr-off-white);
  border-radius: 5px;
  /* box-shadow: 0px 5px 10px 0px rgba(255, 255, 255, 0.25); */
  /* filter: drop-shadow(0px 5px 10px 0px rgba(255, 255, 255, 0.5)); */
  transition: all ease 0.2s;
}

footer svg:hover path {
  fill: var(--a-contrast-text-color);
}

footer svg:hover {
  transform: translateY(-1px);
  /* box-shadow: 0px 5px 20px 0px rgba(255, 255, 255, 0.75); */
  /* box-shadow: 0px 0px 10px 0px rgba(251, 249, 222, 0.75); */
}


/*********************************/
/*      small-Desktop layout     */
/*********************************/

@media only screen and (min-width: 400px) {

  .section-splash {
    aspect-ratio: 4/3;
  }

}

/*********************************/
/*    less small-Desktop layout  */
/*********************************/

@media only screen and (min-width: 600px) {

  .address {
    padding-left: clamp(0px, 4vw, 3rem);
  }

  .ticket {
    grid-template-areas: 
      'logo body body qr_info';
  }
}

/*********************************/
/*       mid-Desktop layout      */
/*********************************/

@media only screen and (min-width: 700px) {

  /* .hero-img {
    margin-top: 25px;
    width: 60%;
    filter: saturate(1);
    right: 0;
  } */

  /* .hero-text {
    margin-top: 225px;
    margin-bottom: 300px;
  } */

  .section-splash {
    aspect-ratio: 16/7;
  }

  .modalpckg-flag {
    max-width: 200px;
  }
  
  .modal-price {
   Font-size: 7rem;
  }

  /* .videoPlaylist {
    margin: 1vw 25vw;
  } */

  .singleVideo {
    margin: 1vw 8vw;
  }
  /* .counter-unit {
    width: 8rem;
  }
  
  .counter-unit > div {
    font-size: 4rem;
  } */

}

/*********************************/
/*     main Desktop layout       */
/*********************************/

@media only screen and (min-width: 870px) {

  .videoPlaylist {
    margin: 1vw 15vw;
  }

  .boxed-text {
    margin: 20px auto;
  }

  .menu-bar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 5%;
    padding-right: 3%;
  }

  .menu-bar a{
    color: var(--a-contrast-text-color);
    font-size: 1.2rem;
    opacity: 1;
  }

  .menu-bar li {
    transition: opacity 0.5s;
  }
  .menu-bar li:hover {
    background-color: var(--a-background-color);
  }

  .nav-head ul a {
    color: var(--a-primary-color-dk);
  }

  .navigation a:hover {
    color: var(--a-primary-color);
    /* background-color: rgba(245, 221, 183, 0.75); */
    /* border: 2px solid var(--a-primary-color); */
  }

  .nav-toggle-label{
    display: none;
  }

  .navigation {
    all: unset;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    position: relative;
    background: none;
    transform: scale(1, 1);
  }

  .navigation a {
    display: inline-block;
    font-weight: 400;
  }

  .navigation ul {

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;

  }
  
  .navigation ul li {
    position: relative;
    margin: 0px;
    background-color: (var(--a-contrast-text-color));
    padding-left: 5px;
    color: white;
    transition: 0.5s;
    padding-bottom: 0;
  }

  .navigation ul li ul {
    text-align: right;
    display: none;
    position: absolute;
    /* right: -15px; */
    right: 0;
    opacity: 0;
    transition: 0.5s;
    /* padding-top: 10px; */
  }

  .navigation ul li ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    /* padding-right: 15px; */
    background-color: var(--a-background-color);
    /* opacity: 0; */
    transition: opacity 0.25s;
  }

  .navigation ul li:hover ul {
    display: block;
    opacity: 1;
  }

  .navigation ul li ul li a {
    font-size: 1rem;
    font-weight: 500;
    /* color: rgba(255, 255, 255, 0.9); */
    transition: 0.25s;
    white-space: nowrap;
  }

  .navigation ul li ul li:hover,
  .navigation ul li ul li:hover a{
    /* background-color: var(--sip-teal); */
    color: var(--a-primary-color);
  }

  .nav-thumb {
    margin: 25px;
  }

  .auction-item-card .auction-item-sub-section:nth-of-type(2) .auction-section {
    margin-bottom: 35px;
  }

  .page-body {
    /* margin-top: 10px; */
    padding: 25px;
  }

  .splash-cube {
    width: var(--splash-cube-m);
    height: var(--splash-cube-m);
  }

  .sc-face {
    width: var(--splash-cube-m);
    height: var(--splash-cube-m);
    background-size: var(--splash-cube-m);
  }

  .sc-front {
    transform: translateZ(calc(var(--splash-cube-m)* 0.5));
  }

  .sc-back {
    transform: translateZ(calc(0px - (var(--splash-cube-m)* 0.5))) rotateY(180deg);
  }

  .sc-left {
    transform: translateX(calc(0px - (var(--splash-cube-m)* 0.5))) rotateY(-90deg);
  }

  .sc-right {
    transform: translateX(calc(var(--splash-cube-m)* 0.5)) rotateY(90deg);
  }

  .sc-top {
    transform: translateY(calc(0px - (var(--splash-cube-m)* 0.5))) rotateX(90deg);
  }

  .sc-bottom {
    transform: translateY(calc(var(--splash-cube-m)* 0.5)) rotateX(-90deg);
  }

}


/*********************************/
/*      large-Desktop layout     */
/*********************************/

@media only screen and (min-width: 1400px) {

  .section-splash {
    aspect-ratio: 3/1;
  }

  /* .section-body {
    margin: 0 20vw;
  } */

  .splash-cube {
    width: var(--splash-cube-l);
    height: var(--splash-cube-l);
  }

  .sc-face {
    width: var(--splash-cube-l);
    height: var(--splash-cube-l);
    background-size: var(--splash-cube-l);
  }

  .sc-front {
    transform: translateZ(calc(var(--splash-cube-l)* 0.5));
  }

  .sc-back {
    transform: translateZ(calc(0px - (var(--splash-cube-l)* 0.5))) rotateY(180deg);
  }

  .sc-left {
    transform: translateX(calc(0px - (var(--splash-cube-l)* 0.5))) rotateY(-90deg);
  }

  .sc-right {
    transform: translateX(calc(var(--splash-cube-l)* 0.5)) rotateY(90deg);
  }

  .sc-top {
    transform: translateY(calc(0px - (var(--splash-cube-l)* 0.5))) rotateX(90deg);
  }

  .sc-bottom {
    transform: translateY(calc(var(--splash-cube-l)* 0.5)) rotateX(-90deg);
  }
}

/*********************************/
/*      jumbo-Desktop layout     */
/*********************************/

@media only screen and (min-width: 2000px) {

  .section-splash {
    aspect-ratio: 4/1;
  }
}

/************************************/
/* LOADER https://loading.io/css/ */
/************************************/

.lds-hourglass {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  }

.lds-hourglass:after {
  content: " ";
  display: block;
  border-radius: 50%;
  width: 0;
  height: 0;
  margin: 6px;
  box-sizing: border-box;
  border: 8px solid var(--a-primary-color);
  border-color: var(--a-primary-color) transparent var(--a-primary-color) transparent;
  animation: lds-hourglass 1.2s infinite;
  }

@keyframes lds-hourglass {
  0% {
    transform: rotate(0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  50% {
    transform: rotate(900deg);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  100% {
    transform: rotate(1800deg);
  }
}



.content-active {
  display: block;
}

.content-flex {
  display: flex;
}

.content-inactive {
  display: none;
}

.modal-spkr-active {
  display: block;
  /* transform: translateY(0px); */
  opacity: 1;
  /* transition: transform 0.5s, opacity 0.5s; */
}

.modal-pckg-active {
  display: flex;
  opacity: 1;
}

.year-button-active {
  font-weight: 900;
}

.modal-photo-active {
	display: block;
	opacity: 1;
}