html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  font-family: Monaco, monospace;
}

.container {
	display: flex;
  flex-direction: column;
	height: 100%;
  min-height: 100%;
  width: 100%;
  min-width: 100%;
}

#storage {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  left: 0;
  bottom: 160px;
  flex-direction: column-reverse;
}

#view {
  flex: 1;
}

.dark {
  background-color: #000000D0;
  color: #FFF;
  border: 1px solid #FFF;
  backdrop-filter: blur(10px);
}

#pannel {
  display: flex;
  width: 100%;
  height: 120px;
  left: 0px;
  bottom: 0;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: absolute;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

#control {
  display: flex;
  flex: 0;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

#log {
  padding: 10px;
  display: flex;
  flex: 1;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-right: 45px;
}

#cli {
  flex: 1;
}

#cliBar {
  display: flex;
  width: 80%;
  left: 10%;
  top: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: absolute;
  padding: 10px;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

#cliBar > * {
  display: block;
  margin: 5px;
}

.v {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.h {
  display: flex;
  flex: 1;
  flex-direction: row;
}

.button {
  margin: 5px;
  padding: 5px;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  border: 2px solid #232;

	box-shadow:inset 0px 1px 0px 0px #fce2c1;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffc477), color-stop(1, #fb9e25) );
	background:-moz-linear-gradient( center top, #ffc477 5%, #fb9e25 100% );
	background-color:#ffc477;
}

.button:hover, .button:active {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fb9e25), color-stop(1, #ffc477) );
	background:-moz-linear-gradient( center top, #fb9e25 5%, #ffc477 100% );
	background-color:#fb9e25;
}
