*, *::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: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: transparent;
}

#audio-control-blur {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  height: 100%;
  width: 100%;
  background: #000000cc;
}

#audio-control {
  display: inline-block;
  position: relative;
  max-width: 500px;
  z-index: 11;
  padding: 50px;
  background:#05326e;
  color: #ffffff;
  font-size: 1.4em;
  border: none;
  border-radius: 0px;
  cursor: pointer;
  opacity: 0.8;
}
#audio-control:hover {
  opacity: 1;
  background-color: #05326e;
}



.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: hidden;
  margin-right: 25px;
}


.centercontent{
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
  flex-direction: row;
}
.content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  height: 100%;
  width: 100%;
}
#full-container {
  --bs-gutter-x: 0;
  position: relative;
  height: 100%;
  width: 100%;
}

.mainvideoplayer {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-direction: column;
  height: auto;
  max-height: 50vh;
  width: auto;
  max-width: 80vw;
  aspect-ratio: 16 / 9;
}
.banner {
  position: relative;
}
.poster {
  position: absolute;
  aspect-ratio: 16 / 9;
  display: block;
  z-index: 2;
}

.video-js {
  position: relative;
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
}

.func-overlay {
  position: absolute;
  display: flex;
  align-self: flex-end;
  left: 0;
  width: auto;
  max-width: 50%;
  padding: 10px;
  z-index: 1;
}
.qa-overlay {
  position: absolute;
  display: flex;
  align-self: flex-end;
  right: 0;
  width: auto;
  max-width: 25%;
  padding: 10px;
  z-index: 1;
}

/* Knapper */

#fscreen-btn {
  margin-left: 10px;
}
#qa-btn {
  display: block;
}
.btn, .btn:disabled {
  background-color: #05326e;
  color: #ffffff;
  border-radius: 0px;
  border: none;  
  font-size: 15px;
  padding: 7px 12px 7px 12px;
  opacity: 0.8;
  width: 200px;
  max-width: 200px;
}
.btn:hover {
  opacity: 1;
  background-color: #05326e;
}



/* Function overlay */
.top-overlay {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.waitingNote {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: auto;
  max-height: 80%;
}

.beskrivelse {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
  border: 1px solid #05326e;
  border-radius: 0px;
  font-size: 20px;
  background-color: #05326eee;
  z-index: 3;
}
.beskrivelse p {
  text-align: center;
  margin: 0px;
}




/* poll modal */

.poll-center, .poll-center2, .poll-center3, .poll-center4, .poll-center5, .poll-denied {
  position: absolute;
  display: none;
  justify-content: center;
  align-self: center;
  align-items: center; 
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s;
}
.poll-center.hidden {
  opacity: 0;
  visibility: hidden;
}
.poll-modal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; 
  z-index: 3;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 100%;
  background-color: #006cb9cc;
  color: white;
  border-radius: 0px;
  border: none;
  padding: 2%;
}
.poll {
  display: flex;
  flex-direction: column;
  height: auto;
  max-height: 80%;
}
.poll .question {
  color: #111;
  font-size: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  user-select: none;
}
.poll .answers {
  padding: 20px 0px 10px;
  height: auto;
  max-height: 80%;
  display: flex;
  flex-direction: column;
}

.poll .answers .answer {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0px 10px;
  line-height: 15px;
  color: #111;
  margin-bottom: 10px;
  border: 1px solid #ffffff50;
  border-radius: 0px;
  cursor: pointer;
/*  overflow: hidden; */
  -webkit-user-select: none;
  user-select: none;
}
.poll .answers .answer p{
position: relative;
transform: translate(0, 25%);
  max-width: 100%;
}
.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;
  border-radius: 0px;
}
.total-votes, .total-votes2, .total-votes3, .total-votes4 {
  display: flex;
  justify-content: center;
  opacity: 0.9;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
}
.question-header, .question-header2, .question-header3, .question-header4 {
  color: white;
  font-weight: bold;
}
.answer p {
  color: white;
}

