html {
  background: #fff;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
}

.clearfix::before,
.clearfix::after {
	content:"";
	display:table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	zoom:1;
}

* {
	margin: 0;
	padding: 0;
}

a {
	cursor: pointer;
}

a, a:visited {
	color: #2196F3;
	text-decoration: none;
}

a[href], a[data-src] {
	cursor: pointer;
}

a:hover, a:focus {
	color: #1565C0;
	text-decoration: none;
}

a:focus,
button:focus { /* http://a11yproject.com/posts/never-remove-css-outlines/ */
	outline: thin dotted;
}

a[href^="http"]:empty::before {
	content: attr(href);
}

a.external::after {
	content: "\f35d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	opacity: 0.65;
}

@font-face {
  font-display: block;
  font-family: "Marvin Visions";
  src:url("../../lib/webfonts/MarvinVisions-Bold.woff") format('woff'),
      url("../../lib/webfonts/MarvinVisions-Bold.woff2") format('woff2'),
      url("../../lib/webfonts/MarvinVisions-Bold.eot") format('eot');
}

/* ---- */

p {
	margin-bottom: 1.25rem;
}

b,
strong {
	font-weight: 700;
}

cite,
dfn,
em {
	font-style: italic;
}

small {
	font-size: 0.875em;
}

address {
	display: block;
}

mark {
	background-color: #fafafa;
	color: #333;
	padding-left : 0.25em;
	padding-right: 0.25em;
}

/* ---- */

hr {
	border-top: 0 solid #e0e0e0;
	border-width: 1px 0 0 0;
	clear: both;
	margin: 1.25rem 0 !important;
}

/* ---- */

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
	line-height: 1.125em;
	margin: 2.5rem 0 1.25rem;
}

/* ---- */

ol, ul {
	margin-bottom: 1.25rem;
	padding-left: 32px;
}

ol li {
	list-style-type: decimal;
	margin: 0.5rem 0;
}

ul li {
	list-style-position: outside;
	list-style-type: square;
	margin: 0.5rem 0;
}

dl {
	font-size: 0;
	margin: 0 0 1.25rem;
}

dt {
	font-size: 0.875rem;
	font-weight: 700;
	margin: 1.25rem 0 0.25rem;
}

dd {
	font-size: 0.75rem;
	margin: 0.25rem 0 0.75rem;
}

/* ---- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	box-sizing: border-box;
	empty-cells: show;
	font-size: 0.875rem;
	line-height: 1.125rem;
	margin: 1.25rem 0;
	text-align: left;
	vertical-align: baseline;
	width: 100%;
}

table, thead, tfoot {
	border: 1px solid #e0e0e0;
	padding: 0;
}

thead {
	vertical-align: bottom;
}

tr {
	margin:  0;
	padding: 0;
}

td, th {
	margin:  0;
	padding: 0.5em 0.625em;
}

table.table-striped tbody tr:nth-child(odd) {
	background-color: #ffffff;
}

table.table-striped tbody tr:nth-child(even) {
	background-color: #e0e0e0;
}

table.stack-table {
	border: none;
}

table.stack-table thead,
table.stack-table tfoot {
	display: none;
}

table.stack-table tr,
table.stack-table td,
table.stack-table th {
	display: block;
}

table.stack-table tbody tr {
	border: 1px solid #e0e0e0;
	margin: 0 0 1.25rem;
}

table.stack-table tbody td:before {
	content: attr(data-th);
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
}

table.stack-table tbody tr:last-child {
	margin-bottom: 0;
}

/* ---- */

form {
	display: block;
	margin: 0;
}

form p.denotes-required-fields {
	font-size: 0.75rem;
}

fieldset {}

legend {}

label {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0 0 0.625rem;
}

label[for] {
	cursor: pointer;
}

/*
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input:not([type]),
/**/
input,
select,
textarea
{
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	color: #333333;
	display: inline-block;
	font-size: 0.875rem;
	line-height: 2rem;
	margin-bottom: 1.25rem;
	padding: 0 0.625rem;
	transition: 0.2s border ease-in-out;
	vertical-align: top;
	width: 384px; max-width: 100%;
}

