@font-face {
    font-family: 'BebasNeueRegular';
    src: url('../assets/fonts/BebasNeue-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
	--obs-blue: #191B26;
	--obs-blue-hov: #2b2f42;
	--blue3: #009AE2;
	--dark-blue: #0e1016;
	--btn: #111;
	--btn-border: inset 0px 0px 0px 2px #009AE2;
	--btn-blue: #018ffd;
	--btn-blue-hov: #0083e8;
	--bebas: 100 24px/normal 'Bebas Neue', sans-serif;
	--fontdef: arial,sans-serif;
	--font18: 18px;
	--font16: 16px;
	--font15: 15px;
	--font14: 14px;
	--font13: 13px;
	--font12: 12px;
	--font11: 11px;
	--font9: 9px;
	--font8: 8px;
	--btn-font: 11px;
	--em1: 1em;
	--range-track-height: 8px;
	--range-track-radius: 3px;
	--range-track-border: 0px solid #000101;
	--range-thumb-border: 0px solid #000;
	--range-thumb-height: 10px;
	--range-thumb-width: 15px;
	--range-thumb-radius: 3px;
	--range-thumb-color: #008dce;
	--range-cursor: pointer;
}

body {
	color:#fff;
	background: var(--obs-blue);
	font-family: var(--fontdef);
	margin: 0 !important;
	padding: 0 !important;
}
.playground-wrap {
	width: 800px;
	margin: auto;
	border: 8px solid #111;
}
a {
	color:#0095dd;
	text-decoration:none;
}
a:hover, a:focus {
	color:#2255aa;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	padding: 0;
	margin: 0;
}
.center {text-align: center;}

iframe {
	border: 0;
	max-width: 100%;
	padding: 0;
	margin: 0;
	display: block;
}

iframe#remotevid {
	margin: 0 !important;
	padding: 0 !important;
}
.fbvid iframe#remotevid {
	width: 450px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
	line-height: normal;
}

label {
	font-size: var(--font9);
}
small {
	font-size: 11px;
}

ul.nobullet, 
ul.nobullet li, 
nav ul, 
nav li, 
.ticker-ads ul,
.ticker-ads ul li {
	list-style: none;
	padding: 0;
	margin: 0;
}

hr {
	border: 0;
	padding: 2px;
	background: var(--obs-blue);
}
*:focus {
    outline: none !important;
}

.relative {position: relative;}

/*flex*/
.flex {
	display: flex;
}
.flexcol {
	flex-direction: column;
}
.flexitem-center, .flexmid {align-items: center;}
.flexcenter {justify-content: center;}
.flexeven {justify-content: space-evenly;}
.flexspace {justify-content: space-between;}
.flexaround {justify-content: space-around;}
.flexwrap {flex-wrap: wrap;}

.gap2 {gap: 2px;}
.gap5 {gap: 5px;}
.gap10 {gap: 10px;}
.gap15 {gap: 15px;}
.gap20 {gap: 20px;}
.gap25 {gap: 25px;}
.gap30 {gap: 30px;}
.gap35 {gap: 35px;}
.gap40 {gap: 40px;}
.gap45 {gap: 45px;}
.gap55 {gap: 55px;}
.gap100 {gap: 100px;}

/*grid*/
.grid {display: grid;}
.grid2 {grid-template-columns: auto auto;}
.grid3 {grid-template-columns: auto auto auto;}
.grid4 {grid-template-columns: auto auto auto auto;} 
.grid5 {grid-template-columns: auto auto auto auto auto;} 
.grid6 {grid-template-columns: auto auto auto auto auto auto;}
.grid7 {grid-template-columns: auto auto auto auto auto auto auto;}
.grid8 {grid-template-columns: auto auto auto auto auto auto auto auto;}

.colgap5 {column-gap: 5px;}
.rowgap5 {row-gap: 5px;}

.valign {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

/*align*/
.align-left {
	text-align: left;
}


/*margins*/
.mb2 {margin-bottom: 2px;}
.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}

.mt5 {margin-top: 5px;}
.mt10 {margin-top: 10px;}
.mt15 {margin-top: 15px;}
.mt20 {margin-top: 20px;}
.mt25 {margin-top: 25px;}
.mt30 {margin-top: 30px;}
.mt35 {margin-top: 35px;}

.pad5 {padding: 5px;}
.pad8 {padding: 8px;}
.pad10 {padding: 10px;}

.pt5 {padding-top: 5px;}
.pt10 {padding-top: 10px;}
.pt15 {padding-top: 15px;}

/*width*/
.width100 {width: 100px;}
.width120 {width: 120px;}
.width140 {width: 140px;}
.width150 {width: 150px;}
.width160 {width: 160px;}
.width170 {width: 170px;}
.width180 {width: 180px;}
.width190 {width: 190px;}
.width200 {width: 200px;}

.width_30 {width: 30%;}
.width_20 {width: 20%;}
.width_60 {width: 60%;}
.width_70 {width: 70%;}



.alert {
	padding: 8px; 
	border-radius: 4px;
	font: var(--bebas);
}
.alert-yellow {
	background: #e8e1ae;
	color: #383523 !important;
}
.alert-blue {
	background: #00ffff !important;
	color: #007c7c !important;
}
.alert-orange {
	background: #ffcb8c !important;
	color: #111;
}
.alert-success {
	background: #8DF7D0;
	color: #111;
}
.alert.small {
	font-family: var(--fontdef);
	font-size: var(--font9);
}

