@charset "UTF-8";
html, body, dialog {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background-color: #212121;
  color: #000000;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  z-index: -1;
}

html.overflowWhenVisible:not(.visible) {
  overflow: hidden;
}

html:has(iframe.open),
html:has(iframe.opened) {
  overflow: hidden;
}

html, body {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

button {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.centerAll {
  display: flex;
  justify-content: center;
  align-items: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

:not(.slow-transition) * {
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}
:not(.slow-transition) * ::after, :not(.slow-transition) * ::before {
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.slow-transition * {
  transition: all 5s !important;
  box-sizing: border-box;
}
.slow-transition * ::after, .slow-transition * ::before {
  transition: all 5s !important;
  box-sizing: border-box;
}

iframe {
  border: none !important;
  outline: none !important;
}

.kelvinScala {
  background: linear-gradient(90deg, rgb(255, 160, 0) 0%, rgb(255, 255, 255) 50%, rgb(167, 209, 255) 100%);
}

#slider {
  position: absolute;
  width: 30px;
  height: 100%;
  background-color: black;
}

#tabbedPane, #content, #whiteChooser {
  width: 100%;
}

#scala {
  width: 100%;
  height: 2.5em;
  margin: 20px;
  position: relative;
}

.big {
  height: 20em !important;
}

.big th {
  height: 100%;
}

h1 {
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-size: 3em;
  text-shadow: 2px 4px #b4b4b4;
}

table {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}

table tr {
  border-bottom: 2px solid #424242;
}

table th {
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem;
  color: #FFFFFF;
  background-color: #212121;
  height: 5em;
  padding: 0px;
  margin: 0px;
}

table tr th:nth-child(1) {
  width: 40%;
}

table tr th:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wrapper {
  position: relative;
  height: 20rem;
  width: 3rem;
  transform: rotate(90deg);
}
.wrapper::before, .wrapper::after {
  display: block;
  position: absolute;
  z-index: 99;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.75rem 0;
  pointer-events: none;
  transform: rotate(-90deg);
}
.wrapper::before {
  content: "+";
}
.wrapper::after {
  content: "−";
  bottom: 0;
}

input[type=range] {
  -webkit-appearance: none;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  width: 20rem;
  height: 3.5rem;
  transform: translate(-50%, -50%) rotate(-90deg);
  border-radius: 1rem;
  overflow: hidden;
  cursor: col-resize;
}
input[type=range][step] {
  background-color: transparent;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2) calc(12.5% - 1px), #05051a 12.5%);
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgba(255, 255, 255, 0.2);
}
input[type=range]::-moz-range-thumb {
  border: none;
  width: 0;
  box-shadow: -20rem 0 0 20rem rgba(255, 255, 255, 0.2);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 9px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 4px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s cubic-bezier(0, 1, 0.5, 1);
  border-radius: 3px;
}

input:checked + .slider {
  background-color: #52c944;
}

input:focus + .slider {
  box-shadow: 0 0 4px #7efa70;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider.red {
  background-color: crimson;
}

input:focus + .slider.red {
  box-shadow: 0 0 4px crimson;
}

input:checked + .slider.red {
  background-color: crimson;
}

#round {
  border-radius: 34px;
}

#round:before {
  border-radius: 50%;
}

input:checked + .slider.red {
  background-color: crimson;
}

input:focus + .slider.blue {
  box-shadow: 0 0 4px #424bf5;
}

input:checked + .slider.blue {
  background-color: #424bf5;
}

#restart {
  width: 50%;
  height: 50%;
  background-color: #1d0000;
  border-radius: 20px;
  border: 2px solid #e90000 !important;
  color: #e90000;
  font-size: 1.5rem;
  cursor: pointer;
}/*# sourceMappingURL=allStyles.css.map */