*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  background: #f7f8fa;
  margin: 0;
  padding: 0;
  height: 100vh;
}
table tr:first-child {
   display: none;
}


.fancybox__content {
  background: transparent !important;
  padding: 0px !important;
}

.fancybox__slide.has-iframe .fancybox__content{
  width: 60vw !important;
  height: 33.75vw !important;
}
.back_button {
  margin-top: 20px;
  padding: 5px 10px;
  background: grey;
  color: #fff;
  width: 100px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0px 0px px 0px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out box-shadow;
}

.back_button:hover {
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out box-shadow;
}

#metastream_player video {
  width: 100% important;
}



iframe #reload_button {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
}

h1 {
  font-weight: 200;
}

h2 {
  margin: 0px;
}

a {
  color: #000;
  text-decoration: none;
}

svg {
  height: 100vh;
}

svg .blue {
  fill: #d00000 !important;
}

svg .red {
  fill: #d00000 !important;
}

svg .green {
  fill: #d00000 !important;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
}

.title {
  font-weight: 600;
}

.spacing {
  margin-top: 30px;
}

.subheading {
  margin: 0px;
}

.left {
  width: 50vw;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  align-items: center;
  height: 100vh;
  display: flex;
}

.right {
  width: 50vw;
}

.right table {
  width: 50vw !important;
  border-spacing: 0px;
  padding-top: 30px;
}

.right table td {
  padding: 5px;
  font-size: 14px;
}

.weather {
  display: grid;
  width: 400px;
  margin: auto;
}

.speed {
  font-size: 20px;
}

.section {
  display: flex;
}

.logo {
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  padding: 10px;
}

.logo_graphic {
  width: 8vh;
}

.velartis {
  font-size: 2vh;
  padding-right: 10px;
}

.button {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  margin-top: -75vh;
  padding-left: 8vh;
  left: 30vh;
  font-size: 12px;
  text-align: left;
  z-index: 10;
  width: 350px;
}

.button .location, .button2 .location {
  cursor: default;
}

.button2 {
  cursor: pointer;
  width: 350px;
  position: relative;
  margin-top: 10px;
  padding-left: 8vh;
  left: 30vh;
  font-size: 12px;
  text-align: left;
  z-index: 5;
}

.see {
  height: 90vh;
}

.cam {
  position: absolute;
  margin-left: 185px;
  padding: 5px;
}

.cam2 {
  position: absolute;
  margin-left: 5px;
  padding: 5px;
}

.cam svg {
  fill: #AA3638 !important;
}

.ico {
  margin: auto;
  height: 25px;
}

.text {
  margin: auto;
  margin-left: 0px;
}

.text p {
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}

.location {
  padding: 5px 10px;
  min-width: 151px;
  height: 50px;
}

.webcam {
  margin-left: 30vh;
  width: 30vh;
  margin-top: 8vh;
  font-size: 4vh;
  font-weight: 200;
}

.button:hover .active2 {
  background: #ededed;
  transition: 0.3s ease-in-out;
}

.button2:hover .active {
  background: #ededed;
  transition: 0.3s ease-in-out;
}

.location, .wind, .temp, .direction, .cam, .cam2 {
  border-radius: 15px;
  transition: 0.3s ease-in-out;
  display: inline-flex;
}

.wind, .temp, .direction, .cam, .cam2 {
  text-align: center;
  height: 54px;
  width: 54px;
  background: #fff;
  display: inline-grid;
}

.wind {
  position: absolute;
  margin-left: 5px;
  padding: 5px 0px;
}

.temp {
  position: absolute;
  margin-left: 125px;
  padding: 5px;
}

.direction {
  position: absolute;
  margin-left: 65px;
  padding: 5px;
}

.data {
  font-size: 10px;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.scale-in-center {
  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.slide-in-blurred-bottom {
  -webkit-animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
  animation: slide-in-blurred-bottom 0.6s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
}

@-webkit-keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-bottom {
  0% {
    -webkit-transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    transform: translateY(1000px) scaleY(2.5) scaleX(0.2);
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0) scaleY(1) scaleX(1);
    transform: translateY(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@media only screen and (max-width: 1350px) {
  .back_button {
    position: absolute;
    right: 10px;
    top: 20px;
  }

  table {
    border: 0;
  }

  .right table {
    width: 100vw !important;
    overflow-x: auto
  }

  .speed {
    font-size: 10px;
  }

  .left {
    width: 100vw;
    height: 100px;
    background: #fff;
  }

  .subheading {
    font-size: 16px;
  }

  .weather h2 {
    font-size: 12px;
  }

  .weather {
    padding: 5px 15px;
    display: inline;
    margin: 0px;
  }

  .right {
    width: 100vw;
    padding: 0px;
  }

  .section {
    display: grid;
  }
}

@media only screen and (max-width: 645px) {
  .fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 95vw !important;
    height: 53.4375vw !important;
    padding: 5px;
  }
  .svg {
    width: 23vh;
    margin: auto;
    margin-top: 10px;
  }

  svg {
    height: 50vh;
  }

  .data {
    font-size: 8px;
  }

  .wind, .temp, .direction, .cam, .cam2 {
    height: 45px;
    width: 45px;
  }

  .direction {
    margin-left: 55px;
  }

  .temp {
    margin-left: 105px;
  }

  .cam {
    margin-left: 155px;
  }

  .right table {
    width: calc(100vw - 20px) !important;
    overflow-x: auto
  }

  .right {
    width: 100vw;
    padding: 10px;
  }



  table caption {
    font-size: 1.3em;
  }

  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  table tr {
    padding: 0px 0px;
    display: block;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.1);
  }

  table td:last-child {
    border-radius: 0px 0px 15px 15px;
    padding-bottom: 10px;
  }

  table td:first-child {
    border-radius: 15px 15px 0px 0px;
    padding-top: 10px;
  }

  .right table td {
    border-bottom: none;
    display: block;
    line-height: 16px;
    font-size: 12px;
    padding: 5px 10px;
    text-align: right;
    width: 100% !important;
  }

  table td::before {
    /*
    * aria-label has no advantage, it won't be read inside a table
    content: attr(aria-label);
    */
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }

  table td:last-child {
    border-bottom: 0;
  }

  td:nth-of-type(1):before {
    content: "Datum";
  }

  td:nth-of-type(2):before {
    content: "Richtung";
  }

  td:nth-of-type(3):before {
    content: "Kmh";
  }

  td:nth-of-type(4):before {
    content: "Kn";
  }

  td:nth-of-type(5):before {
    content: "Bft";
  }

  td:nth-of-type(6):before {
    content: "Kmh/max";
  }

  td:nth-of-type(7):before {
    content: "Kmh/max";
  }

  td:nth-of-type(8):before {
    content: "Bft/max";
  }

  td:nth-of-type(9):before {
    content: "Temperatur";
  }

  td:nth-of-type(10):before {
    content: "Windchill";
  }

  .webcam {
    position: absolute;
    right: 0px;
    margin-left: auto;
    width: 160px;
    margin-top: -53vh;
    font-size: 1vh;
    font-weight: 200;
  }

  .see {
    height: 70vh;
  }

  .button {
    margin-top: 2vh;
    left: 0px;
    padding-left: 0vh;
  }

  .button2 {
    left: 0px;
    padding-left: 0vh;
  }
}