.clearfix::after {
content: "";
clear: both;
display: table;
}

span.sep {
    width: 2px;
	background: var(--obs-blue);
	margin: 0 16px;
}

span.hsep {
    height: 2px;
	margin: 6px 0;
	background: var(--obs-blue);
}
span.hsep.sep2 {background: #aaa;}

label {
	font-size: 1em;
}



/*JQ UI*/
.ui-tooltip {
	background: #111;
	color: #eee;
	font-size: .9em;
	border: 0 !important;
	max-width: 120px;
}

.mdi-help-circle {
	color: #ffcc00;
	font-size: 1.2em;
}



/* FORM GLOBAL
----------------------*/
input[type="text"], input[type="number"], input.jscolor, textarea {
	border: 0;
	border-radius: 4px;
	background: var(--obs-blue-hov);
	padding: 6px 8px;
	color: #ddd;
	font-size: 1.1em;
}
input[type="number"] {
	max-width: 60px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	opacity: 1;
	padding: 0 !important;
}

/*number field replace*/
.numfield {
	position: relative;
}

input.altnum::-webkit-inner-spin-button,
input.altnum::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input.altnum {
	-moz-appearance: textfield;
}
.numfield input {
	width: 65px;
	height: 30px;
	float: left;
	display: block;
	padding: 0;
	margin: 0;
	padding-left: 20px;
	border: 1px solid var(--dark-blue);
}
.numfield input:focus {
	outline: 0;
}
.numfield-nav {
	float: left;
	position: relative;
	height: 20px;
}
.numfield-button {
	position: relative;
	cursor: default;
	border-left: 1px solid var(--dark-blue);
	width: 20px;
	text-align: center;
	color: #ddd;
	font-size: 1em;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.numfield-button.numfield-up {
	position: absolute;
	height: 50%;
	top: 0;
	border-bottom: 1px solid var(--dark-blue);
}
.numfield-button.numfield-down {
	position: absolute;
	bottom: -1px;
	height: 50%;
}


/* BUTTONS */
button, .btn, .btnblue {
	border: 0;
	border-radius: 4px;
	padding: 4px 12px;
	background: var(--btn-blue);
	color: #fff;
	cursor: pointer;
	text-align: center;
}
button:hover, .btn:hover, .btnblue:hover {
	background: var(--btn-blue-hov);
}

.btn-active {
	box-shadow: var(--btn-border);
}
.pad20 {padding: 20px;}

.btnblack {
	font-size: 1em;
	display: inline-block;
	background: var(--obs-blue);
	padding: 3px 8px;
	cursor: default;
	border-radius: 4px;
	text-align: center;
}
.btnblack:hover {
	box-shadow: var(--btn-border);
}

button:active, .btnblue:active,
.btnblack:active {background: #ffcc00;}

.btn-orange {background: #ff7200;}

.btnfat {
	padding: 8px 22px;
	font-size: 1.3em;
	width: 100%;
}
.btnwide {
	width: 100%;
}
.btnsmall {
	padding: 2px 6px;
	font-size: .7em;
	line-height: normal;
}

.radio label {
	display: block;
}
.radio span {
	font-size: var(--em1);
	display: block;
	cursor: pointer;
	border: 1px solid #eee;
	padding: 4px 6px;
	border-radius: 4px;
	line-height: normal;
}
.radio input {
	opacity: 0;
	position: absolute;
	left: -1000px;
}
.radio input:checked + span {
	background: #ffcc00;
	color: #111;
	font-weight: 700;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 16px;
	font-size: .8em;
}
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}
.switch .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #aaa;
	-webkit-transition: .4s;
	transition: .4s;
}
.switch .slider::before {
	position: absolute;
	content: "";
	height: 12px;
	width: 26px;
	left: 2px;
	bottom: 2px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}
.switch input:checked + .slider {
	background-color: #2196F3;
}

.switch input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.switch .slider.round {
	border-radius: 4px;
}

.switch .slider.round:before {
	border-radius: 4px;
}

.switch.big {
	width: 120px;
	height: 32px;
}
.switch.big .slider::before {
	height: 28px;
	width: 52px;
}
.switch.big input:checked + .slider:before {
  -webkit-transform: translateX(64px);
  -ms-transform: translateX(64px);
  transform: translateX(64px);
}

/*range slider*/
input[type=range]:not(.slider-component) {
	-webkit-appearance: none;
	margin: 2px 0;
	width: 100%;
	padding: 3px 6px;
	background: var(--obs-blue-hov);
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:not(.slider-component)::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--range-track-height);
  cursor: var(--range-cursor);
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: var(--obs-blue);
  border-radius: var(--range-track-radius);
  border: var(--range-track-border);
}
input[type=range]:not(.slider-component)::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: var(--range-thumb-border);
  height: var(--range-thumb-height);
  width: var(--range-thumb-width);
  border-radius: var(--range-thumb-radius);
  background: var(--range-thumb-color);
  cursor: var(--range-cursor);
  -webkit-appearance: none;
  margin-top: -3.6px;
}
input[type=range]:not(.slider-component):focus::-webkit-slider-runnable-track {
  background: #ac51b5;
}
/*fox*/
input[type=range]:not(.slider-component)::-moz-range-track {
  width: 100%;
  height: var(--range-track-height);
  cursor: var(--range-cursor);
  animate: 0.2s;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  background: var(--obs-blue);
  border-radius: var(--range-track-radius);
  border: var(--range-track-border);
}
input[type=range]:not(.slider-component)::-moz-range-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: var(--range-thumb-border);
  height: var(--range-thumb-height);
  width: var(--range-thumb-width);
  border-radius: var(--range-thumb-radius);
  background: var(--range-thumb-color);
  cursor: var(--range-cursor);
}

