﻿.debugWidget {
  min-width: 48px;
  min-height: 48px;
  bottom: 10px;
  left: 10px;
  background-color: #ffbf00;
  border-radius: 24px;
  -webkit-box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.15);
  color: #000000;
  position: fixed;
  overflow: hidden;
  /*transition: all .3s;*/
  cursor: pointer;
  z-index: 9999;
}
.debugWidget.debugWidget-active {
  cursor: default;
  /*transition: all .3s;*/
}
.debugWidget .debugWidget-open i {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  /*transition: background-color .3s, color .3s;*/
}
.debugWidget .debugWidget-open:hover i {
  background-color: #000000;
  color: #ffbf00;
}
.debugWidget:not(.debugWidget-active) .debugWidget-open {
  width: 48px;
  height: 48px;
  bottom: 0;
  left: 0;
  opacity: 1;
  /*transition: opacity .3s, background-color .3s;*/
  position: absolute;
  z-index: 1;
}
.debugWidget.debugWidget-active .debugWidget-open {
  height: 0;
  opacity: 0;
  pointer-events: none;
  width: 0;
}
.debugWidget .debugWidget-content {
  max-width: 0;
  max-height: 0;
  border-radius: 24px;
  display: flex;
  /*transition: all .3s;*/
  overflow: hidden;
}
.debugWidget.debugWidget-active .debugWidget-content {
  max-height: calc(100vh - 20px);
  max-width: calc(100vw - 20px);
}
.debugWidget .debugWidget-contents {
  min-height: 320px;
  margin: 52px 22px 32px 40px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  /*transition: opacity .3s;*/
  overflow-x: hidden;
}
.debugWidget .debugWidget-contents::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
}
.debugWidget .debugWidget-contents::-webkit-scrollbar {
  width: 8px;
}
.debugWidget .debugWidget-contents::-webkit-scrollbar-thumb {
  border-radius: 4px;
  border: thin solid #000000;
  background-color: #000000;
}
.debugWidget.debugWidget-active .debugWidget-contents {
  flex-grow: 1;
  opacity: 1;
  /*transition: opacity .3s;*/
}
.debugWidget .debugWidget-close {
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background-color: rgb(0, 0, 0);
  border-radius: 24px;
  color: #ffbf00;
  position: absolute;
  /*transition: background-color .3s, color .3s;*/
  overflow: hidden;
  cursor: pointer;
}
.debugWidget .debugWidget-close:hover {
  background-color: #FFFFFF;
  color: #000000;
}
.debugWidget .debugWidget-close i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}
.debugWidget p {
  margin: 32px 0 0 0;
  padding: 0;
  white-space: nowrap;
  color: #000000;
}
.debugWidget p:first-of-type {
  margin-top: 0;
}
.debugWidget p + p {
  margin-top: 0;
}
.debugWidget code {
  color: #000000;
}
.debugWidget ul {
  margin: 32px 0 0 0;
  padding: 0;
}
.debugWidget ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.debugWidget ul ul {
  margin: 0;
  padding: 0;
}
.debugWidget hr {
  margin: 32px 0 0 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #000000;
}
