/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(107, 107, 107, 0.65);
    color: #fff;
}

/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
    font-family: "Lucida Sans Unicode", "Lucida Grande", "Lucida", Arial, sans-serif;
    font-size: 11px;
    line-height: 16px;
    padding: 4px 10px;
    overflow: hidden;
}

/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
}

.tooltipster-default .tooltipster-arrow {
    background: rgba(0, 0, 0, 0.65);
}


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}








/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9999999;
    pointer-events: none;
    width: auto;
    overflow: visible;
}
.tooltipster-base .tooltipster-content {
    overflow: hidden;
}


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.tooltipster-arrow span, .tooltipster-arrow-border {
    display: block;
    width: 0; 
    height: 0;
    position: absolute;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}
.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}
.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}
.tooltipster-arrow-top-right span,  .tooltipster-arrow-bottom-right span {
    right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}
.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-left: 9px solid;
    margin-top: -8px;
}
.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important; 
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important; 
    border-right: 9px solid;
    margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}
.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}
.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); 
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
}
.tooltipster-fall-show {
}
.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); 
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-slide-show {
}
.tooltipster-slide.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    left: 0px !important;
    opacity: 0;
}


/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
    opacity: 0.5;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}


/* Generated by Font Squirrel (http://www./resources/fontsquirrel.com) on July 3, 2013 */



@font-face {
    font-family: 'mecharegular';
    src: url('/resources/fonts/mecha-webfont.eot');
    src: url('/resources/fonts/mecha-webfont.eot?#iefix') format('embedded-opentype'),
         url('/resources/fonts/mecha-webfont.woff') format('woff'),
         url('/resources/fonts/mecha-webfont.ttf') format('truetype'),
         url('/resources/fonts/mecha-webfont.svg#mecharegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'mechabold';
    src: url('/resources/fonts/mecha_bold-webfont.eot');
    src: url('/resources/fonts/mecha_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/resources/fonts/mecha_bold-webfont.woff') format('woff'),
         url('/resources/fonts/mecha_bold-webfont.ttf') format('truetype'),
         url('/resources/fonts/mecha_bold-webfont.svg#mechabold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'righteous';
    src: url('/resources/fonts/righteous-regular-webfont.eot');
    src: url('/resources/fonts/righteous-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('/resources/fonts/righteous-regular-webfont.woff') format('woff'),
         url('/resources/fonts/righteous-regular-webfont.ttf') format('truetype'),
         url('/resources/fonts/righteous-regular-webfont.svg#righteousregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'silkscreen';
    src: url('/resources/fonts/slkscre-webfont.woff2') format('woff2'),
         url('/resources/fonts/slkscre-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

html {
    height: 100%;
}
body {
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    text-align: center;
    margin: 0;
    color: #eee;
    background-color: #2f3337;
}
i.fas, i.fad, i.far {
    text-shadow: none !important;
}
input, select  {
    font-family: 'PT Sans', sans-serif;     
    font-size: 12px;
}
img {
    border: 0;
}
a {
    color: #A0C5FA;
}
.bcontents a, .message a, .warning a{
    color: #2b3277;
}
.block a, #login a {
    color: #a7d2ff;
}
#container {
    width: 100%;
    min-height: 100%;
    text-align: left;
}
.browser-warning {
    background-color: #882525;
    color: white;
    padding: 5px;
}
#header {
    height: 122px;
    background-color: #254d88;
    position: relative;
}
#logo  {
    align-items: center;
    background-color: #2c5aa1;
    color: white;
    text-decoration: none;
    justify-content: center;
    display: flex;
    flex-shrink: 0;
    padding: 30px 15px;
}

#logo .icon {
    background-image: url(/resources/icon.png?2);
    width: 62px;
    min-width: 62px;
    height: 62px;
    margin-right: 5px
}

#logo .text {
    display: flex;
    flex-direction: column;
}

#logo .title {
    font-size: 22px;
}

#logo .subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

#login {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    color: white;
    line-height: 60px;
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}
#user_loading {
    position: absolute;
    width: 100%;
    height: 24px;
    background-color: rgba(43,44,47,0.5);
    display: none;
}

.sk-fading-circle {
  margin-left: 10px;
  width: 24px;
  height: 24px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}

#user_guest, #user_member, #affiliate_link, #login_fields, #login_buttons {
    float: left;
}
#login_fields {
    margin-right: 4px;
}
#login_fields {
    display: none;
}
.pm_icon {
    padding: 0 5px;
}
.pm_icon a {
    color: #D38B0D;
    text-decoration: none;    
}
#nav {
    display: flex;
    flex: 1;
    font-size: 18px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
    overflow-x: hidden;
}
#header_right {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 0;
}
#nav ul {
    display: flex;
    flex: 1;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#nav ul li {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}
#nav ul li:hover {
    background-color: #2c5aa1;
}
#nav ul li:active, #nav ul li.active, #logo:active {
    background-color: #1e3e6e;
}
#nav ul li.active a{
    text-decoration: none;
    font-weight: bold;
}
#nav ul a {
    color: white;
    padding-left: 8px;
    padding-right: 8px;
    text-decoration: none;
}
#nav ul li a {
    align-items: center;
    display: flex;
    flex: 1;
}
#nav ul li a.chat_link {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: normal;
}
#nav ul li a.chat_link .link {
    line-height: normal;
    margin-top: 18px;
}
#nav ul li a.chat_link .online {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    height: 19px;
}
#nav_right {
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    color: white;
    line-height: 72px;
    height: 72px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}
#bar {
    background-color: #2b2c2f;
    height: 24px;
    line-height: 24px;
    font-size: 11px;
    padding-left: 10px;
}
#sequence_info img {
    margin-right: 5px;
}
#main {
    text-align: left;
    position: absolute;
    left: 0;
    top: 122px;
    width: 100%;
}
#page {
    height: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
body:not(#page_view,#page_playlist) #page {
    width: 1077px;
}
#page_sequences #page,
#page_memberlist #page,
#page_members #page {
    margin-top: 10px;
}
#page_top {
    width: 100%;
    border-bottom: 1px solid #33373d;
    color: white;
    display: flex;
    flex-direction: column;
}
#page_content {
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}
#page_left {
    width: 200px;
    color: white;
}
#page_right {
    max-width: 876px;
    overflow: hidden;
    flex: 1;
}
#sequencer_sidebar {
    border-left: 1px solid #2b2c2f;
    display: flex;
    flex-direction: column;
    width: 0;
    position: relative;
}
.sequencer_sidebar_animate {
    transition: width 200ms ease-in-out;
}
#sequencer_sidebar_resize {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    cursor: ew-resize;
}
#sequencer_sidebar_title {
    align-items: center;
    background-color: #35363a;
    border-bottom: 6px solid #2b2c2f;
    display: flex;
    justify-content: space-between;
    height: 35px;
    color: #9e9e9e;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
}
#sequencer_sidebar_title > span {
    overflow: hidden;
}
#sequencer_sidebar_title > a {
    padding: 5px;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
}
#sidebar_tab_list {
    height: 100%;
    display: flex;
    flex-direction: row;
}
#sidebar_tab_list .sidebar_tab {
    padding: 8px 10px 0px 10px;
    font-size: 12px;
    cursor: pointer;
    max-width: 200px;
}
#sidebar_tab_list .sidebar_tab a {
    margin-left: 10px;
    font-size: 10px;
    color: #9e9e9e;
    text-decoration: none;
}
#sidebar_tab_list .sidebar_tab a:hover,
#sequencer_sidebar .title a:hover {
    color: white;
}
#sequencer_sidebar .chat {
    font-size: 13px;
}
#sidebar_tab_list .selected {
    background-color: #3D3E43;
    color: white;
}
#sidebar_content {
    background-color: #2b2c2f;
    padding: 0 5px 5px 5px;
    width: 100%;
    height: 100%;
    overflow: auto;
    box-sizing: border-box;
}
#sidebar_content .sidebar_page {
    display: none;
    width: 100%;
    height: 100%;
}
#sidebar_content iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border-top: none;
    border-left: none;
}
.sidebar_chat_header {
    font-size: 11px;
    margin: 2px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: white;
}
.sidebar_chat_frame_container {
    flex: 1;
}
.sidebar_chat_container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.info-sidebar {
    display: flex;
    flex-direction: column;
}
.info-sidebar #comments_frame {
    flex: 1;
}
.comments {
    color: white;
    width: 100%;
}
.comments-header {
    display: flex;
    height: 25px;
    margin-bottom: 10px;
}
.comments-title {
    display: flex;
    font-size: 18px;
    flex: 1;
}
.comments-header-right {
    display: flex;
}
.comments-content {
    display: flex;
    flex-direction: column;
}
.comments-content .comments-loading {
    display: none;
}
.sidebar-button {
    background-color: rgba(211, 211, 211, 0.2);
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    height: 25px;
    line-height: 25px;
    padding: 0 6px;
}
.sidebar-button.disabled {
    cursor: default;
    pointer-events: none;
}
.comment-add i {
    margin-left: 5px;
}
.comment-form {
    display: none;
}
#sidebar_content textarea {
    width: 100%;
    background: none;
    font-family: inherit;
    font-size: inherit;
    text-indent: 0;
    border: 1px solid rgba(211, 211, 211, 0.2);
    outline: none;
}
.comment-textarea {
    margin-bottom: 10px;
}
.comments .comment-save-loading {
    display: none;
}

.comments-reload {
    margin-left: 10px;
}

.sidebar-button .loader {
    display: none;
    vertical-align: top;
    width: 12px;
    height: 12px;
    margin-top: 6px;
}