.poll-denied, .qa-denied {
position: absolute;
display: none;
width: 100%;
height: 100%;
visibility: visible;
opacity: 1;
transition: opacity 0.5s;
}
.poll-denied-modal, .qa-denied-modal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  width: 100%;
  max-width: 80%;
  height: 100%;
  max-height: 50%;
  background-color: #006cb9cc;
  color: white;
  border-radius: 0px;
  border: none;
  padding: 2%;
}
.poll-denied-modal-text, .qa-denied-modal-text {
  position: relative;
  transform: translate(0, 25%);
}
.poll-denied-modal-text, .qa-denied-modal-text p{
  font-size: 12px;
  text-align: center;
}



.qa-modal {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 80%;
  color: white;
}
.qa-modal .question {
  font-size: 100%;
  -webkit-user-select: none;
  user-select: none;
}
.qa-modal .qa-header {
  font-size: 25px;
  -webkit-user-select: none;
  user-select: none;
}
.qa-modal .qa-text  {
  padding: 20px 0px 10px;
  height: auto;
  max-height: 80%;
}
.qa-msg {
  resize: none;
  overflow-y: scroll;
}
#qa-btn {
  display: none;
}
.msg-send {
  display: none;
  margin-top: 10px;
}



.survey-center1 {
  position: absolute;
  display: none;
  justify-content: center;
  align-self: center;
  align-items: center; 
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s;
}
.survey-center1 .poll-modal {
  min-height: 60%;
}
.survey-msg {
  resize: none;
  overflow-y: scroll;
}
.survey .question {
  color: #111;
  font-size: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  user-select: none;
}

#survey1, #survey2, #survey3, #survey-end {
  display: none;
}



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;
}


