
#overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 3000;
    box-sizing: border-box;  
    padding: 50px;
    transition: 300ms ease-in-out all;
    transform: translateY(-100%);
  }
  #overlay.show{
    transform: translateY(0);
  }
  #overlay-content{
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    /* width: 100%; */
    /* height: 100%; */
    /* background-color: #97a1ad; */
    background-color: #000;
    /* margin: 50px; */
    transition: 300ms ease-in-out opacity;
    opacity: 0;
  }
  #overlay-content.show{
    opacity: 1;
  }
  #overlay-content iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: transparent;
    border: none;
    
  }
  
  #overlay-close{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
    text-align: center;
    font-size: 50px;
  
    background-color: rgba(31, 13, 44, 1);;
    color: #fff;
    cursor: pointer;
  }
  .weiss #overlay-close{
    color: #fff;
  }
  
  #countdown{
    position: absolute;
    top: 10px;
    right: 10px;
    right: 0px;
    width: 300px;
    height: 150px;
    /* background: url(../img/countdown.png) no-repeat center; */
    /* background-size: contain; */
    z-index: 500;
    opacity: 0;
    transition: 1s ease-in-out opacity;
  }
  .start #countdown{
    opacity: 1;
  }
  #countdown img{
    width: 100%;
    height: auto;
  }
  #countdown-time{
    position: absolute;
    top: 60px;
    right: 110px;
    font-size: 35px;
      color: #fff;
      font-family: sans-serif;
  }

  #info360{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: auto;
  }
  #soundicon{
    position: absolute;
    bottom: 20px;
    right: 120px;
    width: 80px;
    height: auto;
  }


  #menu{
    /* background: #3c1b55; */
    /* background: #3c1238; */
    background: #c9d6e8;
    background: #8e0000;



    width: 20vw;
    min-width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 600;
    transition: ease-in-out 300ms all;
    transform: translateX(-100%);
  }
  #menu.show{
    transform: translateX(0%);
  }
  #menu a{
    color: #fff;
    /* color: #333; */
    text-decoration: none;
    display: block;
    padding: 20px;
    font-family: sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
  }
  #menu a:hover{
    /* background-color: #2ae9b0; */
    background-color: #969696;
  }
  #menu ul{
    display: block;
    padding: 0;
    margin: 0;
    padding-top: 20vh;
    padding-top: 0;
  }
  #menu ul li{
    display: block;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #333;
  }
  #menu p{
    display: block;
    padding: 20px;
    color: #fff;
    font-family: sans-serif;
    background-color: #1b1c38;
  }
  #menu-icon{
    position: absolute;
    top: 0;
    left: 100%;
    width: 50px;
    height: 50px;
    background: #97a1ad url(../img/burger.png) no-repeat center;
    background-color: #000;
    background-size: 80%;
    cursor: pointer;
  }
  #menu-logo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* height: 20vh; */
    /* background: url(../img/logo.png) no-repeat center; */
    background-size: 80% auto;
    border-bottom: 1px solid #333;
  }

  #menu.show #menu-icon{
    background-image: url(../img/close.png);
    background-size: 50%;
  }  

  #help{
    position: absolute;
    top: 50%;
    left: 100%;
    background: url(../img/hilfe.png) no-repeat center;
    background-size: contain;
    transform: translate(-13%, -50%);
    transition: 300ms ease-in-out all;
    height: 40vh;
    height: 50vh;
    height: 60vh;
    width: auto;    
  }
  #help.show{
    transform: translate(-100%, -50%);
  }


  
  /* +++++++++++++++++++++++ */
  /* +++++++++++++++++++++++ */
  /* +++++++++++++++++++++++ */
  /* ConfirmBox */
  #smfconfover{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 800;
    background: rgba(0,0,0,0.2)
  }
  #smfconfbox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #2ae9b0;
    background: #3c1238;
    color: #fff;
    box-shadow: 0 0 20px #000;
    width: 100%;
    max-width: 300px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.2rem;
    font-family: sans-serif;
    overflow-wrap: break-word;
  }
  #smfconfboxtop{
    padding-bottom: 20px;
    text-align: center;
  }
  #smfconfboxbot a,
  #smfconfboxbot button{
    padding: 15px;
    background: #97a1ad;
    background: #2096C4;
    color: #fff;
    font-family: sans-serif;
    border: 1px solid #fff;
    border: none;
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    /* width: 45%; */
    cursor: pointer;
    text-align: center;
    text-decoration: none;
  }
  #smfconfboxbot button{
    padding: 5px;
    
    font-size: 0.8rem;
    
  }
#smfconfboxbot a:hover,
#smfconfboxbot button:hover{

  background: #747678;
  /* background: #feab18; */
}

#bgsound{
  width: 0;
  height: 0;
  z-index: -1000;
}