.comments-reload {
    cursor: pointer;
}
.comments-reload i {
    margin-top: 6px;

}
.comment-save {
    margin-bottom: 10px;    
}
.help_content {
    background-color: #35363a;
    color: #eee;
    flex: 1;
    overflow-y: auto;
    font-size: 14px;
    padding: 10px;
}
.help_content h1 {
    font-size: 18px;
    margin: 0;
    padding: 0;
}
.member_row {
    display: flex;
    padding: 14px;
    margin-bottom: 5px;
}
.member_row .number {
    font-size: 14px;
    padding: 5px;
    color: lightgray;
}
.member_row .name {
    color: white;
    text-decoration: none;
    display: flex;
    font-size: 14px;
    margin-right: 5px;
    padding: 5px;
    width: 184px;
    min-height: 36px;
    word-wrap: break-word;
}
.member_row .name .details {
    word-wrap: break-word;
    width: 138px;   
}
.member_row .time, .profile_header .time, .profile_header .details {
    font-size: 14px;
    color: lightgray;
}
.member_row .info  {
    min-width: 156px;
    color: lightgray;
}
.member_row .sequences {
    margin-left: 5px;
}
.member_row .sequences img {
    margin-left: 5px;
}
.profile_banner {
    display: flex;
    flex-direction: row;
    background-color: #676e7a;
}
.profile_header {
    padding: 10px;
    min-height: 36px;
    word-wrap: break-word;
    box-sizing: border-box;
    display: flex;
    border-right: 1px solid #33373d;
    flex-direction: column;
}
.profile_header_top {
    flex-direction: row;
    display: flex;
    align-items: center;
}
.profile_header_right {
    flex: 1;
    padding: 10px;
    overflow: auto;
}
.bio {
    font-size: 15px;
    word-break: break-word;
    overflow-y: auto;
    height: 128px;
}
#bio-edit {
    float: right;
    cursor: pointer;
}
#bio-textarea {
    box-sizing: border-box;
    display: none;
    width: 100%;
    background: none;
    height: 105px;
    font-family: inherit;
    font-size: inherit;
    display: none;
    text-indent: 0;
    border: none;
    outline: none;
    resize: none;
}
#bio-save {
    display: none;
    font-size: 18px;
    cursor: pointer;
    margin-top: 5px;
    color: lightgray;
    width: 18px;
    height: 18px;
}
#bio-loading {
    display: none;
    margin-top: 5px;
}
.bio::-webkit-scrollbar,  #bio-textarea::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}
.bio::-webkit-scrollbar-track, .bio::-webkit-scrollbar-corner,
#bio-textarea::-webkit-scrollbar-track, #bio-textarea::-webkit-scrollbar-corner {
    background-color: transparent;
}
.bio::-webkit-scrollbar-thumb, #bio-textarea::-webkit-scrollbar-thumb {
    background: lightgray;
}
.bio::-webkit-scrollbar-thumb:hover, #bio-textarea::-webkit-scrollbar-thumb:hover {
    background: white;
}
.profile_header .name {
    font-size: 18px;
    color: white;
}
.char {
    vertical-align: middle;
    margin-right: 10px;
    width: 36px;
    height: 36px;
}
.profile_header .char {
    width: 100px;
    height: 100px;
}
.preview_large {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-size: 100px;
    vertical-align: top;
    margin-right: 2px;
    margin-bottom: 2px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}
.preview_large .title {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 5px;
    width: 90px;
    height: 90px;
    text-shadow: 1px 1px 0px #000;
}
.preview_large .delete {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 16px;
    height: 16px;
    color: white;
}
.preview_large .delete, .playlist_preview_sequence_wrapper span {
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}
.add_featured {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.6);
    box-sizing: border-box;
    cursor: pointer;
}
.add_featured span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 16px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.6);
}
.block {
    color: #1b1b1b;
    margin: 10px auto;
    box-shadow: 1px 1px 1px 0px rgba(0,0,0,0.75);
}
#page_left .block, #page_left .bcontents{
    width: 200px;
}
#page_right .block, #page_right .bcontents{
    width: 808px;
}
.btitle {
    position: relative;
    background-color: #676e7a;
    border-bottom: 1px solid #33373d;
    color: #eee;
    font-size: 18px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
    height: 25px;
    line-height: 25px;
    padding-left: 10px;
    z-index: 2;
}
.notitle .btitle {
z-index: 1;
}
.notitle .bcontents_text {
    margin-top: -20px;
}
#page_sequences #page_left,
#page_sequences #page_right,
#page_memberlist #page_left,
#page_memberlist #page_right,
#page_members #page_left,
#page_members #page_right {
    background-color: #484f57;
}
#page_sequences #page_left,
#page_memberlist #page_left,
#page_members #page_left {
    border-right: 1px solid #33373d;
}
.left_column {
    margin-top: 10px;
}
.right_column {
    color: white;
}
#page_sequences .right_column,
#page_members .right_column {
    margin: 9px;
}

#page_sequences .right_column .pagelinks,
#page_members .right_column .pagelinks {
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -10px;
}
.right_column .pagelinks {
    margin-top: 10px;
    padding: 0 10px 10px 10px;
    box-sizing: border-box;
    background-color: #5b626c;
}
#page_top .block {
    width: 100%;
    margin: 0;
    box-shadow: none;
}
#page_top .btitle {
    border-top: 1px solid #33373d;
}
#page_top .bcontents {
    width: auto;
}
form.search {
    padding: 5px;
    border-bottom: 1px solid #33373d;
    display: flex;
}
input[type="text"][name="search"] {
    flex: 1;
    margin-right: 5px;
    background: none;
    border: none;
    border-bottom: 1px solid #676e7a;
    color: white;
    text-indent: 0;
    font-size: 14px;
}
input[name="search"]:focus {
    border-bottom: 1px solid white;  
    outline: none;
}
form.search button {
    background: none;
    cursor: pointer;
    color: white;
    border: none
}
#page_left ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    line-height: 36px;
    width: 100%;
    font-size: 13px;
    box-sizing: border-box;
}
#page_left ul:not(:last-child){
    border-bottom: 1px solid #33373d;
}
#page_left ul li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#page_left ul li a {
    display: block;
}

#page_left ul li a.active {
    color: white;
}

#page_left ul li a i {
    margin-left: 10px;
    margin-right: 10px;
}

#page_left ul li a.active {
   font-weight: bold;
   background-color: #5b626c;
}

.bcontents {
    width: 808px;
    position: relative;
    z-index: 1;
    background-color: #484f57;
}
.bcontents_t, table {
    color: white;
}
.bcontents_t {
    padding: 8px;
}
.bcontents_t p {
    margin: 0;
}
#intro p {
    margin-top: 20px;
}
.bcontents_b {
    height: 22px;
    width: 100%;
}   
#login form {
    margin: 0;
    padding: 0;
    margin-left: 5px;
    margin-top: -2px;
    display: inline-block;
    height: 40px;
}
.preview {
    width: 64px;
    height: 64px;
    display: block;
    float: left;
    margin: 1px;
    position: relative;
}
.preview a, .preview .image {
    position: absolute;
    width: 64px;
    height: 64px;    
}
.preview .image {
    filter: sepia(100%) saturate(450%)
}
.preview:hover .image {
    filter: none;
}
.preview .info {
    color: white;
    font-family: silkscreen;
    font-size: 8px;
    font-smooth: never;
    -webkit-font-smoothing : none;
    letter-spacing: -1px;
    position: absolute;
    bottom: 4px;
    left: 4px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
}

.clear:before, .clear:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;  
} 

.clear:after { clear: both; }   
.clear { zoom: 1; }

.block h1 {
    color: #eee;
    border-bottom: 1px solid #e19100;
}
input[type="submit"], a.linkbutton, input[type="button"], .pagination_page, .pagination_previous, .pagination_next, .pagination_first, .pagination_current, .pagination_last{
    display: inline-block;
    padding: 4px;
    border: 1px solid #252628;
    background-color: #3a3c3e;
    color: white;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
}
.pagebutton {
    background-color: #676e7a;
    border-radius: 50%;
    display: inline-flex;
    padding: 4px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
#bar .linkbutton, #bar input{
    padding: 0 5px;
    border: 0;
    height: 20px;
    line-height: 20px;
    margin-top: 2px;
}
input[type="text"], input[type="password"], textarea {
    background: none;
    border: 1px solid #252628;
    background-color: #3a3c3e;
    color: white;
    text-indent: 6px;
    padding: 4px;
}
textarea {
  box-sizing: border-box;
  resize: none;
}
a.linkbutton img, button img{
    vertical-align: middle;
}
input[type="submit"]:hover, a.linkbutton:hover, input[type="button"]:hover, .pagination_page:hover, .pagination_previous:hover, .pagination_next:hover, .pagination_first:hover, .pagination_current:hover, .pagination_last:hover{
    background-color: #434447;
    border-color: #434447;  
    color: white;
}
.pagination_current {
    border: 1px solid #e19100;
}
input[type="submit"]:active, a.linkbutton:active, input[type="button"]:active, .pagination_page:active, .pagination_previous:active, .pagination_next:active, .pagination_first:active, .pagination_current:active, .pagination_last:active{
    background-color: #3a3c3e;
}
#frame_wrapper {
    background-color: #35363a;
    box-sizing: border-box;
    display: flex;
    flex: 1;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}
#ad_container {
    flex: 1;
    align-items: flex-end;
}
#nav ul li#ad_container:hover, #nav ul li#ad_container:active {
    background-color: initial;
}
#ad {
    width: 728px;
    height: 90px;
    margin-top: 5px;
    margin-right: 5px;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}
#ad > .ezoic-ad {
    margin-top: 0 !important;
}
#footer_ad_wrapper {
    width: 100%;
    height: 100px;
    background-color: #2b2c2f;
    position: relative;
}
@media (max-width: 1000px) or (max-height: 600px) {
    #footer_ad_wrapper {
        display: none;
    }
}
#footer_ad {
    width: 970px;
    height: 90px;
    margin: 5px auto;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}
#footer_ad > .ezoic-ad {
    margin-top: 0 !important;
}
#footer_ad_close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    color: #9e9e9e;
    padding: 10px;
}
#chatbar {
    width: 100%;
    height: 35px;
    border-top: 1px solid #444;
    background-color: #eee;
    position: fixed;
    bottom: 0;
    left: 0;
}
#chatbox {
    border:1px solid rgba(107, 107, 107, 0.8);
    background-color: rgba(26, 26, 26, 0.85);
    width: 800px;
    height: 520px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -400px;
    margin-top: -250px;
    z-index: 500;
}
#chatbox_inner {
    width: 780px;
    margin-top: 5px;
    margin-left: 10px;
    position: relative; 
}
#chatbox_left{
    position: absolute;
    left: 0;
    width: 50%;
    text-align: left;
    height: 20px;
    line-height: 20px;
}
#chatbox_right{
    position: absolute;
    right: 0;
    width: 50%;
    text-align: right;
    height: 20px;
    line-height: 20px;
}
#chatbox_right img {
    vertical-align: middle;
}
#chatbox iframe {
    border: none;
    width: 780px;
    height: 480px;
    margin: 0;
    margin-top: 25px;
    padding: 0;
}
#chatbar iframe {
    border: none;
    overflow: hidden;
}
#chatbutton {
    position: fixed;
    bottom: 5px;
    left: 5px;
}
.close_chat {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #676e7a;
    cursor: pointer;
    font-size: 16px;
    vertical-align: middle;
    text-decoration: none;
}

