sc-header #project_list li {
  padding-right: 20px;
}
sc-header #project_list li span {
  display: inline-block;
  vertical-align: middle;
}
sc-header #project_list li span:first-child {
  width: 100%;
}
sc-header #project_list li span:last-child {
  width: 20px;
  margin-right: -20px;
}
sc-header #project_list li span svg {
  width: 20px;
  height: 20px;
}

script-editor {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
}
script-editor .modal {
  position: absolute;
  width: 90%;
  height: 80%;
  top: 10%;
  left: 5%;
  background-color: white;
  padding: 20px 20px 60px 20px;
  box-sizing: border-box;
}
script-editor .modal .container {
  max-width: 100%;
  max-height: 100%;
}
script-editor .modal .container .dialog {
  width: 100%;
  height: 100%;
  display: flex;
}
script-editor .modal .container .dialog .sidebar {
  width: 40%;
  height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
  padding-right: 30px;
  box-sizing: border-box;
}
script-editor .modal .container .dialog .sidebar pre,
script-editor .modal .container .dialog .sidebar code {
  white-space: pre-wrap;
}
script-editor .modal .container .dialog .sidebar .example pre {
  margin-bottom: 0px;
}
script-editor .modal .container .dialog .sidebar label {
  font-weight: bold;
  width: 100%;
  display: block;
  background-color: var(--fg-color);
  padding: 7px 16px;
  box-sizing: border-box;
}
script-editor .modal .container .dialog .sidebar p {
  font-size: 14px;
  padding: 0px 16px;
  margin: 20px 0px;
}
script-editor .modal .container .dialog .sidebar ul li {
  border: solid 1px var(--fg-color);
}
script-editor .modal .container .dialog .sidebar ul li a.uk-accordion-title {
  padding: 10px;
  background-color: var(--fg-color);
}
script-editor .modal .container .dialog .sidebar ul li a.uk-accordion-title:before {
  content: "";
  width: 1em;
  height: 1em;
  margin-left: 10px;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%221%22%20height%3D%2213%22%20x%3D%226%22%20y%3D%220%22%20%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-top: 0.2em;
}
script-editor .modal .container .dialog .sidebar ul li.uk-open a:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Crect%20fill%3D%22%23666%22%20width%3D%2213%22%20height%3D%221%22%20x%3D%220%22%20y%3D%226%22%20%2F%3E%0A%3C%2Fsvg%3E");
}
script-editor .modal .container .dialog .sidebar ul li ul {
  padding-left: 16px;
}
script-editor .modal .container .dialog .sidebar .methods li {
  border: solid 1px var(--fg-color);
}
script-editor .modal .container .dialog .sidebar .methods li .uk-accordion-content {
  margin-top: 0px;
}
script-editor .modal .container .dialog .editor {
  width: 60%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
script-editor .modal .container .dialog .editor .label {
  margin-bottom: 10px;
}
script-editor .modal .container .dialog .editor .label input {
  width: 300px;
}
script-editor .modal .container .dialog .editor .error {
  color: red;
  margin-bottom: 10px;
}
script-editor .modal .container .dialog .editor .error.hidden {
  display: none;
}
script-editor .modal .container .dialog .editor .code-box {
  flex: 1;
}
script-editor .modal .container .dialog .editor .code-box textarea {
  height: 100%;
  width: 100%;
}
script-editor .modal .container .footer {
  margin-top: 10px;
}

.code-box {
  display: block;
  position: relative;
  font-family: monospace;
  line-height: 1.5;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: solid 1px;
  background-color: #f5f2f0;
}
.code-box textarea {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: transparent;
  color: transparent;
  caret-color: black;
  padding: 10px;
  margin: 0px;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  width: 100%;
  border: none;
}
.code-box textarea::selection {
  color: transparent;
}
.code-box code,
.code-box pre {
  position: relative;
  display: block;
  width: 100%;
  margin: 0px;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  background-color: transparent;
  box-sizing: border-box;
}
.code-box pre {
  height: 100%;
  padding: 0px;
}
.code-box code {
  padding: 10px;
  outline: none;
  min-height: 100%;
}
.code-box code#visualizer {
  pointer-events: none;
}
.code-box code#editor {
  position: absolute;
  top: 0;
  left: 0;
  color: transparent;
  text-shadow: none;
  caret-color: black;
}