/*win exp*/
input[type=range]:not(.slider-component)::-ms-track {
  width: 100%;
  height: var(--range-track-height);
  cursor: var(--range-cursor);
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  border-width: 39px 0;
  color: transparent;
}
input[type=range]:not(.slider-component)::-ms-fill-lower {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]:not(.slider-component)::-ms-fill-upper {
  background: #ac51b5;
  border: 0px solid #000101;
  border-radius: 50px;
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type=range]:not(.slider-component)::-ms-thumb {
  box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
  border: 0px solid #000000;
  height: 20px;
  width: 39px;
  border-radius: 7px;
  background: #65001c;
  cursor: var(--range-cursor);
}
input[type=range]:not(.slider-component):focus::-ms-fill-lower {
  background: #ac51b5;
}
input[type=range]:not(.slider-component):focus::-ms-fill-upper {
  background: #ac51b5;
}


.rotval::after {
  content: "\00B0";
}

.button {
	display: flex;
	border-radius: 5px;
	background: var(--obs-blue);
	padding: 8px 12px;
	font-size: var(--font9);
	color: #fff;
}
.button:hover {
	background: var(--obs-blue-hov);
	box-shadow: var(--btn-border);
}


/* SCREEN
--------------------------*/
.screen-drag-handle {
	background: transparent;
	height: 100px;
	position: absolute;
	z-index: 5;
	top:0;
	left:0;
	right:0;
	cursor: move;
}

.screen-wrap {
	position: relative;
	overflow: hidden;
	background: transparent;
	background-size: contain;
	mask-size: cover;
}
.screenbg {
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	z-index: -1;
	background: #111;
	background-size: cover !important;
}
.screenbg video {
	width: 800px;
	height: 450px;
	filter: opacity(0.4);
}

/*TEXT LAYER*/
.textbox {
	position: absolute;
	left: 10px;
	right: 10px;
	z-index: 6;
	background: rgba(0,0,0,0.9);
	color: #fff;
	border-radius: 6px;
	border: 0;
}
.screen-wrap .inner {
	padding: 12px;
	position: relative;
}
small, .jp-artist {display: block;}
.textbox .jp-title {
	text-transform: uppercase;
	font-weight: 900;
	font-size: 1.5em;
}
.textbox .jp-text {
	font-size: 1em;
	text-transform: uppercase;
}
.textbox.textleft {
	width: 380px;
	right: initial;
}
.screen-wrap .text-layer-close {
	position: absolute;
	right: 5px;
	top: 1px;
	color: #ddd;
	font-size: 1em;
	cursor: pointer;
}

/*PLAYER BUTTON BAR*/
.screen-controls-wrap {
	background: var(--obs-blue);
}
.time-bar {
	color: #7c829b;
	padding: 2px 8px;
}
.progress-bar {
	background: var(--obs-blue-hov);
	height: 8px;
}
.progress-bar .seek-bar {
	width: 100%;
}
.progress-bar .play-bar {
	background: #c3e5de;
	height: 8px;
	width: 0%;
}
.player-btn-bar {
	height: 42px;
}
.player-control-group {
	padding-bottom: 5px;
	padding-left: 10px;
}
.play-controls button {
	font-size: 1em;
	width: 40px;
	line-height: normal;
}
.play-controls button.playing {
	background: yellow;
	color: #111;
}
.play-controls button.paused {
	background: red;
	color: #fff;
}
.play-controls .volume {
	background: var(--obs-blue-hov);
	padding: 2px 5px;
	border-radius: 4px;
}
.play-controls input[type="range"] {
	border-radius: 0;
	margin: 0;
}
.play-controls input[type=range]:not(.slider-component)::-webkit-slider-runnable-track {
  box-shadow: none;
  border-radius: 0;
  border: 0px;
}
.play-controls input[type=range]:not(.slider-component)::-webkit-slider-thumb {
  box-shadow: 0px;
  width: 10px;
  border-radius: 2px;
}

.pip-wrap {
	display: inline-block;
	box-sizing: border-box;
}
.guest-wrap iframe {
	display: block;
}