input:focus,
select:focus,
textarea:focus {
	border-color: #2196F3;
	outline: 0;
}

input[type="file"]:focus,
input[type="checkbox"]:focus,
input[type="radio"]:focus
{
	outline: thin solid #2196F3;
	outline: 1px auto #2196F3;
}

select {
	padding: initial;
}

textarea {
	line-height: 1.25rem;
	padding: 0.625rem;
	width: 768px;
}

input[disabled],
select[disabled],
textarea[disabled] {
	background-color: #eaeded;
	color: #cad2d3;
	cursor: not-allowed;
}

input[readonly],
select[readonly],
textarea[readonly]
{
	background-color: #eee;
	border-color: #ccc;
	color: #777;
}

input:focus:invalid,
select:focus:invalid,
textarea:focus:invalid
{
	border-color: #e9322d;
	color: #b94a48;
}

input[type="file"]:focus:invalid:focus,
input[type="checkbox"]:focus:invalid:focus,
input[type="radio"]:focus:invalid:focus
{
	outline-color: #e9322d;
}

label + input,
label + select,
label + textarea
{
	display: block;
}

input[type="hidden"] {
	display: none;
}

select {
	background-color: white;
	border: 1px solid #e0e0e0;
	color: #333333;
	display: block;
	height: 2rem;
	line-height: 1rem;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

select[multiple] {
	height: auto;
}

input[type="checkbox"],
input[type="radio"]
{
	display: inline-block;
	font-size: 1rem;
	width: auto;
}

input[type="checkbox"] + label,
input[type="radio"] + label
{
	cursor: pointer;
}

.check-list, .check-list li,
.radio-list, .radio-list li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ---- */

button, .button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background-color: #2196F3;
	color: #ffffff;
	border: none;
	border-radius: 2px;
	cursor: pointer;
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1.25rem;
	margin: 0;
	padding-left : 0.625rem;
	padding-right: 0.625rem;
	text-align: center;
	vertical-align: baseline;
	width: auto;
}

button:hover, .button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #1565C0;
}

.button.discreet,
button.discreet,
input[type="button"].discreet,
input[type="reset"].discreet,
input[type="submit"].discreet {
	background-color: transparent;
	color: #333;
}

/**
* Font Awesome Setup
*************************/

a::before, a::after,
span::before, span::after {
	-moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
}

a::before,
button::before,
input[type="submit"]::before {
	margin-right: 0.5rem;
}

a::after,
button::after,
input[type="submit"]::after {
	margin-left: 0.5rem;
}

.fa-ul > li {
	list-style: none;
}

/**
* Backlight 2 Logo
*************************/

ul.backlight-logo {
	box-sizing: border-box;
	display: inline-block;
	font-size: 0;
	height: 100%;
	margin: 0 18px 0 0;
	overflow: hidden;
	padding: 0;
	position: relataive; top: 0; left: 0;
	vertical-align: top;
	width: 288px;
	width: 253px;
}

ul.backlight-logo a {
	color: #454545;
	display: block;
	height: 100%;
	outline: none;
	text-decoration: none;

  /* new blue logo for Backlight 6 */
  color: #2E66B5;
}

ul.backlight-logo li {
	margin: 0;
}

ul.backlight-logo ul {
	background: rgba(0,0,0,0.2);
	border: 2px solid transparent;
	box-sizing: border-box;
	display: inline-block;
	margin: 4px 0;
	padding: 0;
	position: relative;
	vertical-align: top;
	width: 36px; height: 36px;
}

ul.backlight-logo ul li {
	background-color: #fff;
	box-sizing: border-box;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 25%; height: 25%;
}

ul.backlight-logo svg {
	display: inline-block;
	font-family: 'Marvin Visions';
	margin: 0 0 0 4px;
}

ul.backlight-logo svg text {
	fill: currentColor;
}

@media screen and ( max-width: 1140px ) {
	ul.backlight-logo {
		margin-left: 12px;
	}
}

/**
* Fedora
*************************/

