html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    background: #000;
}

#container {
    width: 100%;
    height: 100%;
    background: #000;
}

#progress {
    width: 0;
    height: 5px;
    position: fixed;
    top: 0;
    background: #FFC300;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}

#progress.finish {
    opacity: 0;
}

#panel {
    max-width: 70vw;
    max-height: 50vh;
    background: #000;
    color: #000;
    border-radius: 3px;
    overflow: hide;
    -webkit-overflow-scrolling: touch;
}

#hoverFrame {
	width: 50vw;
	height: calc(50vw/16*9);
}

.btn {
  position: relative;
  cursor: pointer;
  width: 160px;
  background: none;
  outline: none;
  border: none;
  font-size: 14px;
  padding: 2px 0;
	text-align: left;
  /* z-index: 4; */
}
.btn:hover {
  background-color: #e8e8e8;
}
.btn:active {
  color: #000;
  background-color: #a6a6a6;
}

#directory-container {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  top: 75px;
  right: 15px;
  max-height: calc(100vh - 100px);
  max-width: 480px;
  /* width: 145px; */
  /* min-width: 320px; */
  padding: 5px 5px 0 5px;
  background-color: #fff;
  border-radius: 4px;
  z-index: 3;
	/* overflow-x: auto;
	-webkit-overflow-scrolling: touch; */
}


#menu {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  z-index: 3;
}
/* White Glow on Icon */
#menu:hover {
  filter: drop-shadow(0 0 5px rgba(255,255,255,1));
  -webkit-filter: drop-shadow(0 0 5px rgba(255,255,255,1));
}

.hide {
  display: none !important;
}
@media (max-width: 550px) {
  .btn {
    font-size: 12px;
    width: 145px;
  }
  #directory-container {
    min-width: 150px;
  }
}
@media (max-height: 499px) and (min-width: 550px){
  #directory-container {
    height: 260px;
    width: calc(100vw - 150px);
  }
}