/*OBS browser window
-------------------------*/
.add-form {
	background: #0e1016;
	padding: 10px;
	color: #ddd;
	position: fixed;
	bottom: 0px;
	right: 0px;
	left: 0px;
	z-index: 5;
	font-size: var(--em1);
}
.add-form button {
	background: var(--obs-blue);
	color: #fff;
	border: 0;
	border-radius: 5px;
	padding: 4px 8px;
	font-size: var(--font9);
	font-weight: 100;
}
.add-form button:hover {
	background: var(--obs-blue-hov);
	box-shadow: var(--btn-border);
}
.add-form textarea, .add-form input[type="text"] {
	background: var(--obs-blue);
	color: #fff;
	padding: 4px;
	border: 0;
	border-radius: 5px;
	width: 180px;
	font-size: var(--em1);
}
.add-form textarea {
	height: 30px;
}
.add-form .subs {
	width: 1240px;
	height: 60px;
	margin-top: 5px;
	display: block;
}
.add-form label {
	display: block;
}
.add-form input[type="number"] {
	width: 80px;
	background: var(--obs-blue);
	color: #fff;
	border: 0;
	border-radius: 4px;
	padding: 4px;
	font-size: var(--em1);
}
.add-form #submit {
	background: #23476a;
	font-weight: 700;
}