.page {
  overflow-x: hidden;
}

.pageBody {
  padding-top: 45px;
}

.fedora {
  background-color: #ffffff;
  overflow: visible;
  position: fixed; top: 0; left: 0;
}

.is-scrolling .fedora .inner {
  box-shadow: 0 2px 3px -3px rgba(0,0,0,0.35);
}

.fedora > .inner {
	border-bottom: 1px solid #454545;
  box-sizing: border-box;
  height: 45px;
  margin: 0 auto;
	max-width: 1140px;
	position: relative;
}

@media screen and ( max-width: 1140px ) {
  .fedora p {
    padding: 0 12px;
  }
}

/**
* Navigation (Extra)
*************************/

.fedora ul.menu {
	float: none;
}

.fedora ul.menu li a,
.fedora ul.menu li span {
  padding: 0 18px;
}

.fedora ul.menu--user {
	float: right;
}

nav.nav {
	display: none;
}

/* ---- */

.column--side ul.menu {
	border-top: 1px solid rgba(255,255,255,0.5);
}

.column--side ul.menu li {
	display: block;
	border-bottom: 1px solid rgba(255,255,255,0.5);
}

.column--side ul.menu ul {
	border-width: 1px 1px 0;
}

.column--side ul.menu.mouseable li:hover > ul,
.column--side ul.menu.touchable li.hover > ul
{
	top: -1px; left: 100%;
}

.column--side ul.menu.mouseable li:hover > ul.position-right,
.column--side ul.menu.touchable li.hover > ul.position-right
{
	left: auto; right: 100%;
}

/* ---- */

ul.menu .menu-item.menu-item-has-children > a,
ul.menu .menu-item.menu-item-has-children > span {
	padding-right: 24px;
}

ul.menu .menu-item.menu-item-has-children > a::after,
ul.menu .menu-item.menu-item-has-children > span::after {
	content: '\f105';
	display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	line-height: 44px;
	opacity: 0.75;
	position: absolute; top: 0; right: 0;
	text-align: center;
	width: 24px;
}

ul.menu > .menu-item.menu-item-has-children > a::after,
ul.menu > .menu-item.menu-item-has-children > span::after {
	content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

ul.menu.touchable .menu-item.menu-item-has-children.hover > a::after,
ul.menu.touchable .menu-item.menu-item-has-children.hover > span::after {
	content: '\f0c1';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/**
* Footer
*************************/

.footer {
  border-top: 1px solid #f5f5f5;
  box-sizing: border-box;
  text-align: right;
}

.footer p.copyright {
	display: inline-block;
  font-size: 0.75rem;
  line-height: 44px;
  margin: 0;
}

@media screen and ( max-width: 1140px ) {
  .footer p.copyright {
    margin: 0 12px;
  }
}

p#testing-badge {
	background-color: #F44336;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.15);
	color: #FFF;
	display: inline-block;
	font-family: Arial;
	font-size: 0.625rem;
	letter-spacing: 0.05em;
	line-height: 1.25rem;
	margin: 0 0.625rem;
	padding: 0 0.625rem;
	vertical-align: middle;
}

/**
* Side Column(s)
*************************/

.column--side {
	background-color: #454545;
	box-sizing: border-box;
	padding: 44px 0 60px;
}

/**
* Main Column
*************************/

[data-layout~="0col"] .column--main,
[data-layout~="1col"] .column--main, .column--main
{
  padding-left : 0px;
  padding-right: 0px;
}

[data-layout~="2col"] .column--main,
[data-layout~="2col"][data-layout~="right"] .column--main,
[data-layout~="2col"][data-layout~="split"] .column--main,
[data-layout~="3col"] .column--main,
[data-layout~="3col"][data-layout~="right"] .column--main
{
  padding-left : 0;
  padding-right: 12px;
}

[data-layout~="2col"][data-layout~="left"] .column--main,
[data-layout~="3col"][data-layout~="left"] .column--main
{
  padding-left : 12px;
  padding-right: 0;
}

[data-layout~="3col"][data-layout~="split"] .column--main
{
  padding-left : 12px;
  padding-right: 12px;
}

@media screen and ( max-width: 1140px ) {
  #column--main {
    padding-left : 12px;
    padding-right: 12px;
  }
}

