@font-face {
  font-family: Edda Serif;
  src: url(EddaSerif-Regular.woff);
  font-weight: 400;
  font-display: swap;
	font-style: normal;
}  

@font-face {
  font-family: Edda Serif;
  src: url(EddaSerif-Italic.woff);
  font-weight: 400;
  font-display: swap;
	font-style: italic;
}

body {
  margin: 0px;
  background-color:  #082028;
  color: #fff;
  font-family: 'Edda Serif', 'Times New Roman', Times, serif;
}

:root {
  --navigationHeight: 9.75rem;
	--doc-height: 100%;
	--page-background: #082028;
}


#player {
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: #323232;
}

#player:before {
  content: "";
  display: block;
  padding-top: 66%;
}

#playButton {
  width: 15%;
  max-width: 200px;
  cursor: pointer;
}

#Video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#fullscreenButton {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
}
textarea {
  color: #444;
  font-size: 1.2em;
  font-weight: 300;
  width: calc(20% - 10px);
  height: 1.3em;
  line-height: 1.3;
  vertical-align: middle;
}

div#warning {
  margin-top: 2em;
  visibility: hidden;
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
  padding: 1em;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: opacity 0.3s, visibility 0.3s;

}

#logo {
  max-width:80px;
  float: left;
  display:block;
  margin-right: auto;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 64px;
  border-bottom: 1px solid #ccc;
  margin: 0 0 0.8em 0;
  padding: 0 0 1em 0;
  h1 {
    font-weight: 500;
  }
}



label {
  display:block;
  font-size: 1.5em;
}


#loadingButton {
  z-index: 1;
  width: 15%;
  max-width: 200px;
}

.lds-spinner {
  /* change color here */
  z-index: 1;
  color: #1c4c5b
}
.lds-spinner,
.lds-spinner div,
.lds-spinner div:after {
  box-sizing: border-box;
}
.lds-spinner {
  color: currentColor;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.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;
  }
}