/* COLOR SCHEME (Palette) */
/* Font Colors */
/* Hover Colors */
/* Tab specific */
/* Console */
/* DAW */
/* Labels = same as @med-font

/* General Palette */
/* Code Palette */
/* Curriculum Pallete */
/* DIMENSIONS */
/* side-bar browser */
/* Curriculum */
/* Z Index */
/* Border radius */
html,
body {
  height: 100vh;
  padding: 0;
  margin: 0;
  font-family: Roboto, Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.gutter {
  background-color: black;
  background-repeat: no-repeat;
  background-position: 50%;
}
.gutter.gutter-vertical {
  height: 6px;
  cursor: ns-resize;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAFAQMAAABo7865AAAABlBMVEVHcEzMzMzyAv2sAAAAAXRSTlMAQObYZgAAABBJREFUeF5jOAMEEAIEEFwAn3kMwcB6I2AAAAAASUVORK5CYII=);
}
.gutter.gutter-horizontal {
  width: 6px;
  cursor: ew-resize;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAeCAYAAADkftS9AAAAIklEQVQoU2M4c+bMfxAGAgYYmwGrIIiDjrELjpo5aiZeMwF+yNnOs5KSvgAAAABJRU5ErkJggg==);
}
.modal-dialog {
  width: 700px;
}
.panel-label {
  height: 40px;
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.panel-label i {
  font-size: 17px;
  margin-left: 5px;
  margin-right: 7px;
}
.prevent-selection {
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -o-user-select: none;
}
/* Button Styles */
button:focus {
  outline: none !important;
}
.btn {
  border: 0;
  border-radius: 0;
}
.btn-white {
  background-color: #FFF;
  color: #181818;
  border: 0;
  border-radius: 0;
}
.btn-action {
  background: transparent;
  color: #76aaff;
}
.btn-action:hover,
.btn-action:active,
.btn-action:focus {
  background: transparent;
  color: #76aaff;
  opacity: 0.7;
}
.btn-white:hover {
  background-color: #777;
}
.btn-clear-warning {
  color: orange !important;
}
.btn-clear {
  background-color: transparent;
  border: 0;
  border-radius: 0;
}
.btn-clear:hover,
.btn-clear:active,
.btn-clear:focus {
  color: #bbb;
  opacity: 0.7;
}
.btn-run {
  color: #5cb85c !important;
}
.btn-run:hover,
.btn-run:active,
.btn-run:focus {
  opacity: 0.7;
}
.btn-highlight {
  background-color: #CCC;
  color: #181818;
  border: 0;
  border-radius: 0;
}
.btn-highlight:hover {
  background-color: #777;
}
.btn-cai {
  background-color: #d3d25a !important;
  color: black;
  border-radius: 8px;
  padding: 1px 5px;
  margin: 10px;
  max-width: 90%;
  white-space: initial;
  text-align: left;
}
.btn-cai:hover {
  background-color: #9b9a46;
}
.list-cai-content {
  background-color: #d3d25a;
  z-index: 1;
  margin-left: 5%;
  margin-right: 5%;
  height: 33vh;
  overflow-y: scroll;
}
.list-cai-content option {
  color: black;
  padding: 12px 16px;
  display: block;
  border-bottom: 1px solid black;
  white-space: pre-wrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.list-cai-content li {
  background-color: #d3d25a;
}
.list-cai-content li:nth-child(odd) {
  background-color: #9b9a46;
}
.list-cai-content li:nth-child(even) {
  background-color: #d3d25a;
}
.list-cai-content .btn {
  color: black;
  border-bottom: 1px solid black;
  width: 100%;
  padding: 10px;
}
.list-cai-content .btn:hover {
  background-color: #cecd8b;
}
.list-cai-content option:hover {
  background-color: #9b9a46;
}
.btn-xs {
  padding: 2px 5px;
}
.btn-floating {
  z-index: 40;
  border-color: #76aaff;
  border-style: solid;
  border-width: 1px;
  padding: 7px;
  position: relative;
  right: 20px;
  font-size: 11px;
  float: right;
  display: table-cell;
  min-width: 125px;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn-floating:hover {
  opacity: 1 !important;
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.btn-floating i {
  font-size: 16px;
}
.btn-floating span {
  position: relative;
  left: 4px;
  bottom: 2px;
  padding: 2px;
}
.btn-floating,
.btn-floating:hover {
  cursor: pointer;
}
#main-container {
  top: 54px;
  width: 100%;
  overflow-y: hidden;
}
#logged-in {
  background-color: #939393;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 16px;
}
/* NAVIGATION BAR */
#top-header-nav {
  top: 0;
  right: 0;
  left: 0;
  max-height: 54px;
  height: 54px;
  background-color: #282828;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* status messages */
.notificationBar {
  margin: auto;
  z-index: 999;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 0;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.notificationBar.ng-hide {
  opacity: 0;
}
.notificationBar.normal {
  color: #dff0d8;
}
.notificationBar.success {
  color: #9ffa00;
}
.notificationBar.failure1 {
  color: #f2dede;
}
.notificationBar.failure2 {
  color: #ff8080;
}
.notificationPopup {
  color: white;
  margin: auto;
  position: relative;
  float: right;
  width: 250px;
  text-align: center;
  z-index: 100;
  top: 15px;
  right: -16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 0;
  padding: 8px 10px;
  background-color: #393939;
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.notificationPopup.ng-hide {
  opacity: 0;
}
#top-header-nav-links .announcement-banner,
#top-header-nav-links .announcement-banner:focus {
  padding: 4px;
  margin-left: 20px;
  border-radius: 5px;
  text-transform: none;
  text-decoration: none;
  font-weight: 100;
}
#top-header-nav a.brand img {
  height: 22px;
  margin-top: 10px;
  margin-left: 6px;
}
/* Username and Password */
#top-header-nav-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 10px;
}
#top-header-nav-form .top-header-nav-button {
  font-size: 24px;
  color: #939393;
}
#top-header-nav-form #not-logged-in {
  display: flex;
  align-items: center;
}
#top-header-nav-form .top-header-nav-button,
#top-header-nav-form #not-logged-in,
#top-header-nav-form #logged-in,
#top-header-nav-form .user-notification {
  margin: 10px;
}
#top-header-nav-form #keyboard-shortcuts {
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#top-header-nav-form #keyboard-shortcuts.grow-in-size {
  animation: fontbulger 2s infinite;
  color: orangered;
}
#top-header-nav-form input {
  width: 90px;
  height: 23px;
  margin: 5px;
}
/* Content */
#content {
  overflow-y: hidden;
}
.tab-container {
  clear: both;
}
#coder {
  overflow-y: hidden;
}
/* Sidebar */
#sidebar,
.sidebar-inner,
.tab-content,
.tab-pane,
#tab-soundbrowser,
#tab-scriptbrowser,
#tab-apibrowser {
  height: 100%;
}
#tempoSlider {
  width: 60px;
  text-align: center;
}
a:hover {
  text-decoration: none;
}
/* SCROLLBARS */
::-webkit-scrollbar {
  -webkit-appearance: none;
}
::-webkit-scrollbar:vertical {
  width: 10px;
}
::-webkit-scrollbar:horizontal {
  height: 10px;
}
::-webkit-scrollbar-thumb {
  /*border-radius: 4px;*/
  border: 3px solid #aaa;
  /* should match background, can't be transparent */
  background-color: #aaa;
}
::-webkit-scrollbar-track,
.CodeMirror-scrollbar-filler {
  background-color: transparent;
}
/* GENERAL CLASSES FOR LAYOUT */
.ellipsis:before {
  float: right;
  content: attr(data-tail);
}
.ellipsis {
  max-width: 120px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ellipsis-long {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.hidden {
  display: none;
}
.right {
  float: right;
  margin-left: 5px;
}
.left {
  float: left;
  margin-right: 5px;
}
.scroll-50 {
  height: 50vh;
  max-height: 50vh;
  overflow: scroll;
}
/* GENERAL TABS */
.nav-tabs {
  margin-top: 0px;
}
/* Overall styling */
.tab-container .dropdown-menu > li > a,
.nav-tabs > li > a {
  margin: 0;
  border: none;
  border-top: solid 1px #393939;
  border-right: solid 1px #393939;
  border-radius: 0;
  color: #c4c4c4;
}
i.selection {
  font-size: 32px;
  color: #5cb85c;
}
.nav-tabs > li > a:hover {
  margin: 0;
  border: none;
  border-top: solid 1px #393939;
  border-right: solid 1px #393939;
  border-radius: 0;
}
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  margin: 0;
  border: none;
  border-top: solid 1px #393939;
  border-right: solid 1px #393939;
  border-radius: 0;
}
.tab-container .dropdown-menu > li > a:hover,
.tab-container .dropdown-menu > li > a:focus {
  color: inherit;
  background: #393939 !important;
}
.tab-container .dropdown-menu > .active > a,
.tab-container .dropdown-menu > .active > a:hover,
.tab-container .dropdown-menu > .active > a:focus {
  color: inherit;
  background: #393939 !important;
}
.tab-container .dropdown-menu > li {
  margin-left: 0px;
  max-width: 310px;
}
.dirty-tab-header {
  color: indianred;
}
#container ~ .dropdown-menu > li > a {
  color: #76aaff;
}
#container ~ .dropdown-menu > .disabled > a {
  opacity: 0.5;
}
#container ~ .dropdown-menu li > a > i {
  padding: 5px;
}
#container ~ .dropdown-menu .glyphicon:empty {
  width: auto;
}
/* ROW OVERRIDE */
.row {
  margin: 0;
}
.vertical-center {
  display: flex;
  align-items: center;
}
/* Spin Boxes in HTML */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Diff Code Styles */
#version-code {
  margin-top: 0;
  margin-right: 0;
}
/* Download Modal */
@media (min-width: 581px) {
  .modal-body.download button {
    font-size: 1.3em;
  }
}
.modal-body.download button {
  margin: 0 auto;
  display: block;
}
.modal-body.download a {
  color: #fff;
}
img {
  border: 0 none;
}
textarea:focus {
  box-shadow: none;
}
.starter-template {
  padding: 40px 15px;
  text-align: center;
}
.rule {
  height: 90%;
  position: absolute;
  border-right: 1px dotted #000;
  text-align: right;
}
.bar {
  border-right: 1px dotted #000;
}
/* IDE */
#collab-badges-container {
  color: steelblue;
  top: 39px;
  padding: 4px;
  right: 0;
  height: 100%;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.collaborator-badge {
  border-radius: 50%;
  font-size: 24px;
  width: 40px;
  height: 40px;
  margin: 4px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.collaborator-access-badge {
  z-index: 200;
}
#console-frame {
  overflow-y: scroll;
}
.uploadSuccess {
  background-color: #dff0d8;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 5px;
}
.uploadFail {
  background-color: #ff8080;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-top: 5px;
}
.font-size-menu {
  left: auto;
  min-width: 0;
}
#global-options {
  color: #939393;
  font-size: 20px;
}
.tab-context-menu .popover {
  border-radius: 0;
  border-width: 0;
  font-size: 16px;
  background: #393939 !important;
  background-color: #393939 !important;
}
.tab-context-menu .popover a {
  color: #fff;
}
.tab-context-menu .popover-content {
  padding: 0;
  background-color: #393939 !important;
}
.tab-context-menu .popover.bottom > .arrow:after {
  border-bottom-color: #393939 !important;
}
.tab-context-menu .arrow {
  color: #393939 !important;
}
#notification-history {
  z-index: 100;
  position: absolute;
  top: 54px;
  left: 60px;
  right: 10px;
  bottom: 0px;
  font-size: 15px;
  overflow: scroll;
}
#notification-history #back-button {
  display: inline-block;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
