/* DEFINING CUSTOM VARIABLES */
:root{
  /* --a-primary-color: hsl(0, 0%, 25%); */
  /* --a-primary-color:hsl(185, 100%, 34%);
  --a-primary-color-lt: hsl(185, 100%, 44%); */
  --a-primary-color: #0C6399;
  --a-primary-color-lt: #FFAC51;
  /* --a-contrast-text-color: #ececec; */
  --a-contrast-text-color: #E6E335;
  --a-background-color: white;
  --a-btn-hover: #d8b5e9bb;
  --lt-blue: #0D94F0;
  --dk-blue: #0062A3;
  --lt-green: #24F061;
  --dk-green: #21A348;
  --dk-grey: hsl(0, 0%, 50%);
  --lt-grey: hsl(0, 0%, 65%);
  --very-lt-grey: #f5f5f5;
  --off-black: #222;
  --white-text: hsl(0, 0%, 100%);

  /* 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-serif: "Bellefair", serif; */
  --ff-sans-condensed: "Roboto Condensed", sans-serif;
  --ff-sans-normal: "Roboto", sans-serif;

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

  /* Border-Radius */
  /* --border-radius-box: 30px; */
  --border-radius-box: 15px;
  --border-radius-button: 6px;
 
  /* splash cube dimensions */
  --splash-cube: 100px;
  --splash-cube-half: 50%;
  /* --splash-cube: 200px; */

}

/* 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(--a-primary-color);
}

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-weight: 300;
}

ol, ul {
  list-style: none;
}

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

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

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

.drop-zone,
textarea,
input {
  padding-left: 5px;
  margin-bottom: 0.5rem;
  outline: none;
  border: solid 3px var(--lt-grey);
  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); */
}

/* From Kevin Powell */	
img,
picture {
    max-width: 100%;
    display: block;
}

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

/* 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: 1rem;
  line-height: 1.25rem;
  padding-top: 1rem;
}

.serverSuccess {
  color: green;
}

.serverError {
  color: red;
}



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

.background-white {
  background-color: white;
}

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

/********************/
/*    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: 4.5rem;
  /* background-image:  var(--border-gradient); */
  background-color: var(--a-primary-color);
}
 
.menu-bar a{
  color: var(--a-contrast-text-color);
  text-decoration: none;
  padding: 1px 7px;
  border-radius: var(--border-radius-button);
  border: 2px solid transparent;
  /* transition-duration: 1s; */
}

.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: 100%;
	right: 0px;
  background-color: var(--a-primary-color);
	opacity: 0.95;
	transform: scale(0, 1);
	transform-origin: right;
	transition: transform 400ms ease-in-out;
}

.navigation li{
	margin: 1.5em 0px;
}

.navigation a{
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
	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);
	height: 4px;
	width: 1.5em;
	border-radius: 2px;
	position: relative;
}

.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;
}

/*********************************/
/*        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: radial-gradient(circle at 50% 50%, #bee0f7 0%, #83C8F7 75%, #0D94F0 100%); */
  background-color: var(--a-background-color);
  /* background: url(../images/AwardsBackground001.jpg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.innerWrapper {
  position: relative;
  padding: 25px;
  width: 100%;
  min-height: 100%;
}

.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: 1px solid var(--a-primary-color);
}

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: 10vw;
  padding: 2rem;
  padding-bottom: 0.25rem;
  font-weight: 500;
  font-size: var(--fs-600);
  letter-spacing: 0.35rem;
}

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

.section-body {
  margin: 0 10vw;
  padding: 1rem 0 3rem;

}

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

.section-primary h2 {
  color: var(--a-primary-color);
}

.section-inverse {
  background-color: var(--a-primary-color);
}

.section-inverse h2 {
  color: var(--a-contrast-text-color);
}


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


.section-splash {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.splash-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/splash/splash-background.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 180vw;
  animation: zoomBckgrnd 3s;
}

@keyframes zoomBckgrnd {
  from {
    background-size: 300vw;
    opacity: 0;
  } to {
    background-size: 180vw;
    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: 0.5rem 0;
  font-weight: 600;
  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 2.5s
}

@keyframes splash-banner {
  0% {
    transform: translateY(100%);
  }
  60% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

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

.splash-cube-container {
  padding-top: 35px;
  width: 100%;
  /* height: 100%; */
  display: flex;
  justify-content: center;
	align-items: center;
  /* width: var(--splash-cube); */
  /* aspect-ratio: 1/1;
  perspective: 500px; */
}

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

.sc-face {
  width:  var(--splash-cube);
  aspect-ratio: 1/1;
  /* background: red; */
  background: url("../images/splash/scc_logo.png");
  background-size: 100px;
  position: absolute;

  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px var(--a-contrast-text-color);
}

