.scrollable{
  overflow-y: auto;
  max-height: 65vh;
}

.html-embed {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}



.left-panel {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 0%;
  display: none;
  width: 0px;
  height: 270px;
  margin-bottom: -145px;
  margin-left: 10px;
}

.left-panel-center {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  display: block;
  width: 0px;
  height: 50%;
}

.right-panel-center {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  width: 0px;
  height: 50%;
  margin-right: 82px;
  padding-right: 0px;
}

.right-panel {
  position: absolute;
  left: 0%;
  top: 10%;
  right: 0%;
  bottom: 0%;
  display: none;
  width: 0px;
  height: 270px;
}

#v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 25px;
    height: 25px;	
}

.fullscreen-button {
    position: absolute;
    top: 1px;
    right: 1px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

.ButtonAnnotation {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-top: 90px;
  background-image: url('../images/iconannotation.png');
  background-size: 100% 100%;
  background-repeat: repeat;
  cursor: pointer;
}

.ButtonInfo {
  position: absolute;
  left: 0%;
  top: 10%;
  right: 0%;
  bottom: auto;
  z-index: 1;
  width: 40px;
  height: 40px;
  background-image: url('../images/iconinfo.png');
  background-size: 100% 100%;
  background-repeat: repeat;
  cursor: pointer;
}




@media screen and (max-width: 767px) {
  
 
  }
  .ButtonAnnotation {
    width: 40px;
    height: 40px;
    margin-top: 140px;
  }
	
  .left-panel {
    height: 210px;
    margin-bottom: -105px;
  }
  .right-panel {
    height: 210px;
  }
	.ButtonInfo {
    width: 40px;
    height: 40px;
  }
  

@media screen and (max-width: 479px) {
  

	
  .left-panel {
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: auto;
    width: 210px;
    height: 10px;
    margin-right: -105px;
    margin-bottom: auto;
    margin-left: auto;
  }
  .left-panel-center {
    width: 50%;
    height: 0px;
    margin-top: 10px;
  }
  .right-panel-center {
    left: 0%;
    top: auto;
    right: auto;
    bottom: 0%;
    width: 50%;
    height: 0px;
    margin-right: 0px;
    margin-bottom: 70px;
  }
  .right-panel {
    left: auto;
    top: 0%;
    right: 0%;
    bottom: 0%;
    width: 210px;
    height: 0px;
  }
}



#onoma {
    font-family: "Trebuchet MS";
    font-size: 25pt;
    font-style: normal;
    color: #FFFFFF;
    position: absolute;
    visibility: visible;
    height: 40px;
    width: 600px;
    left: 15px;
    top: 10%;
}

.language-dropdown {
	    position: absolute;

	left: 15px;
    top: 2.5%;
}

.card {
    z-index: 5;
    position: absolute;
    left: auto;
    top: 87px;
    right: 40px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 25%;
	display: none;
	background-color: #FFFFFF;
    border-radius: 5px;
}

.card:hover {	
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.container {	
  padding: 16px;
}

/* -------  */

.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  background: #0BB1F1;
  box-shadow: 0 48px 80px -32px rgba(0,0,0,0.3);
}
.input {
  position: absolute;
  opacity: 0;
}
.label {
  width: 100%;
  padding: 10px 15px;
  background: #0BB1F1;
  border-top: 3px solid #0BB1F1;
  cursor: pointer;
  font-weight: bold;
  color: #ffffff;
	font-family: "Trebuchet MS";
    font-size: 14px;
  transition: background 0.1s, color 0.1s;
}
.label:hover {
  background: #d8d8d8;
}
.label:active {
  background: #ccc;
}
.input:focus + .label {
  z-index: 1;
}
.input:checked + .label {
  background: #fff;
  color: #0BB1F1;
}

@media (min-width: 600px) {
  .label {
    width: auto;
  }
}
.panel {
  display: none;
  padding: 10px 8px 10px 8px;
  background: #fff;
	font-family: "Trebuchet MS";
    font-size: 11px;
    font-style: normal;
}
@media (min-width: 600px) {
  .panel {
    order: 99;
  }
}
.input:checked + .label + .panel {
  display: block;
}