object-lists #script-controls a {
  width: 100%;
  margin-bottom: 10px;
}
object-lists #script-controls .upload-wrapper {
  height: 34px;
}
object-lists #script-controls .upload-wrapper .btn {
  background-color: var(--btn-color);
}

:root {
  --btn-color: #212c5b;
  --btn-text-color: #fff;
  --text-color: #fff;
  --fg-color: hsl(180deg 20.54% 90.41%);
  --fx-clr-0: hsl(204, 70%, 41%);
  --fx-clr-1: hsl(116, 56%, 40%);
  --fx-clr-2: hsl(359, 79%, 49%);
  --fx-clr-3: hsl(30, 100%, 50%);
  --fx-clr-4: hsl(269, 43%, 42%);
  --fx-clr-5: hsl(21, 63%, 42%);
  --grp-clr-0: hsl(201, 52%, 77%);
  --grp-clr-1: hsl(92, 57%, 70%);
  --grp-clr-2: hsl(1, 92%, 79%);
  --grp-clr-3: hsl(34, 97%, 71%);
  --grp-clr-4: hsl(280, 30%, 76%);
  --grp-clr-5: hsl(60, 100%, 80%);
  --selected-fx-clr: var(--fx-clr-0);
  --selected-grp-clr: var(--grp-clr-0);
  --default-font-size: 16px;
}

.fancy {
  font-family: "Handjet", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px !important;
}

.fancy.small {
  font-size: 30px !important;
}