#import_page, #playlist_page {
    display: flex;
    height: 100%;
}
#instrument_menus {
    background-color: #2f3337;
    color: white;
    overflow-y: auto;
    min-width: 400px;
    font-size: 14px;
    padding: 10px;
}
#instrument_menus table {
    background-color: #484f57;
}
#sequencer_frame {
    flex: 1;
}
#playlist_menu {
    background-color: #35363a;
    color: white;
    overflow-y: auto;
    width: 600px;
    font-size: 14px;
    padding: 10px 8px 2px 8px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #2b2c2f;
    transition: width 200ms ease-in-out
}
.playlist_title_wrapper {
    font-size: 20px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.playlist_title_wrapper span {
    flex: 1;
}
#playlist_title {
    word-break: break-word;
}
#playlist_description {
    font-size: 16px;
    color: lightgray;
    word-break: break-word;
    max-height: 3.7em;
}
#playlist_description:hover {
    max-height: 100%;
}
#sequences_list {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #484f57;
    border-collapse: collapse;
    margin-bottom: 5px;
    height: 100%;
    width: 100%;
}
.playlist_row, .playlist_header {
    font-size: 16px;
    align-items: center;
    flex-shrink: 0;
}
.playlist_header {
    display: flex;
    padding: 4px;
    justify-content: space-around;
    align-items: center;
    background-color: #676e7a;
}
.playlist_placeholder {
    min-height: 56px;
    background-color: #A0C5FA;
}
.playlist_row > a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
}
.playlist_row:hover {
    background-color: #4f555e;
    cursor: pointer;
}
.playlist_row {
    min-height: 40px;
}
.playlist_header {
    min-height: 20px;
    color: lightgray;
    cursor: default;
}
.playlist_sequence_title_icon {
    width: 40px;
    height: 40px;
    margin-right: 8px;
}
.playlist_sequence_title_text {
    display: flex;
    flex-direction: column;
}
.playlist_sequence_title {
    display: inline;
    font-size: 16px;
    height: 20px;
    overflow: hidden;
    word-break: break-all;
}
.playlist_sequence_subtitle {
    font-size: 14px;
    color: lightgray;
}
.playlist_sequence_subtitle span {
    color: #A0C5FA;
    text-decoration: underline;
}
#playlist_edit_btn {
    display: inline;
    padding-right: 5px;
    color: #adb0bd;
}
.options_column i {
    margin-right: 8px;
}
.options_column i:hover, #playlist_edit_btn:hover, .playlist_control_btn:hover {
    color: white;
    cursor: pointer;
}
.playlist_btn_active {
    color: white;
}
#playlist_title_input, #playlist_description_input {
    display: none;
}
#playlist_title_input {
    width: 200px;
}
#playlist_description_input {
    min-height: 90px;
    width: 90%;
    max-height: 200px;
    resize: vertical;
}
.playlist_delete_btn {
    font-size: 12px;
    padding-top: 5px;
}
.current_sequence {
    background-color: #5b626c !important;
}
#playlist_controls {
    display: flex;
    flex-direction: column;
    background-color: #2b2c2f;
    width: 100%;
    min-height: 115px;
}
.playlist_controls_btn_group {
    width: 100%;
    height: 100%;
    font-size: 20px;
    margin-top: 5px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
}
.playlist_control_btn {
    display: inline;
    color: #adb0bd;
}
#playlist_play_btn {
    color: #D38B0D;
}
.playlist_controls_duration_group {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#duration_bar {
    width: 75%;
    height: 5px;
    margin: 8px;
    position: relative;
    background-color: #4f555e;
    overflow: hidden;
    cursor: pointer;
}
#duration_bar_progress {
    height: 100%;
    width: 0%;
    position: relative;
    background-color: #03a9f5;
}
#duration_time_current, #duration_time_end {
    color: #adb0bd;
    font-size: 12px;
}
.add_sequence_btn {
    line-height: 40px;
    overflow: visible;
}
#add_sequence {
    display: flex;
    justify-content: space-around;
    padding: 8px;
}
.deleted_sequence {
    pointer-events: none;
}
.deleted_sequence .num_column, .deleted_sequence .title_column, .deleted_sequence .duration_column {
    color: lightgray !important;
    opacity: 50%;
}
.playlist_preview {
    display: inline-flex;
    flex-direction: column;
    height: 155px;
    width: 155px;
    margin-bottom: 4px;
    margin-right: 3px;
    cursor: pointer;
    vertical-align: top;
    position: relative;
}
.playlist_preview a {
    text-decoration: none;
}
.playlist_preview_thumb {
    background-color: #000;
    width: 155px;
    height: 155px;
}
.playlist_preview_sequence_thumb {
    width: 77.5px;
    height: 77.5px;
}
.playlist_preview_sequence_wrapper {
    width: 155px;
    height: 155px;
    background-color: black;
    color: white;
    display: grid;
    position: relative;
}
.playlist_preview_sequence_wrapper span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 16px;
    line-height: 16px;
    padding: 4px;
}
.playlist_preview_small {
    width: 46px;
    height: 46px;
    background-color: black;
    margin-right: 10px;
    position: relative;
}
.playlist_preview_small .playlist_sequence {
    width: 23px;
    height: 23px;
    display: inline-block;
    background-size: contain;
}
#playlist_preview_image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
#playlist_preview_small_icon {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #adb0bd;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.playlist_preview_small:hover #playlist_preview_small_icon {
    display: flex;
}
#playlist_image_file {
    display: none;
}
.seq1 {
    grid-column: 1;
    grid-row: 1;
}
.seq2 {
    grid-column: 2;
    grid-row: 1;
}
.seq3 {
    grid-column: 1;
    grid-row: 2;
}
.seq4 {
    grid-column: 2;
    grid-row: 2;
}
.playlist_preview:hover .playlist_preview_title {
    display: flex;
}
.playlist_preview_title {
    height: 50px;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    font-size: 14px;
    padding-left: 3px;
    padding-right: 3px;
    align-items: center;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1;
}
#playlist_controls_playing_group {
    padding-left: 8px;
    padding-top: 8px;
    padding-right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.playlist_playing_left {
    width: 460px;
    overflow: hidden;
}
.playlist_playing_left > a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    width: 100%;
}
.playlist_playing_title {
    color: lightgray;
    font-size: 12px;
}
#playlist_playing_sequence {
    color: whitesmoke;
    font-size: 20px;
    height: 26px;
    display: block;
    word-break: break-all;
}
.playlist_controls_top {
    color: lightgray;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.playlist_controls_top > i {
    margin-right: 5px;
}
#like_btn {
    display: none;
    margin-right: 10px;
    cursor: pointer;
}
#like_btn:hover {
    color: white;
}
#like_btn.active {
    color: salmon;
}
.num_column {
    color: lightgray;
    width: 24px;
    text-align: center;
    margin-right: 12px;
    flex-shrink: 0;
}
.title_column {
    height: 100%;
    width: 100%;
    display: flex;
}
.duration_column {
    color: lightgray;
    width: 50px;
    text-align: right;
    margin-right: 12px;
}
.options_column {
    width: 20px;
    color: #adb0bd;
    text-align: center;
    pointer-events: all;
}
.options_column i {
    width: 100%;
}

#CCPA_opt_out {
    bottom: 0 !important;
}

.chat {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  font-size: 15px;    
  padding: 4px;
  margin-bottom: 4px;
  line-height: 1.5;
}
.chat:first-child {
    padding-top: 0;
}
.comments .name {
    font-weight: bold;
}
.chat a {
    text-decoration: none;
    color: #039be5;
}
.date, .date a, .reply_text, .reply_text a {
  color: #9e9e9e;
}
.date a:hover, .reply_text a:hover {
  text-decoration: underline;
}
.message {
  color: #eeeeee;
  word-wrap: break-word;
}
.char {
  float: left;
  margin-right: 8px;
  width: 32px;
  height: 32px;
}
.actions {
  display: none;
}
.chat:hover .actions {
  display: inline;
}
.reply_text {
  font-size: 11px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.comments .actions i {
  cursor: pointer;
  color: #676e7a;
  margin-left: 5px;
}
a.hidden-text {
    background-color: black;
    color: black;
}
a.hidden-text:hover {
    background-color: inherit;
    color: #A0C5FA;
}
.deleted-banner {
    background-color: #2c5aa1;
    opacity: 90%;
    border-left: 3px solid #3266b7;
    padding-left: 4px;
    margin-bottom: 8px;
    height: 20px;
    border-radius: 2px;
}
.deleted-close {
    float: right;
    padding-right: 4px;
    padding-top: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 10px;
}

/*! jQuery UI - v1.13.0 - 2021-10-07
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?bgShadowXPos=&bgOverlayXPos=&bgErrorXPos=&bgHighlightXPos=&bgContentXPos=&bgHeaderXPos=&bgActiveXPos=&bgHoverXPos=&bgDefaultXPos=&bgShadowYPos=&bgOverlayYPos=&bgErrorYPos=&bgHighlightYPos=&bgContentYPos=&bgHeaderYPos=&bgActiveYPos=&bgHoverYPos=&bgDefaultYPos=&bgShadowRepeat=&bgOverlayRepeat=&bgErrorRepeat=&bgHighlightRepeat=&bgContentRepeat=&bgHeaderRepeat=&bgActiveRepeat=&bgHoverRepeat=&bgDefaultRepeat=&iconsHover=url(%22images%2Fui-icons_555555_256x240.png%22)&iconsHighlight=url(%22images%2Fui-icons_777620_256x240.png%22)&iconsHeader=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsError=url(%22images%2Fui-icons_cc0000_256x240.png%22)&iconsDefault=url(%22images%2Fui-icons_777777_256x240.png%22)&iconsContent=url(%22images%2Fui-icons_444444_256x240.png%22)&iconsActive=url(%22images%2Fui-icons_ffffff_256x240.png%22)&bgImgUrlShadow=&bgImgUrlOverlay=&bgImgUrlHover=&bgImgUrlHighlight=&bgImgUrlHeader=&bgImgUrlError=&bgImgUrlDefault=&bgImgUrlContent=&bgImgUrlActive=&opacityFilterShadow=Alpha(Opacity%3D30)&opacityFilterOverlay=Alpha(Opacity%3D30)&opacityShadowPerc=30&opacityOverlayPerc=30&iconColorHover=%23555555&iconColorHighlight=%23777620&iconColorHeader=%23444444&iconColorError=%23cc0000&iconColorDefault=%23777777&iconColorContent=%23444444&iconColorActive=%23ffffff&bgImgOpacityShadow=0&bgImgOpacityOverlay=0&bgImgOpacityError=95&bgImgOpacityHighlight=55&bgImgOpacityContent=75&bgImgOpacityHeader=75&bgImgOpacityActive=65&bgImgOpacityHover=75&bgImgOpacityDefault=75&bgTextureShadow=flat&bgTextureOverlay=flat&bgTextureError=flat&bgTextureHighlight=flat&bgTextureContent=flat&bgTextureHeader=flat&bgTextureActive=flat&bgTextureHover=flat&bgTextureDefault=flat&cornerRadius=3px&fwDefault=normal&ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&cornerRadiusShadow=8px&thicknessShadow=5px&offsetLeftShadow=0px&offsetTopShadow=0px&opacityShadow=.3&bgColorShadow=%23666666&opacityOverlay=.3&bgColorOverlay=%23aaaaaa&fcError=%235f3f3f&borderColorError=%23f1a899&bgColorError=%23fddfdf&fcHighlight=%23777620&borderColorHighlight=%23dad55e&bgColorHighlight=%23fffa90&fcContent=%23333333&borderColorContent=%23dddddd&bgColorContent=%23ffffff&fcHeader=%23333333&borderColorHeader=%23dddddd&bgColorHeader=%23e9e9e9&fcActive=%23ffffff&borderColorActive=%23003eff&bgColorActive=%23007fff&fcHover=%232b2b2b&borderColorHover=%23cccccc&bgColorHover=%23ededed&fcDefault=%23454545&borderColorDefault=%23c5c5c5&bgColorDefault=%23f6f6f6
* Copyright jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)"; /* support: IE8 */
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
	pointer-events: none;
}


