.box {
	position: relative;
	background-color: var(--color-brown-light);
	border: 1px solid var(--color-brown-light);
	padding: 10px;
	margin-bottom: 10px;
	width: 63%;
}
.box .box-label i {
	color: var(--color-anthrazite);
}
.boxDarkMode{
	background-color: var(--color-darkmode);
	color:white;
}
.box .box-label {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	line-height: 30px;
}
.box__dark,
.boxDark {
	background-color: var(--color-brown);
	border: 1px solid var(--color-brown);
}
.box__wide
.boxWide {
	width: 98%;
	margin: 10px 0;
}
.box__full
.boxFull {
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}
.box__hidden
.boxHidden {
	display: none;
}
.boxError {
	background-color: var(--color-red);
}
.boxHighlightGreen {
	background-color: var(--color-yellow);
}
.boxHighlight {
	background-color: var(--color-yellow-light);
}
.boxHighlight .songContainer {
	border: none;
}
.noPaddingBottom {
	padding-bottom: 0;
}
.noMarginBottom {
	padding-bottom: 0;
	margin-bottom:0;
}
.closeBox,
.actionsBox {
	position: absolute;
	top: 5px;
	right: 5px;
}
.boxToggle {
	position: relative;
	height: 34px;
	overflow: hidden;
}
.toggle {
	position: absolute;
	top: 9px;
	right: 8px;
	cursor: pointer;
}
.boxShowMore p:last-child {
	margin-bottom: 0;
}
.boxShowMore .boxMore {
	margin-left: 10px;
}
.boxShowMore .boxMoreContent {
	margin-top: 10px;
	display: none;
}
.stickyBox {
	position: sticky;
	top: 80px;
}
section.fix .stickyBox {
	top: 220px;
}
section.scroll .stickyBox {
	top: 20px;
}
ul.boxTabs {
	position: relative;
	background-color: var(--color-brown-light);
	border: 1px solid var(--color-brown-light);
	padding: 10px;
	margin-bottom: 10px;
	width: 63%;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
}
ul.boxTabs .box-label {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	line-height: 30px;
}
ul.boxTabs .box-label i {
	color: var(--color-anthrazite);
}
ul.boxTabs li {
	display: inline;
}
ul.boxTabs li a {
	display: inline-block;
	padding: 10px;
}
ul.boxTabs li a:hover {
	background-color: var(--color-brown);
}
ul.boxTabs li a.selected {
	background-color: var(--color-brown);
}
.boxLink {
	background-color: var(--color-brown-light);
	border: 1px solid var(--color-brown-light);
	padding: 10px;
	margin-bottom: 10px;
	width: 63%;
	display: block;
	position: relative;
}
.boxLink .box-label {
	display: inline-block;
	margin-right: 10px;
	vertical-align: top;
	line-height: 30px;
}
.boxLink .box-label i {
	color: var(--color-anthrazite);
}
.boxLink span {
	font-size: 22px;
	line-height: 30px;
}
.boxLink i,
.boxLink svg {
	width: 50px;
	margin-left: -10px;
}
.boxLink:hover {
	background-color: var(--color-brown);
	border: 1px solid var(--color-brown);
}
.boxLink .boxLinkFooter {
	display: block;
	text-align: right;
}
.input {
	display: inline-block;
}

.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 22px; /* Specified height */
  background: #fff; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.9; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */

}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4a5662; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4a5662; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

span.margin{
	vertical-align: top;
}

input,
.input,
select,
textarea
.textarea {
	border: 1px solid rgba(0, 0, 0, 0.4);
	background-color: white;
	padding: 5px 10px;
	font-size: 0.9em;
	line-height: 1.4em;
}
.slider {
	display:inline-block;
	width:50%;
}
#custom-handle {
    width: 32px;
    height: 22px;
    top: 50%;
    margin-top: -.8em;
    text-align: center;
    line-height: 1.6em;
  }