@media (orientation: portrait) and (max-width: 575.98px) { 
  .beskrivelse {padding: 18px; border-radius: 0px; font-size: 11px;}
  .func-overlay {padding: 5px;}
  .qa-overlay {width: auto; max-width: 35%; padding: 5px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 11px; padding: 2px 3px 2px 3px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}
@media (orientation: landscape) and (max-width: 575.98px) { 
  .beskrivelse {padding: 18px; border-radius: 0px; font-size: 8px;}
  .func-overlay {padding: 5px;}
  .qa-overlay {width: auto; max-width: 28%; padding: 5px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 6px; padding: 2px 3px 2px 3px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}


@media (orientation: portrait) and (min-width: 576px) and (max-width: 665.98px) {
  .beskrivelse {padding: 20px; border-radius: 0px; font-size: 13px;}
  .func-overlay {padding: 7px;}
  .qa-overlay {width: auto; max-width: 30%; padding: 7px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 12px; padding: 5px 7px 5px 7px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}

}
@media (orientation: landscape) and (min-width: 576px) and (max-width: 665.98px) {
  .beskrivelse {padding: 20px; border-radius: 0px; font-size: 10px;}
  .func-overlay {padding: 5px;}
  .qa-overlay {width: auto; max-width: 28%; padding: 5px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 7px; padding: 2px 3px 2px 3px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}


@media (orientation: portrait) and (min-width: 666px) and (max-width: 767.98px) {
  .beskrivelse {padding: 20px; border-radius: 0px; font-size: 13px;}
  .func-overlay {padding: 7px;}
  .qa-overlay {width: auto; max-width: 30%; padding: 7px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 12px; padding: 5px 7px 5px 7px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 11px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 25px; padding: 0px 5px; line-height: 25px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 11px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 16px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; width: 200px; max-width: 100%; max-height: 100px; font-size: 14px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}
@media (orientation: landscape) and (min-width: 666px) and (max-width: 767.98px) {
  .beskrivelse {padding: 20px; border-radius: 0px; font-size: 10px;}
  .func-overlay {padding: 5px;}
  .qa-overlay {width: auto; max-width: 28%; padding: 5px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 7px; padding: 2px 3px 2px 3px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}
  
  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}


@media (orientation: portrait) and (min-width: 768px) and (max-width: 991.98px) {
  .beskrivelse {padding: 22px; border-radius: 0px; font-size: 15px;}
  .func-overlay {padding: 8px;}
  .qa-overlay {width: auto; max-width: 28%; padding: 8px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 13px; padding: 7px 9px 7px 9px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 15px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 12px; height: 30px; padding: 0px 10px; line-height: 30px; margin-bottom: 10px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 12px;}
}
@media (orientation: landscape) and (min-width: 768px) and (max-width: 991.98px) {
  .beskrivelse {padding: 22px; border-radius: 0px; font-size: 12px;}
  .func-overlay {padding: 5px;}
  .qa-overlay {width: auto; max-width: 28%; padding: 5px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 8px; padding: 2px 3px 2px 3px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}

  .survey-center1 {width: 100%; height: 100%;}
  .survey-center1 .poll-modal {min-height: 80%;}
  .survey-center1 .qa-header{ font-size: 12px;}
  .survey-center1 .qa-btn{ width: 100%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey-center1 .btn { max-width: 50%; padding: 5px;}
  .survey-center1 .qa-text { max-width: 50%; display: flex; justify-content: center; align-items: center; }
  .survey-msg { display: flex; justify-content: center; align-items: center; max-width: 100%; max-height: 50px; font-size: 12px;}
  .survey-center1 .qa-btn { width: auto; max-width: 60%; display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 5px;}
  .survey .question {font-size: 100%;}
}


@media (orientation: portrait) and (min-width: 992px) and (max-width: 1199.98px) {
  .beskrivelse {padding: 25px; border-radius: 0px; font-size: 18px;}
  .func-overlay {padding: 9px;}
  .qa-overlay {width: auto; max-width: 26%; padding: 9px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 14px; padding: 9px 11px 9px 11px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 15px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 12px; height: 30px; padding: 0px 10px; line-height: 30px; margin-bottom: 10px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 12px;}
}
@media (orientation: landscape) and (min-width: 992px) and (max-width: 1199.98px) {
  .beskrivelse {padding: 25px; border-radius: 0px; font-size: 18px;}
  .func-overlay {padding: 9px;}
  .qa-overlay {width: auto; max-width: 26%; padding: 9px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 14px; padding: 9px 11px 9px 11px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}

  .poll-modal {min-width: 250px; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 9px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 10px; height: 15px; padding: 0px 5px; line-height: 12px; margin-bottom: 2px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size: 10px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 9px;}
}
@media (orientation: landscape) and (min-width: 1200px) {
  .beskrivelse {padding: 25px; border-radius: 0px; font-size: 18px;}
  .func-overlay {padding: 9px;}
  .qa-overlay {width: auto; max-width: 26%; padding: 9px;}
  .btn, .btn:disabled {border-radius: 0px; font-size: 14px; padding: 9px 11px 9px 11px;}
  .menubar .logo {width: 15%; margin-left: 10px; margin-top: 10px;}

  .poll-modal {min-width: 95%; min-height: 80%; border-radius: 0px;}
  .poll, .poll2, .poll3, .poll4 {height: auto; max-height: 98%; min-width: 100%;}
  .question-header, .question-header2, .question-header3, .question-header4 {font-size: 50px; text-align: center; margin-bottom: 5px;}
  .poll .question {margin-bottom: 75px;}
  .question p{margin-bottom: 5px;}
  .poll .answers {padding: 5px 0px 2px; max-height: 80%;}
  .poll .answers .answer {font-size: 45px; height: 100px; padding: 0px 5px; line-height: 50px; margin-bottom: 50px; border-radius: 0px;}
  .poll .answers .answer span.percentage-value {font-size:45px; padding-right: 5px;}
  .poll .answers .answer span.percentage-bar {height: 100%; border-radius: 0px;}
  .total-votes, .total-votes2, .total-votes3, .total-votes4 {font-size: 25px;}
}