.column--main {
	font-size: 0.875rem;
	line-height: 1.25rem;
  padding-bottom: 72px;
}

/* ---- */

.breadcrumbs + *,
.column--main > :first-child:not(.breadcrumbs) {
	margin-top: 44px;
}

ul.breadcrumbs {
	font-size: 0.75rem;
	line-height: 1.125rem;
	margin: 13px 0;
	padding: 0;
}

ul.breadcrumbs li {
	display: inline-block;
	letter-spacing: 0.015em;
	list-style: none;
	padding: 0;
	vertical-align: top;
}

ul.breadcrumbs li::after {
	content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	margin: 0 10px;
	opacity: 0.5;
}

ul.breadcrumbs li:last-child::after {
	content: '\f107';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

/* ---- */

ul.actions {
	font-size: 0;
	margin-bottom: 1.25rem;
	padding: 0;
}

ul.actions.align-right {
	text-align: right;
}

ul.actions.wide {
	max-width: none;
}

ul.actions li {
	display: inline-block;
	list-style: none;
	font-size: 0.875rem;
	margin: 0 0.625rem 0.625rem 0;
	padding: 0;
	vertical-align: top;
}

ul.actions > input:first-child + li,
ul.actions li:first-child {
	margin-left: 0;
}

ul.actions li:last-child {
	margin-right: 0;
}

ul.actions a,
ul.actions button,
ul.actions input[type="submit"] {
	background-color: #fafafa;
	border-radius: 2px;
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	box-sizing: border-box;
	color: #2196F3;
	cursor: pointer;
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1.75rem;
	min-width: 64px;
	padding: 0 0.625rem;
	text-align: center;
}

ul.actions a:hover,
ul.actions button:hover,
ul.actions input[type="submit"]:hover {
	background-color: #f5f5f5;
	color: #1565C0;
}

ul.actions a::before,
ul.actions button::before,
ul.actions input[type="submit"]::before {
	margin-right: 0.25rem;
	min-width: 0;
}

ul.actions a::after,
ul.actions button::after,
ul.actions input[type="submit"]::after {
	margin-left: 0.25rem;
	min-width: 0;
}

/* ul.actions button,
ul.actions input[type="submit"] {
	background-color: #2196F3;
	color: #ffffff;
}

ul.actions button:hover,
ul.actions input[type="submit"]:hover {
	background-color: #1565C0;
	color: #ffffff;
} */

/* ---- */

section.bl_settings {
	max-width: 768px;
}

.bl_settings h2 {
	border-bottom: 1px solid #e0e0e0;
	line-height: 1.50em;
}

.bl_settings dl {
	display: flex;
		flex-wrap: wrap;
	max-width: 100%;
}

.bl_settings dt,
.bl_settings dd {
	border-bottom: 1px solid #e0e0e0;
	flex: 0 0 auto;
	line-height: 1.50rem;
	margin: 0 0 1.125rem;
	width: 50%;
}

.bl_settings dt.multirow {
	border: none;
	margin-bottom: 0.625rem;
	width: 100%;
}

.bl_settings dd.multirow {
	padding-bottom: 1.125rem;
	width: 100%;
}

.bl_settings dd.parent {
	border: none;
	padding-bottom: 0;
}

.bl_settings dd.parent dl {
	margin: 0;
}

.bl_settings dd.parent dt,
.bl_settings dd.parent dd {
	font-size: 0.75rem;
}

.bl_settings_edit dd input,
.bl_settings_edit dd select,
.bl_settings_edit dd textarea {
	margin-bottom: 0.25rem;
}

.bl_settings dd input[type="radio"] {
	margin-right: 0.625rem;
}

.bl_settings dd label[for="required_yes"],
.bl_settings dd label[for="required_no"] {
	display: inline-block;
	margin: 0;
	margin-right: 1.25rem;
	vertical-align: top;
}

.bl_settings_boxed {
	border: 1px solid #e0e0e0;
	padding: 1.25rem 0.625rem 0.625rem;
}

.bl_settings_boxed > dl {
	margin-bottom: 0;
}

@media screen and ( max-width: 740px ) {

	.bl_settings dl {
		display: block;
	}

	.bl_settings dt,
	.bl_settings dd {
		width: 100%;
	}

	.bl_settings dt {
		margin-bottom: 0;
	}

	.bl_settings dd {
		border: none;
	}

	.bl_settings_edit dt {
		border: none;
	}

	.bl_settings_edit dd input,
	.bl_settings_edit dd select,
	.bl_settings_edit dd textarea {
		margin-top: 0.25rem;
	}

}

.bl_settings ul {
	font-size: 0;
}

.bl_settings li {
	font-size: 0.875rem;
}

.bl_settings > ul {
	padding: 0;
}

.bl_settings > ul > li {
	list-style: none;
}

.bl_settings > ul > li > ul li {
	font-size: 0.75rem;
}

/* ---- */

.description {
	color: #757575;
	cursor: help;
	float: right;
	font-weight: normal;
	margin-right: 0.625rem;
	position: relative;
	text-align: center;
}

.description .description_text {
	background-color: #1565C0;
	border-radius: 2px;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
	box-sizing: border-box;
	color: #fff;
	font-size: 0.75rem;
	line-height: 1.25rem;
	opacity: 0;
	padding: 0.75rem 0.625rem;
	pointer-events: none;
	position: absolute; bottom: 100%; right: -0.625rem;
	text-align: left;
	transform: translateY(1.125rem);
	transition: all .2s ease-out;
	visibility: hidden;
	width: 384px;
}

.description:hover .description_text {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0px);
	visibility: visible;
}