.color-pick {background: var(--obs-blue); padding: 2px;}
.color-pick span {
	width: 12px;
	height: 12px;
	position: relative;
	border-radius: 100%;
	padding: 2px;
	text-align: center;
}
span.cyan, .screen-wrap.cyan .textbox {background: #00FFFFe0; color: #111;}
span.magenta, .screen-wrap.magenta .textbox {background: #FF00FFe0; color: #fff;}
span.black, .screen-wrap.black .textbox {background: #111111e0; color: #fff;}
span.white, .screen-wrap.white .textbox {background: #ffffffe0; color: #111;}
span.green, .screen-wrap.green .textbox {background: #069e9be0; color: #fff;}
span.orange, .screen-wrap.orange .textbox {background: #f96c00e0; color: #111;}
span.blue, .screen-wrap.blue .textbox {background: #0065a0e0; color: #fff;}
span.yellow, .screen-wrap.yellow .textbox {background: #ffcc00e0; color: #111;}

.color-pick span input[type="radio"] + label {
	border-radius: 100%;
	display: block;
	vertical-align: middle;
	transition: all 250ms ease;
	width: 10px;
	height: 10px;
	margin: 1px 0 0 1px;
}
.color-pick input {
	opacity: 0;
	position: absolute;
	z-index: 2;
	top: -5px;
	left: -5px;
}
.color-pick span input[type="radio"]:checked + label {
	background: #ff0000;
}



.section.bottom .chosen-container,
.panel .chosen-container {
	min-width: 120px !important;
	font-size: .9em;
}
.add-form .chosen-container-active.chosen-with-drop .chosen-single, 
.add-form .chosen-container-single .chosen-single {
	background-image: none !important;
	background: var(--obs-blue);
	box-shadow: none;
	border-color: #111;
}
.add-form .chosen-container span:hover {
	border: 0 !important;
	box-shadow: none !important;
}
.add-form .chosen-container .chosen-drop {
	background: var(--obs-blue);
	border: none;
}
.add-form .chosen-container .chosen-drop ul.chosen-results li.active-result {
	color: #ddd;
}
.add-form .chosen-drop li.disabled-result[data-option-array-index="0"] {display: none;}

.top-drop .chosen-container .chosen-drop {
    border-bottom: 0;
    border-top: 1px solid #aaa;
    top: auto;
    bottom: 40px;
}

.top-drop .chosen-container.chosen-with-drop .chosen-single {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    background-image: none;
}

.top-drop .chosen-container.chosen-with-drop .chosen-drop {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: none;
    margin-bottom: -16px;
}
.add-form .chosen-container a.chosen-single {
	height: 20px;
}
.add-form .chosen-container a.chosen-single span {
	padding: 0;
}



/*slide panel*/
.panel-wrap {
	position: absolute; 
	bottom: 0; 
	left: 150px; 
	right: 0;
	z-index: 999;
}
.panel-wrap .open {
	background: #632cbd !important;
	font-weight: 700 !important;
}
.panel {
	display: none;
	background: #012744;
}
.panel .inner {
	padding: 20px;
	height: 250px;
}
.panel textarea, .panel input[type="text"] {
	background: #003e6b;
}
.panel.ticker-panel textarea {
	height: 100px;
	width: 95%;
}
.panel.add-media textarea {
	width: 95%;
	height: 30px;
}

.screenbg-thumb {
	height: 120px;
	overflow: hidden;
	overflow-y: auto;
}

.add-media .fields {
	width: 320px;
}


/** SECTION BOTTOM
---------------------------*/

/* CONTROLS
------------------------*/
.mh {
	overflow: hidden;
	overflow-y: auto;
}
.mh100 {
	height: 100px;
}



.section.bottom {
	background: var(--dark-blue);
}
.section .col {
	width: 100%;
}
.plist-col, .sfx-col, .efx-col {
	max-height: 25em;
	overflow: hidden;
}
.section .col.efx-col {
	width: 120%;
}
.section .col.sfx-col {
	width: 45%;
}
.section .col.list-col {
	width: 60%;
}
.section.bottom docktitle, .panel docktitle {
	margin-bottom: 5px;
}

/*playlist column*/
.screen-player-controls {
	background: #191B26;
}

.plist-col {
	background: #03213f;
	color: #fff;
}
.plist-col ul.list {
	height: 290px;
	overflow: hidden;
	overflow-y: auto;
}
.plist-col ul.list li {
	line-height: normal;
	border: 0;
	padding: 0;
	margin: 0;
}
.plist-col ul.list li:nth-child(odd) {
	background: #042b51 !important;
}
.plist-col ul.list li:hover {
	background: #043563;
}
.plist-col ul.list li.playing {
	background: yellow !important;
	color: #111;
}
.plist-col ul.list li > .inner {
	padding: 0 6px 0 10px;
}
.plist-col span.item-title {
	display: block;
	font-size: 11px;
	font-family: arial;
	line-height: normal;
	font-weight: 700;
	width: 100%;
	padding: 10px 0;
	cursor: pointer;
}
.plist-col span.item-title:hover {
	color: #8ee6ff; 
}
.plist-col .actionbtn {
	font-size: 1.4em;
}
.plist-col ul.list li a.itemload {
	display: block !important;
	float: none !important;
	text-transform: uppercase;
}

.plist-col ul.list li.active {
	background: #c4edf2;
}
.plist-col ul.list li small {
	font-size: 1em;
	font-weight: 100;
	text-transform: initial;
}
.plist-col ul.list li .action {
	display: block;
	clear: both;
	margin-bottom: 5px;
	padding: 0 5px;
	text-align: center;
}
.plist-col ul.list li .action a {
	padding: 1px 6px !important;
	margin: 0 !important;
	border: 0 !important;
	float: none !important;
	display: inline-block !important;
	background: #111;
	color: #eee !important;
	border-radius: 3px;
	margin-left: 4px !important;
	text-transform: uppercase;
}
.plist-col ul.list li .action a:hover {
	background: #ffcc00;
	color: #111 !important;
}
.plist-col ul.list .listitem span {
	width: 100%;
	display: block;
}
.plist-col ul.list span.thumb {
	width: 80px;
	overflow: hidden;
}
.plist-col ul.list span.thumb img {
	border-radius: 5px;
}


/*list search*/
.plist-col .search-field input {
	border: 0;
	padding: 2px;
	background: #eee;
	width: 100%;
	font-size: 1.2em;
	color: #111;
	border-radius: 0;
}
.plist-col .search-field button {
	border-radius: 0;
}
.plist-col .search-field button:hover {
	background: #ffcc00;
}

/*playlist chosen*/
.plist-col .chosen-container .chosen-single span,
.plist-col .chosen-container .chosen-drop ul.chosen-results li {
	font-size: 1.2em;
	text-transform: capitalize;
	font-weight: 700;
}
.chosen-btn-add, .chosen-btn-del {
	width: 120px;
	border-radius: 4px;
	color: #fff;
	font-weight: 100 !important;
	font-size: 11px !important;
	display: inline-block !important;
	margin-top: 20px !important;
}
.chosen-btn-add {
	background: #17b283;
}
.chosen-btn-del {
	background: #ff6600;
}




/*SFX*/
.sfx {
	background: #111;
	overflow-y: auto;
	height: 200px;
}

.sfx button {
	padding: 4px 10px; 
	background: #222; 
	border: 1px solid #333; 
	text-transform: uppercase; 
	color: #eee; 
	width: 100%; 
	border-radius: 4px;
	font-size: .9em;
}
.sfx button:hover {background: #333;}
.sfx button.stop {
	width: 50px;
}

#sfx .playing {
	background: #ffcc00;
	color: #111;
}

docktitle {
	color: #ff7f00;
	text-transform: uppercase;
	font-size: .9em;
	text-align: center;
	display: block;
}

.tool-group input[type="range"] {
	width: 12em;
}


.screen-floater {
	position: absolute;
	z-index: 2;
}



/*DRAW CANVAS*/
#canvas {
	background: none !important;
	background: transparent !important;
	background-image: none !important;
	background-color: none !important;
	position: absolute;
	z-index: 4;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}
canvas.sfx-canvas {
	display: none !important;
}


/*ANIMATIONS*/
.splode {width: 100px; height: 100px;}
.beer-mug, .right-align {
	top: 200px;
	right: 20px;
	left: initial;
}
.astronaut {
	top: 200px;
	left: 450px;
}
.typecadence {
	background: rgba(0,0,0,0.6);
	padding: 4px 16px;
	top: 30%;
	font-size: 32px;
	font-family: georgia;
}

canvas#anim-confetti {
  overflow-y: hidden;
  overflow-x: hidden;
  width: 0;
  height: 0;
  margin: 0;
  position: absolute;
  z-index: 4;
}

#anim-confetti-cone {
	position: absolute; 
	z-index:4;
	width: 1020px;
	height: 574px;
}

div[class*="gtext"] {font-weight: 700; text-transform: uppercase;}

.conf0{fill:#FC6394;}
.conf1{fill:#EF3C8A;}
.conf2{fill:#5ADAEA;}
.conf3{fill:#974CBE;}
.conf4{fill:#3CBECD;}
.conf5{fill:#813BBE;}
.conf6{fill:#F9B732;}
.conf7{display:none;fill:none;stroke:#000000;stroke-miterlimit:10;}
.conf8{fill:none;stroke:#F9B732;stroke-width:9;stroke-linecap:round;stroke-miterlimit:10;}


.confetti-cone {
  transform-origin: 200px 50px;
  animation:confetti-cone1 1.2s ease infinite;
}
@keyframes confetti-cone1{
0%{
   transform:translate(40px, 95px)  rotate(45deg) scale(1, 1);
}
15%{
   transform:translate(10px, 145px)  rotate(45deg) scale(1.1, 0.85);

}
100%{
  transform:translate(40px, 105px)  rotate(45deg) scale(1, 1);
}
  }

#yellow-strip {
  fill:none;
  stroke:#F9B732;
  stroke-width:9;
  stroke-linecap:round;
  stroke-miterlimit:10;
  animation: confdash 1.2s ease infinite;
}


@keyframes confdash {
0%{
  stroke-dasharray:1000;
  stroke-dashoffset:500;
  transform:translate(-30px, 30px);
  opacity:0;
}
2%{
  stroke-dasharray:1000;
  stroke-dashoffset:500;
  transform:translate(-30px, 30px);
  opacity:0;
}
35%{
stroke-dasharray:1000;
stroke-dashoffset:900;
transform:translate(-2px, 0px);
opacity:1;
}

85%{
  stroke-dasharray:1000;
  stroke-dashoffset:1000;
  transform:translate(1px, -5px);
  opacity:1;
}
  90%{
  stroke-dashoffset:1000;
   stroke-dashoffset:1000;
  transform:translate(2px, -8px);
  opacity:0;
}
  100%{
  stroke-dashoffset:1000;
   stroke-dashoffset:500;
  transform:translate(2px, -8px);
  opacity:0;
}
}



#a2{
  transform-origin: 310.9px 241px;
  animation: confa 1.2s ease-out infinite;
}

#a1
{transform-origin: 276px 246px;
  animation: confa 1.2s ease-out infinite;
}

@keyframes confa {
0%{
  opacity:0;
  transform: translate(-30px, 20px) rotate(0);
}
15%{
  opacity:1;
  transform: translate(25px, -10px) rotate(60deg);
}
80%{
  opacity:1;
  transform: translate(33px, -18px) rotate(180deg);
}
100%{
  opacity:0;
  transform: translate(37px, -23px) scale(0.5)rotate(230deg);
}
}


#b1{
  transform-origin: 195.2px 232.6px;
  animation: confb 1.2s ease-out infinite;
}

#b2{
  transform-origin: 230.8px 219.8px;
  animation: confb 1.2s ease-out infinite;
}
#b3 {transform-origin: 222.8px 190.6px;
  animation: confb 1.2s ease-out infinite;
}

#b4 {transform-origin: 262px 188.5px;
  animation: confb 1.2s ease-out infinite;
}

#b5 {transform-origin: 282.3px 170.6px;
  animation: confb 1.2s ease-out infinite;
}


@keyframes confb {
0%{
  opacity:0;
  transform: translate(-30px, 20px) rotate(0);
}
12%{
  opacity:1;
  transform: translate(25px, -10px) rotate(60deg);
}
76%{
  opacity:1;
  transform: translate(33px, -18px) rotate(180deg);
}
100%{
  opacity:0;
  transform: translate(37px, -23px) scale(0.5) rotate(240deg);
}
}

#c1 {transform-origin: 174.8px 183.4px;
  animation: confc 1.2s ease-out infinite;
}
#c2{
  transform-origin: 178.9px 156.2px;
  animation: confc 1.2s ease-out infinite;
}

#c3{
  transform-origin: 206.7px 140px;
  animation: confc 1.2s ease-out infinite;
}

#c4{
  transform-origin: 213.5px 120.2px;
  animation: confc 1.2s ease-out infinite;
}

@keyframes confc {
0%{
  opacity:0.7;
  transform: translate(-30px, 20px) rotate(0);
}
18%{
  opacity:1;
  transform: translate(5px, -10px) rotate(60deg);
}
76%{
  opacity:1;
  transform: translate(13px, -18px) rotate(180deg);
}
100%{
  opacity:0;
  transform: translate(17px, -23px) scale(0.5) rotate(230deg);
}
}

#d1{
  transform-origin: 127px 176px;
  animation: confd 1.2s ease-out infinite;
}
#d2 {transform-origin: 133px 118px;
  animation: confd 1.2s ease-out infinite;
}
#d3{ transform-origin: 152px 100px;
  animation: confd 1.2s ease-out infinite;
}

