*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: HCo-Gotham-Rounded-Light;
  src: url(/src/fonts/HCo-Gotham-Rounded-Light.ttf);
}


body {
  font-family: "HCo-Gotham-Rounded-Light";
  width: 100%;
  height: 100vh;
  flex-direction: row;
  background-color: #05326eee;
  color: white;
}


.menubar {
  position: relative;
  top: 0;
  height: 8vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.menubar .logo {
  position: relative;
  display: flex;
  height: 100%;
  width: 20%;
  max-width: 200px;
  margin-left: 25px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.menubar audio {
  position: relative;
  display: flex;
  margin-right: 25px;
}


.centercontent{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 84vh;
/*  overflow: hidden; */
  flex-direction: row;
}
.content {
  padding: 120px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  max-height: 75vh;
  height: 100%;
  width: 100%;
}


.mainvideoplayer {

  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  max-height: 88vh;
  aspect-ratio: 16 / 9;
}
.video-js {
  border-radius: 0px 0px 10px 10px;
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.01);
}

#full-container {
  --bs-gutter-x: 0;
  position: relative;
  height: 100%;
  width: 100%;
}
#video-player {
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}
/* Function overlay */
.top-overlay {
  position: absolute;
  display: flex;
  height: 100%;
  width: 100%;
  padding: 0.7%;
}

/* poll modal */

.poll-center {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center; 
  width: 100%;
  height: 100%;
  margin-left: -10px;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s;
}
.poll-center.hidden {
  opacity: 0;
  visibility: hidden;
}
.poll-modal {
  margin-bottom: 3%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 3;
  max-width: 80%;
  width: 100%;
  height: 100%;
  max-height: 50%;
  background-color: #006cb9cc;
  color: white;
  border-radius: 25px;
  border: none;
}
.poll .question {
  padding: 20px;
  color: #111;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  user-select: none;
}
.poll .answers {
  padding: 20px 20px 10px;
}
.poll .answers .answer {
  position: relative;
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  line-height: 40px;
  color: #111;
  margin-bottom: 10px;
  border: 1px solid #ffffff50;
  border-radius: 10px;
  cursor: pointer;
/*  overflow: hidden; */
  -webkit-user-select: none;
  user-select: none;
}
.poll .answer:hover {
  background-color: #ffffff99;
  opacity: 1;
}
.poll .answers .answer.selected {
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.poll .answers .answer.voted {
  opacity: 1;
  cursor: default;
}
.poll .answers .answer.voted:hover {
  background-color: transparent;
}
.poll .answers .answer.voted.selected {
  opacity: 1;
  cursor: default;
}
.poll .answers .answer span.percentage-value {
  position: absolute;
  top: 50%;
  right: 0px;
  width: auto;
  transform: translateY(-50%);
  color: white;
  font-size: 15px;
  padding-right: 10px;
}
.poll .answers .answer span.percentage-bar {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0%;
  height: 100%;
  background: #ffffff60;
  z-index: -1;
  transition: width 300ms ease-in-out;

}
.total-votes {
  display: flex;
  justify-content: center;
  opacity: 0.9;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}
.question-header {
  color: white;
  font-weight: bold;
}
.answer p {
  color: white;
}



.func-overlay {
  position: absolute;
  margin-left: 10px;
  margin-bottom: 10px;
  width: auto;
  align-self: flex-end;

}


/* Knapper */

#fscreen-btn, #spg-btn{
  margin-left: 10px;
}
.btn, .btn:disabled {
  background-color: #05326e;
  color: #ffffff;
  border-radius: 23px;
  border: none;  
  gap: 20px;
  font-size: 15px;
  padding: 7px 12px 7px 12px;
  width: 200px;
}
.btn:hover {
  background-color: #0a4da7;
}



#audio-control-blur {
  position: fixed;
  z-index: 10;
  left: 0; top: 0; right: 0; bottom: 0;
  height: 100%;
  width: 100%;
  background: #00000080;
  filter:blur(4px);
  -o-filter:blur(4px);
  -ms-filter:blur(4px);
  -moz-filter:blur(4px);
  -webkit-filter:blur(4px);
}

#audio-control {
  display: inline-block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 500px;
  z-index: 11;
  padding: 50px;
  background:#05326e;
  color: #ffffff;
  font-size: 2em;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
#audio-control:hover {
  background-color: #0a4da7;
}