.sc-front {
  transform: translateZ(50px);
}

.sc-back {
  transform: translateZ(-50px) rotateY(180deg);
}

.sc-left {
  transform: translateX(-50px) rotateY(-90deg);
}

.sc-right {
  transform: translateX(50px) rotateY(90deg);
}

.sc-top {
  transform: translateY(-50px) rotateX(90deg);
}

.sc-bottom {
  transform: translateY(50px) rotateX(-90deg);
}

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

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


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

/* .info-box {
  flex: 1 1 400px;
  min-width: 250px;
  max-width: 600px;
  margin-right: 3vw;
} */

/* .section-stats {
} */

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

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

.counter-unit {
  display: none;
  width: clamp(3.25rem, 8vw, 8rem);
  margin: 5px clamp(0.25rem, 1vw, 0.65rem) 10px;
  border-radius: 0.5rem;
  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);
}


.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-spkr-inner {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 600px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  margin: 0px auto;
}

.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-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: 900;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
  color: var(--a-contrast-text-color);
  opacity: 0.35;
  background-color: transparent;
  border: none;
  transition: 0.25s
}

.modal-pckg-close:hover,
.modal-close:hover {
  opacity: 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: 5px;
  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-contrast-text-color);
  font-weight: 700;
}

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

}





/********************/
/*    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: 1 1 300px;
  flex-direction: column;
  justify-content: space-between;
  /* margin: 0px 10px 10px 10px; */
  /* border: solid 5px gold; */
  background-color: rgba(255, 255, 255, 0.95);
  width: 100%;
  /* 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;
}

#messages > li {
  padding: 0.5rem 1rem;
}

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

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

.boxed-text {
  margin: 10px 10px 20px;
  padding: 25px 15px;
  max-width: 600px;
  border: solid 5px var(--a-primary-color);
  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-list li {
  text-align: left;
  list-style: square;
  margin-left: 1rem;
  line-height: 1.3rem;
  padding-bottom: 0.8rem;
}

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

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


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


.form-button,
.form-button-secondary {
  min-width: 20ch;
  text-align: center;

  margin: 0.5rem auto;
  border-radius: var(--border-radius-button);
  transition: 0.25s;
}

.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: var(--very-lt-grey);
  border: solid 3px var(--a-contrast-text-color);
}

.form-button-secondary:hover,
.form-button:hover {
  color: var(--a-primary-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;
}



/*********************************/
/*             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);
  border-radius: 8px;
}

#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;
  }
}

/********************/
/*   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;
}

.speakerTable {
  flex-grow: 1;
  /* border: solid 3px red; */
  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;
}

.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;
}

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

footer p{
  color: var(--white-text);
}

footer {
  color: var(--white-text);
  background-color: var(--a-primary-color);
  padding: 20px 0px;
  text-align: center;
  font-size: 0.7rem;
  /* min-height: 100px; */
}

footer img {
  display: block;
  margin: 0px auto;
  /* padding-top: 50px; */
}

footer a{
  color: var(--a-contrast-text-color); 
  font-weight: 800;
  transition: 0.5s;
}

footer a:hover {
  font-size: 0.75rem;
  color: white;
}

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

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

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

}

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

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

  .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 {
    padding-left: 5%;
    padding-right: 3%;
  }

  .menu-bar a{
    font-size: 1.2rem;
    opacity: 1;
  }

  .navigation a:hover {
    color: var(--a-primary-color);
    background-color: #ffffff;
    border: 2px solid var(--a-primary-color);
  }

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

  .navigation {
    all: unset;
    display: block;
    width: 100%;
    position: relative;
    background: none;
    transform: scale(1, 1);
  }

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

  .navigation ul {

    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style: none;
  }
  
  .navigation ul li {
    position: relative;
    margin: 0px;
    /* text-transform: uppercase; */
    padding-left: 5px;
    color: white;
    transition: 0.5s;
  }

  .navigation ul li ul {
    text-align: right;
    display: none;
    position: absolute;
    right: -15px;
    padding-top: 10px;
  }

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

  .navigation ul li ul li {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 15px;
    background-color: var(--sip-arctic-blue);
    /* transition: 0.5s; */
  }

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

  .navigation ul li ul li:hover,
  .navigation ul li ul li:hover a{
    background-color: var(--sip-teal);
    color: var(--sip-arctic-blue);
  }

  .navigation ul li a{
    border-radius: var(--border-radius-button);
  }

  .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;
  }

  /* .menu-bar img {
    display: inline-block;
    position: absolute;
    left: -15px;
    width: 1.5rem;
  } */
}


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

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

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

/*********************************/
/*      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;
}