input:focus,
.input:focus,
select:focus,
textarea:focus,
.textarea:focus {
	border-color: var(--color-red-dark);
}
textarea,
.textarea {
	padding: 3px;
	font-size: 1em;
	font-family: Courier, monospace;
}
li > input {
	padding: 0;
}
.inputDisabled {
	display: inline-block;
	border: 1px dashed rgba(0, 0, 0, 0.4);
	background-color: rgba(255, 255, 255, 0.6);
	font-style: italic;
	color: #a9a9a9;
	min-height: 2.3em;
	padding: 5px 10px;
	font-size: 0.9em;
	line-height: 1.4em;
	cursor: not-allowed;
}
.noBackground {
	background: none;
}
.noBackground:focus {
	background-color: white;
}
input[type="submit"],
input[type="button"] {
	border: 1px solid rgba(0, 0, 0, 0.5);
	background-color: rgba(0, 0, 0, 0.1);
	cursor: pointer;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.8)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 90%);
}
input[type="submit"]:hover,
input[type="button"]:hover {
	cursor: pointer;
	background-color: var(--color-brown);
}
input[type="submit"]:disabled,
input[type="button"]:disabled {
	border: 1px solid rgba(0, 0, 0, 0.1);
	cursor: not-allowed;
}
/* !SELECT2 */
.select2-choices {
	background-image: none !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default.select2-container--focus .select2-selection--single {
	border-color: var(--color-red-dark);
}
.select2multiple,
.statusSelectMultiple,
.languageSelectMultiple {
	height: 32px;
}
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
	border-radius: 0;
	min-height: 32px;
}
.select2-results__option {
	padding: 4px 8px;
	line-height: 1.5em;
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
	margin-top: 7px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 3px;
}
.formattedContent ol,
.formattedContent ul {
	margin-bottom: 10px;
}
.formattedContent ol {
	list-style: decimal;
}
.formattedContent ul {
	list-style: disc;
}
.formattedContent li {
	margin-left: 25px;
	padding-left: 5px;
	margin-bottom: 5px;
}
.btn-group {
	display: inline-block;
	height: 30px;
	margin-right: 15px;
}
.btn-group label {
	float: left;
	margin-right: 5px;
	line-height: 30px;
}
.btn-group button,
.btn-group .btn {
	cursor: pointer;
	float: left;
	text-align: center;
	padding: 7px 12px;
	color: var(--color-anthrazite-light) !important;
	background-color: rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.3);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.7)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
}
.btn-group button:not(:last-child),
.btn-group .btn:not(:last-child) {
	border-right: none;
}
.btn-group button.selected,
.btn-group .btn.selected {
	color: var(--color-anthrazite) !important;
	background-image: none;
	background-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) inset;
}
.btn-group button:hover,
.btn-group .btn:hover {
	background-color: var(--color-brown);
	color: var(--color-anthrazite) !important;
}
.btn-group:after {
	content: "";
	clear: both;
	display: table;
}
.buttonGroup a,
.sortGroup a {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	padding: 10px 15px;
	color: var(--color-anthrazite-light) !important;
	background-color: rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.3);
	margin-right: -1px;
	/* fix double border */
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.7)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
}
.buttonGroup a:hover,
.sortGroup a:hover {
	background-color: var(--color-brown);
	color: var(--color-anthrazite) !important;
}
.buttonGroup a.selected,
.sortGroup a.selected {
	color: var(--color-anthrazite) !important;
	background-image: none;
	background-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) inset;
}
.buttonGroup.narrow a,
.sortGroup.narrow a {
	padding: 10px 10px;
}
div.buttonGroup {
	margin-bottom: 10px;
}
.buttonGroup.group2 a {
	width: 120px;
}
.buttonGroup.group3 a {
	width: 80px;
}
.buttonGroup.group4 a {
	width: 60px;
}
.buttonGroup.group6 a {
	width: 40px;
}
.buttonLarge a {
	padding: 5px 15px;
	line-height: 27px;
	font-size: 25px;
}
#statusP .statusSelect a {
	width: 25%;
}
.iconGroup {
	margin-right: 15px;
}
.iconGroup label {
	margin-right: 5px;
}
.iconGroup a-disabled {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	font-style: normal;
	padding: 4px 8px;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-left: 1px solid rgba(0, 0, 0, 0.3);
	border-right: none;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.7)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
}
.iconGroup a-disabled.wider {
	padding: 4px 9px;
}
.iconGroup a-disabled:hover {
	background-color: var(--color-brown);
}
.iconGroup a-disabled.selected {
	background-image: none;
	background-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) inset;
}
.iconGroup a-disabled:last-child,
.iconGroup a-disabled.last-child {
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}
.iconGroup i,
.iconGroup button {
	display: inline-block;
	cursor: pointer;
	text-align: center;
	font-style: normal;
	padding: 4px 8px;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
	border-left: 1px solid rgba(0, 0, 0, 0.3);
	border-right: none;
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.7)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
}
.iconGroup i.wider,
.iconGroup button.wider {
	padding: 4px 9px;
}
.iconGroup i:hover,
.iconGroup button:hover {
	background-color: var(--color-brown);
}
.iconGroup i.selected,
.iconGroup button.selected {
	background-image: none;
	background-color: rgba(0, 0, 0, 0.15);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) inset;
}
.iconGroup i:last-child,
.iconGroup button:last-child,
.iconGroup i.last-child,
.iconGroup button.last-child {
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}

a.buttonToolbar--action {
	display: inline-block;
	min-width: 20px;
	padding: 6px 8px 4px 8px;
	color: var(--color-anthrazite);
	background-color: rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.3);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255, 255, 255, 0.7)), color-stop(1, rgba(255, 255, 255, 0)));
	background-image: -o-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: -ms-linear-gradient(bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 90%);	
}
	a.buttonToolbar--action:hover {
		background-color: rgba(0, 0, 0, 0.22);
	}

	a.buttonToolbar--action.disabled {
		color: var(--color-grey-dark);
		border-color: var(--color-grey-dark);
		cursor: default;
	}
		a.buttonToolbar--action.disabled:hover {
			color: var(--color-grey-dark);
			border-color: var(--color-grey-dark);
			background-color: rgba(0, 0, 0, 0.08);
		}
	a.buttonToolbar--action.open {
		background-image: none;
		background-color: rgba(0, 0, 0, 0.15);
		box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15) inset;
	}
	
header .toolbar {
	background-color: var(--color-brown-light);
}
	header .toolbar ul {
		display: inline-block;
	}
		header .toolbar .inner li {
			display: inline-block;
			margin-right: 10px;
			padding: 6px 0;
		}
		header .toolbar .inner li.margin {
			margin-right: 40px !important;
		}
			header .toolbar .inner li a {
				text-decoration: none;
			}

			header .toolbar .buttonToolbar--slideOut:not(.disabled):hover i {
				margin-right: 7px;
			}
			header .toolbar .buttonToolbar--slideOut:not(.disabled):hover span {
				width: 20px;
			}
				header .toolbar .buttonToolbar--slideOut span {
					display: inline-block;
					width: 0;
					height: 18px;
					vertical-align: bottom;
					cursor: hand;
				}
				
	header .toolbar .align-right {
		display: inline-block;
		float: right;
	}
	header .toolbar .saveScene {
		display: inline-block;
	}
		header .toolbar .saveScene #saveSceneCountdown {
			height: 3px;
			margin-left: 10px;
			margin-top: -6px;
		}
			header .toolbar .saveScene #saveSceneCountdown.disabled {
				display: none;
			}
			header .toolbar .saveScene #saveSceneCountdown .progress {
				width: 0%;
				height: 3px;
				background-color: var(--color-orange);
			}
		
	header .toolbar button {
		margin: 6px 0 6px 10px;
		padding: 4px 20px;
		line-height: 19px;
		font-size: 1.1em;
		border-radius: 0;
		background-color: rgba(0, 0, 0, 0.08);
		border: 2px solid rgba(0, 0, 0, 0.3);
		cursor: pointer;

		background-color: var(--color-green-light);
		min-width: 220px;
	}
		header .toolbar button:hover {
			background-color: var(--color-green);
		}
		header .toolbar button.saving {
			background-color: var(--color-orange);
		}
		header .toolbar button.disabled {
			color: var(--color-grey-dark);
			background-color: var(--color-grey);
			cursor: default;
		}

	#navRoles .inner div,
	#navActors .inner div {
		display: inline-block;
		background-color: var(--color-white);
		border: 2px solid var(--color-white);
		padding: 3px 6px;
		margin: 5px 3px 5px 0;
		line-height: 20px;
		vertical-align: top;
		min-height: 30px;
		user-select: none;
		cursor: move;
	}
	#navRoles .inner .margin,
	#navActors .inner .margin {
		margin-right: 15px;
	}
	
	#navRoles.disabled .inner div {
		color: var(--color-grey-dark) !important;
		border-color: var(--color-grey-dark) !important;
		cursor: default;
	}
	#navActors.disabled .inner div {
		color: var(--color-grey-dark) !important;
		cursor: default;
	}