/* Icons
----------------------------------*/
.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block;
}

/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-accordion .ui-accordion-header {
	display: block;
	cursor: pointer;
	position: relative;
	margin: 2px 0 0 0;
	padding: .5em .5em .5em .7em;
	font-size: 100%;
}
.ui-accordion .ui-accordion-content {
	padding: 1em 2.2em;
	border-top: 0;
	overflow: auto;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
    background-color: #676e7a;
    color: white;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	margin: -1px;
}

/* icon support */
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-button {
	padding: .4em 1em;
	display: inline-block;
	position: relative;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	/* Support: IE <= 11 */
	overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2em;
	box-sizing: border-box;
	text-indent: -9999px;
	white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
	text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
	padding: 0;
	width: 2.1em;
	height: 2.1em;
	text-indent: -9999px;
	white-space: nowrap;

}

input.ui-button.ui-icon-notext .ui-icon {
	width: auto;
	height: auto;
	text-indent: 0;
	white-space: normal;
	padding: .4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}
.ui-controlgroup {
	vertical-align: middle;
	display: inline-block;
}
.ui-controlgroup > .ui-controlgroup-item {
	float: left;
	margin-left: 0;
	margin-right: 0;
}
.ui-controlgroup > .ui-controlgroup-item:focus,
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
	z-index: 9999;
}
.ui-controlgroup-vertical > .ui-controlgroup-item {
	display: block;
	float: none;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
}
.ui-controlgroup-vertical .ui-controlgroup-item {
	box-sizing: border-box;
}
.ui-controlgroup .ui-controlgroup-label {
	padding: .4em 1em;
}
.ui-controlgroup .ui-controlgroup-label span {
	font-size: 80%;
}
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
	border-left: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
	border-top: none;
}
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
	border-right: none;
}
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
	border-bottom: none;
}

/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {

	/* Support: IE8 only, Android < 4.4 only */
	width: 75%;
	width: calc( 100% - 2.4em );
}
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
	border-top-style: solid;
}

.ui-checkboxradio-label .ui-icon-background {
	box-shadow: inset 1px 1px 1px #ccc;
	border-radius: .12em;
	border: none;
}
.ui-checkboxradio-radio-label .ui-icon-background {
	width: 16px;
	height: 16px;
	border-radius: 1em;
	overflow: visible;
	border: none;
}
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
	background-image: none;
	width: 8px;
	height: 8px;
	border-width: 4px;
	border-style: solid;
}
.ui-checkboxradio-disabled {
	pointer-events: none;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* Icons */
.ui-datepicker .ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	left: .5em;
	top: .3em;
}
.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
}
.ui-dialog .ui-dialog-title {
	float: left;
	margin: .1em 0;
	white-space: nowrap;
	width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 20px;
	margin: -10px 0 0 0;
	padding: 1px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	border: 0;
	padding: .5em 1em;
	background: none;
	overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
	text-align: left;
	border-width: 1px 0 0 0;
	background-image: none;
	margin-top: .5em;
	padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
	float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
	margin: .5em .4em .5em 0;
	cursor: pointer;
}
.ui-dialog .ui-resizable-n {
	height: 2px;
	top: 0;
}
.ui-dialog .ui-resizable-e {
	width: 2px;
	right: 0;
}
.ui-dialog .ui-resizable-s {
	height: 2px;
	bottom: 0;
}
.ui-dialog .ui-resizable-w {
	width: 2px;
	left: 0;
}
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
	width: 7px;
	height: 7px;
}
.ui-dialog .ui-resizable-se {
	right: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-sw {
	left: 0;
	bottom: 0;
}
.ui-dialog .ui-resizable-ne {
	right: 0;
	top: 0;
}
.ui-dialog .ui-resizable-nw {
	left: 0;
	top: 0;
}
.ui-draggable .ui-dialog-titlebar {
	cursor: move;
}
.ui-draggable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable {
	position: relative;
}
.ui-resizable-handle {
	position: absolute;
	font-size: 0.1px;
	display: block;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
	display: none;
}
.ui-resizable-n {
	cursor: n-resize;
	height: 7px;
	width: 100%;
	top: -5px;
	left: 0;
}
.ui-resizable-s {
	cursor: s-resize;
	height: 7px;
	width: 100%;
	bottom: -5px;
	left: 0;
}
.ui-resizable-e {
	cursor: e-resize;
	width: 7px;
	right: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-w {
	cursor: w-resize;
	width: 7px;
	left: -5px;
	top: 0;
	height: 100%;
}
.ui-resizable-se {
	cursor: se-resize;
	width: 12px;
	height: 12px;
	right: 1px;
	bottom: 1px;
}
.ui-resizable-sw {
	cursor: sw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	bottom: -5px;
}
.ui-resizable-nw {
	cursor: nw-resize;
	width: 9px;
	height: 9px;
	left: -5px;
	top: -5px;
}
.ui-resizable-ne {
	cursor: ne-resize;
	width: 9px;
	height: 9px;
	right: -5px;
	top: -5px;
}
.ui-progressbar {
	height: 2em;
	text-align: left;
	overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
	margin: -1px;
	height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
	background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
	height: 100%;
	-ms-filter: "alpha(opacity=25)"; /* support: IE8 */
	opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
	background-image: none;
}
.ui-selectable {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-selectable-helper {
	position: absolute;
	z-index: 100;
	border: 1px dotted black;
}
.ui-selectmenu-menu {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
}
.ui-selectmenu-menu .ui-menu {
	overflow: auto;
	overflow-x: hidden;
	padding-bottom: 1px;
    max-height: 320px;
    color: #676e7a;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	padding: 2px 0.8em;
	height: auto;
	border: 0;
}
.ui-selectmenu-optgroup i {
	margin-right: 0.4em;
}
.ui-selectmenu-open {
	display: block;
}
.ui-selectmenu-text {
	display: block;
	margin-right: 20px;
}
.ui-selectmenu-button.ui-button {
	text-align: left;
	white-space: nowrap;
	width: 14em;
}
.ui-selectmenu-icon.ui-icon {
	float: right;
	margin-top: 0;
}
.ui-slider {
	position: relative;
	text-align: left;
}
.ui-slider .ui-slider-handle {
	position: absolute;
	z-index: 2;
	width: 1.2em;
	height: 1.2em;
	cursor: pointer;
	-ms-touch-action: none;
	touch-action: none;
}
.ui-slider .ui-slider-range {
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0;
}

/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
	filter: inherit;
}

.ui-slider-horizontal {
	height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
	top: -.3em;
	margin-left: -.6em;
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
	left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}

.ui-slider-vertical {
	width: .8em;
	height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
	left: -.3em;
	margin-left: 0;
	margin-bottom: -.6em;
}
.ui-slider-vertical .ui-slider-range {
	left: 0;
	width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
	bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
	top: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-spinner {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0;
	vertical-align: middle;
}
.ui-spinner-input {
	border: none;
	background: none;
	color: inherit;
	padding: .222em 0;
	margin: .2em 0;
	vertical-align: middle;
	margin-left: .4em;
	margin-right: 2em;
}
.ui-spinner-button {
	width: 1.6em;
	height: 50%;
	font-size: .5em;
	padding: 0;
	margin: 0;
	text-align: center;
	position: absolute;
	cursor: default;
	display: block;
	overflow: hidden;
	right: 0;
}
/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
	border-top-style: none;
	border-bottom-style: none;
	border-right-style: none;
}
.ui-spinner-up {
	top: 0;
}
.ui-spinner-down {
	bottom: 0;
}
.ui-tabs {
	position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
	padding: .2em;
}
.ui-tabs .ui-tabs-nav {
	margin: 0;
	padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
	list-style: none;
	float: left;
	position: relative;
	top: 0;
	margin: 1px .2em 0 0;
	border-bottom-width: 0;
	padding: 0;
	white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
	float: left;
	padding: .5em 1em;
	text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
	margin-bottom: -1px;
	padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
	cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
	cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
	display: block;
	border-width: 0;
	padding: 1em 1.4em;
	background: none;
}
.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px;
}
body .ui-tooltip {
	border-width: 2px;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-size: 12px;
	color: #676e7a;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget-content {
	background: #cfcecf;
	color: #676e7a;
}
.ui-widget-content a {
	color: #333333;
}
.ui-widget-header {
	border: 1px solid #dddddd;
	background: #e9e9e9;
	color: #333333;
	font-weight: bold;
}
.ui-widget-header a {
	color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,

/* We use html here because we need a greater specificity to make sure disabled
works properly when clicked or hovered */
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
	border: none;
    background: #D38B0D;
    font-weight: normal;
    color: #ffffff;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
	color: #2b2b2b;
	text-decoration: none;
}

.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border: 1px solid transparent;
    background: #D38B0D;
    font-weight: normal;
    color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #dad55e;
	background: #fffa90;
	color: #777620;
}
.ui-state-checked {
	border: 1px solid #dad55e;
	background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #777620;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #f1a899;
	background: #fddfdf;
	color: #5f3f3f;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #5f3f3f;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #5f3f3f;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	-ms-filter: "alpha(opacity=70)"; /* support: IE8 */
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 */
	background-image: none;
}
.ui-state-disabled .ui-icon {
	-ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("/resources/ui/ui-icons_444444_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("/resources/ui/ui-icons_444444_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
	background-image: url("/resources/ui/ui-icons_ffffff_256x240.png");
}
.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
	background-image: url("/resources/ui/ui-icons_ffffff_256x240.png");
}
.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
	background-image: url("/resources/ui/ui-icons_777620_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("/resources/ui/ui-icons_cc0000_256x240.png");
}
.ui-button .ui-icon {
	background-image: url("/resources/ui/ui-icons_ffffff_256x240.png");
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
	background-image: none;
}
.ui-icon-caret-1-n { background-position: 0 0; }
.ui-icon-caret-1-ne { background-position: -16px 0; }
.ui-icon-caret-1-e { background-position: -32px 0; }
.ui-icon-caret-1-se { background-position: -48px 0; }
.ui-icon-caret-1-s { background-position: -65px 0; }
.ui-icon-caret-1-sw { background-position: -80px 0; }
.ui-icon-caret-1-w { background-position: -96px 0; }
.ui-icon-caret-1-nw { background-position: -112px 0; }
.ui-icon-caret-2-n-s { background-position: -128px 0; }
.ui-icon-caret-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -65px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -65px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 1px -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 3px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa;
	opacity: .003;
	-ms-filter: Alpha(Opacity=.3); /* support: IE8 */
}
.ui-widget-shadow {
	-webkit-box-shadow: 0px 0px 5px #666666;
	box-shadow: 0px 0px 5px #666666;
}