.btn {
  position: relative;
  padding: 5px;
  background-color: var(--btn-color);
  color: var(--btn-text-color) !important;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0px 0px 7px -2px #000;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}
.btn:hover {
  text-decoration: none;
  color: var(--btn-text-color) !important;
}

.uk-width-1-10 {
  width: 10%;
}

.uk-width-2-10 {
  width: 20%;
}

.uk-width-3-10 {
  width: 30%;
}

.uk-width-4-10 {
  width: 40%;
}

.uk-width-5-10 {
  width: 50%;
}

.uk-width-6-10 {
  width: 60%;
}

.uk-width-7-10 {
  width: 70%;
}

.uk-width-8-10 {
  width: 80%;
}

.uk-width-9-10 {
  width: 90%;
}

.uk-width-10-10 {
  width: 100%;
}

a {
  color: var(--btn-color) !important;
}

h3 {
  color: var(--btn-color);
}

a:hover {
  color: var(--btn-color) !important;
}

input[type=text] {
  max-width: 100%;
  max-height: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  text-align: left;
  border-bottom: solid 1px;
}

span.uk-icon {
  cursor: pointer;
}

nav {
  z-index: 1;
}
nav .uk-container {
  padding-left: 20px;
  padding-right: 20px;
  max-width: none;
}
nav .uk-navbar-right {
  padding-right: 15px;
}
nav .uk-navbar-right #current-project {
  margin-right: 30px;
  margin-top: 4px;
}
nav .uk-navbar-right #current-project a {
  border: solid 1px;
  border-radius: 30px;
  padding: 3px;
  text-align: center;
}
nav .uk-navbar-right #current-project input {
  margin-left: 10px;
  font-size: 16px;
}
nav .uk-navbar-right #save_btn {
  transition: background-color 300ms ease, color 300ms ease;
}
nav .uk-navbar-right #save_btn.saved {
  background-color: green;
  color: white !important;
}
nav .uk-navbar-right #open_menu svg {
  width: 35px;
  height: 35px;
}
nav .uk-navbar-right .menu label {
  color: black !important;
}
nav .uk-navbar-right .menu .btn {
  width: 100%;
}
nav .uk-navbar-right .menu a {
  margin: 10px 0px;
}
nav .uk-navbar-right .menu .upload-wrapper {
  height: 34px;
}
nav .uk-navbar-right .menu .upload-wrapper label {
  background-color: var(--btn-color);
  color: var(--btn-text-color) !important;
}
nav .uk-navbar-right .menu li > label {
  display: inline-block;
  width: 100%;
  border-bottom: solid 1px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.slot-list {
  box-sizing: border-box;
  padding: 0px 10px !important;
  position: relative;
  font-size: 0;
}
.slot-list slot-item {
  display: inline-block;
  width: 33.3%;
  margin-top: 10px !important;
  margin-bottom: 10px !important;
  font-size: var(--default-font-size);
  position: relative;
}
.slot-list slot-item:nth-child(1) {
  margin-left: 15.6%;
  margin-right: 1%;
}
.slot-list slot-item:nth-child(2) {
  margin-right: 15.6%;
  margin-left: 1%;
}
.slot-list slot-item:nth-child(3) {
  margin-right: 8.3%;
  margin-left: 8.3%;
}
.slot-list slot-item:nth-child(4) {
  margin-right: 8.3%;
  margin-left: 8.3%;
}
.slot-list slot-item:nth-child(5) {
  margin-left: 15.6%;
  margin-right: 1%;
}
.slot-list slot-item:nth-child(6) {
  margin-right: 15.6%;
  margin-left: 1%;
}
.slot-list slot-item .select {
  border: solid 1px #000;
  border-radius: 5px;
  background-color: white;
}
.slot-list slot-item .select .select-display {
  padding: 5px 50px 5px 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.slot-list slot-item .select .select-list {
  margin-top: -27px;
  margin-left: 8px;
  position: absolute;
  width: 100%;
  padding: 0px 30px 0px 5px;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: opacity 200ms ease;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.slot-list slot-item .select .select-list ul {
  margin-bottom: 0px;
  border-radius: 5px;
  box-shadow: -1px 7px 15px 0px #716f6f;
  background-color: #d4d4d4;
}
.slot-list slot-item .select .select-list ul li {
  margin: 0px;
  padding: 5px 16px;
}
.slot-list slot-item .select .select-list ul li:hover {
  background-color: #6fa1f8 !important;
  color: white;
}
.slot-list slot-item .select .select-handle {
  width: 50px;
  position: absolute;
  top: 2px;
  right: 10px;
  text-align: right;
  cursor: pointer;
}
.slot-list slot-item .select .select-handle svg {
  width: 35px;
  height: 35px;
}
.slot-list slot-item .select.active .select-list {
  opacity: 1;
  pointer-events: all;
}
.slot-list slot-item.selected {
  box-shadow: 0px 1px 14px 6px hsl(184.14, 100%, 51.57%) !important;
}

.launch-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1;
}
.launch-overlay h1 {
  width: 100%;
  text-align: center;
  color: white;
  font-family: "Handjet", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 80px;
  padding-top: 100px;
}
.launch-overlay #launch {
  text-align: center;
}
.launch-overlay #launch a {
  font-family: "Handjet", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 40px;
}
.launch-overlay #launch svg {
  width: 100px;
  height: 100px;
}
.launch-overlay #launch p {
  max-width: 400px;
  margin: 50px auto;
}
.launch-overlay #launch svg,
.launch-overlay #launch p,
.launch-overlay #launch h3,
.launch-overlay #launch a {
  color: white !important;
}

vertical-range {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
}
vertical-range .range-input {
  position: absolute;
  height: 100%;
  aspect-ratio: 1/1;
}
vertical-range .range-input input {
  transform: rotate(270deg);
  position: absolute;
  width: 100%;
  top: 50%;
  margin-left: -50%;
}
vertical-range .range-input input:before {
  display: none;
}

.controller {
  padding: 20px 40px;
  background-color: #2a2a2a;
  min-height: 100vh;
  position: relative;
}

.controls {
  padding-top: 60px;
}

.slots {
  margin-left: 3%;
}

.objects {
  box-sizing: border-box;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  border-right: solid 1px #000;
  background-color: #dddddd;
  min-height: 100vh;
}

.sliders > div {
  width: 300px;
  margin: 0px auto;
}
.sliders > div vertical-range {
  margin: 0px 40px;
  height: 400px;
  width: 50px;
  padding: 0px 25px;
  /* Thumb: for Chrome, Safari, Edge */
  /* Thumb: for Firefox */
}
.sliders > div vertical-range input[type=range] {
  padding: 0px;
  appearance: none;
  width: 100%;
  height: 16px;
  border: 1px solid #000;
  border-radius: 9999px;
  background-color: #ccc;
  cursor: pointer;
  box-sizing: border-box;
  transform: rotate(270deg) translateX(10px);
}
.sliders > div vertical-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 30px;
  background: #fff;
  box-shadow: none;
}
.sliders > div vertical-range input[type=range]::-moz-range-thumb {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 30px;
  background: #fff;
  box-shadow: none;
}