#filter > span {
	margin-bottom: 10px;
	display: inline-block;
}
#filter > span i,
#filter > span button {
	height: 32px;
	line-height: 22px;
}
.filterTags {
	margin-right: 15px;
}
.filterTags label {
	margin-right: 5px;
}
.filterTags select {
	width: 200px;
	height: 32px;
}
code {
	display: inline-block;
	font-size: 1.1em;
	font-family: monospace;
	color: var(--color-red);
}
code.FIX {
	color: var(--color-green-dark);
}
code.NEW {
	color: var(--color-red);
}
code.EDIT {
	color: var(--color-orange);
}
code.NOTE {
	color: var(--color-anthrazite);
}
.page_changelog code {
	width: 40px;
}
span.WELCOME {
	font-weight: bold;
	display: inline-block;
	padding: 3px 5px;
	background-color: var(--color-brown-light);
}
pre {
	font-size: 1.1em;
	font-family: monospace;
	white-space: pre-line;
	line-height: 1.1em;
}
.fullWidth {
	position: relative;
	width: 100%;
}
.fullWidth p {
	margin-bottom: 10px;
}
.fullWidth .label {
	margin-right: 10px;
}
.fullWidth .label i {
	color: var(--color-anthrazite);
}
#cart,
#cartSaved,
#filteredActions {
	display: none;
}
#cart .cartActions,
#cartSaved .cartActions,
#filteredActions .cartActions {
	position: absolute;
	top: 10px;
	right: 10px;
	text-align: right;
}
#cart .cartActions a,
#cartSaved .cartActions a,
#filteredActions .cartActions a {
	float: left;
	margin-left: 5px;
}
#cart .cartActions a.margin,
#cartSaved .cartActions a.margin,
#filteredActions .cartActions a.margin {
	margin-right: 15px;
}
#cartContent > span,
#cartSaved > span,
#matchingSongsList > span {
	display: inline-block;
	position: relative;
	background-color: var(--color-brown);
	padding: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
}
#cartSaved > span {
	padding: 10px;
}
#cartSaved > span a.margin {
	margin-left: 15px;
}
span.hidden {
	background-color: rgba(0, 0, 0, 0.2) !important;
}
span.hiddenAlert {
	background-color: var(--color-red) !important;
}
#cartContent span i,
#cartContent span svg {
	margin: 0;
	margin-left: 5px;
	color: white;
}
#clearSearch,
.searchClear {
	display: none;
	margin-left: -28px;
}
.extendedSearch {
	display: inline-block;
	margin-top: 5px;
}
.form p,
.box p {
	margin-bottom: 10px;
	line-height: 1.5em;
}
.box > span {
	display: block;
	margin-bottom: 10px;
	line-height: 1.5em;
}
p label,
span label {
	display: inline-block;
	vertical-align: top;
	padding-top: 5px;
	width: 20%;
}
p label.noInput,
span label.noInput {
	padding: 0;
}
p .pcoInfo,
p .inputInfo,
.boxInfo {
	/*			padding-left: 21%;*/
	font-style: italic;
	font-size: 80%;
	display: block;
	margin-bottom: -5px;
}
.boxInfo {
	margin: 5px 0 0 0;
}
p input,
p .input,
p select,
p textarea,
p .textarea,
p .inputDisabled {
	width: 78%;
}
.halfWidth {
	width: 49% !important;
	margin-right: 1% !important;
}
.halfWidthEnd {
	margin-right: 0 !important;
	margin-left: 1% !important;
}
.wideLabel label {
	width: 33%;
}
.wideLabel p input,
.wideLabel p .input,
.wideLabel p select,
.wideLabel p textarea,
.wideLabel p .textarea,
.wideLabel p .inputDisabled,
.wideLabel p select {
	width: 64%;
}
.submitBox input {
	width: 100%;
}
.subLabel {
	display: inline-block;
	min-width: 75px !important;
	margin-right: 5px !important;
}
p input[type="radio"],
p input[type="checkbox"],
p input[type="number"] {
	width: auto;
	text-align: left;
}
#searchSimilarSongs {
	display: none;
}
#searchSimilarSongs,
#searchResultArchiveContent,
#searchResultGlobalContent,
#foundSimilarSongs {
	position: relative;
	width: 100%;
}
#searchSimilarSongs p,
#searchResultArchiveContent p,
#searchResultGlobalContent p,
#foundSimilarSongs p {
	margin-bottom: 5px;
}
#searchSimilarSongs p.highlight,
#searchResultArchiveContent p.highlight,
#searchResultGlobalContent p.highlight,
#foundSimilarSongs p.highlight {
	margin: 0 -5px 5px -5px;
	padding: 5px;
}
#searchSimilarSongs .songCheckbox,
#searchResultArchiveContent .songCheckbox,
#searchResultGlobalContent .songCheckbox,
#foundSimilarSongs .songCheckbox {
	display: inline-block;
	width: 20px;
	vertical-align: top;
	padding-top: 2px;
}
#searchSimilarSongs .songCheckbox input,
#searchResultArchiveContent .songCheckbox input,
#searchResultGlobalContent .songCheckbox input,
#foundSimilarSongs .songCheckbox input {
	vertical-align: top;
}
#searchSimilarSongs .songTitle,
#searchResultArchiveContent .songTitle,
#searchResultGlobalContent .songTitle,
#foundSimilarSongs .songTitle {
	display: inline-block;
	width: 40%;
	vertical-align: top;
}
#searchSimilarSongs .songOrganization,
#searchResultArchiveContent .songOrganization,
#searchResultGlobalContent .songOrganization,
#foundSimilarSongs .songOrganization {
	display: inline-block;
	width: 20%;
	vertical-align: top;
}
#searchSimilarSongs .similarSongDuplicateLink,
#searchResultArchiveContent .similarSongDuplicateLink,
#searchResultGlobalContent .similarSongDuplicateLink,
#foundSimilarSongs .similarSongDuplicateLink {
	display: inline-block;
	margin-left: 10px;
}
#searchSimilarSongs select,
#searchResultArchiveContent select,
#searchResultGlobalContent select,
#foundSimilarSongs select {
	width: 100%;
}
#searchSimilarSongs .similiarSongClose,
#searchResultArchiveContent .similiarSongClose,
#searchResultGlobalContent .similiarSongClose,
#foundSimilarSongs .similiarSongClose {
	position: absolute;
	top: 0px;
	right: 5px;
}
#searchSimilarSongs .duplicateSimilarSong,
#searchResultArchiveContent .duplicateSimilarSong,
#searchResultGlobalContent .duplicateSimilarSong,
#foundSimilarSongs .duplicateSimilarSong {
	display: inline-block;
	width: 100%;
	padding: 5px 0;
}
.flagIcon1,
.flagIcon2 {
	display: inline-block;
	width: 32px;
	vertical-align: top;
}