.os-dropdown {
    justify-content: flex-start;
    align-items: flex-start;
}
#toolbar_element .os-dropdown {
    display: inline-flex;
    vertical-align: top;
    font-size: 18px;
}

.os-dropdown-btn {
    margin: 0;
    padding: 0;
    background: none;
    border: none;

}
#toolbar_element .os-dropdown-btn {
    box-sizing: border-box;
    width: 24px;
    height: 24px;
    border: 1px solid transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #adb0bd;
}
#toolbar_element .os-dropdown-btn:hover,
#toolbar_element .os-dropdown:focus-within .os-dropdown-btn {
    color: white;
}

.os-dropdown-menu {
    margin: 0;
    padding: 0;
    list-style: none;

    display: none;
    position: absolute;
    width: 150px;
    flex-direction: column;
    z-index: 150;
    background-color: #cfcecf;
    color: #676e7a;
    line-height: 23px;
    text-indent: 5px;
    font-size: 12px;
}
.os-dropdown:focus-within .os-dropdown-menu {
    display: flex;
}
#toolbar_element .os-dropdown-menu {
    top: 30px;
}

.os-dropdown-menu li {
    cursor: pointer;
}
.os-dropdown-menu li:hover {
    background-color: #d38b0d;
    color: white;    
}

#page_view {
    /* Fixes ad stretching the page on mobile desktop mode */
    overflow: hidden;
}
body, input, select {
    font-family: 'PT Sans', sans-serif;
    font-size: 12px;
    text-align: left;
    touch-action: manipulation;
}
#bottom_left {
    width: 125px;
    height: 24px;
    position: absolute;
    display: flex;
    justify-content: space-around;
    align-items: center;
    left: 0;
    bottom: 0;
    background-color: #35363a;
    border-top: 1px solid #2b2c2f;
    z-index: 99;
    color: #333;
}
#midi_button {
    display: inline-flex;
    align-items: center;
}
.bottom_left_button {
    width: 16px;
    height: 16px;
    display: inline-block;
    cursor: pointer;
    color: #adb0bd;
}
.play_mode #bottom_left {
  display: none;
}
#record_button {
    background-image: url(/resources/record_off.png);
}
#record_button.selected {
    background-image:url(/resources/record_on.png);
}
#record_button_tooltip {
    left: 24px;
}
#quantize_button {
    background-image:url(/resources/quantize.png);
    filter: brightness(70%);
}
#quantize_button:hover {
    filter: none;
}
#quantize_button.selected {
    filter: none;
}
#quantize_button_tooltip {
    left: 52px;
}
#metronome_button {
    background-image:url(/resources/metronome.png);
    filter: brightness(70%);
}
#metronome_button:hover {
    filter: none;
}
#metronome_button.selected {
    filter: none;
}
#metronome_button_tooltip {
    left: 100px;
    width: 180px;
}
#key_filter_button {
    background-image:url(/resources/key_filter.png);
    filter: brightness(70%);
}
#key_filter_button:hover {
    filter: none;
}
#key_filter_button.selected {
    filter: none;
}
#key_filter_button_tooltip {
    left: 76px;
    width: 120px;
}
.tooltip {
    width: 90px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.65);
    color: white;
    position: absolute;
    bottom: 16px;
    padding: 10px;
    display: none;
}

.key, .key_sharp{
    font-size: 11px;
    width: 96px;
    text-align: right;
    background-color: white;
    background: linear-gradient(to right, #cfcecf, #faf9f9);
    color: black;
    padding-right: 4px;
    z-index: 5;
    cursor: pointer;
}
.key_sharp {
    color: white;
    background-color: black;
    background: linear-gradient(to right, #303030, #030403);
}


.key:hover {
    background-color: #eaeaea;
    background: linear-gradient(to right, #adacac, #d8d8d7);
}
.key:active {
    background-color: #eee;
}
.key_sharp:hover {
    background-color: #1b1b1b;
    background: linear-gradient(to right, #535353, #040504);
}

.key div, .key_sharp div {
    width: 100%;
    opacity: 0.7;
    position: absolute;
    z-index: 1;
}
.key_text {
    opacity: 1 !important;
    z-index: 0 !important;
    width: 95px !important;
}
body a {
    color: #A0C5FA;
}
#keyboard_wrapper_element {
    width: 100px;
    overflow: hidden;
    position: relative;
}
#keyboard_element{
    width: 100px;
    position: absolute;
    top: -40px;
    overflow: hidden;
}
#sequencer_main_row {
    display: flex;
    flex: 1;
    overflow: hidden;
}
#sequencer {
    background-color: #35363a;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#top-bar-container {
    border-bottom: 1px solid #2b2c2f;
    display: flex;
    height: 32px;
}
#top-bar-right {
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    margin-right: 5px;
}
#titlebar {
    color: white;
    display: flex;
    flex: 1;
    font-size: 18px;
    height: 24px;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4);
    padding: 5px;
    overflow: hidden;
}
#titlebar .left {
    flex: 1;
    display: flex;
    overflow: hidden;
}
#titlebar .play {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #D38B0D;
    vertical-align: top;
    border-radius: 4px;
    margin-right: 10px;
}
#titlebar .text {
    display: inline-block;
    vertical-align: top;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.preview_mode_btn {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #adb0bd;
}
.preview_mode_btn.btn_zoomin, .preview_mode_btn.btn_zoomout {
    margin-left: 0px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}
.preview_mode_btn.btn_zoomin {
    margin-left: 5px;
}
.btn_comment {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: inline-flex;
    margin-left: 5px;
    color: #adb0bd;
}

.info-sidebar {
    color: white;
    width: 100%;
}

.info-sidebar-section {
    background-color: #35363a;
    padding: 10px;
    margin-bottom: 5px;    
}

.info-sidebar-title {
    font-size: 24px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.info-sidebar-section-title {
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.info-sidebar-title span {
    flex: 1;
}

#info-sidebar-close {
    margin-right: 5px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
}

#sidebar_content.with-title #info-sidebar-close {
    display: none;
}

.info-sidebar-details, .info-sidebar-details .inspired a {
    color: lightgray;
}

.info-sidebar-details {
    line-height: 18px;
    text-underline-offset: 2px;
}

#info-sidebar-description-edit i {
    margin-left: 5px;
}

#info-sidebar-description-text {
    margin-bottom: 10px;
    max-height: 400px;
    overflow-y: auto;
}

#info-sidebar-description-textarea {
    display: none;
}
#info-sidebar-description-save, #info-sidebar-description-cancel {
    display: none;
    margin-top: 10px;
}
#info-sidebar-description-loading {
    display: none;
    margin-top: 5px;
}
.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#info-sidebar-comments {
    flex: 1;
}
.dragscroll-wrapper {
    overflow: auto;
    user-select: none;
    -ms-overflow-style: none;
    height: 100%;
    scroll-behavior: smooth;
}
.dragscroll-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
}
.info-sidebar-featured-list > .dragscroll-wrapper {
    overflow: auto;
}
.dragscroll-content{
    width: max-content;
}
.dragscroll {
    position: relative;
}
.dragscroll-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: red;
    pointer-events: none;
    background: linear-gradient(90deg, #35363a 0%, transparent 100%);
}
.dragscroll-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: red;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, #35363a 100%);
}
#toolbar_container, #menus {
    display: none;
}
#sequencer.edit_mode #titlebar {
    display: none;
}
#sequencer.edit_mode #toolbar_container {
    display: block;
}
#sequencer.edit_mode #menus {
    display: flex;
    justify-content: space-evenly;
}
#sequencer_panel {
    display: flex;
    flex: 1;
}
#sequencer_panel_right {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}
#save-options {
    width: 12px;
}
#savelink, #btn_save_audio {
    color: #A0C5FA;
}
#toolbar_container {
    background-color: #35363a;
    flex: 1;
    z-index: 97;
    width: 0;
}
#toolbar_element {
    height: 24px;
    padding: 5px 5px 5px 0;
    color: black;
    white-space: nowrap;

}
.toolbar_button {
    padding-left: 4px;
    padding-right: 4px;
    text-decoration: none;
    background-color: #676e7a;
    color: white !important;
    border-bottom: 1px solid #505665;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
    cursor: pointer;
}
.toolbar_button:hover {
     background-color: #7d8594;
}
#sequencer_main {
    position: absolute;
    overflow: scroll;
    overscroll-behavior: none;
    touch-action: none;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    outline: none;
    z-index: 96;
}
::-webkit-scrollbar {
    height: 16px;
    width: 16px;
}
::-webkit-scrollbar-track, ::-webkit-scrollbar-corner{
    background-color: #35363a;
}
::-webkit-scrollbar-thumb {
    background: #676e7a;
}
::-webkit-scrollbar-thumb:hover {
    background: #7d8594;
}