@keyframes confd {
0%{
  opacity:0.7;
  transform: translate(-20px, 20px) rotate(0);
}
18%{
  opacity:1;
  transform: translate(-5px, -10px) rotate(60deg);
}
76%{
  opacity:1;
  transform: translate(-8px, -18px) rotate(180deg);
}
100%{
  opacity:0;
  transform: translate(-10px, -23px) scale(0.5) rotate(230deg);
}
}



/*ticker*/
.ticker {
	top: 620px;
	left: 10px;
	right: 10px;
	z-index: 3;
	box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);
	overflow: hidden;
	display: flex;
	line-height: normal;
}
.ticker ul, .ticker li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ticker .title {
	box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);
	color: #fff;
	font-size: 1.6em;
	font-family: BebasNeueRegular;
	font-weight: 100 !important;
	letter-spacing: 1px;
}
.ticker .title span {
	padding: 6px;
	white-space: nowrap;
}
.ticker .txt {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	font-size: 1.5em;
	font-family: BebasNeueRegular;
	font-weight: 100 !important;
}
#ticker_preview li, #ticker_preview .title span {
	line-height: 30px !important;
	font-size: var(--em1);
}
/*ticker style choices*/
.ticker.alien {
	background: #b2ff00;
	color: #567019;
	font-weight: 700;
}
.ticker.alien .title {
	background: #00efeb;
	color: #fff;
}