#notification-history .notification-type-header {
  padding: 1em;
}
#notification-history .marker,
#notification-history .empty-marker {
  width: 10px;
  height: 10px;
}
#notification-history .marker {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  background: steelblue;
  display: inline-block;
}
/*combined view styling */
#devctrl {
  overflow-y: hidden !important;
}
#devctrl.combined-view {
  float: left;
  width: 50% !important;
}
.workstation.combined-view {
  float: right;
  width: 50% !important;
}
.loading {
  color: #bbb;
}
.loading.combined-view {
  float: right;
  width: 50% !important;
}
.license.combined-view {
  position: absolute;
  bottom: 0;
  left: 50%;
}
.modal {
  display: block;
}
.modal-body.download div.btn {
  font-size: 18px;
  margin: 0 auto;
  display: table;
}
.menuleft {
  padding-right: 3px;
}
.menuright {
  padding-right: 0px;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
#filesample {
  width: 25em;
}
button.round-button {
  -webkit-appearance: none;
  font-family: Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
  height: 22px;
  line-height: 0px;
  margin: 0px 2px 0px 2px;
  padding-bottom: 3px;
  width: 22px;
  border: 1px solid #f5f5f5;
  border-radius: 50%;
  color: #f5f5f5;
  text-align: center;
  text-decoration: none;
  background: #464646;
  box-shadow: 0 0 3px gray;
}
button.round-button:hover {
  background: #262626;
}
.nav-tabs li {
  margin-top: 0;
}
#btn-add-tab {
  height: 39px;
  color: #76aaff;
}
.code-container {
  height: 100%;
  overflow: hidden;
  background: #181818 !important;
  border-top: 1px solid #393939;
  position: relative;
  flex-grow: 1;
}
.code-container-cloak {
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0.2;
}
#tabbedCoder {
  background: #999;
  position: absolute;
  width: 100%;
  right: 0;
}
#tabbedCoder li.active {
  background: white;
}
.sb-files {
  text-align: left;
}
button .selected {
  background-color: green;
}
input.empty {
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
input.search-field {
  width: 160px;
}
input.form-search {
  display: inline-block;
  width: 320px;
}
/* Specify styling for tooltip contents */
.tooltip.customClass,
.tooltip-inner {
  border: none;
  margin: 0;
  white-space: pre-line;
  word-wrap: break-word;
  z-index: 100;
  color: #550000;
  background-color: white;
  text-align: left;
  margin-bottom: 1em;
  margin-left: 1em;
  font-size: 12px;
}
/* Hide arrow */
.tooltip.customClass .tooltip-arrow {
  display: none;
}
.align-left {
  text-align: left;
}
/* Bootstrap Button overrides (for now) */
.btn-genre:hover,
.btn-genre:active,
.btn-genre:focus,
.btn-genre.active {
  background-color: #477447;
  border-color: #395439;
}
.btn-artist:hover,
.btn-artist:active,
.btn-artist:focus,
.btn-artist.active {
  background-color: #324270;
  border-color: #284569;
}
.pad {
  padding: 5px;
}
.black-text {
  color: black;
}
.container input[type="radio"] {
  display: none;
}
.container input[type="radio"] + span::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: -4px;
  border-radius: 9px;
  border: solid 2px;
  margin-right: 12px;
  transition: 0.5s ease all;
}
.container [type="radio"]:checked + span::before {
  background: #c4c4c4;
  border: solid;
}
.stretch {
  overflow: hidden;
}
#dawHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#code-toolbar {
  display: flex;
  align-items: center;
}
#dawHeader .popover,
#code-toolbar .popover {
  background: papayawhip;
}
#dawHeader .popover.bottom .arrow:after,
#code-toolbar .popover.bottom .arrow:after {
  border-bottom-color: papayawhip;
}
#dawHeader .popover.right .arrow:after,
#code-toolbar .popover.right .arrow:after {
  border-right-color: papayawhip;
}
#dawHeader .popover.left .arrow:after,
#code-toolbar .popover.left .arrow:after {
  border-left-color: papayawhip;
}
#dawHeader .popover.top .arrow:after,
#code-toolbar .popover.top .arrow:after {
  border-top-color: papayawhip;
}
#dawHeader .popover .popover-title,
#code-toolbar .popover .popover-title {
  background-color: #FFFFD5;
}
#dawHeader .popover .popover-content,
#code-toolbar .popover .popover-content {
  padding: 5px 5px;
}
#code-toolbar #editor-options,
#code-toolbar #run-button {
  font-size: 20px;
}
#code-toolbar #editor-options {
  color: #939393;
  margin-right: 10px;
}
.currcode-container .btn-copy {
  border: 1px solid #76aaff !important;
  border-radius: 3px;
  box-shadow: 0px 0px 5px gray;
}
code {
  padding: 2px 4px;
  border-radius: 4px;
  white-space: nowrap;
}
kbd {
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  color: #333;
  font-size: 11px !important;
  line-height: 1.4;
  text-shadow: 0 1px 0 #fff;
  display: inline-block;
  padding: 0.1em 0.6em;
  margin: 0 0.1em;
  white-space: nowrap;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #fff inset;
  border-radius: 3px;
}
.popover .label-shortcut-key {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.popover table {
  margin: auto;
  border: none;
}
.popover table tr > td:first-child {
  text-align: right;
}
.blink {
  color: red;
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}
/* Modals */
.modal-footer .buttonmodal {
  margin-right: 14px;
  cursor: pointer;
}
.modal-footer .closemodal {
  color: #d04f4d;
}
.close,
.close:hover {
  color: #ffffff;
  opacity: 0.7;
}
/* Animation */
@keyframes fontbulger {
  0% {
    transform: scale(1.1);
  }
  30% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1.35);
  }
}
@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
/* error report form */
#errform input,
#errform textarea {
  color: black;
}
/* Modals */
.modal-section-header {
  padding: 4px;
  background: #282828;
  padding-left: 15px;
  /* To compensate for bootstrap moday-boday padding */
  width: calc(100% + 30px);
  margin-left: -15px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
.modal-section-header span {
  flex-grow: 100;
}
.modal-section-header button {
  margin-right: 15px;
}
.modal-section-content {
  margin-top: 10px;
  margin-bottom: 10px;
}
.modal-body.transparent input[type="text"],
.modal-body.transparent input[type="number"] {
  background: transparent;
  border: solid 2px transparent;
  border-bottom: solid 2px gray;
  outline: none;
  color: gray;
  border-radius: 3px;
}
#levelmeter-container {
  margin-top: 5px;
  margin-right: 15px;
}
#upload-sound-tabcontainer #count-measures-input,
#upload-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#upload-details input {
  margin-right: 40px;
}
#count-measures-input #tempoSlider {
  width: 150px;
}
.counter-meter {
  border: 10px solid gray;
  border-radius: 50%;
  padding: 10px;
  width: 80px;
  height: 80px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.counter-meter.hide-metronome {
  border-color: transparent;
}
#upload-sound-tabcontainer #record-button:hover {
  color: red;
  opacity: 0.8;
  cursor: pointer;
}
#upload-sound-tabcontainer .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.upload-file {
  margin: 30px;
}
#upload-sound-tabcontainer .inputfile + label {
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  border-radius: 3px;
  padding: 5px;
  cursor: pointer;
}
#upload-sound-tabcontainer .inputfile + label:hover {
  background: #EFEFEF;
}
#upload-sound-tabcontainer .inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
#upload-sound-tabcontainer #inputlabel {
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-control {
  box-shadow: none;
}
.btn-filter.btn-hollow:hover,
.btn-filter.btn-show-fav:hover,
.btn-filter.btn-show-deleted-scripts:hover {
  opacity: 0.7 !important;
}
.share-script-menu-descriptions {
  padding: 10px;
  margin: 10px 0;
  text-align: center;
}
#share-link-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.share-link {
  margin-top: 8px;
  margin-left: 1em;
  display: inline-block;
}
.copy-share-link,
.download-share-url,
.send-share-script {
  float: right;
  margin-right: 12px;
}
.copy-share-link i,
.download-share-url i,
.send-share-script i {
  color: #76aaff;
  font-size: 22px;
  cursor: pointer;
}
.copy-share-link i:hover,
.download-share-url i:hover,
.send-share-script i:hover {
  text-shadow: 0px 0px 10px #888;
}
.copy-share-link.move-up,
.download-share-url.move-up,
.send-share-script.move-up {
  margin-top: -4px;
  margin-left: 5px;
}
.copy-share-link,
.download-share-url {
  margin-top: 8px;
}
.share-people-chip {
  float: left;
  padding: 2px 10px;
  border-radius: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
}
#share-with-people-tab a {
  border-radius: 0;
}
.share-people-error {
  color: white;
  background-color: #ff8080;
  margin-bottom: 20px;
  padding: 10px;
}
.share-script .panel-title {
  text-align: left;
}
.embedded-script-info {
  width: 100%;
  text-align: center;
  display: inline-block;
  color: black;
  font-family: Roboto, Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 14px;
}
button:focus-visible {
  border: 4px solid #f5ae3c;
  outline: 4px solid #f5ae3c;
  opacity: 1;
}
input:focus-visible,
div:focus-visible,
select:focus-visible {
  outline: 4px solid #f5ae3c;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid \9;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.skip-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.skip-links a {
  padding: 0.5em 0.75em;
  position: absolute;
  top: -3em;
  background-color: #000;
  color: #fff;
  font-size: 2em;
  font-weight: bold;
  text-decoration: none;
}
.skip-links a:focus {
  top: 0;
  color: #fff;
  background-color: #393939;
  left: auto;
  top: auto;
  width: 30%;
  height: auto;
  overflow: auto;
  margin: 10px 35%;
  padding: 5px;
  border-radius: 1px;
  text-align: center;
  font-size: 2em;
  z-index: 999;
  outline: 4px solid #f5ae3c;
  outline-offset: unset;
}
.vertical-text {
  writing-mode: vertical-lr;
}
/* CURRICULUM */
#curriculum {
  background: #181818;
  color: #bbb;
  font-size: 13px;
  overflow-y: hidden;
  font-weight: 300;
  height: 100%;
}
#curriculum .stretch {
  all: unset;
}
#curriculum code {
  font-size: 1em;
}
#curriculum.curriculum-light {
  background: #FFF !important;
  color: #4e4e4e !important;
}
#curriculum img {
  max-width: 100%;
  margin: 0 auto;
}
#curriculum .currcode-container {
  position: relative;
}
#curriculum .btn-copy {
  position: absolute;
  right: 28px;
  border: none;
  background: transparent;
  color: #76aaff;
  margin-top: 1em;
}
.btn-copy-url,
.btn-slides,
.btn-fullscreen {
  float: right;
}
#curriculum .btn-copy-url button,
#curriculum .btn-slides button,
#curriculum .btn-fullscreen button {
  border: none;
  background: transparent;
  color: #76aaff;
  margin-top: 0em;
}
#curriculum .btn-copy-url button i,
#curriculum .btn-slides button i,
#curriculum .btn-fullscreen button i,
#curriculum .btn.btn-xs.btn-action i {
  font-size: 18px;
}
#curriculum-body .sidebarblock {
  padding: 1.25em;
  border-radius: 4px;
}
#curriculum-body th.halign-center {
  text-align: center;
}
#curriculum-body td.halign-center {
  text-align: center;
}
/* Video */
#curriculum video {
  width: 100%;
}
.youtube-container .content {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-container .content iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#curriculum div.sect2 {
  counter-reset: question-number;
}
#curriculum div.question {
  list-style: none;
  list-style-position: outside;
  font-weight: bold;
}
#curriculum div.question li {
  list-style-type: none;
  padding-left: 0;
}
#curriculum div.question li::before {
  content: none;
}
#curriculum div.question p {
  font-weight: bold;
}
#curriculum div.question p code {
  font-weight: normal;
}
#curriculum div.question > div.content > div.paragraph > p {
  position: relative;
  margin-left: 32px;
  padding-top: 0.5em;
  counter-increment: question-number;
}
#curriculum div.question > div.content > div.paragraph > p::before {
  content: counter(question-number) ". ";
}
#curriculum div.question i {
  position: absolute;
  left: -32px;
  margin-top: 0.5em;
  font-size: 0.7em;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1em;
  padding: 4px;
  background-color: #CCCCCC;
  color: #CCCCCC;
}
#curriculum div.question.complete i {
  background-color: #2CBF70;
  color: white;
}
#curriculum ul.answers {
  font-size: 0.9em;
  margin-left: 32px;
}
#curriculum ul.answers input[type="radio"] {
  opacity: 0;
  width: 0;
  height: 0;
  appearance: none;
}
#curriculum ul.answers .control {
  margin-top: 5px;
  display: inline-block;
  border: 1px solid lightgrey;
  min-width: 0.9em;
  min-height: 0.9em;
  border-radius: 50%;
  margin-right: 0.7em;
  background-color: white;
}
#curriculum ul.answers p.correct input:checked + .control {
  background-color: #2CBF70;
  border-color: #2CBF70;
}
#curriculum ul.answers p.incorrect input:checked + .control {
  background-color: #FF3448;
  border-color: #FF3448;
}
#curriculum ul.answers p.correct {
  color: #2CBF70;
}
#curriculum ul.answers p.incorrect {
  color: #FF3448;
}
#curriculum ul.answers p.incorrect .try-again::after {
  font-weight: normal;
  margin-left: 1em;
  margin-right: 1em;
  font-size: smaller;
  white-space: nowrap;
  text-align: right;
  content: " Try Again!";
}
#curriculum .effect-examples {
  display: grid;
  grid-template-columns: min-content auto;
  grid-auto-flow: row;
  align-items: center;
  margin-bottom: 1.5em;
}
#curriculum .effect-examples div.audio-label {
  white-space: nowrap;
  margin-right: 1em;
}
#curriculum .effect-examples div.curriculum-mp3 {
  display: inline-block;
  margin-bottom: 0.5em;
}
.curriculum-rtl .prose ul > li,
.curriculum-rtl .prose ol > li {
  padding-right: 1.75em;
  padding-left: 0;
}
.curriculum-rtl .prose ol > li:before {
  right: 0.25em;
  left: auto;
}
.curriculum-rtl .prose ol > li:before,
.curriculum-rtl .prose ul > li:before {
  right: 0.25em;
  left: auto;
}
.curriculum-rtl .prose thead td:first-child,
.curriculum-rtl .prose thead th:first-child {
  padding-right: 0;
}
.curriculum-rtl .prose thead td:last-child,
.curriculum-rtl .prose thead th:last-child {
  padding-left: 0;
}
.curriculum-rtl ul.answers .control {
  margin-right: 0em !important;
  margin-left: 0.7em;
}
/* console styling */
#console {
  line-height: normal;
  background-color: #181818;
  color: #AAA;
  font-family: monospace;
}
#console .console-line {
  border-bottom: 1px solid rgba(100, 100, 100, 0.3);
  padding: 3px;
  display: flex;
}
#console .console-warn {
  color: #664D03;
}
#console .console-error {
  color: #57141B;
}
/* sidebar general */
#sidenav {
  position: fixed;
  top: 54px;
  bottom: 0;
  left: 0;
  max-width: 60px;
  width: 60px;
  display: flex;
  text-align: center;
  padding-top: 9px;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