.measure {
    box-sizing: border-box;
    display: inline-block;
}
#sequencer_view {
    background-color: #4b4b4b;
    width: 0;
}
#sequencer_view canvas {
    position: absolute;
}
#playhead_wrapper {
    position: absolute;
    left: 0;
    top: -16px;
    bottom: 0;
    right:0;
    overflow: hidden;
    pointer-events: none;
}
#sequencer_timeline_wrapper {
    display: flex;
    z-index: 98;
}
#sequencer_timeline {
    color: #ccc;
    cursor: pointer;
    border-bottom: 1px solid #2b2c2f;
    border-left: 1px solid #2b2c2f;
    box-sizing: border-box;
    overflow: hidden;
    height: 16px;
    flex: 1;
    margin-top: 2px;
}
#sequencer_timeline_options {
    width: 100px;
    height: 16px;
    display: flex;
    padding-right: 5px;
    box-sizing: border-box;
}
#sequencer_timeline_options .left {
    display: flex;
    flex: 1;
}
.timeline_option, .timeline_option_active, #btn_user_settings{
    display: inline-flex;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    cursor: pointer;
}
.timeline_option_active {
    color: white;
}
#sequencer_timeline_measures {
    height: 16px;
    width: 0;
    display: flex;
    position: relative;
}
#sequencer_timeline_measures .measure {
    box-sizing: border-box;
    border-right: 2px solid #2b2c2f;
    padding-left: 10px;
    padding-top: 1px;
    height: 16px;
    display: inline-block;
}
#playbutton, #loading_overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#playbutton, #loading_overlay {
    top: 34px;
}
#playbutton {
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3) url('/app/playbutton.png');
    background-position: 50% 40%;
    background-repeat: no-repeat;
    z-index: 98;
    display: none;
}
#playbutton span {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 100%;
    text-align: center;
}
#loading_overlay {
    cursor: progress;
    background: rgba(0, 0, 0, 0.6) url('/app/loading.gif');
    background-position: center;
    background-repeat: no-repeat;
    z-index: 99;
}
#mobile_warning {
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
    color: white;
    font-size: 14px;
    text-align: center;
    display: flex;
    position: absolute;
    height: 33%;
    bottom: 0;
    align-items: center;
    justify-content: center;
}
#mobile_warning div {
    width: 80%;
    line-height: 20px;
}
#mobile_warning .close {
    width: 30px;
    height: 30px;
    right: 15px;
    top: 15px;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
}
#sequencer_inner {
    width: 500px;
    position: relative;
    overflow: hidden;
}
#wavesurfer_element {
    height: 32px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
}
.playhead {
    height: 100%;
    width: 25px;
    position: relative;
    top: 0;
    left: 0;
    display: none;
}
.playhead_animate {
    background-color: #0A69F2;
    height: 100%;
    width: 1px;
    position: absolute;
    animation-timing-function: linear;
}
.playhead_top {
    margin-left: -16px;
    width: 33px;
    height: 32px;
    border: 16px outset transparent;
    border-top-color: #0A69F2;
    box-sizing: border-box;
}
@keyframes translate {
    0%   { left: 0px; }
    100% { left: 100%;}
}
#play_small {
    width: 24px;
    height: 24px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
    font-size: 14px;
    color: #D38B0D;
    background-repeat: no-repeat;
    background-position:top;
    margin-left: 5px;
}
#share {
    position: absolute;
    right: 25px;
    top: 60px;
    background-color: #ddd;
    padding: 3px;
    z-index: 97;
    line-height: 20px;
}
#share .btn {
    width: 18px;
    height: 18px;
}
#menus .linkbutton {
    padding: 0 5px;
    height: 20px;
    line-height: 20px;
    margin-top: 2px;
    margin-right: 2px;
    border: none;
}
#audio_track_file {
    width: 90px;
    color: #ddd;
    float: left;
}
#audio_track_link, #audio_track_remove {
    float: left;
}
#bottom {
    width: 100%;
    background-color: #2b2c2f;
    background-repeat: repeat-x;
    color: white;
    display: flex;
}
#info {
    font-size: 12px;
    line-height: 20px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    flex: 1;
}
#links {
    padding: 5px;
    flex: 1;
    text-align: right;
}
#links img {
    vertical-align: middle;
}
#menus {
    height: 36px;
    line-height: 24px;
    background-color: #242526;
    color: white;
    margin-left: 100px;
}
#menus select {
    width: 110px;
    font-size: 12px;
}
#menus .item {
    text-align: center;
}
#volume {
    color: #adb0bd;
    display: flex;
    align-items: center;
}
#volume i {
    margin-right: 5px;
}
#volume_slider {
    width: 100px;
}
#loading_container {
    position: absolute;
    left: 140px;
    top: 40px;
    width: 120px;
    height: 35px;
    color: white;
    text-indent: 10px;
    padding-top: 8px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
}
#loading_bar {
    height: 8px;
    width: 100px;
    margin-left: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}
#loading {
    background-color: orange;
    width: 0%;
    height: 100%;
}

/* New progress bar */
#progress_bar_area {
    display: flex;
    flex-direction: column;
}
progress-bar {
    height: fit-content;
    padding: 10px 12px;
    color: white;
    background-color: #35363a;
}
.progress-bar-container {
    display: block;
    float: left;
    margin: 0 auto;
    width: 100%;
}
.progress-bar-empty {
    background-color: #676e7a;
}
.progress-bar-fill {
    float: left;
}
.progress-bar-title {
    padding: 3px 0;
}

#toolbar_element a, #captcha_box a, #share a {
    color: #2F3BC2;
}
.btn, div.active{
    width: 22px;
    height: 22px;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    vertical-align: top;
}
.btn, .timeline_option, #btn_user_settings {
    color: #adb0bd;
}
.btn:hover, .active {
    color: white;
}
.spacer {
    width: 8px;
    border-right: 1px solid #adb0bd;
    margin-right: 7px;
    height: 18px;
    margin-top: 3px;
    display: inline-block;
    vertical-align: top;
}
#select-this i {
    border: 2px dotted #adb0bd;
    font-size: 12px;
    padding: 2px;
    border-radius: 3px;
}
#btn_selectall i {
    border: 2px dotted #adb0bd;
    font-size: 12px;
    width: 16px;
    height: 16px;
    border-radius: 3px;
}
#btn_select_this:hover i, #btn_selectall:hover i {
    border-color: White;
}
#instrument_select {
    margin-top: 6px;
}
#instrument_select_box {
    border-bottom: 1px solid #adb0bd;
    box-sizing: border-box;
}
#instrument_select_box span {
    border: 0;
}
#sequencer .ui-selectmenu-button {
    width: 130px;
    height: 16px;
    background: none;
    border: none;
    color: white;
    text-shadow: none;
    font-size: 12px !important;
    font-family: inherit !important;
    padding: 0 !important;
}
#sequencer .ui-selectmenu-text{
    padding: 0 20px 0 4px !important;
}
#menus .ui-selectmenu-button {
    border-bottom: 1px solid #adb0bd;
}
#menus #grid_select_input .ui-selectmenu-button {
    width: 60px !important;
}
#menus #time_sig_select_input .ui-selectmenu-button {
    width: 60px !important;
}
#menus #scroll_select_input .ui-selectmenu-button {
    width: 80px !important;
}
.ui-menu .instrument-menu-item {
    padding: 0;
}
.instrument-menu-item-wrapper {
    display: flex;
    align-items: center;
    padding: 0 !important;
}
.instrument-menu-item-text {
    flex: 1;
    padding: 4px;
}
.instrument-menu-chip {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    text-decoration-style: dotted;
}
.instrument-menu-new-synth {
    border: 1px dashed #888;
    color: #888;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    text-align: center;
}
#btn_instrument_options {
    margin-right: 0;
    vertical-align: top;
}
#btn_more i {
    width: 22px;
    height: 20px;
    padding-top: 2px;
    padding-left: 8px;
}
#btn_close {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #676e7a;
    cursor: pointer;
}
#selection_rect{
    z-index: 100;
    border: 1px solid #333;
    background-color: rgba(255, 255, 255, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
}

#title_box_input {
    width: 88px;
}