[data-placeholder]:empty:before {
	content: attr(data-placeholder);
	display: block; /* For Firefox */
	color: var(--color-grey-dark);
}
input::placeholder {
	color: var(--color-grey-dark);
}
input:disabled {
	color: var(--color-anthrazite);
}
.scene-name:focus,
.scene-title:focus,
.scene-description:focus,
.scene-block--text:focus {
	box-shadow: 0px 0px 3px var(--color-anthrazite-dark) inset;
	border: none;
	outline: none;
}

.hiddenInput {
	display: none;
}

.scene--edit-container {
	width: 100%;
	margin-bottom: 10px;
	height: 52px;
	padding: 5px;
	overflow: hidden;
}
	.scene--edit-container.open {
		height: auto;
	}
	
	.scene--edit-alert {
		display: none;
		position: absolute;
		top: 11px;
		right: 3px;
		width: 50px;
		height: 30px;
		text-align: center;
		cursor: help;
		z-index: 10;
	}
	
	.scene--edit,
	.scene-block--edit-container,
	.scene-controls {
		display: grid;
		grid-template-columns: 40px 1fr 3fr 80px;
		grid-column-gap: 5px;
		width: 100%;
	}
	.scene-block--edit-container {
		grid-template-columns: 35px 1fr 3fr 75px; /* removing inner padding from outer grid columns*/
		padding: 5px;
	}
		
	.scene--edit {
		margin-bottom: 5px;
		position: relative;
	}
		.scene--edit .scene-name,
		.scene--edit .scene-title,
		.scene--edit p {
			background-color: var(--color-white);
			padding: 5px 10px;
			grid-column-start: 2;
			width: 100%;
		}
		.scene--edit .scene-name {
			font-size: 22px;
			font-weight: bold;
			margin: 0 0 5px 0;
			line-height: 30px;
			min-height: 40px;
			border: none;
		}
		.scene--edit .scene-title {
			font-size: 18px;
			margin: 0 0 5px 0;
			line-height: 30px;
			min-height: 40px;
			grid-column: 3 / span 2;
			border: none;
		}
		.scene--edit .scene-toggle {
			text-align: center;
			line-height: 30px;
			align-self: center;
			width: 42px;
		}
			.scene--edit .scene-toggle--close {
				display: none;
			}
		.scene--edit p {
			grid-column: 2 / span 3;
			min-height: 32px;
			margin: 0;
		}
		
	.scene-block--list {
		margin-bottom: 5px;
	}
	.scene-controls {
	}
		.scene-controls-left {
			grid-column: 1 / span 2;
		}
		.scene-controls-right {
			text-align: right;
			grid-column: 3 / span 2;
		}
			.scene-controls-right a {
				margin-left: 10px;
			}
	
	.scene--edit-container.locked {
		background-color: var(--color-grey);
	}
		.scene--edit-container.locked .scene-toggle {
			display: none;
		}
		.scene--edit-container.locked .scene--edit .scene-name,
		.scene--edit-container.locked .scene--edit .scene-title {
			color: var(--color-grey-dark);
		}
		
.scene-block--edit-container {
	margin-bottom: 0px;
	background-color: var(--color-white);
}
	.blockPosition {
		position: absolute;
		left: -3px;
		top: 3px;
		font-size: 70%;
	}
	.scene-block--hideable {
		grid-column: 1;
		text-align: center;
		line-height: 32px;
		min-height: 32px;
	}
	.scene-block--role {
		grid-column: 2;
	}
		.scene-block--role select {
			width: 100%;
		}
		.scene-block--role div {
			width: 100%;
			min-height: 32px;
			line-height: 32px;
			padding: 0 10px;
		}
		
	.scene-block--text {
		grid-column: 3;
		padding: 4px 10px;
		line-height: 1.5;
		min-height: 32px;
		font-family: Courier, monospace;
		box-shadow: 0px 0px 1px var(--color-anthrazite) inset;
	}
	.scene-block--controls {
		display: none;
		text-align: center;
		align-self: center;
	}
		.scene-block--move {
			cursor: move;
		}
	
	.scene-block--edit-container:hover .scene-block--controls {
		display: block;
	}
.scene-block--list {
	min-height: 38px;
}
	.scene-block--list.targeted {
		outline: 2px dashed var(--color-yellow-dark);
	}
