html,
body,
.container {
  padding: 0;
  margin: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #aaa;
}

::-webkit-scrollbar-thumb {
  background: gray;
}

.tooltip {
  position: absolute;
  pointer-events: none;
  transition: opacity 200ms;
}

.tooltip>div {
  margin: 0 auto;
  padding: 7px;
  border-radius: 0px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  transform: translate3d(-50%, -125%, 0);
  opacity: 0.93;
}

.toggle {
  padding: 7px;
  max-width: 50vw;
}

.toggle>label:hover {
  cursor: pointer;
}

.toggle>label { 
  display: flex;
  align-items: center;
  white-space: pre-wrap;
  font-weight: bold;
}

.toggle>input[type=checkbox]{ 
  flex: none;
} 