@font-face {
    font-family: solarSystemfont;
    src: url(../fonts/FjallaOne-Regular.otf);
}

body {
    font-family: solarSystemfont, serif;
    font-size: 18px;
    margin: 0;
    overflow: hidden;
}

#canvas {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

canvas {
    width: 100% !important;
    height: 100% !important;
}

a {
    color: gold;
    display: inline-block;
    margin: 5px;
    padding: 10px;
    text-decoration: none;
}


.header, .footer {
    background: rgba(0,0,0,0.5);
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    box-sizing: border-box;
    text-align: center;

}

.header {
    position: fixed;
    left: 0;
    top: 15px;
    text-align: center;
    letter-spacing: 1px;
    box-sizing: border-box;
    width: 100%;
}

#planetName{
    font-size: 42px;
    letter-spacing: 5px;
    margin: 0;
}

#planetDescription{
    min-height: 100px;
}

.horizontal-align {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	font-size: 0;
}

.one-item .item {width: 100%;}
	
.item {
    display: inline-block;
    vertical-align: top;
    height: auto;
    min-height: 50px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
}

.label{
    margin-bottom: 10px;
}

.value{
    background-color: transparent;
    border-top-color: azure;
    border-top-width: 5px;
    border-top-style: solid;
    padding-top: 10px;
}

#planetDescription{
    font-size: 14px;
}

.headerGradient, .footerGradient{
    min-height: 10px;
}

.planetMenu{
    display: none;
}

.header > .menu{
    bottom: 0;
}

.header > .menu.left{
    text-align: right;
}

.header > .menu.right{
    text-align: left;
}

#detailContainer{
    margin-top: 15%;
}

.leftPanelContainer{
     display: table;
     min-height: 80px;
     margin-left: 30%;
}

.rightPanelContainer{
    display: table;
    min-height: 80px;
    margin-left: 40%;
}

.panel{
    min-height: 10px;
    min-width: 300px;
    max-width: 300px;
    text-align: center;
    background:rgba(255,255,255,0.85);
}

#detail-Beschreibung-value{
    min-height: 100px;
    min-width: 300px;
    text-align: center;
    letter-spacing: 1px;
}

.chevron-left{
    clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0% 100%);
}

.chevron-center{
    clip-path: polygon(0 0, 99% 0, 100% 0%, 100% 80%, 99% 100%, 1% 100%, 0% 80%, 0% 100%);
}

.chevron-right{
    clip-path: polygon(0 0, 97% 0, 100% 100%, 3% 100%);
}

.detailPanelPropertyLeft{
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
}

.detailPanelValueLeft{
    margin-top: -1px;
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
    margin-bottom: 10px;    
}

.detailPanelPropertyRight{
    clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
}

.detailPanelValueRight{
    margin-top: -1px;
    clip-path: polygon(0 0, 75% 0, 100% 100%, 25% 100%);
    margin-bottom: 10px;    
}

.leftColumn, .rightColumn {
    float: left;
    width: 50%;
  }

  .detailPanel{
    display: none;
    margin-top: 10%;
  }
  
  /* Clear floats after the columns */
  .detailPanel:after {
    content: "";
    display: table;
    clear: both;
  }
  .panel-show-1{
        animation: fade_in_show 0.2s;
  }
  
  .panel-show-2{
        animation: fade_in_show 0.4s;
  }

  .panel-show-3{
    animation: fade_in_show 0.6s;
   }

  .panel-show-4{
    animation: fade_in_show 0.8s;
  }
  
  .panel-show-5{
    animation: fade_in_show 1.0s;
  }
  
  .panel-show-6{
    animation: fade_in_show 1.2s;
  }
  
  .panel-show-7{
    animation: fade_in_show 1.4s;
  }
  
  .panel-show-8{
    animation: fade_in_show 1.6s;
  }

  @keyframes fade_in_show {
    from {
         opacity: 0;
         transform: scale(0)
    }

    to {
         opacity: 1;
         transform: scale(1)
    }
}

.button{
    background: rgba(0,0,0,0);
    border: 0px solid;
    font-size: 24px;
    min-width: 32px;
    padding: 0;
}

.button:hover{
    background: rgba(0,0,0,0);
    cursor: pointer;
}

#showDetailsButton{
    display: none;
}

.button:hover > .iconify{
    color: #ffffff;
}