.ticker.newsy {
	box-shadow: none;
	display: block;
	border-right: 12px solid #ad0000;
	background: #ffcc00;
}
.ticker.newsy .title {
	box-shadow: none;
	display: block;
	background: transparent;
	padding: 0;
	margin: 0;
	line-height: normal !important;
}
.ticker.newsy .title span {
	display: inline-block;
	background: #ad0000;
	color: #fff;
	line-height: normal !important;
	padding: 4px;
	padding-right: 18px;
	margin: 0;
	text-align: left;
	font-weight: 700;
}
.ticker.newsy .txt {
	display: block;
	border-left: 4px solid #ad0000;
	background: #fff;
	color: #111;
	font-weight: 700;
}
#ticker_preview.newsy .title span {
	line-height: normal !important;
}


.ticker.newsy.blue {
	border-color: #005577;
	background: #0099c5;
	border-bottom: 3px solid #005577;
}
.ticker.newsy.blue .title span {
	background: #005577;
}
.ticker.newsy.blue .txt {
	border-color: #005577;
	background: #e6f1f7;
}


.ticker.newsy.black {
	border-color: #111;
	background: #333;
	border-bottom: 3px solid #111;
}
.ticker.newsy.black .title span {
	background: #111;
	color: #ddd;
}
.ticker.newsy.black .txt {
	border-color: #111;
	background: #666;
	color: #fff;
}

#ticker_preview {font-size: .7em;}
#ticker_preview .ticker-text-prev {
	height: 30px !important;
}
#ticker_preview .ticker-text-prev ul li {
	line-height: 30px !important;
}

.emojis {
	position: absolute;
	bottom: 20px;
	left: 350px;
	z-index: 3;
	height: 140px;
	overflow-y: auto;
	width: 220px;
	background: #111;
}
.emojis span {
	cursor: default;
}

/*GIPHY*/
.giph-results, .faves {
	height: 200px;
	overflow: hidden;
	overflow-y: auto;
}
.giph-results img, .faves img {
	width: 80px;
	height: 80px;
	display: inline-block;
}
.gifanim {
	right: 10px;
	top: 100px;
	border-radius: 8px;
	overflow: hidden;
	width: 30%;
}
.faves img {
	width: 50px;
	height: 50px;
}
.emoticons {
	height: 180px;
	overflow: hidden;
	overflow-y: auto;
}
.emoticons img {
	max-width: 50px !important;
	width: 50px !important;
	height: 50px !important;
}


.jp-pla {
	mix-blend-mode: darken;
	mix-blend-mode: difference;
	mix-blend-mode: exclusion;
	mix-blend-mode: multiply;
}

.img-filter img {
	max-width: none;
	width: 800px;
	height: 450px;
}
#screenwrap {
	-webkit-mask-repeat: no-repeat;
}
@keyframes clip-fade {
  100% {
    -webkit-mask-position: right;
  }
}






/*hourglass
https://codepen.io/tag/hourglass/?cursor=ZD0xJm89MCZwPTE=
https://codepen.io/coder-70/pen/VwjEpoy
*/

html {
  scroll-behavior: smooth;
}

.effect-layer {position: absolute; z-index: 2;}
.noshow {
	display: none;
}

/*editor*/
div.sceditor-container.wysiwygMode {
	background: var(--obs-blue);
	border-color: var(--obs-blue);
	color: #eee;
	font-size: 11px;
}
div.sceditor-container.wysiwygMode div.sceditor-toolbar {
	background: var(--obs-blue);
	border-color: var(--obs-blue);
	padding: 2px;
}
div.sceditor-container.wysiwygMode iframe, div.sceditor-container.wysiwygMode textarea {
	background: var(--obs-blue);
	color: #eee;
	font-size: 11px;
	line-height: normal;
	margin: 0;
}
div.sceditor-container.wysiwygMode iframe body {
	color: #eee !important;
}

/*JSCOLOR
https://jscolor.com/examples/
*/
.jscolor-wrap {
	
}
.jscolor-wrap .jscolor-border {
	background: var(--dark-blue) !important;
	border-color: var(--dark-blue) !important;
}

.ssads-wrap {
	position:relative;
	margin:0 auto;
	top:0px;
	left:0px;
	width: 1180px;
	height:120px;
	overflow:hidden;
	visibility:hidden;
}
.ssads {
	position:relative;
	top:0px;
	left:0px;
	width:1180px;
	height:120px;
	overflow: hidden;
}

.ticker-ads {
	left: 0px;
	right: 0px;
	bottom: 10px;
}


.twitvid .twit-wrap {
	overflow: hidden;
	border-radius: 12px;
	margin: auto;
	text-align: center;
}
.twitvid .twit-wrap iframe {
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	max-width: none !important;
	display: block !important;
	width: 100%;
}
span.drag-handle {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 4;
	height: 230px;
	display: block;
	text-align: right;
	padding-right: 40px;
}
span.drag-handle .mdi {
	font-size: 2em;
}