.scene-block--placeholder {
	width: 100%;
	height: 38px;
	background-color: var(--color-yellow-light);
}


.boxLabelInput {
	/* box in box */
}
.boxLabelInput > p,
.boxLabelInput > span,
.boxLabelInput > form > p {
	display: table;
	width: 100%;
}
.boxLabelInput > p label,
.boxLabelInput > span label,
.boxLabelInput > form > p label {
	display: table-cell;
	padding-right: 10px;
}
.boxLabelInput > p .label,
.boxLabelInput > span .label,
.boxLabelInput > form > p .label {
	display: table-cell;
	width: 30px;
}
.boxLabelInput > p input[type="text"],
.boxLabelInput > span input[type="text"],
.boxLabelInput > form > p input[type="text"],
.boxLabelInput > p input[type="submit"],
.boxLabelInput > span input[type="submit"],
.boxLabelInput > form > p input[type="submit"],
.boxLabelInput > p input[type="password"],
.boxLabelInput > span input[type="password"],
.boxLabelInput > form > p input[type="password"],
.boxLabelInput > p input[type="number"],
.boxLabelInput > span input[type="number"],
.boxLabelInput > form > p input[type="number"],
.boxLabelInput > p input[type="email"],
.boxLabelInput > span input[type="email"],
.boxLabelInput > form > p input[type="email"],
.boxLabelInput > p .inputDisabled,
.boxLabelInput > span .inputDisabled,
.boxLabelInput > form > p .inputDisabled,
.boxLabelInput > p .select2multiple,
.boxLabelInput > span .select2multiple,
.boxLabelInput > form > p .select2multiple,
.boxLabelInput > p .roleSelect,
.boxLabelInput > span .roleSelect,
.boxLabelInput > form > p .roleSelect,
.boxLabelInput > p .statusSelectMultiple,
.boxLabelInput > span .statusSelectMultiple,
.boxLabelInput > form > p .statusSelectMultiple,
.boxLabelInput > p .languageSelectMultiple,
.boxLabelInput > span .languageSelectMultiple,
.boxLabelInput > form > p .languageSelectMultiple,
.boxLabelInput > p textarea,
.boxLabelInput > span textarea,
.boxLabelInput > form > p textarea,
.boxLabelInput > p .textarea,
.boxLabelInput > span .textarea,
.boxLabelInput > form > p .textarea {
	display: table-cell;
	width: 100%;
}
.boxLabelInput .boxLabelInput > p label,
.boxLabelInput .boxLabelInput > span label,
.boxLabelInput .boxLabelInput > form > p label {
	width: 19%;
}
.boxLabelInput .boxLabelInput.wideLabel > p label,
.boxLabelInput .boxLabelInput.wideLabel > span label,
.boxLabelInput .boxLabelInput.wideLabel > form > p label {
	width: 32%;
}
input[type="range"] {
	margin-right: 10px;
}
.boxLabelInput .rangeValue {
	display: inline-block;
}
.subLabelInput {
	width: 67%;
	margin-left: 33%;
	margin-bottom: 10px;
	padding: 10px;
}
.subLabelInput > p,
.subLabelInput > form > p {
	display: table;
	width: 100%;
}
.subLabelInput > p label,
.subLabelInput > form > p label {
	display: table-cell;
	padding-right: 10px;
	width: 50%;
}
.subLabelInput > p .label,
.subLabelInput > form > p .label {
	display: table-cell;
	width: 30px;
}
.subLabelInput > p input[type="text"],
.subLabelInput > form > p input[type="text"],
.subLabelInput > p input[type="submit"],
.subLabelInput > form > p input[type="submit"],
.subLabelInput > p input[type="password"],
.subLabelInput > form > p input[type="password"],
.subLabelInput > p input[type="number"],
.subLabelInput > form > p input[type="number"],
.subLabelInput > p input[type="email"],
.subLabelInput > form > p input[type="email"],
.subLabelInput > p .select2multiple,
.subLabelInput > form > p .select2multiple,
.subLabelInput > p .tagsSelect,
.subLabelInput > form > p .tagsSelect,
.subLabelInput > p .statusSelectMultiple,
.subLabelInput > form > p .statusSelectMultiple,
.subLabelInput > p .languageSelectMultiple,
.subLabelInput > form > p .languageSelectMultiple,
.subLabelInput > p textarea,
.subLabelInput > form > p textarea,
.subLabelInput > p .textarea,
.subLabelInput > form > p .textarea {
	display: table-cell;
	width: 100%;
}
.select2,
.roleSelect,
.fontSelect,
.languageSelect,
.select2noClear,
.box > .input {
	width: 40%;
}
.LineSpaceSelect,
.box > .input {
	width: 10%;
}
.select2multiple,
.statusSelectMultiple,
.languageSelectMultiple {
	width: 78%;
}
#matchingSongsList,
#singleSongAlert {
	display: none;
}
.trAlert {
	background-color: var(--color-yellow);
}
.trAlert .select2,
.trAlert .roleSelect,
.trAlert .fontSelect,
.trAlert .select2noClear {
	margin-right: 20px;
}
.trAlert .pcoSongSelectClose,
.pcoSongSuggestClose {
	float: right;
}
#loginForm {
	max-width: 100%;
}
#loginForm p,
#loginForm .alert {
	text-align: center;
}
#loginForm input,
#loginForm .input,
#loginForm select {
	text-align: center;
	width: 100%;
}
#loginForm input[type='checkbox'] {
	width: auto;
}
#loginForm #submitbutton {
	width: 100%;
}
.iframeWrap {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 */
	padding-top: 25px;
	height: 0;
}
.iframeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.doubleClick {
	cursor: alias;
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Chrome/Safari/Opera */
	-khtml-user-select: none;
	/* Konqueror */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* IE/Edge */
	user-select: none;
	/* non-prefixed version, currently */
}
.doubleClick:hover {
	background-color: rgba(0, 0, 0, 0.1);
}
.checkboxSpan,
.checkboxSpanDisabled {
	display: inline-block;
	cursor: pointer;
	line-height: 28px;
}
.checkboxSpan .checkboxInput,
.checkboxSpanDisabled .checkboxInput {
	display: none;
}
.checkboxSpanDisabled {
	cursor: default;
}
td .checkboxSpan,
td .checkboxSpanDisabled {
	line-height: normal;
}
.lockedAlert {
	display: none;
}
.locked span.lockedAlert {
	display: inline;
}
.locked div.lockedAlert {
	display: block;
}
#scriptList,
#templateList {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
	align-items: stretch;
}
.scriptContainer,
.templateContainer {
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	background-color: var(--color-brown-light);
}
	.scriptContainer .scriptImage {
		position: relative;
		z-index: 1;
		height: 100%;
		min-height: 200px;
	}
		.scriptContainer .scriptEditLink {
			display: inline-block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 2;
		}
		.scriptContainer .scriptImage img {
			display: block;
			position: relative;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;
			width: 100%;
		}
		.scriptContainer .scriptImage .scriptTitle {
			background-color: rgba(255, 255, 255, 0.6);
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			max-width: 100%;
			padding: 20px;
			margin: 0;
			z-index: 3;
		}
			.scriptContainer .scriptTitleIcon {
				display: inline-block;
				float: right;
				margin-left: 15px;
			}
			.scriptContainer .scriptLockedAlert {
				display: none;
			}
			.scriptContainer.locked .scriptLockedAlert {
				display: block;
			}
	.scriptContainer .scriptControls {
		display: none;
		position: absolute;
		top: 0;
		right: 0;
		padding: 20px;
		background-color: rgba(255, 255, 255, 0.8);
		z-index: 10;
		border-bottom-left-radius: 20px;
	}
		.scriptContainer:hover .scriptControls {
			display: block;
		}