.waitingNote {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.beskrivelse {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  border: none;
  border-radius: 25px;
  font-size: 1.2rem;
  background-color: #05326eee;
}
.beskrivelse p {
  text-align: center;
  margin: 0px;
}


footer {
  position: relative;
  height: 8vh;
  width: 100%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}



































/* responsive */

@media screen and (min-width: 200px) and (max-width: 390px) {

  .menubar .logo {
    margin-top: 3%;
    width: 30%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    max-width: 100%;
    width: 100%;
    height: 50%;
    max-height: 100%;
    margin-top: 50%;
    transform: translateY(-25%);
  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: -60%;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    max-width: 90%;
    margin-left: 3%;
    width: 100%;
    height: 100%;
    max-height: 80%;
    border-radius: 10px;
  }
  .poll .question {
    padding: 10px;
    text-align: center;
    font-size: 12px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 20px;
    font-size: 12px;
    padding: 0px 5px;
    line-height: 18px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 12px;
    padding-right: 5px;
  }
  .total-votes {
    font-size: 12px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 0.7em;
    padding: 5px 0px 5px 0px;
    width: 100px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -50%;
    height: 100%;
    max-height: 100vh;
    width: 100%;
  }
  #audio-control {
    margin-top: -20%;
    padding: 25px;
    font-size: 1.2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  footer {
    bottom: -100px;
    height: 100%;
    max-height: 2vh;
  }
    
}

@media screen and (max-width:420px) {

.menubar .logo {
  margin-top: 3%;
  width: 30%;
  margin-left: 50%;
  transform: translate(-50%);
}

.centercontent{
  max-width: 100%;
  width: 100%;
  height: 50%;
  max-height: 100%;
  margin-top: 50%;
  transform: translateY(-25%);
}
.content {
  padding: 10px;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}
.mainvideoplayer {
  margin-top: -60%;
  height: 80%;
  max-height: 100%;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}
.video-js {
  border-radius: 0px 0px 10px 10px;
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.01);
}


/* Function overlay */
.top-overlay {
  padding: 0.2%;
}

/* poll modal */

.poll-modal {
  margin-top: -7%;
  max-width: 90%;
  margin-left: 3%;
  width: 100%;
  height: 80%;
  max-height: 228px;
  border-radius: 10px;
}
.poll .question {
  margin-top: -2%;
  padding: 10px;
  text-align: center;
  font-size: 10px;
}
.poll .answers {
  padding: 8px 8px 4px;
}
.poll .answers .answer {
  height: 20px;
  font-size: 10px;
  padding: 0px 5px;
  line-height: 18px;
  margin-bottom: 5px;
  border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
  font-size: 10px;
  padding-right: 5px;
}
.total-votes {
  margin-top: -2%;
  font-size: 10px;
}

p{
  margin-bottom: 0px;
}

.func-overlay {
  position: absolute;
  margin-left: 0px;
  margin-bottom: 5px;
  width: auto;
}


/* Knapper */

#fscreen-btn, #spg-btn, #mute-btn{
  margin-left: 10px;
  font-size: 0.7em;
  padding: 5px 0px 5px 0px;
  width: 100px;
  gap: 5px;
  margin-left: 5px;
}

#audio-control-blur {
  margin-top: -40%;
  position: fixed;
  height: 104vh !important;
  max-height: 100vh !important;
  width: 100%;
}
#audio-control {
  width: 80%;
  margin-top: -20%;
  padding: 25px;
  font-size: 1.2em;
}
.waitingNote {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.beskrivelse {
  padding: 15px;
  border-radius: 10px;
  font-size: 0.8rem;
}
footer {
  bottom: -100px;
  height: 100%;
  max-height: 2vh;
}
}

@media screen and (min-width: 420px) and (max-width: 600px) {

  .menubar .logo {
    margin-top: 3%;
    width: 30%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    max-width: 100%;
    width: 100%;
    height: 50%;
    max-height: 100%;
    margin-top: 50%;
    transform: translateY(-25%);
  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: -60%;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -7%;
    max-width: 90%;
    margin-left: 3%;
    width: 100%;
    height: 100%;
    max-height: 85%;
    border-radius: 10px;
  }
  .poll .question {
    margin-top: -2%;
    padding: 10px;
    text-align: center;
    font-size: 12px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 20px;
    font-size: 12px;
    padding: 0px 5px;
    line-height: 18px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 12px;
    padding-right: 5px;
  }
  .total-votes {
    margin-top: -2%;
    font-size: 12px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 0.7em;
    padding: 5px 0px 5px 0px;
    width: 100px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -50%;
    position: fixed;
    height: 104vh !important;
    max-height: 110vh !important;
    width: 100%;
  }
  footer{
    margin-top: -15%;
  }
  #audio-control {
    width: 70%;
    margin-top: -25%;
    padding: 25px;
    font-size: 1.2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  footer {
    bottom: -100px;
    height: 100%;
    max-height: 2vh;
  }
    
}