.box_label {
    color: #adb0bd;
    display: inline-flex;
    align-items: flex-end;
    /*vertical-align: top;*/
    margin-top: 0;
    height: 20px;
    padding-left: 2px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
    cursor: default;
}
.box_label span {
    border-bottom: 1px solid #adb0bd;
    line-height: 16px;
}
.box_input {
    font-size: 18px;
    display: inline-flex;
    height: 22px !important;
    align-items: flex-end;
}
.box_input input, .box_input select {
    border: 0;
    background-color: #35363a;
    color: white;
    margin: 0;
    height: 16px;
    padding-bottom: 1px;
    padding-left: 6px;
    text-indent: 0;
    outline: none;
}
#bpm {
    width: 22px;
}
.box_input input {
    border-bottom: 1px solid #adb0bd;
}
#title {
    width: 80px;
}
#title:hover, #title:focus {
    z-index: 1000;
    position: absolute;
    width: 32ch;
}
#message_wrapper {
    position: absolute;
    top: 100px;
    width: 100%;
    height: 0;
    z-index: 100;
    text-align: center;
    display: none;
    color: white;
    pointer-events: none;
}
#message_text {
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 24px;
    cursor: default;
}
#marker_bar {
    height: 22px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.timeline_marker {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    color: #d38b0d;
    pointer-events: none;
    width: 0;
}
.timeline_marker_inner {
  height: 100%;
}
.timeline_marker_inner:after  {
    content: "\00a0";
}
.timeline_marker_inner.marker:after {
    content: "<";
}
.timeline_marker_inner.selected {
    color: #ffef10;
}
.timeline_marker_inner.editor {
    background-color: #2c5aa1;
}
#sequencer_timeline_markers .timeline_marker {
    height: 15px;
    top: -16px;
}
#marker_bar .timeline_marker {
    height: 100%;
    font-size: 16px;
}
#marker_selection_rect{
    z-index: 100;
    background-color: #FFF6;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 0;
    width: 0;
    height: 22px;
}
.popup {
    position: absolute;
    text-shadow: none;
    z-index: 98;
    background-color: #35363a;
    width: 400px;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
    color: white;
}
.popup-header {
    background-color: #2b2c2f;
    font-size: 16px;
    padding: 8px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    height: 36px;
}
.popup-header span {
    flex: 1;
}
#marker_editor {
    left: 200px;
    top: 100px;
}
#marker_editor_marker_list {
    height: 264px;
    overflow-y: auto;
}
#marker_editor_add {
    display: flex;
    justify-content: space-evenly;
    padding: 8px;
}
#marker_editor_add .box_input {
    align-items: center;
}
.marker_editor_name {
    font-size: 16px;
    padding: 8px;
}
.marker_editor_marker input {
    flex-grow: 1;
}
.marker_editor_marker .button.marker_editor_blend {
    background-image:url(/resources/lerp.png);
    width: 12px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
}
.marker_editor_marker .button.marker_editor_blend.selected {
    background-color: #D38B0D;
}
.marker_editor_marker {
    padding-right: 8px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    height: 36px;
    border-bottom: 1px solid #2b2c2f;
}
#marker_instrument:disabled {
    opacity: 0.4;
}
input.marker_editor_selected {
    flex-grow: 0;
    margin-top: 12px;
    margin-left: 8px;
}
.marker_editor_chip {
    margin: 8px 0 0 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.marker_editor_marker .slider_line {
    margin-top: 12px;
    width: auto;
    flex-grow: 1;
}
.marker_editor_marker .button {
    background-color: #545558;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
    margin-left: 4px;
    margin-top: 7px;
    user-select: none;
}
.marker_editor_marker .box_input {
    margin-top: 4px;
    margin-right: 75px;
}
.marker_editor_marker .box_input select {
    height: 20px;
}
.marker_editor_marker .button.marker_editor_value::after {
    content: "Disabled";
}
.marker_editor_marker .button.enabled {
    background-color: #D38B0D;
}
.marker_editor_marker .button.marker_editor_value.enabled::after {
    content: "Enabled";
}
.marker_editor_marker .padding {
    flex-grow: 1;
}
#instrument_options {
    position: absolute;
    left: 484px;
    top: 49px;
    color: black;
    text-shadow: none;
    z-index: 98;
    width: 0;
    height: 0;
}
#instrument_options_tabs {
    height: 25px;
    display: flex;
}
#instrument_options_tabs div {
    height: 100%;
    background-color: #5d5f66;
    box-sizing: border-box;
    color: white;
    padding: 4px 8px;
    cursor: pointer;
}
#instrument_options_tabs div.selected {
    background-color: #2b2c2f;
    cursor: default;
}
#instrument_options_simple {
    background-color: #2b2c2f;
    padding: 8px;
    padding-right: 0;
    width: calc(160px * 4 + 8px); /* 160px per column */
    height: auto;  /* 42px per row */
    box-sizing: border-box;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
    color: white;
    padding-bottom: 3px;
}
#instrument_options_advanced {
    background-color: #35363a;
    width: 400px;
    height: 372px;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
    color: white;
}
.instrument_options_advanced_row, .instrument_options_synth_row {
    display: flex;
    padding: 8px;
}
.instrument_options_advanced_row:not(:last-child),
.instrument_options_synth_row:not(:last-child) {
    border-bottom: 1px solid #2b2c2f;
}
.instrument_options_advanced_row:first-child,
.instrument_options_synth_row:first-child {
    background-color: #2b2c2f;
}
#instrument_options_advanced_chip, #instrument_options_synth_chip {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
#instrument_options_advanced_chip input {
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
    color: transparent;
}
#instrument_options_advanced_chip .clr-field button {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
}
#instrument_options_synth_wave,
#instrument_options_synth_lfo_graph,
#instrument_options_synth_adsr_graph {
    border: 1px solid #444;
}
#instrument_options_synth_adsr_graph {
    margin-left: 10px;
}
.instrument_options_synth_lfo {
    width: 80%;
    margin-left: 10px;
}
#instrument_options_synth_type-button,
#instrument_options_lfo_target-button,
#instrument_options_synth_filter_type-button {
    width: 100px !important;
    height: 20px !important;
    margin-left: 6px;
    display: inline-block;
}
#instrument_options_synth_filter, #instrument_options_synth_filter_q {
    width: 100%;
    display: flex;    
}
#instrument_options_advanced_title, #instrument_options_synth_title,
.instrument_options_synth_label .instrument_options_synth_label_filter {
    cursor: text;
    font-size: 16px;
    padding-left: 8px;
}
#instrument_options_synth_filter_type-button {
    margin-right: 8px;
    margin-left: 0;
}
.instrument_options_synth_label .instrument_options_synth_label_filter {
    width: 72px !important;
}
.instrument_options_synth_label_q {
    width: 96px !important;
}
#instrument_options_synth_color:hover {
    height: 100%;
    border-radius: 50%;
    cursor: pointer;
}
#instrument_options_synth_lfo_hz {
    width: 54px;
    background-color: #444;
    border: 1px solid #555;
    color: #eee;
    border-radius: 4px;
}
.synth_lfo_hz {
    position: relative;
    float: left;
    display: none;
}
.synth_lfo_hz:after {
    position: absolute;
    right: 0;
    top: 0;
    color: #888;
    content: 'Hz';
    padding-right: 4px;
}
#instrument_options_advanced_title_edit {
    font-size: 12px;
    padding: 1.5px;
    margin-left: 8px;
}
#instrument_options_advanced_title.hidden,
#instrument_options_advanced_title_edit.hidden {
  display: none;
}
#instrument_options_advanced_lock {
  padding-left: 4px;
}
.instrument_options_advanced_spacer, .instrument_options_synth_spacer {
  flex-grow: 1;
}
.instrument_options_advanced_label, .instrument_options_synth_label {
  width: 52px;
  padding-right: 4px;
  text-align: center;
}
#instrument_options_advanced .button,
#instrument_options_synth .button,
#instrument_options .ui-selectmenu-button {
    background-color: #545558;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
    user-select: none;
    border-radius: 0;
}
#instrument_options_advanced .button:not(:first-child),
#instrument_options_advanced .ui-selectmenu-button:not(:first-child) {
    margin-left: 4px;    
}

.instrument_options_advanced_row .button i,
#instrument_options_advanced_eq .button i {
    margin-left: 3px;
    font-size: 10px;
}

#instrument_options_advanced_eq .button, #instrument_options #instrument_options_synth_adsr_e {
  writing-mode: vertical-rl;
  text-orientation: sideways;
  transform: rotate(180deg);
  height: auto;
  width: 20px;
  padding: 6px 0;
  text-align: center;
}
#instrument_options_advanced_eq .instrument_options_advanced_label {
  width: 30px;
  text-align: right;
}
.instrument_options_advanced_eq_row {
    display: flex;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
}
.instrument_options_advanced_row .button.enabled,
.instrument_options_synth_row .button.enabled,
#instrument_options_synth_lfo_select-button.enabled,
#instrument_options_advanced_eq.enabled .button,
#instrument_options_advanced_reverb_select-button.enabled,
#instrument_options_synth_type-button.enabled,
#instrument_options_lfo_target-button.enabled,
#instrument_options_synth_filter_type-button.enabled,
#instrument_options_advanced_distort_select-button.enabled {
    background-color: #D38B0D !important;
}
.instrument_options_advanced_row .slider_line {
  margin-top: 3px;
}
#instrument_options_advanced_eq {
    display: flex;
    padding: 8px;
    border-bottom: 1px solid #2b2c2f;
}
#instrument_options_advanced_eq_sliders {
  flex-grow: 1;
}
.options-disabled {
  pointer-events: none;
  opacity: 50%;
}
.instrument_options_advanced_row #instrument_options_advanced_reverb_select-button,
.instrument_options_advanced_row #instrument_options_advanced_distort_select-button,
.instrument_options_synth_row #instrument_options_synth_lfo_select-button {
  width: 16px !important;
  height: auto !important;
  flex-shrink: 0;
  margin-right: 8px;
  margin-left: 1px !important;
  border-radius: 0;
}
#instrument_options_advanced_reverb_select-button .ui-selectmenu-text,
#instrument_options_advanced_distort_select-button .ui-selectmenu-text,
#instrument_options_synth_lfo_select-button .ui-selectmenu-text {
  display: none;
}

#instrument_options_advanced_reverb_select-button .ui-icon,
#instrument_options_advanced_distort_select-button .ui-icon,
#instrument_options_synth_lfo_select-button .ui-icon,
#instrument_options_synth_type-button .ui-icon,
#instrument_options_lfo_target-button .ui-icon,
#instrument_options_synth_filter_type-button .ui-icon {
  background-image: url(/resources/ui/ui-icons_222222_256x240.png);
  width: 15px;
  height: 19.5px;
  background-position-x: -65px;
  background-position-y: -14px;
  right: 0;
}
#instrument_options_advanced_reverb,
#instrument_options_advanced_distort,
#instrument_options_synth_lfo_e {
  width: 32px;
  flex-shrink: 0;
  margin-left: 0;
}

#bitcrusher_options {
    display: flex;
    flex: 1;
}

#sequencer #instrument_options_bitcrusher_depth-button {
    width: 32px;
    margin-right: 8px;
}

/* TODO: make this better */
.instrument_options_synth_row #instrument_options_synth_lfo_select-button {
    display: inline-block;
    left: -3px;
    top: -1px;
    border-radius: 0;
}
#instrument_options_synth_lfo_e {
    display: inline-block;
}
#instrument_options_synth_lfo_select-button  .ui-icon {
}
#instrument_options_synth_lfo_intensity {
    display: inline;
    width: 100%;
}
.instrument_options_synth_lfo > .slider_line {
    display: inline-block;
    width: 72%;
}
.instrument_options_synth_label_lfo {
    padding: 0;
    text-align: left;
    margin: 0 0 10px;
    font-size: 12px;
    width: 157px !important;
    display: inline-block;
}
.instrument_options_synth_lfo_osc {
    width: 64px;
    position: absolute;
    padding: 0;
    margin: 0;
    display: flex;
}
.lfo_osc_option {
    width: 16px;
    font-size: 10px;
    padding: 0;
    display: inline-flex;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    border: none;
    background-color: #444;
    color: #ccc;
    cursor: pointer;
}
.lfo_osc_selected {
    background-color: #555;
    color: #11ccff;
}
.adsr_disabled {
    pointer-events: none;
    opacity: 50%;
}
/* TODO: clean this up and fix translations */
.slider_line_v {
    width: 6px;
    height: 80%;
    border-right: 1px solid #adb0bd;
    position: relative;
    display: inline-block;
    margin-left: 10px;
}
.slider_line_v > p {
    transform: translate(3px, 50px);
}
.slider_v {
    flex: 1;
    -webkit-appearance: none;
    width: 60px !important;
    height: 10px;
    margin: 0 0;
    transform: rotate(-90deg) translate(14px, -24px);
    background: transparent;
    position: relative;
    left: 0;
    top: 0;
}
#instrument_options_delete.disabled {
  pointer-events: none;
  opacity: 0.4;
}
.slider_line.with_warning {
    border-image: linear-gradient(to right, #adb0bd 70%, red 70%) 1;
}
.slider_center {
    border-right: 1px solid #adb0bd;
    height: 5px;
    position: absolute;
    pointer-events: none;
    top: 4px;
    width: 50%;
}
.options_simple_label {
    width: calc(100% - 8px);
    position: relative;
    margin-top: 0;
    left: 0;
    top: 10px;
    color: #adb0bd;
    border-bottom: 1px solid #adb0bd;
}
.instrument_option {
    height: 32px;
    line-height: 20px;
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 2px;
    color: white;
    width: 148px;
    display: inline-block;
    background-color: #35363a;
}
.custom_synth_create_simple {
    border: 1px dashed #888;
    color: #ddd;
    text-align: center;
    line-height: 32px;
    position: relative;
    top: -1px;
}
#instrument_options_simple:has(.synth_option) > .custom_synth_create_simple {
    top: -12px;  /* TODO: this is a terrible workaround for improper flexbox alignment */
}
.custom_synth_create_simple:hover {
    border: 1px dashed #bbb;
    color: #fff;
    cursor: pointer;
}
.instrument_option span {
    cursor: pointer;
}
.instrument_lock {
    width: 18px;
    height: 18px;
    font-size: 12px;
}
.instrument_name_locked {
    color: #aaa;
}