.description .description_text a {
	color: #FFF9C4;
}

.description .description_text::after {
	border-left: solid transparent 16px;
	border-top: solid #1565C0 16px;
	bottom: -12px;
	content: " ";
	height: 0;
	right: 0.625rem;
	margin: 0 18px 0 0;
	position: absolute;
	width: 0;
}

/* ---- */

#message {
	border: 0 solid rgba( 0, 0, 0, 0.15 );
	border-width: 0 0 0 8px;
	border-bottom-right-radius: 2px;
	border-top-right-radius: 2px;
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.15 );
	margin: 1.25rem 0;
	padding: 0.75rem 0.625rem;
	width: 768px; max-width: 100%;
}

#message > p:last-child {
	margin-bottom: 0;
}

#message a {
	text-decoration: underline;
}

#message.error,
#message.error a {
	color: #fff;
	background-color: #F44336;
}

#message.notice,
#message.notice a {
	color: #000;
	background-color: #fff;
}

#message.success,
#message.success a {
	color: #fff;
	background-color: #2196F3;
}

#message.highlighted {
	border-color: #8bc34a;
}

#message h1 {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.5rem;
	margin: 0;
	padding: 0;
}

#message p {
	font-size: 0.875rem;
	margin: 1.25rem 0;
}

#message a.action {
	font-size: 0.9em;
	text-decoration: none;
	color: #2196F3;
	margin-right: 2em;
}

#updates_message a, #upgrades_message a {
	font-weight: 700;
}

#externaltext_backlight_release a {
	font-size: 0.9em;
	text-decoration: none;
	color: #2196F3;
}

/* ---- */

#diagnostics .warning
{
	background: orange;
	padding: 0.25em;
	font-weight: bold;
}

#diagnostics .notice
{
	background: #ccc;
	padding: 0.25em;
	font-weight: bold;
}

#diagnostics .success
{
	background-color: #55ff55 !important;
	padding: 0.25em;
}

#diagnostics .error
{
	background-color: #f00 !important;
	padding: 0.25em;
	font-weight: bold;
}

/* ---- */

.ui-datepicker {
	z-index: 2 !important;
}