#sidenav ul,
#sidenav li {
  margin: 0;
  padding: 0;
}
.sb-controls {
  background: #D8D8D8;
  text-align: left;
  text-indent: 5px;
}
.sb-upload {
  padding: 3px 0;
}
#sidebar-container {
  overflow-y: auto;
}
.sb-title {
  margin-top: -4px;
  margin-left: -4px;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  border-bottom: 2px solid;
  font-weight: bold;
}
.sb-title i {
  font-size: 18px;
  vertical-align: sub;
}
.sidenav-button .icon-sound-browser,
.sidenav-button .icon-code-browser,
.sidenav-button .icon-share-browser,
.sidenav-button .icon-api-browser,
.sidenav-button .icon-DAW-Icon,
.sidenav-button .icon-brush,
.sidenav-button .icon-terminal,
.sidenav-button .icon-book3 {
  font-size: 24px;
}
.sidenav-button .icon-users4,
.sidenav-button .icon-facebook2,
.sidenav-button .icon-twitter,
.sidenav-button .icon-bubbles {
  font-size: 20px;
}
.sidenav-button,
.sidenav-button:active,
.sidenav-button:focus,
.sidenav-button:visited {
  margin: 0 5px 8px;
  padding: 11px 2px 11px 2px;
  border-radius: 3px;
  color: #D3D25A;
  background-color: transparent;
  transform: scale(1.5);
}
.sidenav-button:hover {
  background-color: transparent;
  opacity: 0.7 !important;
}
.sidenav-button-transparent {
  opacity: 0.3 !important;
}
.sidenav-button:hover {
  cursor: pointer;
  opacity: 0.7 !important;
}
/* sound & script browser */
.sound-browser {
  line-height: 1;
  text-align: center;
  float: left;
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  position: absolute;
  top: 0px;
}
.sound-browser #add-sound,
.script-browser #add-script {
  margin-top: 0;
  margin-left: 0;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  border-bottom: 2px solid;
}
.sound-browser #add-sound button,
.script-browser #add-script button {
  margin-left: -11px;
  display: flex;
}
.sound-browser #add-sound i,
.script-browser #add-script i {
  margin-right: 8px;
}
.sound-browser #sound-search,
.script-browser #script-search {
  margin-top: 0;
  margin-left: 0;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  border-bottom: 2px solid;
}
.sound-browser #sound-search span,
.script-browser #script-search span {
  right: 0;
  left: 10px;
  line-height: 1em;
  top: 74px;
}
.sound-browser #sound-search span i,
.script-browser #script-search span i {
  top: 2px;
  left: 0;
  line-height: 1.5;
}
.sound-browser #sound-search span input,
.script-browser #script-search span input {
  height: 2em;
}
.sound-browser #sound-search span button,
.script-browser #script-search span button {
  position: absolute;
  right: 0;
  height: 27px;
  width: 27px;
}
.sound-browser-body {
  position: absolute;
  bottom: 100px;
  top: 276px;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.sound-browser-scroller {
  max-height: 100%;
  width: 100%;
  overflow-y: scroll;
}
.sound-browser-footer {
  position: absolute;
  bottom: 0px;
  Margin-bottom: 10px;
  left: 5px;
  height: 100px;
  width: 100%;
}
.script-browser .btn-filter,
.share-script .btn-filter {
  color: #181818;
}
.share-script .dropdown-menu {
  font-size: 12px;
  padding: 0px;
}
.shared-script-description {
  font-weight: 100;
}
.sound-browser #filter-title {
  margin-top: 1px;
  margin-left: 0;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  font-weight: bold;
}
.sound-browser #filter-title i {
  top: 4px;
}
.sound-browser .filter-body,
.script-browser .filter-body,
.share-browser .filter-body {
  padding-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 15px;
}
.sound-browser .filter-body .btn-group,
.script-browser .filter-body .btn-group,
.share-browser .filter-body .btn-group {
  display: inline-block;
  display: inline;
}
.sound-browser .filter-body ul,
.script-browser .filter-body ul,
.share-browser .filter-body ul {
  font-size: 9pt;
  max-height: 40em;
  overflow-x: hidden;
  overflow-y: auto;
}
.sound-browser .filter-body ul .item,
.script-browser .filter-body ul .item,
.share-browser .filter-body ul .item {
  margin-left: -13px;
}
.sound-browser .filter-body ul .selected,
.script-browser .filter-body ul .selected,
.share-browser .filter-body ul .selected {
  float: left;
  width: 18px;
}
.sound-browser .filter-body .btn-group button,
.script-browser .filter-body .btn-group button,
.share-script .btn-group button {
  font-size: 11px;
  padding: 4px 5px;
  border-radius: 2px;
}
.sound-browser .list-title,
.script-browser .list-title {
  margin-top: 0;
  margin-left: 0;
  text-align: left;
  padding-left: 10px;
  width: 100%;
  border-bottom: 2px solid;
  border-top: 2px solid;
  font-weight: bold;
}
.sound-browser .sound-folder {
  height: 20px;
  width: 100%;
  text-align: left;
  display: inline-block;
  font-size: 10px;
}
.sound-browser .sound-folder .folder-info {
  margin-top: 2px;
  margin-left: 10px;
  line-height: 16px;
}
.sound-browser .sound-folder #folder-name-special {
  text-align: left;
  margin-left: 1px;
  vertical-align: baseline;
  font-family: Roboto, Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  color: yellow;
}
.sound-browser .sound-folder #folder-name {
  text-align: left;
  margin-left: 1px;
  vertical-align: baseline;
  font-family: Roboto, Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.sound-browser .sound-folder .folder-num-sounds {
  font-size: 12px;
  line-height: 15px;
}
.sound-browser .info-field {
  color: #336699;
}
.sound-browser #results-numbox {
  line-height: 1em;
  margin-top: -20px;
}
.sound-browser #results-numbox input {
  width: 3em;
  text-align: center;
}
.sound-browser h1 {
  text-align: left;
  white-space: nowrap;
  text-indent: 5px;
  font-size: 10pt;
  margin-top: 15px;
}
.sound-browser h2 {
  white-space: nowrap;
  text-indent: 15px;
  font-size: 9pt;
  height: 9px;
}
.sound-browser h3 {
  white-space: nowrap;
  text-indent: 9px;
  font-size: 10pt;
  margin-top: 10px;
}
.sound-browser h4 {
  text-indent: 30px;
  font-size: 8pt;
  height: 8px;
}
.sound-browser .accordion-inner table {
  width: 100%;
  table-layout: fixed;
}
.sound-browser .accordion-heading h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sound-browser .btn-toolbar {
  padding: 0 10px 0 20px;
  font-size: 10pt;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  font-weight: 100;
}
.sound-browser .btn-xs {
  font-size: inherit;
}
.sound-browser h3 .glyphicon {
  margin-right: 15px;
}
.sound-browser h2 .glyphicon {
  margin-right: 20px;
}
.sound-browser h4 .glyphicon {
  margin-right: 15px;
}
.pagination-sm {
  white-space: nowrap;
  font-size: 0;
}
.pagination-sm > li {
  display: inline-block;
  margin-left: -3px;
}
.pagination-sm > li > a {
  font-size: 12px;
  padding: 10px 14px;
}
.pagination > li > a,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .active > a,
.pagination > .active > a:hover {
  border-width: 3px;
}
.pagination-sm > li:first-child > a {
  border-bottom-left-radius: 6px;
  border-top-left-radius: 6px;
}
.pagination-sm > li:last-child > a {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
/* Search Bar */
.search-bar {
  width: 80%;
  background: transparent;
  border: none;
  height: 22px;
  font-weight: lighter;
}
.browser-icon-search {
  color: #8c8c8c;
}
/* ADD SOUNDS */
.btn-add-sound {
  background: transparent;
  color: #76aaff;
}
.btn-add-sound:hover,
.btn-add-sound:active,
.btn-add-sound:focus {
  color: #76aaff;
  opacity: 0.7;
}
/* FILTER */
.btn-filter {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  padding: 4px 10px;
}
.btn-filter:hover,
.btn-filter:active,
.btn-filter:focus {
  opacity: 0.7;
}
i.icon.icon-play4 {
  color: #5cb85c;
}
/* SIDEBAR TABS */
#sidebar .nav-tabs {
  border-bottom: 0;
}
#sidebar .nav-tabs > li {
  display: none;
  width: 33%;
  text-align: center;
}
.tab-close {
  color: indianred;
  font-size: 14px;
  -webkit-transition: text-shadow 0.5s ease;
  -moz-transition: text-shadow 0.5s ease;
  -o-transition: text-shadow 0.5s ease;
  transition: text-shadow 0.5s ease;
}
.tab-close:hover {
  cursor: pointer;
  text-shadow: 1px 1px 1px #000, 1px 1px 5px #fff;
  border-radius: 5px;
}
.tab-container .title-block {
  display: flex;
  justify-content: space-between;
}
.tab-container .tab-text {
  max-width: 100px;
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 10px;
}
.tab-container .dropdown-menu .tab-text {
  max-width: 200px;
}
.tab-container .dropdown-menu li:hover .ellipsis,
.tab-container .ellipsis:hover {
  max-width: 310px;
}
.tab-container .dropdown-menu li .ellipsis {
  max-width: 310px;
}
.tab-container .dropdown-menu .tab-close {
  top: 0px;
}
.tab-container .dropdown-menu {
  background: #181818;
  opacity: 0.9;
  color: #c4c4c4;
  border: solid #393939 1px;
}
.close-all {
  margin-left: 22px;
  font-size: 14px;
  padding-top: 5px;
}
.close-all:hover {
  cursor: pointer;
}
/* script browser */
.script-browser-container {
  float: left;
  height: 100%;
  width: 100%;
  margin-top: -6px;
}
.script-browser-container .sb-upload {
  float: left;
  height: 100%;
  width: 100%;
}
.script-browser .item {
  line-height: 20px;
}
.script-browser .item .text {
  padding: 5px 10px;
  width: 75%;
  box-sizing: border-box;
  display: inline-block;
}
.script-browser .item .controls {
  float: right;
  padding-top: 10px;
  padding-right: 10px;
}
.script-browser .item .controls i {
  cursor: pointer;
  font-size: 20px;
  padding: 3px;
}
.script-browser .item input[type='text'] {
  width: 100%;
}
.script-browser .item .name {
  cursor: pointer;
  font-size: 16px;
}
.script-browser .item .date {
  font-size: 12px;
  font-weight: 100;
}
.script-browser .popover {
  color: black;
  z-index: 10000;
}
.script-browser #banner {
  width: 100%;
  margin: 0;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.script-browser #banner p {
  margin: auto;
}
.script-browser #banner .justifyme {
  text-align: justify;
  padding-right: 5px;
}
.script-browser .desc,
.script-browser #banner {
  display: inline-block;
}
.script-browser .desc {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
.script-browser .panel-label.fill-space {
  width: 100%;
}
.sb-control-dropdown a {
  color: #337ab7;
  font-family: Roboto, Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.sb-control-dropdown a:hover {
  color: #337ab7;
}
.sb-control-dropdown .disabled a {
  color: #999999;
  opacity: 0.4;
}
.sb-control-dropdown i {
  margin-right: 10px;
}
.row .radio-inline + .radio-inline {
  margin-left: 1px;
}
@media (min-width: 800px) {
  .container {
    width: 800px;
  }
}
svg:hover path,
.sound-browser-tab-icon path {
  fill: #bbb;
}
#license-nav {
  display: none;
  height: 36px;
  line-height: 3em;
  bottom: 0;
  position: fixed;
  background: rgba(16, 16, 16, 0.9);
  z-index: 1000;
}
#license-container {
  margin-top: 80px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}