@media screen and (min-width: 600px) and (max-width: 954px) {

  .menubar .logo {
    margin-top: 3%;
    width: 30%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    max-width: 100%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    margin-top: 50%;
    transform: translateY(-43%);
  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: -40%;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -7%;
    padding: 5%;
    max-width: 90%;
    margin-left: 1%;
    width: 80%;
    height: 76%;
    max-height: 400px;
    border-radius: 10px;
    
  }
  .poll .question {
    margin-top: -2%;
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 35px;
    font-size: 14px;
    padding: 0px 10px;
    line-height: 35px;
    margin-bottom: 10px;

  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 15px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -2%;
    font-size: 14px;  
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 5px 10px 5px;
    width: 155px;
    gap: 5px;
    margin-left: 10px;
    margin-bottom: 5px;
  }
  
  #audio-control-blur {
    margin-top: -25%;
    height: 120vh !important;
    max-height: 120vh !important;
    width: 100%;
  }
  img{
    margin-top: 10%;
  }
  #audio-control {
    margin-top: -10%;
    padding: 25px;
    font-size: 1.2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  footer {
    position:fixed;
    bottom: 0px;
    height: 100%;
    max-height: 4vh;
  }
    
}

@media screen and (min-width: 954px) and (max-width: 1024px) {

  .menubar .logo {
    margin-top: 4%;
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 60%;
    margin-top: 50%;
    transform: translateY(-50%);
  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: -40%;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 90%;
    max-height: 400px;
    border-radius: 10px;
    
  }
  .poll .question {
    margin-top: 1%;
    padding: 10px;
    text-align: center;
    font-size: 16px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -10px;
    font-size: 19px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -35%;
    height: 105vh !important;
    max-height: 110vh !important;
    width: 100%;
  }
  img{
    margin-top: 10%;
  }
  #audio-control {
    margin-top: -9%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {

  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 80%;
    width: 100%;
    max-width: 90%;
    margin-left: 5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -5%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    padding: 10px;
    text-align: center;
    font-size: 20px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: 1px;
    font-size: 20px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    height: 120vh !important;
    max-height: 130vh !important;
    width: 1220px;
    max-width: 1302px;
    margin-left: -2%;
  }
  #audio-control {
    margin-top: 6%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}

@media screen and (min-width: 1300px) and (max-width: 1700px){

  .menubar .logo {
    margin-top: 3%;
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -5%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    padding: 10px;
    text-align: center;
    font-size: 20px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: 1px;
    font-size: 20px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    height: 100%;
    max-height: 100vh;
    width: 100%;
  }
  #audio-control {
    margin-top: 5%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}




@media (orientation: landscape) and (min-width: 844px) and (max-width: 926px){

   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
        margin-top: -10%;
        padding: 5%;
        max-width: 80%;
        margin-left: 1%;
        width: 70%;
        height: 70%;
        max-height: 400px;
        border-radius: 10px;
  }
  .poll .question {
    margin-bottom: -8%;
    padding: 10px;
    text-align: center;
    font-size: 10px;
    border-bottom: none;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  p{
    text-decoration: none;
  }
  .poll .answers .answer {
    height: 20px;
    font-size: 10px;
    padding: 5px 10px;
    line-height: 3px;
    margin-bottom: 5px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 10px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -10px;
    font-size: 10px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 0.7em;
    padding: 10px 10px 10px 10px;
    width: 130px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 0% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 850px !important;
    max-width: 950px;
    margin-left: -100px;
  }
  #audio-control {
    margin-top: 25%;
    width: 70%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}


@media (orientation: landscape) and (width: 932px), (width: 1000px){
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 70%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 13px;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 12px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 12px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 12px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 0% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 910px !important;
    max-width: 940px;
    margin-left: -100px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 70%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}