.webpage .remotevid {
	background: #fff;
}

.language-panel ul {
	height: 220px;
	overflow: hidden;
	overflow-y: auto;
}
.language-panel li input {
	margin-bottom: 2px;
	font-size: .9em;
	width: 100%;
}


/* MIXER PANEL */
.panel-wrap.mixer_panel {
	left:0px;
}
.video-mix-wrap video {
	width: 800px;
	height: 450px;
	position: absolute;
}
.video-mix-wrap video.topvid {
	z-index: 2;
}
.video-mix-wrap video.lowvid {
	z-index: 1;
}

.decks button {
	background: transparent;
	padding: 0 !important;
	border-radius: 0;
	font-size: 2.5em;
}

.title-marquee {
	width: 100px;
	margin: auto;
	padding: 3px 0;
	overflow: hidden;
	position: relative;
	height: 12px;
}
.title-marquee span {
	display: block;
	font-size: .8em;
	white-space: nowrap;
	position: absolute;
}
.mix-list {
	width: 550px;
	overflow: hidden;
	background: #111;
}
.mix-list > .inner {
	padding: 0;
}
.mix-list .fieldset {
	padding: 5px 10px;
}
.mix-list ul {
	height: 140px;
	overflow: hidden;
	overflow-y: auto;
}
.mix-list ul li {
	border-bottom: 1px solid #222;
	margin-bottom: 3px;
	padding: 3px;
	font-size: 11px;
}
.mix-list .base-dir {
	width: 100%;
}
.mix-list input {
	width: 100%;
	padding: 3px;
	font-size: 12px;
}
.mix-list input[type="file"] {
	width: 100px;
	padding: 0;
}
.decks .seekbar {
	background: #222;
	height: 14px;
	width: 130px;
	margin-bottom: 4px;
	border-radius: 3px;
	overflow: hidden;
	position: relative;
}
.decks .seekbar span {
	background: yellow;
	padding: 5px 0;
	position: absolute;
}
.decks .seekbar input[type="range"] {
	margin: 0;
	border-radius: 0;
	padding: 0;
	font-size: 11px;
}
.decks .seekbar input[type=range]:not(.slider-component)::-webkit-slider-runnable-track {
  height: 12px;
  box-shadow: none;
  border-radius: 0;
  border: 0px;
}
.decks .seekbar input[type=range]:not(.slider-component)::-webkit-slider-thumb,
.decks .seekbar input[type=range]:not(.slider-component)::-moz-range-thumb {
  box-shadow: 0px;
  height: 12px;
  width: 6px !important;
  border-radius: 2px;
  background: yellow;
  margin-top: 0px;
}
.deck-two-wrap .seekbar input[type=range]:not(.slider-component)::-webkit-slider-thumb {
	background: #aecc8e;
}
.deck-control {
	background: #111;
	border-radius: 4px 4px 0 0;
	overflow: hidden;
}
.deck-btn {
	padding: 0 6px;
}

/*MIXER DECKS*/
.panel.mixer-panel {
	background: url(../assets/images/bg-black-horizontal-stripes.gif) #010101;
}
.decks-wrap {
	background: #010101;
	padding: 8px 16px;
	border-radius: 8px;
}
.deck {
	background: #111;
	width: 140px;
	height: 93px;
	overflow: hidden;
}
.deck .monitor {
	height: 70px;
	overflow: hidden;
	border: 1px solid #333;
}
.deck .monitor video {
	width: 138px;
	height: auto;
	margin: auto;
	display: block;
}

.deckloaded {
	box-shadow: var(--btn-border);
}
.fader {
	background: var(--obs-blue);
	border-radius: 0 0 4px 4px;
	line-height: normal;
}
.fader span {
	padding:0px;
	font-size: 1.7em;
	line-height: normal;
	color: #008dce;
}
.fader input[type=range]:not(.slider-component)::-webkit-slider-thumb {
  width: 30px;
  border-radius: 4px;
}
.btn-deck-1-play:hover {
	color: yellow;
}
.btn-deck-2-play:hover {
	color: #aecc8e;
}

.custom-combobox {
	position: relative;
}
.custom-combobox-toggle {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	padding: 0;
}
.custom-combobox-input {
	margin: 0;
	padding: 0;
	border: 0 !important;
	border-radius: 2px;
}
#ui-id-1 {
	z-index: 1000;
}

button, label, docktitle, .btnblack, input, textarea, .chosen-container, .chosen-container span {
	font-size: 11px !important;
	line-height: normal !important;
}
button {
	padding: 2px 6px !important;
}
.chosen-container span, .chosen-container a {
	margin: 0 !important;
	padding: 0 !important;
	height: auto !important;
	border-radius: 0 !important;
	width: auto !important;
}
.section.bottom .anim-play .chosen-container, .panel .chosen-container {
	width: auto !important;
	min-width: initial !important;
}
.decks button {
	font-size: 30px !important;
}
div.sfx ul li > button {
	font-size: 8px !important;
}

.demo-details {
	max-width: 250px;
}
.demo-details > div {
	padding: 20px;
}