.templateContainer p {
	margin-top: 15px;
	text-align: center;
}
.templateContainer .templateInfo {
	position: absolute;
	bottom: 15px;
	left: 15px;
	text-align: left;
}
.templateContainer .templateInfo i,
.templateContainer .templateInfo svg {
	margin-right: 5px;
}
.templateContainer .templateEdit {
	position: absolute;
	bottom: 15px;
	right: 15px;
	text-align: right;
}
.templateContainer .templateEdit i,
.templateContainer .templateEdit svg {
	margin-left: 5px;
}

.songHeaderMobile,
#searchResultArchive,
#searchResultGlobal,
#searchArchiveMatch {
	display: none;
}
#searchResultEmpty {
	display: none;
}
table.list {
	width: 100%;
}
table.list tr:hover > td {
	background-color: rgba(0, 0, 0, 0.05);
}
table.list tr:hover > td .flag {
	display: block;
}
table.list tr:hover > td .hoverIcons {
	display: inline-block;
}
table.list tr .flagIcon {
	display: none;
	float: right;
}
table.list tr.flagged td .flagIcon {
	display: block;
}
table.list tr.newRow td {
	border: none;
	background-color: rgba(0, 0, 0, 0.15);
}
table.list tr.hidden td {
	background-color: rgba(0, 0, 0, 0.05);
	color: #797979;
	font-size: 80%;
}
table.list th,
table.list td {
	padding: 10px;
	text-align: left;
	vertical-align: top;
}
table.list th i,
table.list td i,
table.list th svg,
table.list td svg {
	margin-right: 15px;
}
table.list th i.narrow,
table.list td i.narrow,
table.list th svg.narrow,
table.list td svg.narrow {
	margin-right: 5px;
}
table.list th i.noMargin,
table.list td i.noMargin,
table.list th svg.noMargin,
table.list td svg.noMargin {
	margin: 0;
}
table.list th.locationTh,
table.list td.locationTh,
table.list th.locationSongTd,
table.list td.locationSongTd {
	cursor: pointer;
}
table.list th.status i,
table.list td.status i,
table.list th.status svg,
table.list td.status svg {
	margin-right: 3px;
}
table.list th.status i.fa-sitemap,
table.list td.status i.fa-sitemap,
table.list th.status svg.fa-sitemap,
table.list td.status svg.fa-sitemap {
	margin-right: 6px;
}
table.list th.status i:last-child,
table.list td.status i:last-child,
table.list th.status svg:last-child,
table.list td.status svg:last-child {
	margin-right: 0;
}
table.list th {
	font-weight: 700;
	background-color: var(--color-brown-light);
}
table.list th.sub {
	font-weight: normal;
	background-color: var(--color-brown-light);
}
table.list th.tablesorter-header:not(.sorter-false) {
	cursor: pointer;
}
table.list th.tablesorter-headerAsc {
	background-color: var(--color-brown);
	background-image: url('../images/asc.gif');
	background-repeat: no-repeat;
	background-position: right center;
}
table.list th.tablesorter-headerDesc {
	background-color: var(--color-brown);
	background-image: url('../images/desc.gif');
	background-repeat: no-repeat;
	background-position: right center;
}
table.list td {
	vertical-align: middle;
	border-bottom: 1px solid var(--color-brown);
}
table.list td p {
	margin: 5px 0 0 0;
}
table.list td.small {
	font-size: 80%;
}
table.list tr.highlight td,
table.list td.highlight {
	background-color: var(--color-yellow);
}
table.list tr.highlightGreen td,
table.list td.highlightGreen,
table.list .highlightGreen {
	background-color: var(--color-green-dark);
}
table.list tr.duplicate td,
table.list td.duplicate {
	background-color: var(--color-brown) !important;
}
table.list .hoverIcons {
	display: none;
}
table.list tbody input,
table.list tfoot input,
table.list tbody select,
table.list .select2-container {
	width: 100%;
}
table.list tbody input[type="checkbox"] {
	width: auto;
}
table.list.debug th,
table.list.debug td {
	border: 1px dotted black;
}
.highlight {
	background-color: var(--color-yellow);
}
.highlight2 {
	background-color: var(--color-yellow-light);
}
span.highlight {
	display: inline-block !important;
}
.sort {
	display: none;
}
.textBlock,
.textBlockAdd,
.textBlockDroppable {
	width: 100%;
}
.contentTextarea,
.contentEditable {
	height: 120px;
	min-height: 120px;
}
.textBlockSortable .textBlock {
	border-width: 2px;
}
.textBlockDroppable {
	border: 2px solid rgba(0, 0, 0, 0.3);
	margin: 10px;
	height: 220px;
	background-color: rgba(252, 88, 40, 0.5);
}
.blockControls {
	position: absolute;
	top: 11px;
	right: 9px;
	text-align: right;
	width: 150px;
}
.roleBlock .blockControls {
	top: inherit;
	bottom: 11px;
}
.leftSideBox {
	float: left;
	position: relative;
	width: 63%;
}
.leftSideBox.narrow {
	width: 33.33%;
	margin-right: 1%;
}
.leftSideBox > .box {
	width: 100%;
}
#songEdit .ok,
#songEdit .alert,
#songEdit .error {
	width: 100%;
}
#errorAlertBeforeSaving {
	margin-left: 0 !important;
}
.templateForm label {
	vertical-align: middle;
}
input.pixel {
	width: 70px !important;
	margin-right: 10px !important;
}
.templateForm p > span {
	margin-right: 15px;
}
.rangeSlider {
	display: inline-block;
	width: 50%;
}
.rangeSlider .rangeSliderInput {
	width: 60% !important;
	margin-right: 6%;
	padding: 0;
}
#showSongPreview {
	margin-top: 10px;
}
#songImportUpload,
#templateImportUpload,
#fontLocationFileUploadDropzone {
	display: table;
}
#songImportUpload .dz-message,
#templateImportUpload .dz-message,
#fontLocationFileUploadDropzone .dz-message {
	font-family: 'Open Sans', 'Helvetica', sans-serif;
	font-weight: 700;
	font-size: 1.5em;
	line-height: 1.5em;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	padding: 20px 0;
	cursor: pointer;
}
#customMenuSortable li,
#sortableListsBase li {
	padding: 0 0 0 30px;
	border: 5px solid var(--color-brown);
	margin: 5px 0;
	cursor: move;
}
#customMenuSortable li .menuItemInner,
#sortableListsBase li .menuItemInner {
	line-height: 30px;
	height: 30px;
	padding-left: 10px;
	background-color: var(--color-brown);
}
#customMenuSortable li .menuList,
#sortableListsBase li .menuList {
	margin-right: 5px;
}
#customMenuSortable li li,
#sortableListsBase li li {
	padding: 0 0 0 20px;
}
#customMenuSortable li li .menuItemInner,
#sortableListsBase li li .menuItemInner {
	line-height: 20px;
	height: 20px;
}
.menuItemCanBeHidden .hiddenText {
	display: none;
}
.menuItemHidden {
	border: 5px solid var(--color-brown) !important;
}
.menuItemHidden .hiddenText {
	display: inline;
}
.menuItemHidden .menuItemInner {
	background-color: var(--color-brown) !important;
	color: #777 !important;
}
.menuItemPlaceholder,
.menuItemHint,
.menuItemHintLocked {
	line-height: 40px;
	height: 40px;
}
.menuItemPlaceholder {
	border: 2px solid rgba(0, 0, 0, 0.5);
}
.menuItemHint {
	border: 2px dashed var(--color-green-dark);
	background-color: var(--color-green) !important;
}
.menuItemHintLocked {
	border: 2px dashed var(--color-red-dark);
	background-color: var(--color-red) !important;
}
.sortableDivContainer div {
	padding: 4px 10px;
	cursor: move;
	margin-bottom: 5px;
	text-align: center;
}
.sortableDivContainer .divPlaceholder {
	background-color: var(--color-yellow);
}
.dz-drag-hover .dz-message {
	opacity: 0.15;
}
.dz-started .dz-message {
	display: none !important;
}
.dz-preview {
	position: relative;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.16);
	font-size: 14px;
	width: 100%;
	margin-bottom: 10px;
	background-color: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(0, 0, 0, 0.3);
	padding: 10px;
	text-align: left;
}
.dz-preview.dz-success {
	background-color: rgba(43, 185, 185, 0.3);
}
.dz-preview.dz-error {
	background-color: rgba(252, 88, 40, 0.3);
}
.dz-preview .dz-remove {
	position: absolute;
	top: -6px;
	right: -6px;
	cursor: pointer;
}
.dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
	display: block;
	opacity: 0;
	position: absolute;
	left: 4px;
	top: 4px;
	color: #000000;
	border-color: #716c3d;
	background-color: #f5ec85;
	padding: 5px;
	border: 1px solid;
}
.dz-preview.dz-error:hover .dz-error-message,
.dropzone-previews .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
}
#songImportUploadedFiles,
#songImportImportSubmit,
#songImportUploadProgress,
#songImportUploadLocation,
#templateImportUploadedFiles,
#templateImportImportSubmit,
#templateImportUploadProgress,
#templateImportUploadLocation {
	display: none;
}
#textboxAlert,
#clipboxAlert {
	display: none;
	position: absolute;
	right: 24px;
	width: 150px;
	text-align: center;
	vertical-align: middle;
}
.rightSideBox {
	float: right;
	width: 35%;
}
.rightSideBox.wide {
	width: 65.66%;
}
.rightSideBox .box {
	line-height: 120%;
	width: 100%;
}
.rightSideBox .box h2 {
	margin-bottom: 10px;
}
.rightSideBox .box p,
.rightSideBox .box ul {
	margin-bottom: 10px;
}
.rightSideBox .box > span {
	display: inline-block;
	font-weight: 700;
	padding: 2px;
	margin-bottom: 3px;
	line-height: 100%;
}
.LivePreview{
	position: relative;
	background-color: var(--color-brown-light);
	border: 1px solid var(--color-brown-light);
	padding: 10px;
	margin-bottom: 10px;
}
.templatePreview{
	overflow: hidden;
}
.templatePreviewCol {
    float: left;
    padding-bottom: 100%;
    margin-bottom: -100%;
}
.PVRowOne {
    float: left;
}
.PVRowTwo {
	color: var(--color-blue-dark);
	padding-top:3px;
	padding-left:3px;
	border-left: dotted 1px var(--color-blue-dark);
    float: left;
	writing-mode: vertical-lr;
	text-orientation: upright; 
}