/* license agreement page styling */
.license {
  font-size: 12px;
}
.license li {
  line-height: 30px;
}
.license textarea {
  margin-top: 10px !important;
  cursor: default !important;
}
#upload-sound-header h3 {
  text-align: center;
}
.es-modal-tabcontainer > ul {
  border-radius: 6px;
}
.es-modal-tabcontainer .nav > li > a {
  padding: 4px;
}
.es-modal-tabcontainer .nav-pills > li + li,
.es-modal-tabcontainer .nav-justified > li > a,
.es-modal-tabcontainer > ul > li,
.es-modal-tabcontainer > ul {
  margin: 0px;
}
.es-modal-tabcontainer .nav-pills > li > a {
  border-radius: 0;
}
.es-modal-tabcontainer .nav-pills > li:first-child > a {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.es-modal-tabcontainer .nav-pills > li:last-child > a {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.es-modal-tabcontainer .nav-pills > li.active > a,
.es-modal-tabcontainer .nav-pills > li.active > a:hover,
.es-modal-tabcontainer .nav-pills > li.active > a:focus {
  height: 40px;
}
.es-modal-tabcontainer .uib-tab-heading {
  font-size: 12px;
}
#upload-sound-tabcontainer > .nav-link {
  height: 40px;
}
.modal-footer #progressbar {
  float: left;
  width: 55%;
  height: 20px;
}
.btn-filter.btn-show-fav,
.btn-filter.btn-show-deleted-scripts {
  width: 225px;
}
.filter-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* share browser */
.share-browser,
.share-browser .sb-upload {
  float: left;
  height: 100%;
  width: 100%;
}
.share-browser {
  margin-top: -6px;
}
/* API browser */
.api-browser-container,
.api-browser-container .sb-upload {
  float: left;
  height: 100%;
  width: 100%;
}
.api-browser-container {
  margin-top: -6px;
}
.api-browser {
  height: 100%;
}
.api-browser .header,
.api-browser .search,
.api-browser .sub-header {
  text-align: left;
  padding-left: 10px;
  width: 100%;
  border-bottom: 2px solid;
  line-height: 30px;
}
.api-browser .header {
  margin-top: -4px;
  margin-left: -4px;
  font-weight: bold;
}
.api-browser .header i {
  font-size: 18px;
  vertical-align: sub;
}
.api-browser .search,
.api-browser .sub-header {
  margin-top: 0;
  margin-left: 0;
}
.api-browser .search span {
  position: absolute;
  right: 0;
  left: 10px;
  line-height: 1em;
  top: 41px;
}
.api-browser .search i {
  left: 0;
  line-height: 1.5;
  top: 3px;
}
.api-browser .search input {
  height: 2em;
}
.api-browser .search button {
  right: 0;
  height: 27px;
  width: 27px;
  top: -1px;
}
.api-browser .sub-header i {
  vertical-align: sub;
}
.api-browser .sub-header span {
  margin-left: 3px;
  font-weight: bold;
  vertical-align: sub;
}
.api-browser .item {
  border-bottom: 1px solid;
  width: 100%;
}
.api-browser .item .name {
  margin: 1em;
  display: inline-block;
  width: 96%;
}
.api-browser .item .name .item-label {
  width: 80%;
  float: left;
  line-height: 1em;
}
.api-browser .item .name .detail-button,
.api-browser .item .name .paste-button {
  width: 8%;
  float: left;
  cursor: pointer;
}
.api-browser .title {
  font-size: large;
  padding-bottom: 10px;
}
.api-browser .title.highlighted,
.api-browser .title.not-highlighted {
  font-weight: 500;
}
.api-browser .title.highlighted {
  color: black;
}
.api-browser .title.not-highlighted {
  font-size: initial;
}
.api-browser .description {
  padding-bottom: 10px;
}
.api-browser .description.general {
  margin-left: 1em;
  margin-right: 1em;
  margin-top: 0;
  margin-bottom: 1em;
  display: inline-block;
  width: 96%;
}
.api-browser .no-params,
.api-browser .parameters,
.api-browser .returns-container {
  margin-bottom: 1em;
}
.api-browser .arguments {
  font-size: 13px;
}
.api-browser .marks.parens {
  font-size: xx-small;
}
.api-browser .details-container {
  margin-left: 1em;
  margin-right: 1em;
  margin-bottom: 1em;
}
.api-browser .parameters-inner,
.api-browser .returns {
  margin-left: 1em;
}
.api-browser .parameters-inner .title {
  font-size: medium;
}
.api-browser .parameters-inner .description {
  font-weight: 300;
}
.api-browser .returns .description {
  font-weight: lighter;
}
.api-browser .example-container {
  margin-bottom: 1em;
  font-size: large;
}
#classroom-browser .classroom-student {
  color: white;
  padding-left: 10px;
}
@keyframes playNavFlash {
  0% {
    color: black;
  }
  50% {
    color: yellow;
  }
  100% {
    color: black;
  }
}
.flashNavButton {
  -moz-animation: playNavFlash 1s ease-out;
  -moz-animation-iteration-count: infinite;
  -webkit-animation: playNavFlash 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -ms-animation: playNavFlash 1s ease-out;
  -ms-animation-iteration-count: infinite;
}
@-webkit-keyframes playNavFlash {
  0% {
    color: black;
  }
  50% {
    color: yellow;
  }
  100% {
    color: black;
  }
}
@-moz-keyframes playNavFlash {
  0% {
    color: black;
  }
  50% {
    color: yellow;
  }
  100% {
    color: black;
  }
}
@-ms-keyframes playNavFlash {
  0% {
    color: black;
  }
  50% {
    color: yellow;
  }
  100% {
    color: black;
  }
}
#daw-label {
  float: left;
}
#daw-container {
  position: relative;
  width: 100%;
  border-left: 1px solid #333;
  border-top: 1px solid #333;
}
#zoom-container {
  border-top: 1px solid #333;
}
#daw-timeline {
  height: 15px;
  z-index: 9;
  overflow: hidden;
  background: #282828;
  opacity: 0.9;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: rgba(153, 153, 153, 0.3);
  box-shadow: -5px 2px 10px whitesmoke;
}
#daw-timeline:hover,
#daw-measureline:hover {
  cursor: pointer;
}
#daw-measureline {
  height: 15px;
  top: 15px;
  z-index: 9;
  overflow: hidden;
  background: #282828;
  opacity: 0.8;
  box-shadow: 0px 2px 10px #181818;
}
.daw-track {
  border-bottom-style: solid;
  border-width: 1px;
  overflow: hidden;
  position: relative;
  height: 100%;
  z-index: 0;
}
.daw-track.mute {
  background: #696969;
  opacity: 0.2;
}
.dawTrackCtrl {
  width: 110px;
  height: 100%;
  float: left;
  border-bottom-style: solid;
  border-right-style: solid;
  z-index: 21;
}
.dawAudioClipContainer {
  border-right-style: solid;
  border-right-width: 1px;
  float: left;
  position: absolute;
  overflow: hidden;
  border-radius: 5px;
  height: 99%;
  opacity: 0.9;
}
.clipWrapper {
  position: relative;
}
.clipName {
  padding: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  position: absolute;
  left: 0;
  cursor: default;
  font-size: x-small;
  color: black;
}
/* Webkit slider styles */
#dawVolumeSlider {
  -webkit-appearance: none;
  width: 80px;
  height: 4px;
  background-color: #fff;
  margin-right: 20px;
  margin-top: -4px;
}
#dawVolumeSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: #AAA;
  width: 9px;
  height: 24px;
  cursor: pointer;
}
#dawVolumeSlider::-moz-range-thumb {
  border: none;
  background: #AAA;
  width: 9px;
  height: 24px;
  border-radius: 0;
  cursor: pointer;
}
/* IE slider styles */
#dawVolumeSlider::-ms-fill-upper,
#dawVolumeSlider::-ms-fill-lower {
  background: transparent;
}
#dawVolumeSlider::-ms-thumb {
  border: none;
  background: #AAA;
  width: 9px;
  height: 24px;
  border-radius: 0;
  cursor: pointer;
}
.volumeLabel {
  color: #bbb;
  line-height: 30px;
  font-size: 30px;
  padding: 2px 0;
  cursor: default;
}
.dawTrackName {
  font-size: 16px;
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right-style: solid;
  border-right-width: 1px;
  border-color: rgba(153, 153, 153, 0.3);
}
.dawTrackContainer {
  position: relative;
}
.dawTrackEffectName {
  font-size: small;
  position: absolute;
  left: 37px;
  top: 28px;
}
.dawTrackEffectDropdown {
  font-size: 12px;
  position: absolute;
  width: 16px;
  height: 20px;
  text-align: center;
  right: 0;
  top: 5px;
}
.dawTrackEffectDropdown:hover {
  color: black;
}
.dawTrackEffectDropdownButton {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 5px;
}
.dawTrackEffectDropdownButton:hover {
  cursor: pointer;
}
.dawTrackEffect {
  position: relative;
  left: 110px;
  border-bottom: solid;
  border-color: #000000;
  border-width: 1px;
  /* background-color: #d1eeff; */
  height: 100%;
  border-radius: 4px;
}
.dawTrackEffect.bypassed {
  background: #696969;
  opacity: 0.2;
}
.dawEffectCtrl {
  width: 110px;
  height: inherit;
  float: left;
  z-index: 21;
}
.dawEffectBypassButton {
  position: absolute;
  left: 34px;
  top: 3px;
}
/*svg path*/
#zoom-container svg,
#zoom-container svg:hover {
  width: 100%;
  fill: none;
}
#zoom-container svg.axis {
  margin-left: 110px;
}
#zoom-container svg.axis path,
#zoom-container svg.axis:hover path {
  color: black;
  margin-left: 110px;
}
.axis {
  shape-rendering: crispEdges;
  stroke-width: 1;
  stroke: #fff;
  font-size: x-small;
}
.axis text {
  shape-rendering: crispEdges;
}
.axis .minor {
  stroke-opacity: 0.5;
}
.axis path {
  display: none;
}
svg.effectAxis {
  position: absolute;
  left: 0;
  height: 100%;
}
svg.effectSvg {
  position: absolute;
  left: 0;
  height: 100%;
  stroke-width: 1;
}
svg.effectSvg path {
  stroke: steelblue;
  stroke-width: 1;
  fill: none;
}
.daw-transport-container {
  display: flex;
}
.daw-transport-button button {
  font-size: 20px;
}
.daw-transport-button {
  display: flex;
  align-items: center;
}
.daw-transport-button.ng-hide {
  opacity: 0;
  width: 0px !important;
}
.dawSoloButton,
.dawSoloButton:focus {
  background: rgba(153, 153, 153, 0.5);
}
.dawSoloButton.active,
.dawSoloButton.active:focus {
  background: #0FB81B;
}
.dawSoloButton.active:hover {
  background: green !important;
}
.dawMuteButton,
.dawMuteButton:focus {
  background: rgba(153, 153, 153, 0.5);
}
.dawMuteButton:hover,
.dawSoloButton:hover,
.dawEffectBypassButton:hover {
  background: #e6e6e6 !important;
}
.dawMuteButton.active,
.dawMuteButton.active:focus {
  background: #FF4136;
}
.dawMuteButton.active:hover {
  background: rgba(255, 0, 0, 0.7) !important;
}
#dawProjectSettings {
  float: right;
}
.btn-effect {
  position: absolute;
  height: 30px;
  z-index: 34;
  width: 110px;
  border-radius: 0;
}
.btn-effect > span {
  letter-spacing: 1px;
}
.btn-effect span:nth-child(1) {
  left: 5px;
  top: 4px;
}
.btn-effect span:nth-child(2),
.btn-effect span:nth-child(3) {
  right: 5px;
  top: 6px;
  font-size: medium;
}
.btn-effect span:last-child:active {
  right: 5px;
  top: 6px;
  font-size: medium;
}
.btn-zoom {
  font-size: 15px !important;
  height: 14px;
  width: 14px;
  padding: 0;
  line-height: 14px;
}
#v-zoom-in {
  position: absolute;
  bottom: 0;
}
#v-zoom-out {
  position: absolute;
  top: 11px;
}
#h-zoom-in {
  position: absolute;
  top: 0;
  right: 0;
}
#h-zoom-out {
  position: absolute;
  top: 0;
  left: 11px;
}
.bottomControls {
  margin-top: 5px;
}
.ui-slider {
  height: 15px;
  width: 200px;
  left: 8px;
}
.daw-highlight {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: rgba(255, 153, 0, 0.3);
  border-left: 1px solid #ff9900;
  border-right: 1px solid #ff9900;
  z-index: 15;
  margin-left: 110px;
  overflow: hidden;
  pointer-events: none;
}
.daw-cursor {
  width: 3px;
  height: 100%;
  float: left;
  margin-left: 110px;
  z-index: 10;
  position: absolute;
  top: 0;
}
.daw-marker {
  width: 3px;
  height: 100%;
  /*smaller than daw height to avoid infinite scroll*/
  float: left;
  margin-left: 110px;
  z-index: 20;
  position: absolute;
  background-color: #ff0000;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
.daw-sched-marker {
  width: 3px;
  height: 100%;
  /*smaller than daw height to avoid infinite scroll*/
  float: left;
  margin-left: 110px;
  z-index: 20;
  position: absolute;
  background-color: #6DFED4;
  animation: fadeIn 0.2s infinite alternate;
}
/* Zoom Sliders */
#horz-zoom-slider-container {
  outline: none;
  height: 14px;
  min-height: 14px;
  bottom: 0;
  right: 0;
}
#horz-zoom-slider-container:hover {
  opacity: 1;
  -moz-animation: fadein 1s linear forwards;
  -ms-animation: fadein 1s linear forwards;
  -o-animation: fadein 1s linear forwards;
  -webkit-animation: fadein 1s linear forwards;
  animation: fadeout fadein 1s linear forwards;
}
#horz-zoom-slider-container > span {
  color: grey;
}
#vert-zoom-slider-container {
  width: 14px;
  right: 0;
  bottom: 0;
}
@-webkit-keyframes fadein {
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
}
#vert-zoom-slider-container .rz-pointer:after {
  display: none;
}
/* Track slide animations */
.clipWrapper canvas {
  display: block;
}
#dawTrackEffectContainer.ng-hide {
  opacity: 0;
  height: 0px !important;
}
#daw-label > span > span:not(:first-child) {
  padding-left: 7px;
}
.mixTrackFiller {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}
@keyframes playFlash {
  0% {
    background-color: black;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: black;
  }
}
.flashButton {
  -moz-animation: playFlash 1s ease-out;
  -moz-animation-iteration-count: infinite;
  -webkit-animation: playFlash 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -ms-animation: playFlash 1s ease-out;
  -ms-animation-iteration-count: infinite;
}
@-webkit-keyframes playFlash {
  0% {
    background-color: black;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: black;
  }
}
@-moz-keyframes playFlash {
  0% {
    background-color: black;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: black;
  }
}
@-ms-keyframes playFlash {
  0% {
    background-color: black;
  }
  50% {
    background-color: yellow;
  }
  100% {
    background-color: black;
  }
}
.droplet-palette-canvas,
.droplet-drag-canvas,
.droplet-main-canvas,
.droplet-lasso-select-canvas,
.droplet-highlight-canvas {
  position: absolute;
}
.droplet-main-canvas,
.droplet-drag-canvas,
.droplet-lasso-select-canvas,
.droplet-highlight-canvas {
  top: 0;
}
.droplet-drag-canvas {
  z-index: 258;
  margin-top: -2px;
  margin-left: -1px;
  opacity: 0.85;
}
.droplet-palette-canvas {
  z-index: 1;
  width: 300px;
}
.droplet-main-canvas {
  z-index: 0;
  border-right: none;
}
.droplet-lasso-select-canvas {
  left: 0;
  z-index: 3;
  border-right: none;
}
.droplet-highlight-canvas {
  left: 0;
  z-index: 2;
  border-right: none;
}
.droplet-wrapper-div {
  position: absolute;
  top: 0;
  left: 0;
  cursor: default;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  outline: none;
}
.droplet-ace {
  width: 100%;
  font-family: Monaco, monospace;
}
.droplet-main-scroller {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 300;
  overflow: auto;
}
.droplet-palette-scroller {
  position: absolute;
  left: 0;
  top: 150px;
  bottom: 0;
  right: 0;
  z-index: 300;
  overflow-y: auto;
  overflow-x: hidden;
}
.droplet-palette-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 40%;
  z-index: 1;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.droplet-palette-element {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.droplet-palette-header {
  z-index: 257;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 10px;
  border-spacing: 4px;
  border-bottom: 1px solid #393939;
  display: table;
}
.droplet-palette-header-row {
  display: table-row;
  height: 30px;
  width: 100%;
  border-bottom: 1px solid #393939;
}
.droplet-palette-group-header {
  display: table-cell;
  width: 50%;
  font-family: sans-serif;
  line-height: 30px;
  cursor: pointer;
  overflow: hidden;
  padding-left: 10px;
  border-left: 10px solid #393939;
}
.droplet-palette-group-header-selected {
  display: table-cell;
  width: 50%;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}
.droplet-palette-group-header.command {
  border-left: 10px solid #8fbfef;
}
.droplet-palette-group-header-selected.command {
  background-color: #8fbfef;
}
.droplet-palette-group-header.value {
  border-left: 10px solid #8cec79;
}
.droplet-palette-group-header-selected.value {
  background-color: #8cec79;
}
.droplet-palette-group-header.control {
  border-left: 10px solid #efcf8f;
}
.droplet-palette-group-header-selected.control {
  background-color: #efcf8f;
}
.droplet-palette-group-header.return {
  border-left: 10px solid #f2a6a6;
}
.droplet-palette-group-header-selected.return {
  background-color: #f2a6a6;
}
.droplet-palette-group-header.containers {
  border-left: 10px solid #bfa6f2;
}
.droplet-palette-group-header-selected.containers {
  background-color: #bfa6f2;
}
.droplet-palette-group-header.logic {
  border-left: 10px solid #ecec79;
}
.droplet-palette-group-header-selected.logic {
  background-color: #ecec79;
}
.droplet-palette-group-header.math {
  border-left: 10px solid #f2a6e5;
}
.droplet-palette-group-header-selected.math {
  background-color: #f2a6e5;
}
.droplet-hidden-input {
  position: absolute;
  z-index: -999;
  opacity: 0;
  -webkit-touch-callout: none;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  margin: 0;
}
.droplet-hover-div {
  position: absolute;
}
.droplet-main-scroller {
  z-index: 10;
}
.droplet-main-scroller-stuffing {
  z-index: 10;
}
.droplet-palette-scroller-stuffing {
  /* Temporary hack to prevent bad side-scrolling
   * behaviour when dragging blocks out of the palette */
  overflow-x: hidden;
  overflow-y: scroll;
}
.droplet-transition-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: visible;
}
.droplet-gutter {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  box-sizing: border-box;
  font-size: 14px;
  font-family: Monaco;
  border-right: 1px solid #393939;
  border-left: 1px solid #393939;
}
.droplet-gutter-line {
  position: absolute;
  box-sizing: border-box;
  text-align: right;
  padding-right: 13px;
  line-height: normal;
  width: 100%;
}
.droplet-drag-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9999;
}
.droplet-transitioning-element {
  position: absolute;
  white-space: pre;
  z-index: 256;
}
.droplet-transitioning-gutter {
  box-sizing: border-box;
  text-align: right;
  padding-right: 13px;
}
.droplet-palette-highlight-canvas {
  position: absolute;
  z-index: 257;
}
.droplet-palette-group-header.red {
  border-left: 10px solid #ef9a9a;
}
.droplet-palette-group-header.pink {
  border-left: 10px solid #f48fb1;
}
.droplet-palette-group-header.purple {
  border-left: 10px solid #ce93d8;
}
.droplet-palette-group-header.deeppurple {
  border-left: 10px solid #b39ddb;
}
.droplet-palette-group-header.indigo {
  border-left: 10px solid #9fa8da;
}
.droplet-palette-group-header.blue {
  border-left: 10px solid #90caf9;
}
.droplet-palette-group-header.lightblue {
  border-left: 10px solid #81d4fa;
}
.droplet-palette-group-header.cyan {
  border-left: 10px solid #80deea;
}
.droplet-palette-group-header.teal {
  border-left: 10px solid #80cbc4;
}
.droplet-palette-group-header.green {
  border-left: 10px solid #a5d6a7;
}
.droplet-palette-group-header.lightgreen {
  border-left: 10px solid #c5e1a5;
}
.droplet-palette-group-header.lime {
  border-left: 10px solid #e6ee9c;
}
.droplet-palette-group-header.yellow {
  border-left: 10px solid #fff59d;
}
.droplet-palette-group-header.amber {
  border-left: 10px solid #ffe082;
}
.droplet-palette-group-header.orange {
  border-left: 10px solid #ffcc80;
}
.droplet-palette-group-header.deeporange {
  border-left: 10px solid #ffab91;
}
.droplet-palette-group-header.brown {
  border-left: 10px solid #bcaaa4;
}
.droplet-palette-group-header.grey {
  border-left: 10px solid #eeeeee;
}
.droplet-palette-group-header.bluegrey {
  border-left: 10px solid #b0bec5;
}
.droplet-palette-group-header-selected.red {
  background-color: #ef9a9a;
}
.droplet-palette-group-header-selected.pink {
  background-color: #f48fb1;
}
.droplet-palette-group-header-selected.purple {
  background-color: #ce93d8;
}
.droplet-palette-group-header-selected.deeppurple {
  background-color: #b39ddb;
}
.droplet-palette-group-header-selected.indigo {
  background-color: #9fa8da;
}
.droplet-palette-group-header-selected.blue {
  background-color: #90caf9;
}
.droplet-palette-group-header-selected.lightblue {
  background-color: #81d4fa;
}
.droplet-palette-group-header-selected.cyan {
  background-color: #80deea;
}
.droplet-palette-group-header-selected.teal {
  background-color: #80cbc4;
}
.droplet-palette-group-header-selected.green {
  background-color: #a5d6a7;
}
.droplet-palette-group-header-selected.lightgreen {
  background-color: #c5e1a5;
}
.droplet-palette-group-header-selected.lime {
  background-color: #e6ee9c;
}
.droplet-palette-group-header-selected.yellow {
  background-color: #fff59d;
}
.droplet-palette-group-header-selected.amber {
  background-color: #ffe082;
}
.droplet-palette-group-header-selected.orange {
  background-color: #ffcc80;
}
.droplet-palette-group-header-selected.deeporange {
  background-color: #ffab91;
}
.droplet-palette-group-header-selected.brown {
  background-color: #bcaaa4;
}
.droplet-palette-group-header-selected.grey {
  background-color: #eeeeee;
}
.droplet-palette-group-header-selected.bluegrey {
  background-color: #b0bec5;
}
.droplet-cursor-canvas {
  opacity: 0.5;
}
.droplet-dropdown {
  display: none;
  max-height: 150px;
  position: absolute;
  background-color: #FFF;
  z-index: 10000;
  border: 1px solid #DDD;
  border-radius: 2px;
  overflow-y: auto;
  overflow-x: hidden;
}
.droplet-dropdown-item {
  cursor: pointer;
  padding-right: 5px;
}
.droplet-dropdown-item:hover {
  background-color: #DDD;
}
.droplet_error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: 2px center;
}
.droplet_warning {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==);
  background-repeat: no-repeat;
  background-position: 2px center;
}
.droplet_info {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: 2px center;
}
.droplet-tooltip {
  font-family: Monaco, monospace;
  margin-top: 15px;
  margin-left: 15px;
  display: none;
  background-color: #FFF;
  background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
  border: 1px solid gray;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: black;
  max-width: 100%;
  padding: 3px 4px;
  position: fixed;
  z-index: 999999;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  white-space: pre;
  word-wrap: break-word;
  line-height: normal;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: normal;
  pointer-events: none;
}
#chat-window {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#chat-header,
#cai-body,
#chat-footer {
  width: 100%;
}
#chat-header {
  background-color: #282828;
  color: #bbb;
  align-self: flex-start;
}
#chat-header #chatroom-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50px;
}
#chat-header #chatroom-title #chat-script-name {
  font-family: sans-serif;
  font-weight: 900;
}
#chat-header #chathistory-download {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  cursor: pointer;
}
#cai-body {
  flex: auto;
  overflow-y: scroll;
}
#cai-body .chat-message-container {
  width: 100%;
  overflow: auto;
}
#cai-body .chat-message-container .chat-message {
  width: 100%;
  color: black;
}
#cai-body .chat-message-container .chat-message .chat-message-bubble {
  margin: 10px 10px 0 10px;
  padding: 10px;
  border-radius: 15px;
  width: fit-content;
  max-width: 80%;
}
#cai-body .chat-message-container .chat-message .chat-message-bubble .chat-message-sender {
  font-family: sans-serif;
  font-weight: 900;
}
#cai-body .chat-message-container .chat-message .chat-message-bubble .chat-message-text {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
#cai-body .chat-message-container .chat-message .chat-message-date {
  color: dimgray;
  font-style: italic;
  margin: 0 10px 0 10px;
  clear: both;
}
.autocomplete-item {
  font-size: 14pt;
}
.autocomplete-list {
  position: absolute;
  bottom: 70px !important;
  margin-top: 0px !important;
  margin-bottom: 98px !important;
  left: 0px !important;
}
.autocomplete-container {
  display: inline;
}
#chat-footer {
  background-color: #282828;
  align-self: flex-end;
  margin-top: auto;
  display: block;
  align-items: center;
  justify-content: center;
}
#chat-footer #chat-textarea {
  width: 76%;
  height: 68px;
  padding: 0 3px;
}
#chat-footer #chat-input-container {
  flex: 1;
}
#chat-footer #chat-input-container #chat-input-textarea {
  border-radius: 15px;
  width: 95%;
  float: right;
  margin: 10px;
  padding-left: 10px;
  overflow-y: hidden;
  outline: none;
  min-height: 2em;
  resize: none;
}
#chat-footer #chat-input-sendbutton {
  margin-right: 10px;
}
#chat-footer #chat-input-sendbutton button {
  border-radius: 15px;
}


/*# sourceMappingURL=main.1c691cb75a061b6d137e.css.map*/