@media (orientation: landscape) and (width: 915px){
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 70%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 13px;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 12px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 12px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 12px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 0% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 910px !important;
    max-width: 940px;
    margin-left: -100px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 70%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}

@media (orientation: landscape) and (width: 896px){
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 70%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 13px;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 12px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 12px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 12px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 0% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 910px !important;
    max-width: 940px;
    margin-left: -100px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 70%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}

@media (orientation: landscape) and (width: 667px){
   
  .centercontent{
    margin-top: -5% !important;
    height: 100%;
    max-height: 100%;
    width: 100%;
    max-width: 85%;
    margin-left: 30.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 60% !important;
    height: 80%;
    max-height: 100vh !important;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 70%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 13px;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 12px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 12px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 12px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 30% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 875px !important;
    max-width: 890px;
    margin-left: -100px;
  }

  #audio-control {
    margin-top: 35%;
    width: 80%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}

@media (orientation: landscape) and (width: 812px), (width: 926px) ,  (width: 854px), (width: 800px), (width: 760px), (width: 883px){
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  .poll-modal {
    margin-top: -10%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 70%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 13px;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 12px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 12px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 12px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 0% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 910px !important;
    max-width: 940px;
    margin-left: -100px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 70%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}


@media (orientation: portrait) and (width: 768px){

  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 80%;
    width: 100%;
    max-width: 90%;
    margin-left: 5%;

  }
  .content {
    margin-top: -10%;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -9%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    margin-bottom: -5%;
    border-bottom: none;
    padding: 10px;
    text-align: center;
    font-size: 17px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -15px;
    font-size: 17px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -30%;
    height: 120vh !important;
    max-height: 110vh !important;
    width: 840px;
    max-width: 900px;
    margin-left: -15%;
  }
  #audio-control {
    width: 70%;
    margin-top: -12%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}

@media (orientation: portrait) and (width: 1024px){

  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 80%;
    width: 100%;
    max-width: 90%;
    margin-left: 5%;

  }
  .content {
    margin-top: -10%;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -9%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    margin-bottom: -5%;
    border-bottom: none;
    padding: 10px;
    text-align: center;
    font-size: 17px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -15px;
    font-size: 17px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -20%;
    height: 120vh !important;
    max-height: 110vh !important;
    width: 1040px;
    max-width: 1100px;
    margin-left: -7%;
  }
  #audio-control {
    width: 70%;
    margin-top: -12%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}

@media (orientation: landscape) and (width: 1024px){

  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 80%;
    width: 100%;
    max-width: 90%;
    margin-left: 5%;

  }
  .content {
    margin-top: -12%;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -7%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    padding: 10px;
    text-align: center;
    font-size: 17px;
    margin-bottom: -5%;
    border-bottom: none;

  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -10px;
    font-size: 17px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    height: 120vh !important;
    max-height: 130vh !important;
    width: 1140px;
    max-width: 1302px;
    margin-left: -18%;
  }
  #audio-control {
    margin-top: -12%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}


@media (orientation: landscape) and (min-width: 667px) and (max-width: 852px){
  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  .poll-modal {
    margin-top: -17%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 90%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 10px;
border-bottom: none;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 20px;
font-size: 10px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 10px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 10px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    font-size: 0.7em;
    padding: 10px 0px 10px 0px;
    width: 120px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 10% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 955px !important;
    max-width: 910px;
    margin-left: -258px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 80%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
  }

}


@media (orientation: landscape) and (max-width: 568px){
   
  .centercontent{
    margin-top: -1% !important;
    height: 100%;
    max-height: 90%;
    width: 100%;
    max-width: 75%;
    margin-left: 12.5%;

  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: 40% !important;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  .poll-modal {
    margin-top: -12%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 95%;
    height: 90%;
    max-height: 400px;
    border-radius: 10px;
}
.poll .question {
margin-bottom: -8%;
padding: 10px;
text-align: center;
font-size: 10px;
border-bottom: none;
}
.poll .answers {
padding: 8px 8px 4px;
}
p{
text-decoration: none;
}
.poll .answers .answer {
height: 15px;
font-size: 10px;
padding: 5px 10px;
line-height: 3px;
margin-bottom: 5px;
border-radius: 5px;
}

.poll .answers .answer span.percentage-value {
font-size: 10px;
padding-right: 10px;
}
.total-votes {
margin-top: -10px;
font-size: 10px;
}
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    font-size: 0.7em;
    padding: 2px 0px 2px 0px;
    width: 100px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 10% !important;
    height: 135vh !important;
    max-height: 150vh !important;
    width: 954px !important;
    max-width: 1052px;
    margin-left: -235px;
  }

  footer{
    margin-top: -114%;
  }
  #audio-control {
    margin-top: 25%;
    width: 90%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    margin-top: -10%;
    padding: 8px;
    border-radius: 10px;
    font-size: 1rem;
  }

}