.instrument_option .chip {
    width: 12px;
    height: 12px;
    float: right;
    margin-top: 4px;
    margin-right: 4px;
    cursor: default;
    border-radius: 50%;
}

.instrument_option .row {
    display: flex;
    height: 12px;
}

.slider_line {
    width: 100%;
    height: 6px;
    border-bottom: 1px solid #adb0bd;
    position: relative;
}

.instrument_option .row .button {
    background-color: #adb0bd;
    border-radius: 2px;
    margin-left: 2px;
    color: black;
    width: 12px;
    height: 12px;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    cursor: pointer;
    user-select: none;
}

#instrument_options_synth {
    background-color: #35363a;
    width: 360px;
    height: 360px;
    box-sizing: border-box;
    box-shadow: 0px 4px 4px -2px rgba(0, 0, 0, 0.75);
    color: white;
}

.instrument_option .row .button.enabled {
    background-color: #D38B0D;
}

input[type=range].slider {
  flex: 1;
  -webkit-appearance: none;
  width: 100%;
  margin: 0px 0;
  height: 12px !important;
  background: transparent;
}
input[type=range].slider:focus,
input[type=range].slider_v:focus {
  outline: none;
}
input[type=range].slider::-webkit-slider-runnable-track,
input[type=range].slider_v::-webkit-slider-runnable-track{
  width: 100%;
  height: 12px;
  cursor: pointer;
  border-radius: 0px;
  border: 0px solid #010101;
}
input[type=range].slider::-webkit-slider-thumb,
input[type=range].slider_v::-webkit-slider-thumb {
  border: 0px solid rgba(0, 30, 0, 0.57);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #adb0bd;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: 0px;
}
input[type=range].slider::-moz-range-track,
input[type=range].slider_v::-moz-range-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  border-radius: 0px;
  border: 0px solid #010101;
}
input[type=range].slider::-moz-range-thumb,
input[type=range].slider_v::-moz-range-thumb {
  border: 0px solid rgba(0, 30, 0, 0.57);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #adb0bd;
  cursor: pointer;
  margin-top: 0px;
}

#user_settings {
    left: 110px;
    top: 60px;
}

.user_settings_row, .user_settings_row input, .user_settings_row label {
    cursor: pointer;    
}

.user_settings_row {
    display: flex;
    padding: 8px;
    cursor: pointer;
    align-items: center;
}

.user_settings_row label {
    flex: 1;
    line-height: 24px;
    padding-left: 8px;
}

#midi_import_content {
    background-color: #35363a;
    padding: 5px;
    overflow-y: auto;
}

#midi_import_table {
    margin-top: 20px;
}

#midi_import_table td {
    padding: 0;
}

#midi_import_subheading {
    color: white;
    padding: 1px;
}

#midi_import_import {
    color: white;
    border: none;
    background-color: #0D47A1;
    border-radius: 2px;
    width: 80px;
    height: 30px;
    cursor: pointer;
}

#wrapper {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.overlay {
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #000000;
    font-size: 300%;
    text-align: center;
    opacity: 60%;
    position: fixed;
    top: 0;
    left: 0;
    color: #fff;
}

@media screen and (orientation: portrait) {

}

/* Landscape orientation */
@media screen and (orientation: landscape) {
}

#tap_to_start {
    display: block;
    padding-top: 20%;
}

@keyframes tap_start {
    0% {
        margin-top: 0;
    }
    100% {
        margin-top: 64px;
    }
}

#start_finger {
    font-size: 64px;
    animation: 0.5s tap_start infinite alternate-reverse ease-in-out;
}

#mobile_selection_options {
    position: absolute;
    right: 30px;
    top: 70px;
    z-index: 500;
}

.mobile_option {
    color: #d7d7d7;
    width: 48px;
    height: 48px;
    font-size: 36px;
    text-align: center;
    margin-top: 5px;
    background-color: #2b2c2f;
    padding: 5px;
    border-radius: 50%;
}

.mobile_option i {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#mobile_delete_selection {
    color: #aa0000;
}

#sequence_bar_info {
    display: inline-block;
}

@keyframes scaleIn {
    0% {
        scale: 0;
    }
    100% {
        scale: 100%;
    }
}

#mobile_select_indicator {
    width: 50px;
    height: 50px;
    background-color: #aaaaaa;
    opacity: 0.7;
    border: 1px solid #888888;
    position: absolute;
    z-index: 500;
    animation: scaleIn 100ms;
}

/* Selectors for small viewports */

@media (max-width: 25cm) {
    /* Hide some labels that can easily be figured out by the user */
    #instrument_select_label {
        display: none;
        padding-left: 0;
    }

    #sequence_bar_info {
        display: none;
    }
}

.mobile_btn_round {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    border: none;
    margin-left: 5px;
    touch-action: manipulation;
}

.mobile_btn_container {
    display: inline-block;
}

#mobile_resize_handle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #c8c8c8;
    position: absolute;
    z-index: 500;
}

@keyframes mobile_view_in {
    0% {
        top: 100%;
    }
    100% {
        top: 25%;
    }
}

@keyframes mobile_view_out {
    0% {
        top: 25%;
    }
    100% {
        top: 100%;
    }
}

@keyframes header_in {
    0% {
        top: -100%;
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    100% {
        top: 32px;
        opacity: 1;
    }
}

@keyframes header_out {
    100% {
        top: -100%;
        opacity: 0;
    }
    75% {
        opacity: 0;
    }
    0% {
        top: 32px;
        opacity: 1;
    }
}

#mobile_view_modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    width: 100%;
    height: 75%;
    top: 25%;
    animation: mobile_view_in 400ms;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #2c5aa1;
}

#mobile_view_modal.hidden {
    animation: mobile_view_out 400ms ease-out;
    animation-fill-mode: forwards;
}

#mobile_view_modal.shown {
    animation: mobile_view_in 400ms ease-out;
    animation-fill-mode: forwards;
}

#view_vignette {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
    box-shadow: inset 0 -50px 50px -10px #2c5aa1;
    z-index: 1999;
    border-radius: inherit;
}

#darken {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.6;
}

/* setting the width is a stupid hack to fix the animation
 starting on page load */
@keyframes darken_in {
    0% {
        opacity: 0;
        display: none;
        width: 100%;
    }
    100% {
        opacity: 0.6;
        display: block;
        width: 100%;
    }
}

@keyframes darken_out {
    0% {
        opacity: 0.6;
        display: block;
        width: 100%;
    }
    99.9% {
        width: 100%;
    }
    100% {
        opacity: 0;
        display: none;
        width: 0;
    }
}

#darken {
    display: none;
}

#darken.shown {
    animation: darken_in 400ms ease-in;
    animation-fill-mode: forwards;
}

#darken.hidden {
    animation: darken_out 400ms ease-out;
    animation-fill-mode: forwards;
}

#mobile_view_close {
    position: absolute;
    right: 0;
    top: 0;
    color: #ffffff9c;
    margin-right: 15px;
    margin-top: 15px;
    font-size: 20px;
}

#mobile_menu_btn {
    position: relative;
    z-index: 998;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background-color: #2c5aa1;
    background-image: url("/resources/icon.png");
    background-size: 44px 44px;
    background-repeat: no-repeat;
    background-position: 2px 2px;
    border-bottom-left-radius: 5px;
}

#mobile_menu {
    position: fixed;
    width: max-content;
    padding-right: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2c5aa1;
    border-radius: 10px;
    z-index: 1004;
}

#mobile_menu.hidden {
    top: -200%;
    animation: header_out 400ms ease-in;
}

#mobile_menu.shown {
    top: 32px;
    animation: header_in 400ms ease-out;
}

#mobile_menu_header {
    border-radius: inherit;
    display: flex;
    flex-direction: row;
}

#mobile_icon {
    width: 64px;
    height: 64px;
    background-color: #2c5aa1;
    background-image: url("/resources/icon.png");
    background-size: 64px 64px;
    background-repeat: no-repeat;
    border-radius: inherit;
}

#mobile_site_desc {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.23);
}

#mobile_title {
    font-size: 22px;
    color: #ffffff;
}

#mobile_subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

#mobile_menu_item_container {
    display: flex;
    align-items: center;
    flex-flow: column;
}

.mobile_menu_item {
    height: 24px;
    font-size: 20px;
    color: #ffffff;
    display: flex;
    text-decoration: none;
    align-items: stretch;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    justify-content: center;
}

.mobile_menu_item i {
    margin-left: 10px;
    opacity: 0.8;
}

#mobile_view_content {
    padding: 10px;
    height: 100%;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.mobile_modal_title {
    font-size: 24px;
}

.sequences_container {
    display: flex;
    flex-wrap: wrap;
    height: calc(90% - 128px);
    overflow: auto;
}

.sequences_container::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.sequence_item {
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 5px;
    float: left;
}

.sequence_item img {
    border-radius: inherit;
}

.sequence_info {
    position: absolute;
    bottom: 0;
    width: 95%;
    height: 128px;
    background-color: #5f5f5f;
    z-index: 2000;
    margin-bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 10px 2px #3f3f3f;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
}

.sequence_info_right {
    width: 60%
}

.sequence_info h2, .sequence_info span, .sequence_info button {
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    margin-top: 5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.4);
    color: #ffffff;
}

.sequence_info .sequence_title {
    font-size: 20px;
}

.sequence_info .sequence_author {
    font-size: 14px;
}

.sequence_info .thumb_large {
    height: 90%;
    aspect-ratio: 1/1;
    border-radius: 5px;
    margin: auto 10px auto 6px;
}

.sequence_info .play_button {
    right: 0;
    bottom: 0;
    position: absolute;
    margin-right: 10px;
    margin-bottom: 10px;
    width: 72px;
    height: 28px;
    border: none;
    border-radius: 5px;
    background-color: #3d7bdb;
    font: inherit;
    font-size: 14px;
}

.sequence_info .play_button i {
    margin-right: 5px;
}