video-slot {
  color: black;
  box-shadow: none;
  padding: 10px 40px 10px 10px;
}
video-slot > div {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  position: relative;
  background-color: white;
  padding: 5px;
  position: relative;
}
video-slot > div .left {
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
video-slot > div .right {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
}
video-slot > div .right > div {
  position: absolute;
  height: 100%;
  width: 20px;
  left: 100%;
  top: 0px;
}
video-slot > div .right > div vertical-range {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 12px;
  padding: 0px 12px;
  /* Thumb: for Chrome, Safari, Edge */
  /* Thumb: for Firefox */
}
video-slot > div .right > div vertical-range input[type=range] {
  padding: 0px;
  appearance: none;
  width: 100%;
  height: 12px;
  border: 1px solid #000;
  border-radius: 9999px;
  background-color: #ccc;
  cursor: pointer;
  box-sizing: border-box;
  transform: rotate(270deg) translateX(8px);
}
video-slot > div .right > div vertical-range input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 30px;
  background: #fff;
  box-shadow: none;
}
video-slot > div .right > div vertical-range input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 30px;
  background: #fff;
  box-shadow: none;
}
video-slot.selected > div {
  background-color: var(--selected-grp-clr);
  box-shadow: 0px 1px 14px 6px hsl(184.14, 100%, 51.57%) !important;
}
video-slot .video-header {
  border-bottom: none;
  padding: 13px 50px 13px 20px;
  position: relative;
}
video-slot .video-header label {
  width: 100%;
  padding: 0px;
  display: inline-block;
}
video-slot .video-header label input {
  display: inline-block;
  vertical-align: middle;
}
video-slot .video-header label input[type=radio] {
  margin-left: -16px;
  margin-top: 0px;
  background-color: white;
  opacity: 0;
  position: absolute;
}
video-slot .video-header label input[type=radio]:checked {
  background-color: #34383d !important;
}
video-slot .video-header label input[type=text] {
  width: 100%;
  max-width: 100%;
}
video-slot .video-header a {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  text-align: right;
  margin-right: -30px;
}
video-slot .video-body {
  padding-top: 0px;
}
video-slot video {
  width: 100%;
  aspect-ratio: 2/1;
  background-color: black;
  position: relative;
  z-index: auto;
}
video-slot input[type=range]::before {
  display: none;
}
video-slot .preview {
  position: relative;
}
video-slot .preview p {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  text-align: center;
  color: white;
}
video-slot .preview.no-video p {
  display: block;
}

.upload-wrapper {
  width: 100%;
  position: relative;
  cursor: pointer;
}
.upload-wrapper label {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  color: white !important;
  background-color: transparent;
  cursor: pointer;
}
.upload-wrapper input {
  opacity: 0;
  width: 100%;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}

led-bar {
  position: absolute;
  width: 15px;
  height: 100%;
}
led-bar > div {
  position: relative;
  width: 100%;
  height: 16.6%;
}
led-bar > div span {
  position: absolute;
  display: inline-block;
  width: 100%;
}
led-bar#script_lights {
  top: 0px;
  left: 0px;
}
led-bar#effect_a_lights {
  top: 0px;
  right: 16px;
}
led-bar#effect_b_lights {
  top: 0px;
  right: 0px;
}

.bar-holder {
  position: absolute;
  left: 0;
  height: 30px;
  width: 100%;
  margin-top: 10px;
}

horizontal-led-bar {
  position: absolute;
  width: 100%;
  height: 25px;
  font-size: 0;
}
horizontal-led-bar > div {
  position: relative;
  display: inline-block;
  width: 16.6%;
  height: 100%;
}
horizontal-led-bar > div span {
  position: absolute;
  display: inline-block;
  height: 100%;
}
horizontal-led-bar#h_script_lights {
  top: 0px;
  left: 0px;
}
horizontal-led-bar#h_effect_a_lights {
  top: -15px;
  left: 0px;
}
horizontal-led-bar#h_effect_b_lights {
  top: 0px;
  left: 0px;
}