.column--main .footable.table > thead > tr > th,
.column--main .footable.table > tbody > tr > th,
.column--main .footable.table > tfoot > tr > th,
.column--main .footable.table > thead > tr > td,
.column--main .footable.table > tbody > tr > td,
.column--main .footable.table > tfoot > tr > td,
.column--main .footable-details.table > thead > tr > th,
.column--main .footable-details.table > tbody > tr > th,
.column--main .footable-details.table > tfoot > tr > th,
.column--main .footable-details.table > thead > tr > td,
.column--main .footable-details.table > tbody > tr > td,
.column--main .footable-details.table > tfoot > tr > td {
	padding: 0.5em 1em;
	line-height: 1.125rem;
	border-top: 1px solid #e0e0e0;
}
.column--main .footable.table > thead > tr > th,
.column--main .footable.table > thead > tr > td,
.column--main .footable-details.table > thead > tr > th,
.column--main .footable-details.table > thead > tr > td {
	border-bottom: 2px solid #e0e0e0;
}

.column--main .footable.table > tbody > tr > td > span.list-feature-icon {
	display: inline-block;
	font-size: 1rem;
	margin-right: 6px;
}

.column--main .footable.table > tbody > tr > td > span.list-feature-icon.disabled {
	color: #eee;
}

/* ---- */

#fields input {
	margin: 0;
}

#fields select {
	margin: 0;
	width: auto; min-width: 128px;
}

#fields input[type="button"] {
	line-height: 2rem;
	width: auto; min-width: 128px;
}

/**
* for /views/admin/two_factor_authentication.php
*************************/

fieldset.two-factor-authentication {
	border: 0;
}
fieldset.two-factor-authentication * {
	vertical-align: baseline;
}
fieldset.two-factor-authentication label[for=trust_this_device_yes] {
	display: inline;
	padding-left: 0.5em;
	font-weight: normal;
}

/**
* for /views/admin/list_users.php
*************************/

dt.user::before {
	color: #757575;
	content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
	margin-right: 0.625rem;
}

dt.user span a {
	margin: 0 0 0 12px;
}

dt.user.user-no::before {
	color: #bdbdbd;
	content: "\f235";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

dt.user.user-no span.inactive {
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 1.25rem;
}

.users dd a {
	margin-right: 12px;
}

/* ---- */


/**
* for /views/admin/addedit_contact_form.php
*************************/

#fields.contact_form_fields select {
	min-width: 96px;
}

/* ---- */


*[id*="externaltext_"].fancybox-content {
	font-size: 0.875rem;
	line-height: 1.25rem;
	margin: 24px;
	max-width: 768px;
}

button.fancybox-close-small:hover {
	background: transparent;
}

/* ---- */

li.highlight a,
li.highlight button,
li.highlight input[type="submit"] {
	background-color: #2196F3;
	color: #ffffff;
}

li.highlight a:hover,
li.highlight button:hover,
li.highlight input[type="submit"]:hover {
	background-color: #1565C0;
	color: #ffffff;
}

li.midlight a,
li.midlight button,
li.midlight input[type="submit"] {
	background-color: #8bc34a;
	color: #ffffff;
}

li.midlight a:hover,
li.midlight button:hover,
li.midlight input[type="submit"]:hover {
	background-color: #7cb342;
	color: #ffffff;
}

li.alert a,
li.alert button,
li.alert input[type="submit"] {
	background-color: #F44336;
	color: #ffffff;
}

li.alert.disabled a,
li.alert.disabled button[type="submit"],
li.alert input[type="submit"][disabled="disabled"] {
	background-color: #F29C96;
	color: #ffffff;
}

li.alert a:hover,
li.alert button:hover,
li.alert input[type="submit"]:hover {
	background-color: #E53935;
	color: #ffffff;
}

li.alert a[disabled="disabled"]:hover,
li.alert button[disabled="disabled"]:hover,
li.alert input[type="submit"][disabled="disabled"]:hover {
	background-color: #F29C96;
	color: #ccc;
}

li.disabled a,
li.disabled button,
li.disabled input[type="submit"] {
	background-color: #fafafa;
	color: #ccc;
	cursor: default;
	pointer-events: none;
}

/* ---- */