@media (orientation: portrait) and (height: 1792px){

  .menubar .logo {
    width: 50%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    height: 100%;
    max-height: 80%;
    width: 100%;
    max-width: 90%;
    margin-left: 5%;

  }
  .content {
    margin-top: 30%;
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: 2%;
    padding: 5%;
    max-width: 80%;
    margin-left: 1%;
    width: 70%;
    height: 80%;
    max-height: 400px;
    border-radius: 10px;
  }
  .poll .question {
    margin-bottom: -5%;
    border-bottom: none;
    padding: 10px;
    text-align: center;
    font-size: 17px;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 40px;
    font-size: 18px;
    padding: 5px 10px;
    line-height: 25px;
    margin-bottom: 10px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 18px;
    padding-right: 10px;
  }
  .total-votes {
    margin-top: -15px;
    font-size: 17px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    margin-left: 10px;
    font-size: 1.2em;
    padding: 10px 25px 10px 25px;
    width: 155px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: 8%;
    height: 151vh !important;
    max-height: 157vh !important;
    width: 828px;
    max-width: 1005px;
    margin-left: -6%;
  }
  #audio-control {
    width: 70%;
    margin-top: 11%;
    padding: 25px;
    font-size: 2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 25px;
    border-radius: 10px;
    font-size: 1.3rem;
  }
  footer {
    position: fixed;
    max-height: 4vh;
    font-size: 20px;
  }
  
}



















@media screen and (max-width:320px) {

  .menubar .logo {
    margin-top: 3%;
    width: 30%;
    margin-left: 50%;
    transform: translate(-50%);
  }
  
  .centercontent{
    max-width: 100%;
    width: 100%;
    height: 50%;
    max-height: 100%;
    margin-top: 50%;
    transform: translateY(-25%);
  }
  .content {
    padding: 10px;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .mainvideoplayer {
    margin-top: -60%;
    height: 80%;
    max-height: 100%;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .video-js {
    border-radius: 0px 0px 10px 10px;
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.01);
  }
  
  
  /* Function overlay */
  .top-overlay {
    padding: 0.2%;
  }
  
  /* poll modal */
  
  .poll-modal {
    margin-top: -10%;
    max-width: 90%;
    margin-left: 3%;
    width: 100%;
    height: 90%;
    max-height: 228px;
    border-radius: 10px;
  }
  .poll .question {
    margin-top: 1%;
    margin-bottom: -5%;
    padding: 10px;
    text-align: center;
    font-size: 10px;
    border-bottom: none;
  }
  .poll .answers {
    padding: 8px 8px 4px;
  }
  .poll .answers .answer {
    height: 15px;
    font-size: 10px;
    padding: 0px 5px;
    line-height: 10px;
    margin-bottom: 2px;
    border-radius: 5px;
  }
  
  .poll .answers .answer span.percentage-value {
    font-size: 10px;
    padding-right: 5px;
  }
  .total-votes {
    margin-top: -2%;
    font-size: 10px;
  }
  
  p{
    margin-bottom: 0px;
  }
  
  .func-overlay {
    position: absolute;
    margin-left: 0px;
    margin-bottom: 5px;
    width: auto;
  }
  
  
  /* Knapper */
  
  #fscreen-btn, #spg-btn, #mute-btn{
    font-size: 0.5em;
    padding: 3px 0px 3px 0px;
    width: 70px;
    gap: 5px;
    margin-left: 5px;
  }
  
  #audio-control-blur {
    margin-top: -40%;
    position: fixed;
    height: 104vh !important;
    max-height: 100vh !important;
    width: 100%;
  }
  #audio-control {
    width: 80%;
    margin-top: -20%;
    padding: 25px;
    font-size: 1.2em;
  }
  .waitingNote {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .beskrivelse {
    padding: 15px;
    border-radius: 10px;
    font-size: 0.8rem;
  }
  footer {
    bottom: -100px;
    height: 100%;
    max-height: 2vh;
  }
  }

