/*********** DEFAULTS ***************/
@import "font-face.css";

body, html {
  padding: 0;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

/*********** BASICS ***************/

#header {
  position: relative;
  height: 50px;
  border-bottom: 2px solid black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  z-index: 2;
}

#stage {
  position: relative;
  /* --vh wird im js gesetzt */
  height: calc((var(--vh, 1vh) * 100 ) - 100px);
  width: 100%;
  background-image: url(../img/bg.JPG);
  background-size: cover;
  background-repeat: no-repeat;
}

#footer {
  height: 50px;
  border-top: 2px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

#header, #footer {
  padding-left: 20px;
  padding-right: 20px;
  z-index: 2;
}

.link {
  cursor: pointer;
}

/*********** HEADER ***************/

#header .title {
  font-size: 1.8rem;
  font-weight: 800;
}

#header #nav {
  display: flex;
}

#header #nav div:not(:last-child) {
  margin-right: 10px;
}

#progress {
  position:absolute;
  width: 100%;
  left: 0;
  bottom: -2px;
  opacity: 0;
}

#progress .bar {
  height: 2px;
  width: 0;
  background-color: #db4b91;
  box-shadow: 0 0 8px 1px #db4b91;
}

#colors {
  opacity: 0;
}

#colors, #colors .palette {
  display: flex;
  align-items: center;
}

#colors .circle {
  opacity: 0;
  margin: 0 10px;
  border: 1px solid black;
  border-radius: 50%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

#colors .main .circle {
  height: 0;
  width: 0;
}

#colors .palette .circle {
  height: 16px;
  width: 16px;
}


/*********** FLAYZ ***************/

#flayz {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.flayz-list {
  position: relative;
  height: 100%;
}

.flayz-item {
  position: absolute;
  border: 1px solid black;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.flayz-item.maximized {
  cursor: pointer;
  -webkit-box-shadow: 10px 13px 55px 24px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 13px 55px 24px rgba(0,0,0,0.75);
  box-shadow: 10px 13px 55px 24px rgba(0,0,0,0.75);
}
.flayz-item .full,
.flayz-item .thumb
{
  position: absolute;
}

.flayz-item .full {
  opacity: 0;
}

.flayz-item .full,
.flayz-item .thumb,
.flayz-item img {
  height: 100%;
  width: 100%;
}

/*********** HELPER ***************/

.shadow {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
