    html, body{
        padding:0;
        margin:0;
        width: 100vw;
        height: 100vh;
        overflow:hidden;
        font-family: 'Exo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
		        background:#000;

    }
	.hide-cursor{
		cursor:none;
	}
    .playlist{
        background:#000;
        color:#fff;
        width: 100vw;
        height: 100vh;
        position:relative;
        margin:0;
        padding:0;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-direction:column;
    }
    .loginmessage, .instructions{
        display:block;
        box-sizing:border-box;
        width: 100%;
        padding: 0 10%;
    }
    .loginmessage{
        position:relative;
        z-index:9999;
        margin-bottom:2rem;
    }
    .playlist video{
        position:absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color:#000;
    }

    #start_pres{
      color:#fff;
      font-family: Exo;
      font-size: 2rem;
      width: fit-content;
      padding: 0.5em 1em;
    }
#playlistVideos:not(:has(.mcubedplayer-video-active)) video{
	opacity: 0;
}
    .playlist p{
        margin:1rem;
    }
    .playlist p:first-child{
        font-size:1.6rem;
    }
    .playlist a{
      color: #ffffff;
    }
    ul li{
      display:none!important;
    }
    .mcubedplayer-video-hidden{
        z-index:0;
    }
    .mcubedplayer-video-active{
        z-index:2;
    }
    #mcubedplayer_login label{
        margin: 1rem 0.25rem 1rem 1rem;
    }
    #mcubedplayer_login input{
      padding: 0.5rem;
      border: 1px solid #8c8f94;
      border-radius:4px;
      box-sizing:border-box;
  }
  #mcubedplayer_login button, #error-message button, #signOutBtn{
      background:#A81735;
      color:#fff;
      border:none;
      padding: 1rem;
      display:inline-block;
      font-weight:600;
      text-transform:uppercase;
      border-radius:4px;
      box-sizing:border-box;
  }
  #mcubedplayer_login button:hover, #error-message button:hover, #signOutBtn:hover{
    cursor:pointer;
    background:color-mix(in srgb, #A81735 80%, #000 20%);
  }
  #mcubedplayer_login button{
    margin-top:2rem;
  }
  #mcubedplayer_logged_in{
    display:none;
  }
  .m3p-login-row{
    width:100%;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    margin-bottom:1rem;
}
.m3p-login-row label{
    min-width:6rem;
}
.m3p-login-row input{
    min-width:12rem;
    flex-grow:2;
}
    #signOutBtn{
        margin: 1rem;
    }
    #mcubedplayer_logged_in, #mcubedplayer_login{
      animation: fadeIn 0.3s ease 1 forwards;
      opacity:0;
    }
    #m3p_qr{
      max-width: 15vw;
      min-width: 200px;
      width: 100%;
      height: auto;
    }
    .spinner{
        display:none;
    }
.lds-spinner {
  /* change color here */
  color: #fff;
}
.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: currentColor;
  position: relative;
  width: 80px;
  height: 80px;
  display:inline-block;
}
.lds-spinner div {
  transform-origin: 40px 40px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3.2px;
  left: 36.8px;
  width: 6.4px;
  height: 17.6px;
  border-radius: 20%;
  background: currentColor;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut{
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100%{
    display: none;
  }
}