.templatePreviewScene {
	padding: 5px 5px 5px 5px;
}
.templatePreviewSceneDesc{
	padding: 0px 5px 0px 5px;
}
.templatePreviewBlock {
	padding: 0px 5px 0px 5px;
}
.ucword,
.correctText {
	position: relative;
	cursor: pointer;
	padding: 0 3px;
}
.ucword .ucwordIgnore,
.correctText .ucwordIgnore {
	display: none;
	cursor: pointer;
	position: absolute;
	top: -10px;
	right: -10px;
}
.ucword:hover .ucwordIgnore,
.correctText:hover .ucwordIgnore {
	display: block;
}
#changelogOverlay h3 {
	margin-bottom: 10px;
}
#changelogOverlay p {
	margin-bottom: 4px;
}
.rightsTr i,
.locationTr i,
.rightsTr svg,
.locationTr svg {
	cursor: pointer;
}
.helpMenu,
.feedbackMenu {
	width: 25%;
}
.helpContent,
.feedbackContent {
	margin-left: 26%;
	width: 74%;
}
#help .leftSideBox h2,
#feedback .leftSideBox h2 {
	margin: 0;
}
#help .leftSideBox h3,
#feedback .leftSideBox h3 {
	margin: 0;
}
#help ul li,
#feedback ul li {
	margin: 0 0 12px 0;
}
#help ul li.highlight,
#feedback ul li.highlight {
	background-color: var(--color-yellow);
	padding: 4px 0;
}
#help ul li:last-child,
#feedback ul li:last-child {
	margin-bottom: 0;
}
#help ul li ul,
#feedback ul li ul {
	margin-top: 10px;
}
#help ul li ul li,
#feedback ul li ul li {
	margin: 0 0 4px 0;
}
#help ul li ul li a,
#feedback ul li ul li a {
	font-size: 1em;
}
#help .searchResults,
#feedback .searchResults {
	margin-bottom: 10px;
}
#help .searchResults li,
#feedback .searchResults li {
	margin: 0 0 4px 0;
	display: block;
}
#help .newestEntries h2,
#feedback .newestEntries h2,
#help .suggestEntry h2,
#feedback .suggestEntry h2,
#help .needsUpdateEntries h2,
#feedback .needsUpdateEntries h2 {
	margin-bottom: 10px;
}
#help .newestEntries li,
#feedback .newestEntries li,
#help .suggestEntry li,
#feedback .suggestEntry li,
#help .needsUpdateEntries li,
#feedback .needsUpdateEntries li {
	margin: 0 0 4px 0;
}
#help .entries,
#feedback .entries {
	display: none;
}
#help .entries li a:hover,
#feedback .entries li a:hover {
	color: var(--color-red-dark);
}
#help .entry ol,
#feedback .entry ol {
	list-style-type: decimal;
}
#help .entry ul,
#feedback .entry ul {
	list-style-type: disc;
}
#help .entry .share,
#feedback .entry .share {
	display: inline-block;
	margin-right: 10px;
}
#help .entry .category,
#feedback .entry .category {
	font-style: italic;
	display: inline-block;
}
#help .entry .needsUpdate,
#feedback .entry .needsUpdate,
#help .entry .reportUpdate,
#feedback .entry .reportUpdate {
	display: none;
}
#help .entry .needsUpdateShow,
#feedback .entry .needsUpdateShow {
	display: block;
}
#help .entry .date,
#feedback .entry .date {
	font-style: italic;
	display: inline-block;
}
#help .entry .date:after,
#feedback .entry .date:after {
	content: ",\00a0";
}
#help .entry textarea,
#feedback .entry textarea,
#help .entry .textarea,
#feedback .entry .textarea {
	height: 120px;
}
#help #feedbackComments textarea,
#feedback #feedbackComments textarea {
	width: 100%;
}
#help #helpScreenshots span,
#feedback #helpScreenshots span {
	position: relative;
	margin-right: 10px;
	display: inline-block;
}
#help #helpScreenshots img,
#feedback #helpScreenshots img {
	max-width: 100px;
	max-height: 100px;
	cursor: pointer;
}
#help #helpScreenshots .screenshotDeleteDiv,
#feedback #helpScreenshots .screenshotDeleteDiv {
	position: absolute;
	bottom: 5px;
	right: 5px;
}
#help .entry .content ul,
#feedback .entry .content ul,
#editorPreview ul,
#tinymce ul,
#help .entry .content ol,
#feedback .entry .content ol,
#editorPreview ol,
#tinymce ol {
	list-style-position: inside;
	margin-bottom: 10px;
	padding: 0;
}
#help .entry .content ul li,
#feedback .entry .content ul li,
#editorPreview ul li,
#tinymce ul li,
#help .entry .content ol li,
#feedback .entry .content ol li,
#editorPreview ol li,
#tinymce ol li {
	margin-bottom: 3px;
	margin-left: 10px;
}
#help .entry .content ul,
#feedback .entry .content ul,
#editorPreview ul,
#tinymce ul {
	list-style-type: disc;
}
#help .entry .content blockquote,
#feedback .entry .content blockquote,
#editorPreview blockquote,
#tinymce blockquote {
	margin: 0 0 10px 0;
	padding: 6px;
	background-color: var(--color-brown);
}
#help .entry .content blockquote p,
#feedback .entry .content blockquote p,
#editorPreview blockquote p,
#tinymce blockquote p {
	margin: 0;
}
#help .entry .content img,
#feedback .entry .content img,
#editorPreview img,
#tinymce img {
	max-width: 100%;
}
ul.list {
	list-style-position: inside;
	list-style-type: disc;
	margin-bottom: 10px;
	padding: 0;
}
ul.list li {
	margin-left: 10px;
}
ul.list li ul {
	list-style-type: square;
}
ul.list li ul li {
	margin-left: 30px;
}
