﻿@charset "UTF-8";
/*------------------------------------------------------------------------------
	Animations
------------------------------------------------------------------------------*/
@-webkit-keyframes ex-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes ex-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/*------------------------------------------------------------------------------
	Pulse Background Color
------------------------------------------------------------------------------*/
/* pulse background to red and back */
.ex-pulse-alert {
  animation-name: pulseBgAlert;
  animation-duration: 1000ms;
}

@keyframes pulseBgAlert {
  0% {
    background: #FFF;
  }
  10% {
    background: #F55;
  }
  20% {
    background: #FFF;
  }
  30% {
    background: #F55;
  }
  100% {
    background: #FFF;
  }
}
/* pulse background to green and back */
.ex-pulse-success {
  animation-name: pulseBgSuccess;
  animation-duration: 1000ms;
}

@keyframes pulseBgSuccess {
  0% {
    background: none;
  }
  20% {
    background: #AD5;
  }
  100% {
    background: none;
  }
}
/* fade into green background */
.ex-pulse-select {
  animation-name: pulseBgSelect;
  animation-duration: 500ms;
}

@keyframes pulseBgSelect {
  0% {
    background: none;
  }
  100% {
    background: #AD5;
  }
}
/*------------------------------------------------------------------------------
	Main Layout
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Popups
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Input Drop-Downs
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Inputs
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Main Fonts
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Ripple Effect
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	jQuery UI Base Patches
------------------------------------------------------------------------------*/
.ui-state-active, .ui-widget-content .ui-state-active {
  border: 1px solid rgb(26.4625, 29, 31.5375);
  background: #495057;
}

.ui-button:hover .ui-button-icon.ui-icon {
  background-image: url(../Content/images/ui-icons_ffffff_256x240.png);
}

.ui-widget button.ex-btn {
  font-size: 0.85em;
}

.ui-widget-content a {
  color: #007bff;
}

/*------------------------------------------------------------------------------
	Bootstrap Base Patches
------------------------------------------------------------------------------*/
b, strong {
  font-weight: bold;
}

.btn-primary {
  color: #FFF;
  background-color: #495057;
  border-color: #495057;
}
.btn-primary:hover {
  background-color: rgb(96.26875, 105.5, 114.73125);
  border-color: rgb(96.26875, 105.5, 114.73125);
}

.w-1 {
  width: 1px;
  white-space: nowrap;
}

/* Remove default focus rings from all elements (e.g. DIVs) */
*:focus {
  outline: none;
}

/*------------------------------------------------------------------------------
	Full Layout (not logged on, header/footer banners)
------------------------------------------------------------------------------*/
#ex-full-header {
  background: #495057 !important;
}

#ex-full-content {
  margin: auto;
  margin-top: 1em;
  max-width: 90%;
}
#ex-full-content footer {
  text-align: center;
}

/* On screens that are 600px wide or less */
@media screen and (max-width: 600px) {
  #ex-full-content {
    margin: 0;
    padding: 0.25em;
    width: 100%;
    max-width: none;
  }
}
.ex-enterprise #ex-full-content {
  margin-top: 5em;
}

/*------------------------------------------------------------------------------
	SPA Layout (logged in)
------------------------------------------------------------------------------*/
#ex-app-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  white-space: nowrap;
  display: flex;
  z-index: 1;
  background: #495057;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

#ex-main-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 50px;
  bottom: 30px;
  overflow: hidden;
  z-index: 0;
}

#ex-main-menu {
  float: left;
  height: 100%;
}

#ex-main-content {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#ex-main-content.ex-toolstrip-vertical {
  flex-direction: row;
}

#ex-sidebar {
  float: right;
  height: 100%;
  width: 350px;
  overflow: auto;
  padding: 0.5rem;
  border: 1px solid #ced4da;
}

#ex-app-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #adb5bd;
  background: #495057;
  z-index: 1;
  box-shadow: 0 -2px 3px rgba(0, 0, 0, 0.2);
}
#ex-app-footer a {
  color: #FFF;
}
#ex-app-footer .ex-site-seal img {
  max-height: 24px;
}

#ex-page-fixed {
  height: 100%;
  overflow: auto;
  position: relative;
}
#ex-page-fixed #ex-page-content {
  position: relative;
  margin: 0.5rem;
}
#ex-page-fixed #ex-page-content.ex-fixed {
  height: 100%;
  overflow: hidden;
  margin: 0;
}

/* On screens that are 600px wide or less */
@media screen and (max-width: 600px) {
  #ex-main-menu {
    display: none;
    position: fixed;
    z-index: 1000;
  }
  #ex-main-menu-splitter {
    display: none;
  }
  .flex-column-mobile {
    flex-direction: column;
  }
}
/* On TOUCH screens that are 800px wide or less */
@media screen and (max-width: 800px) {
  .touch #ex-main-menu {
    display: none;
    position: fixed;
    z-index: 1000;
  }
  .touch #ex-main-menu-splitter {
    display: none;
  }
  .touch .flex-column-mobile {
    flex-direction: column;
  }
}
/*------------------------------------------------------------------------------
	Empty Layout (no branding, e.g. displaying emails)
------------------------------------------------------------------------------*/
.ex-page-empty > .ex-page-content {
  margin: auto;
  padding: 1em;
  max-width: 900px;
}

/*------------------------------------------------------------------------------
	Project Layout (with project header/footer banners)
------------------------------------------------------------------------------*/
#ex-project-content {
  margin: auto;
  margin-top: 1em;
  max-width: 900px;
  min-height: 97vh; /* try to avoid scroll bar when not needed */
}
#ex-project-content .heading,
#ex-project-content .header,
#ex-project-content .footer,
#ex-project-content footer,
#ex-project-content .header p {
  text-align: center;
}
#ex-project-content footer {
  position: sticky;
  top: 100%;
  height: 70px; /* tagline plus SSL certificate logo */
}

.ex-page-project {
  /*margin: 0 1em;*/ /* messes up reg pages - banner hangs over content edges */
}
.ex-page-project > .ex-page-content {
  margin: auto;
  padding: 1em;
  max-width: 900px;
  border: 1px solid #CCC;
}

/*------------------------------------------------------------------------------
	Embedded Pages
	Pages that may be embedded in the SPA or the simple/project layouts.
	The ex-embedded-page container is in the content page, and not in the
	layout template (it should be the same as .ex-page-content).
------------------------------------------------------------------------------*/
.ex-embedded-page {
  margin: auto;
  padding: 0;
  max-width: 900px;
}
.ex-embedded-page .heading,
.ex-embedded-page .header,
.ex-embedded-page .footer,
.ex-embedded-page footer,
.ex-embedded-page .header p {
  text-align: center;
}

i.ex-icon.main-icon {
  font-size: 5em;
}

/*------------------------------------------------------------------------------
	Simple layout with page transitions (login / errors)
------------------------------------------------------------------------------*/
.ex-page-simple {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  background: #212529;
  text-align: center;
  color: #fff;
  padding: 3em;
}
.ex-page-simple > .ex-page-content {
  margin: auto;
}
#ex-page-fixed .ex-page-simple {
  padding: 1em;
}
#ex-page-fixed .ex-page-simple .form-content {
  padding: 1em 0;
}
.ex-page-simple i.ex-icon.main-icon {
  font-size: 8em;
}
.ex-page-simple h1 {
  font-weight: 300;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
}
.ex-page-simple h2 {
  font-weight: normal;
  font-size: 20px;
}
.ex-page-simple p {
  text-align: center;
}
.ex-page-simple form {
  max-width: 600px;
  margin: auto;
}
.ex-page-simple .input-lg {
  height: 2em;
  padding: 0.25em 1em;
  font-size: 2em;
  line-height: 1.3333333;
  border-radius: 0;
  width: 100%;
}
.ex-page-simple .input-underline {
  background: 0 0;
  border: none;
  box-shadow: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  color: #FFF;
  border-radius: 0;
}
.ex-page-simple .input-underline:focus {
  border-bottom: 2px solid #fff;
  box-shadow: none;
}
.ex-page-simple .simple-btn, .ex-page-simple .simple-btn:visited {
  user-select: none;
  display: inline-block;
  border-radius: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  background: #212529;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  line-height: 2.5rem;
  padding: 0rem 1rem;
  text-decoration: none;
}
.ex-page-simple .simple-btn:hover, .ex-page-simple .simple-btn:focus, .ex-page-simple .simple-btn:active, .ex-page-simple .simple-btn:visited:hover, .ex-page-simple .simple-btn:visited:focus, .ex-page-simple .simple-btn:visited:active {
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  outline: none;
}
.ex-page-simple .form-group {
  padding: 8px 0;
}
.ex-page-simple .form-group input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.ex-page-simple .form-group input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.ex-page-simple .form-group input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.ex-page-simple .form-group input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.25) !important;
}
.ex-page-simple .form-content {
  padding: 2em 0;
}

/*------------------------------------------------------------------------------
	Main Header Toolbar
	(main positioning is in _layout.scss)
------------------------------------------------------------------------------*/
#ex-app-header #ex-header-img {
  vertical-align: middle;
  max-height: 48px;
}
#ex-app-header #ex-page-title {
  font-weight: bold;
  font-size: 1.5em;
  vertical-align: middle;
  line-height: 45px;
  color: #f8f9fa;
}
#ex-app-header #ex-page-subtitle {
  margin: 0 1em;
  font-size: 1.25em;
  font-style: italic;
  vertical-align: middle;
  line-height: 45px;
  color: #f8f9fa;
}
#ex-app-header #CenterHeaderControls {
  flex: auto;
  text-align: center;
}
#ex-app-header #RightHeaderControls {
  display: flex;
}
#ex-app-header input.ex-btn + label {
  margin: 10px 5px;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
  color: #f8f9fa;
  background: none;
  border-radius: 1em;
  height: 30px;
  min-width: 30px;
}
#ex-app-header input.ex-btn + label:hover {
  background: rgba(33, 37, 41, 0.25);
}
#ex-app-header input.ex-btn:checked + label {
  background: rgb(49.73125, 54.5, 59.26875);
  border-color: rgb(26.4625, 29, 31.5375) rgb(120.15, 131, 141.85) rgb(120.15, 131, 141.85) rgb(26.4625, 29, 31.5375);
}
#ex-app-header .ex-toolbar-panel {
  position: relative;
  border: none;
  padding: 0;
  vertical-align: middle;
  color: #f8f9fa;
  background: none;
  height: 48px;
  line-height: 48px;
}
#ex-app-header .ex-toolbar-panel .ex-input, #ex-app-header .ex-toolbar-panel .dropdown-menu {
  line-height: 1.5em;
  color: #f8f9fa;
  background: #495057;
}
#ex-app-header .ex-toolbar-panel .ex-input .dropdown-item, #ex-app-header .ex-toolbar-panel .dropdown-menu .dropdown-item {
  color: #f8f9fa;
}
#ex-app-header .ex-toolbar-panel .ex-input .dropdown-item:hover, #ex-app-header .ex-toolbar-panel .dropdown-menu .dropdown-item:hover {
  color: #343a40;
  background-color: #f8f9fa;
}
#ex-app-header .ex-toolbar-panel .ex-input-prefix {
  color: #adb5bd;
}
#ex-app-header .ex-toolbar-panel .ex-input-prefix .ex-icon {
  font-size: 1.75em;
  vertical-align: middle;
  color: #f8f9fa;
}
#ex-app-header .ex-toolbar-button {
  position: relative;
  border: none;
  cursor: pointer;
  padding: 12px 15px 8px 15px;
  vertical-align: middle;
  color: #f8f9fa;
  background: none;
  height: 48px;
}
#ex-app-header .ex-toolbar-button:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
#ex-app-header .ex-toolbar-button:hover {
  background: rgba(33, 37, 41, 0.25);
  text-decoration: none;
  color: #f8f9fa;
}
#ex-app-header .ex-toolbar-button > i.ex-icon {
  font-size: 1.5em;
}
#ex-app-header .ex-toolbar-dropdown {
  background-color: #495057;
  min-width: 0;
  white-space: nowrap;
  margin: 0;
  padding: 0.25em;
  box-shadow: 3px 3px 8px #555;
}

/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
/* On screens that are 600px wide or less */
@media screen and (max-width: 600px) {
  #ex-app-header #ex-header-img, #ex-app-header #ThemeDropDown, #ex-app-header #MainSettingsBtn {
    display: none;
  }
  #ex-app-header #ex-page-title {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1.75em;
  }
  #ex-app-header #ex-page-subtitle {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0.75em;
    line-height: 1em;
  }
  #ex-app-header .ex-toolbar-button {
    padding: 12px 5px 8px 5px;
  }
  #ex-app-footer {
    font-size: 0.75em;
  }
}
/* On TOUCH screens that are 800px wide or less */
@media screen and (max-width: 800px) {
  .touch #ex-app-header #ex-header-img, .touch #ex-app-header #ThemeDropDown, .touch #ex-app-header #MainSettingsBtn {
    display: none;
  }
  .touch #ex-app-header #ex-page-title {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1em;
    line-height: 1.75em;
  }
  .touch #ex-app-header #ex-page-subtitle {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 0.75em;
    line-height: 1em;
  }
  .touch #ex-app-header .ex-toolbar-button {
    padding: 12px 5px 8px 5px;
  }
  .touch #ex-app-footer {
    font-size: 0.75em;
  }
}
/*------------------------------------------------------------------------------
	Fixed-Height Content
	Containers that fill the page with independent scroll regions.
	These also require "ex-fixed" class on the #ex-page-content container.
	(See _pages.scss and PageManager.ts)
------------------------------------------------------------------------------*/
.ex-fixed-content {
  padding: 0.5rem;
  overflow: hidden;
  height: 100%;
}

.ex-fixed-container {
  position: relative;
  height: 100%;
}

.ex-flexcolumn {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ex-flexrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}

.ex-flexfill {
  flex: 1;
}

/*------------------------------------------------------------------------------
	Fixed Split Content - Fixed-width Left Panel and right fill panel.
	(typically with splitter between)
------------------------------------------------------------------------------*/
.ex-fixed-split-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.ex-fixed-split-content .ex-left-panel {
  position: relative;
  min-width: 200px;
  padding: 0;
  overflow: auto;
}
.ex-fixed-split-content .ex-left-panel > .ex-content-container {
  height: 100%;
}
.ex-fixed-split-content .ex-fill-panel {
  flex: 1;
  min-width: 200px;
  padding: 0;
  overflow: auto;
  position: relative;
}
.ex-fixed-split-content .ex-fill-panel > .ex-content-container {
  height: 100%;
}

/*------------------------------------------------------------------------------
	Fixed Rows - Fixed-height Header & Footer with Content filling the middle
------------------------------------------------------------------------------*/
.ex-fixed-rows {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ex-fixed-rows .ex-header-row {
  flex: 0;
}
.ex-fixed-rows .ex-content-row {
  flex: 1;
  overflow: hidden;
  height: 100%;
}
.ex-fixed-rows .ex-content-row:not(.ex-scroll) > div {
  height: 100%;
  overflow: auto;
}
.ex-fixed-rows .ex-content-row.ex-scroll {
  overflow: auto;
}
.ex-fixed-rows .ex-footer-row {
  flex: 0;
}
.ex-fixed-rows .ex-footer-row.ex-footer-buttons {
  margin: 0.5em;
  text-align: center;
}

.ex-content-row .ui-tabs {
  height: calc(100% - 2.5em);
}
.ex-content-row .ui-tabs-panel {
  overflow: auto;
  height: 100%;
}

/*------------------------------------------------------------------------------
	Bootstrap tabs with fixed-height content
------------------------------------------------------------------------------*/
.ex-fixed-tabs {
  overflow: hidden !important;
  height: 100%;
}
.ex-fixed-tabs > .tab-content {
  height: calc(100% - 45px);
}
.ex-fixed-tabs > .tab-content > .tab-pane {
  height: 99%;
}

/*------------------------------------------------------------------------------
	Mobile-Friendly
------------------------------------------------------------------------------*/
.mobile-friendly .mobile-hidden {
  display: none !important;
}

/*------------------------------------------------------------------------------
	Splitters
------------------------------------------------------------------------------*/
.ex-split-left, .ex-split-right {
  width: 5px;
  background: #f8f9fa;
  cursor: ew-resize;
}
.ex-split-left.full-height, .ex-split-right.full-height {
  height: 100%;
}
.ex-split-left:hover, .ex-split-right:hover {
  background: #007bff;
}
.ex-split-left::after, .ex-split-right::after {
  content: "⁞"; /* f2052 Vertical Dots Four */
  /*content: "\f142";*/ /* f142 fa-ellipsis-v */
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  margin-top: -11px;
  font-size: 20px;
  font-weight: 100;
  color: #adb5bd;
}

.ex-split-left {
  float: left;
}

.ex-split-right {
  float: right;
}

/*------------------------------------------------------------------------------
  Page Transitions.
------------------------------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
#ex-page-full #ex-page-content {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

#ex-page-fixed #ex-page-content {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.ex-page-simple > .ex-page-content {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
}

/*------------------------------------------------------------------------------
	Themes
------------------------------------------------------------------------------*/
.ex-theme-bg-blue {
  background-color: #007bff !important;
}
.ex-theme-bg-blue:hover {
  background: rgb(102, 175.8, 255) !important;
}

.ex-theme-bg-indigo {
  background-color: #6610f2 !important;
}
.ex-theme-bg-indigo:hover {
  background: rgb(163.9285714286, 112.7380952381, 247.2619047619) !important;
}

.ex-theme-bg-green {
  background-color: #28a745 !important;
}
.ex-theme-bg-green:hover {
  background: rgb(92.8405797101, 216.1594202899, 121) !important;
}

.ex-theme-bg-pink {
  background-color: #e83e8c !important;
}
.ex-theme-bg-pink:hover {
  background: rgb(242.8611111111, 153.1388888889, 194.3055555556) !important;
}

.ex-theme-bg-orange {
  background-color: #fd7e14 !important;
}
.ex-theme-bg-orange:hover {
  background: rgb(253.8607594937, 181.5189873418, 121.1392405063) !important;
}

.ex-theme-bg-grey {
  background-color: #868e96 !important;
}
.ex-theme-bg-grey:hover {
  background: rgb(188.610619469, 193, 197.389380531) !important;
}

.ex-theme-bg-darkgrey {
  background-color: #343a40 !important;
}
.ex-theme-bg-darkgrey:hover {
  background: rgb(97.724137931, 109, 120.275862069) !important;
}

/*------------------------------------------------------------------------------
	Badges
------------------------------------------------------------------------------*/
a.ex-badge, span.ex-badge {
  background-color: #adb5bd;
  color: #343a40;
  font-size: 0.8em;
  padding: 0.25em 1em;
  border-radius: 1em;
  white-space: nowrap;
}
a.ex-badge:hover, span.ex-badge:hover {
  color: #f8f9fa !important;
}
a.ex-badge.ex-selected, span.ex-badge.ex-selected {
  background-color: #007bff;
  color: #f8f9fa;
}
a.ex-badge.ex-selected::before, span.ex-badge.ex-selected::before {
  content: "\f00c";
  font-family: "FontAwesome";
  margin-right: 0.25em;
}
a.ex-badge.ex-warning, span.ex-badge.ex-warning {
  background-color: #fd7e14;
  color: #f8f9fa;
}
a.ex-badge.ex-warning::before, span.ex-badge.ex-warning::before {
  content: "\f071";
  font-family: "FontAwesome";
  margin-right: 0.25em;
}
a.ex-badge.ex-error, span.ex-badge.ex-error {
  background-color: #dc3545;
  color: #f8f9fa;
}
a.ex-badge.ex-error::before, span.ex-badge.ex-error::before {
  content: "\f06a";
  font-family: "FontAwesome";
  font-size: 1.2em;
  line-height: 1.2em;
  margin-right: 0.25em;
}
a.ex-badge.ex-small, span.ex-badge.ex-small {
  font-size: 0.8em;
  padding: 0.25em;
}
a.ex-badge.ex-small-right, span.ex-badge.ex-small-right {
  float: right;
  font-size: 0.65em;
  padding: 0 0.5em;
  line-height: 1.75em;
}
a.ex-badge.ex-tiny, span.ex-badge.ex-tiny {
  font-size: 0.5em;
  padding: 0.25em 0.5em;
  vertical-align: middle;
}

/*------------------------------------------------------------------------------
	Badge Count Overlays
------------------------------------------------------------------------------*/
*[data-badge-count]:after {
  position: absolute;
  display: inline-block;
  padding: 0.25em 0.5em;
  top: 0.5em;
  right: 0.5em;
  min-width: 1.5em;
  font-size: 1em;
  text-align: center;
  content: attr(data-badge-count);
  color: #FFF;
  background: #007bff;
  border-radius: 50%;
}

.badge-pop[data-badge-count]:hover:after {
  font-size: 1.25em;
  top: 0;
  right: 0;
}

.badge-small[data-badge-count]:after {
  padding: 0;
  font-size: 0.75em;
  line-height: 1.5em;
}
.badge-small[data-badge-count].badge-pop:hover:after {
  font-size: 1em;
}

.badge-warning[data-badge-count]:after {
  background: orange;
}

.badge-alarm[data-badge-count]:after {
  background: #f33;
}

/*------------------------------------------------------------------------------
	Content / Copy / Text
------------------------------------------------------------------------------*/
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Segoe UI Symbol";
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  font-size: 1.8em;
}

h2 {
  font-size: 1.6em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

h1 > span, h2 > span, h3 > span, h4 > span {
  white-space: nowrap;
}

p {
  text-align: justify;
  margin-bottom: 0;
}

p + p,
p + H1,
p + H2,
p + H3,
p + ul, ul + p,
p + table, table + p,
p + div, div + p,
h1 + div, div + h1,
h2 + div, div + h2,
h3 + div, div + h3 {
  margin-top: 0.75rem;
}

a {
  color: #007bff;
}

a:hover {
  color: #495057;
}

/* Bootstrap has small=.8em */
.x-small {
  font-size: 0.7em;
}

.xx-small {
  font-size: 0.5em;
}

/*------------------------------------------------------------------------------
	IFRAMEs for email previews
------------------------------------------------------------------------------*/
iframe.full-height-iframe {
  height: 100vh;
}

/*------------------------------------------------------------------------------
	Miscellaneous Helpers
------------------------------------------------------------------------------*/
.ex-centered {
  width: auto;
  margin: auto;
}

.ex-center {
  text-align: center;
}

.ex-overflow-hidden {
  overflow: hidden;
}

.ex-float-left {
  float: left;
}

.ex-float-right {
  float: right;
}

.ex-middle {
  vertical-align: middle;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.6;
  filter: alpha(opacity=60);
}

/*------------------------------------------------------------------------------
	Icons
------------------------------------------------------------------------------*/
.material-icons {
  font-size: 1em;
}

.ex-icon.info {
  cursor: pointer;
  color: #007bff;
  font-size: 1.25em;
}

.ex-icon.alarm {
  color: #dc3545;
}

.ex-icon.warning {
  color: #fd7e14;
}

.ex-icon.success {
  color: #28a745;
}

.ex-icon.disabled {
  color: #ccc;
}

i.ex-icon.unicode {
  font-style: normal;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Symbol", "Segoe UI", "Helvetica Neue", Arial, sans-serif, Roboto;
  line-height: 1em;
}
i.ex-icon.unicode > span {
  display: inline-block;
  font-size: 1.25em;
  line-height: 0.5em;
  vertical-align: baseline;
}
i.ex-icon.unicode.smaller > span {
  font-size: 1em;
}
i.ex-icon.unicode.r90 > span {
  transform: rotate(90deg);
}
i.ex-icon.unicode.r180 > span {
  transform: rotate(180deg);
}
i.ex-icon.unicode.r270 > span {
  transform: rotate(270deg);
}

i.ex-icon.img {
  margin-right: 0.75em;
  height: 1em;
}
i.ex-icon.img img {
  max-width: 2em;
  max-height: 2em;
}

/*------------------------------------------------------------------------------
	Icons Selection / Samples
------------------------------------------------------------------------------*/
.ex-sample-icon {
  display: inline-block;
  border-radius: 0.25em;
  border: 1px solid #ccc;
  padding: 0.5em;
  margin: 0.1em;
  width: 4em;
  height: 3.5em;
  vertical-align: middle;
  text-align: center;
  font-size: 2em;
  cursor: pointer;
}

.ex-sample-icon > span {
  display: block;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.35em;
  white-space: normal;
}

.ex-sample-icon:hover {
  background-color: #eee;
}

.ex-sample-icon.selected {
  background-color: #007bff;
  color: #f8f9fa;
}

.icon-search-options {
  text-align: center;
}

.icon-search-results, .icon-count {
  margin: auto;
  text-align: center;
  font-style: italic;
  font-size: 0.8em;
}

.icon-search-dialog {
  text-align: center;
}

/*------------------------------------------------------------------------------
	Icon Spacing/Margins
------------------------------------------------------------------------------*/
i.ex-icon.inline {
  vertical-align: bottom;
}

i.ex-icon + span {
  margin-left: 0.25em;
}

/*------------------------------------------------------------------------------
	Info Panels
------------------------------------------------------------------------------*/
.ex-info-panel {
  display: flex;
  align-items: center;
  margin: 0;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  font-size: 0.9em;
  white-space: normal;
  overflow: auto;
}
.ex-info-panel p {
  margin-top: 0;
}
.ex-info-panel p + p {
  margin-top: 0.25em;
}
.ex-info-panel ul {
  margin: 0;
}
.ex-info-panel.inline {
  display: inline-block;
}

.ex-info-panel + p, p + .ex-info-panel,
.ex-info-panel + div, div + .ex-info-panel {
  margin-top: 0.75rem;
}

.ex-info-panel-icon {
  padding: 0.5rem;
  padding-right: 0;
}
.ex-info-panel-icon img {
  vertical-align: top;
}

.ex-info-panel-icon i {
  font-size: 3em;
  text-shadow: 1px 1px 1px #343a40;
  margin: 0 !important;
}

.ex-info-panel-content {
  padding: 0.5rem;
  width: 100%;
}

.ex-info-panel-heading {
  font-size: 1.25em;
  font-weight: bold;
}

.Information .ex-info-panel-icon i {
  color: #17a2b8;
}

.Question .ex-info-panel-icon i {
  color: #17a2b8;
}

.Success .ex-info-panel-icon i {
  color: #28a745;
}

.Warning .ex-info-panel-icon i {
  color: #fd7e14;
}

.Error .ex-info-panel-icon i {
  color: #dc3545;
}

.Failure .ex-info-panel-icon i {
  color: #dc3545;
}

.ex-info-panel.Bold {
  border: none;
  background: #f8f9fa;
  padding: 1rem;
}

.ex-info-panel.BoldBox, .ex-info-panel.WarningBox, .ex-info-panel.InfoBox {
  border: 0.5em solid #ccc;
  border-color: rgba(100, 100, 100, 0.1);
  background-color: rgba(100, 100, 100, 0.05);
  border-radius: 1em;
}

/*------------------------------------------------------------------------------
	Bold Box (for use in forms)
------------------------------------------------------------------------------*/
.ex-bold-box {
  display: flex;
  border: 0.5em solid #ccc;
  border-color: rgba(100, 100, 100, 0.1);
  background-color: rgba(100, 100, 100, 0.05);
  border-radius: 1em;
  padding: 0.5em !important;
}
.ex-bold-box .ex-boldbox-icon {
  margin-right: 0.5em;
}
.ex-bold-box .ex-boldbox-icon > i > img {
  max-width: 64px;
  max-height: 64px;
}
.ex-bold-box .ex-boldbox-content {
  display: flex;
  align-items: center;
}
.ex-bold-box .ex-boldbox-content > .ex-form-field > .ex-form-field:first-child {
  margin-top: 0;
}

/*------------------------------------------------------------------------------
	Code Blocks
------------------------------------------------------------------------------*/
.ex-code {
  display: inline-block;
  font-family: monospace;
  white-space: pre;
  background: #343a40;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
}
.ex-code code {
  display: block;
  padding: 1rem;
  background: #343a40;
  color: #f8f9fa;
  border-radius: 0.5rem;
}

/*------------------------------------------------------------------------------
	Progress Bars
	TODO: Why not use bootstrap/jquery-ui progress bars?
------------------------------------------------------------------------------*/
.ex-progressbar {
  border: 1px solid #CCC;
  border-radius: 0.5em;
  text-align: center;
  font-size: 0.8em;
  line-height: 3em;
  height: 3em;
  overflow: hidden;
  position: relative;
}
.ex-progressbar b {
  float: left;
  display: inline-block;
  height: 100%;
}
.ex-progressbar b.blue {
  background: #007bff;
}
.ex-progressbar b.green {
  background: #28a745;
}
.ex-progressbar b.red {
  background: #dc3545;
}
.ex-progressbar i {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  font-style: normal;
  font-weight: bold;
  pointer-events: none;
}

/*------------------------------------------------------------------------------
	Block Quotes
------------------------------------------------------------------------------*/
blockquote {
  display: inline-block;
  margin: 0.75rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  font-family: "Comic Sans MS";
  font-style: italic;
  font-weight: bold;
  font-size: 1.1em;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  color: #343a40;
}

blockquote:after, blockquote:before {
  position: relative;
  margin: 0 0.5em 0 0;
  padding: 0;
  font: normal normal normal 1.5em/1 FontAwesome;
  color: #adb5bd;
}

blockquote:before {
  content: "\f10d"; /* fa-quote-left */
  vertical-align: bottom;
}

blockquote:after {
  margin: 0 0 0 0.5em;
  content: "\f10e"; /* fa-quote-right */
  vertical-align: top;
}

/*------------------------------------------------------------------------------
	Tables
------------------------------------------------------------------------------*/
table .ex-img {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  width: 50px;
}
table .ex-mid {
  text-align: center;
  white-space: normal;
}
table .ex-qty, table .ex-num {
  text-align: center;
  white-space: nowrap;
}
table .ex-mny {
  text-align: right;
  white-space: nowrap;
}
table .ex-id, table .ex-dt {
  white-space: nowrap;
}
table:not(.ex-table-fixed) .ex-qty, table:not(.ex-table-fixed) .ex-num, table:not(.ex-table-fixed) .ex-mny, table:not(.ex-table-fixed) .ex-id, table:not(.ex-table-fixed) .ex-dt {
  width: 1px;
}
table .ex-total {
  font-weight: bold;
}
table .ex-not-paid {
  color: #dc3545;
}
table .total-row, table .total-column {
  font-weight: bold;
}
table .row-caption .ex-note {
  font-weight: normal;
}
table.tracking tbody tr {
  cursor: pointer;
}
table.tracking tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
table.tracking.dark tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
table > tbody > tr .ex-row-buttons {
  display: none;
  white-space: nowrap;
}
table > tbody > tr .ex-row-buttons .ex-icon {
  font-size: 2em;
}
table > tbody > tr:hover .ex-row-status {
  display: none;
}
table > tbody > tr:hover .ex-row-buttons {
  display: block;
}
table .row-caption {
  white-space: nowrap;
}
table .row-caption .ex-icon {
  vertical-align: middle;
  width: auto;
  height: auto;
}
table .row-caption > span {
  vertical-align: middle;
}

table.ex-table-compact > thead > tr > th, table.ex-table-compact > tbody > tr > td, table.ex-table-compact > tfoot > tr > td, table.compact > thead > tr > th, table.compact > tbody > tr > td, table.compact > tfoot > tr > td {
  padding: 0.25em;
}

table.ex-table-fixed {
  table-layout: fixed;
}

/*------------------------------------------------------------------------------
	Property List
------------------------------------------------------------------------------*/
table.ex-property-list td {
  padding: 0.25em 0;
  vertical-align: top;
}
table.ex-property-list td + td {
  padding-left: 1em;
}
table.ex-property-list.compact td {
  padding-top: 0;
  padding-bottom: 0;
}
table.ex-property-list.compact td + td {
  padding-left: 1em;
}

/*------------------------------------------------------------------------------
	Property Grid
------------------------------------------------------------------------------*/
table.ex-property-grid {
  width: 100%;
}
table.ex-property-grid th {
  border: 1px solid #ced4da;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25em 0.5em;
}
table.ex-property-grid td {
  border: 1px solid #ced4da;
  padding: 0.25em 0.5em;
}
table.ex-property-grid select {
  border: 1px solid transparent;
}

table.no-borders th, table.no-borders td {
  border: none;
}

/*------------------------------------------------------------------------------
	Bootstrap Tables
------------------------------------------------------------------------------*/
.table {
  margin-bottom: 0;
}
.table td {
  vertical-align: middle;
}
.table.table-fit {
  width: auto;
  margin: auto;
}
.table.table-fit th, .table.table-fit td {
  white-space: nowrap;
}

.table-sm {
  font-size: 0.85em;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.025);
}
.table-striped tbody tr.total-row {
  background-color: rgba(0, 0, 0, 0.05);
}

/*------------------------------------------------------------------------------
	Horizontal and Vertical Centering with Pseudo-Tables
------------------------------------------------------------------------------*/
.td-outer {
  display: table;
  position: absolute;
  height: 100%;
  width: 100%;
}

.td-middle {
  display: table-cell;
  vertical-align: middle;
}

.td-inner {
  margin-left: auto;
  margin-right: auto;
}

/*------------------------------------------------------------------------------
	Row Colors
------------------------------------------------------------------------------*/
.ex-table-head {
  background-color: rgba(0, 0, 0, 0.25);
}

.ex-table-section {
  background-color: rgba(0, 0, 0, 0.05);
}

tr.not-selected {
  opacity: 0.25;
}

tr.error {
  background-color: rgba(220, 53, 69, 0.1);
}

/*------------------------------------------------------------------------------
	Disabled/Highlighted Rows
------------------------------------------------------------------------------*/
tr.disabled, tr.readonly {
  color: #e9ecef;
}
tr.disabled *, tr.readonly * {
  color: #e9ecef;
}
tr.disabled label, tr.disabled label::before, tr.readonly label, tr.readonly label::before {
  cursor: default !important;
}

tr.readonly {
  color: #adb5bd;
}
tr.readonly * {
  color: #adb5bd;
}

tr.mapped {
  font-weight: bold;
}

tr.unmapped {
  color: #ced4da;
  /*	& * {
  		color: $gray-400;
  	}*/
}

tr.alert {
  color: #dc3545;
  /*	& * {
  		color: $red;
  	}*/
}

/*------------------------------------------------------------------------------
	Selected Row Name
------------------------------------------------------------------------------*/
td.selected span.name {
  font-weight: bold;
}

/*------------------------------------------------------------------------------
	HTML/Email Templates
------------------------------------------------------------------------------*/
.ex-template .ex-template-section {
  position: relative;
}
.ex-template *[contentEditable=true]:hover {
  outline: 5px solid rgba(0, 123, 255, 0.25);
}
.ex-template *[contentEditable=true]:focus {
  outline: 2px solid #007bff;
}

/*------------------------------------------------------------------------------
	Text
------------------------------------------------------------------------------*/
.ex-note {
  font-size: 0.85em;
  color: #adb5bd;
}
.ex-note b {
  color: #343a40;
}

span + span.ex-note {
  margin-left: 0.75rem;
  overflow: hidden;
}

.ex-sub-total {
  font-weight: bold;
  font-size: 1.25em;
}

/*------------------------------------------------------------------------------
	Anchors / Links
------------------------------------------------------------------------------*/
a.void {
  text-decoration: none;
  cursor: default;
}

/*------------------------------------------------------------------------------
	Watermarks
------------------------------------------------------------------------------*/
.ex-watermark {
  display: table;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  text-align: center;
  color: #adb5bd;
}
.ex-watermark .ex-watermark-content {
  display: table-cell;
  vertical-align: middle;
  padding: 1em;
}
.ex-watermark .ex-watermark-content > i {
  display: block;
  font-size: 15em;
  color: rgb(229.5135135135, 232, 234.4864864865);
}
.ex-watermark .ex-watermark-content > h1 {
  font-size: 2em;
}
.ex-watermark .ex-watermark-content > p {
  text-align: center;
}
.ex-watermark.minimized {
  display: block;
  position: absolute;
  width: 18.5em;
  height: 15em;
  left: initial;
  top: initial;
  bottom: 0em;
  right: 0em;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}
.ex-watermark.minimized.minimize-50 {
  font-size: 0.5em;
}
.ex-watermark.minimized .ex-watermark-content {
  display: inline-block;
  text-align: right;
}
.ex-watermark.minimized .ex-watermark-content > i {
  opacity: 0.25;
}
.ex-watermark.minimized .ex-watermark-content > h1, .ex-watermark.minimized .ex-watermark-content p {
  display: none;
}

/*------------------------------------------------------------------------------
	Buttons
------------------------------------------------------------------------------*/
a, button {
  cursor: pointer;
}
a[disabled], a.disabled, button[disabled], button.disabled {
  cursor: default;
  pointer-events: none;
}

button:focus {
  outline: none;
}

/*------------------------------------------------------------------------------
	ex-btn - standard content buttons
------------------------------------------------------------------------------*/
.ex-btn {
  border: none;
  padding: 0.5em;
  background: #adb5bd;
  color: #343a40;
  font-size: 0.85em;
  letter-spacing: 1px;
  display: inline-block;
  margin: 1px 0px;
  border-radius: 2px;
}
.ex-btn:hover {
  background: #495057;
  color: #f8f9fa;
}
.ex-btn:active {
  background: #343a40;
  transform: scale(0.95);
}
.ex-btn:focus {
  border: none;
  box-shadow: none;
}
.ex-btn[disabled] {
  background: #ddd;
  color: #adb5bd;
  transform: none;
}
.ex-btn.selected {
  background: #007bff !important;
  color: #fff !important;
}
.ex-btn.inline {
  font-size: 1.25em;
  background: none;
}
.ex-btn.inline:hover {
  background: #343a40;
}
.ex-btn > i {
  font-size: 1.75em;
  vertical-align: middle;
}
.ex-btn > span {
  vertical-align: middle;
}
.ex-btn > i + span, .ex-btn > span + i {
  margin-left: 0.25em;
}

/*------------------------------------------------------------------------------
	ex-icon-btn - icon buttons
------------------------------------------------------------------------------*/
.ex-icon-btn {
  outline: none !important;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin: 0.1em;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #343a40;
  background-color: #FFF;
  text-decoration: none;
  box-shadow: 0 0 0 4px #343a40;
  font-family: "FontAwesome";
  speak: none;
  font-size: 48px;
  line-height: 48px;
  vertical-align: middle;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
}
.ex-icon-btn:hover {
  background: #343a40;
  box-shadow: 0 0 0 8px rgba(173, 181, 189, 0.4);
  color: #FFF;
}
.ex-icon-btn:active {
  transform: scale(0.95);
}
.ex-icon-btn.fx-1 {
  transition: background 0.4s, color 0.4s, box-shadow 0.4s;
}
.ex-icon-btn.fx-2:hover > i {
  animation: exIconLeftToRight 0.4s forwards;
}
.ex-icon-btn[disabled] {
  color: #adb5bd;
  background: #ddd;
  box-shadow: 0 0 0 4px rgba(52, 58, 64, 0.1);
}
.ex-icon-btn[disabled]:hover {
  transition: none;
  transform: none;
}
.ex-icon-btn[disabled].fx-2:hover > i {
  animation: none;
}

@keyframes exIconLeftToRight {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
.ex-square .ex-icon-btn, .ex-icon-btn.ex-square {
  border-radius: 0;
}

/*------------------------------------------------------------------------------
	jQuery UI Buttons / "Dialog Buttons" in forms
------------------------------------------------------------------------------*/
.ui-button:hover {
  background: #495057;
  color: #f8f9fa;
}
.ui-button:active {
  background: rgb(96.26875, 105.5, 114.73125);
  transform: scale(0.95);
}
.ui-button[disabled] {
  opacity: 0.35;
}
.ui-button[disabled]:hover {
  color: #454545;
  background: #f6f6f6;
  pointer-events: none;
}

.ex-dlg-btn {
  cursor: pointer;
  padding: 0.33em;
}

/*------------------------------------------------------------------------------
	FontAwesome Buttons
------------------------------------------------------------------------------*/
button.fa {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Segoe UI Symbol";
}
button.fa:before {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  margin-right: 0.25em;
  font-family: "FontAwesome";
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1;
}
button.fa:hover {
  background: #495057;
  color: #f8f9fa;
}
button.fa:active {
  background: rgb(96.26875, 105.5, 114.73125);
  transform: scale(0.95);
}

/*------------------------------------------------------------------------------
	A row of buttons
------------------------------------------------------------------------------*/
.ex-buttons {
  text-align: left;
}

.ex-buttons > * {
  vertical-align: middle;
}

.ex-buttons > * + * {
  margin-left: 0.25em;
}

/*------------------------------------------------------------------------------
	Checkbox & Radio
------------------------------------------------------------------------------*/
input[type=checkbox].ex-check, input[type=radio].ex-radio {
  display: inline-block;
  width: 0;
  opacity: 0;
  /*.smaller-fields input[type="checkbox"]:checked + label.fai-checkbox.fai-cross:after{ font-size: 0.8em; }*/
}
input[type=checkbox].ex-check + label, input[type=radio].ex-radio + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 2em;
  height: 2em;
  line-height: 2em;
}
input[type=checkbox].ex-check + label::before, input[type=radio].ex-radio + label::before {
  position: absolute;
  top: 0em;
  left: 0;
  content: "\f096";
  font-family: FontAwesome;
  font-size: 2em;
  color: #CCC;
  transform: scale(0.9);
}
input[type=checkbox].ex-check:checked + label, input[type=radio].ex-radio:checked + label {
  font-weight: bold;
}
input[type=checkbox].ex-check:checked + label::before, input[type=radio].ex-radio:checked + label::before {
  content: "\f046";
  color: #007bff;
  font-weight: normal;
}
input[type=checkbox].ex-check.ex-cross:checked + label::before, input[type=radio].ex-radio.ex-cross:checked + label::before {
  content: "\f096";
  color: #dc3545;
}
input[type=checkbox].ex-check.ex-cross:checked + label::after, input[type=radio].ex-radio.ex-cross:checked + label::after {
  position: absolute;
  top: -0.025em;
  left: 0.05em;
  content: "\f00d";
  font-family: FontAwesome;
  font-size: 1.7em;
  color: #dc3545;
  font-weight: normal;
}
input[type=checkbox].ex-check.ex-no:checked + label::before, input[type=radio].ex-radio.ex-no:checked + label::before {
  color: #dc3545;
}
input[type=checkbox].ex-check:focus + label, input[type=radio].ex-radio:focus + label {
  outline: 1px solid rgba(0, 123, 255, 0.5);
}

input[type=radio].ex-radio + label::before {
  content: "\f1db";
}
input[type=radio].ex-radio:checked + label::before {
  content: "\f192";
}

/*------------------------------------------------------------------------------
	Checkbox & Radio as Buttons
------------------------------------------------------------------------------*/
input[type=checkbox].ex-btn, input[type=radio].ex-btn {
  display: none;
}
input[type=checkbox].ex-btn + label, input[type=radio].ex-btn + label {
  display: inline-block;
  padding: 0.25em;
  background: #adb5bd;
  border-radius: 2px;
  border: 1px solid transparent;
  line-height: 1.2em;
  vertical-align: middle;
}
input[type=checkbox].ex-btn + label:hover, input[type=radio].ex-btn + label:hover {
  background: rgb(144.7432432432, 155.5, 166.2567567568);
  color: #f8f9fa;
}
input[type=checkbox].ex-btn + label > i, input[type=radio].ex-btn + label > i {
  font-size: 1.75em;
  vertical-align: middle;
}
input[type=checkbox].ex-btn + label > span, input[type=radio].ex-btn + label > span {
  vertical-align: middle;
}
input[type=checkbox].ex-btn + label > i + span, input[type=checkbox].ex-btn + label > span + i, input[type=radio].ex-btn + label > i + span, input[type=radio].ex-btn + label > span + i {
  margin-left: 0.25em;
}
input[type=checkbox].ex-btn:checked + label, input[type=radio].ex-btn:checked + label {
  color: #f8f9fa;
  background: #007bff;
  border: 1px solid #333;
  border-color: #111 #ccc #ccc #111;
}
input[type=checkbox].ex-btn:active + label, input[type=radio].ex-btn:active + label {
  background: rgb(51, 149.4, 255);
  transform: scale(0.98);
}

/*------------------------------------------------------------------------------
	Image Radios
------------------------------------------------------------------------------*/
input[type=radio].ex-img-radio {
  display: none;
}
input[type=radio].ex-img-radio + label {
  display: inline-block;
  padding: 0.25em;
  border: 1px solid #FFF;
  border-radius: 5px;
  text-align: center;
  font-size: 0.75em;
  color: #AAA;
}
input[type=radio].ex-img-radio + label:hover {
  color: #CCC;
}
input[type=radio].ex-img-radio:checked + label {
  font-weight: bold;
  color: #007bff;
  border-color: #007bff;
}
input[type=radio].ex-img-radio + label + input + label {
  margin-left: 0.5em;
}

input:disabled + label {
  pointer-events: none;
}

input:disabled:not(.readonly) + label {
  background: #f8f9fa !important;
  color: #adb5bd !important;
}

/*------------------------------------------------------------------------------
	Color Pickers
	http://www.dematte.at/tinyColorPicker/
	http://www.dematte.at/colorPicker/
------------------------------------------------------------------------------*/
div.ex-colorpicker {
  position: relative;
  display: inline-block;
  padding: 2px;
  width: 50px;
  height: 32px;
  border: 1px solid #AAA;
  border-radius: 2px;
  background: #eee;
  cursor: pointer;
  text-align: left;
}
div.ex-colorpicker::after {
  position: absolute;
  margin: 2px 0 0 2px;
  line-height: 22px;
  color: #222222;
  text-shadow: 0px 1px #ccc;
  content: "▼";
}
div.ex-colorpicker div {
  display: inline-block;
  width: 26px;
  height: 26px;
  /*background: none;*/
}
div.ex-colorpicker div div {
  border: 1px solid #666;
  border-color: #666 #ccc #ccc #666;
}

.cp-color-picker {
  z-index: 150;
  box-sizing: border-box;
  box-shadow: 3px 3px 8px #555;
}
.cp-color-picker .cp-panel {
  line-height: 21px;
  float: right;
  padding: 0 1px 0 8px;
  margin-top: -1px;
  width: 70px;
  overflow: visible;
}
.cp-color-picker .cp-panel, .cp-color-picker .cp-panel input {
  color: #bbb;
  font-family: monospace, "Courier New", Courier, mono;
  font-size: 12px;
  font-weight: bold;
}
.cp-color-picker .cp-panel input {
  width: 38px;
  height: 14px;
  padding: 2px 3px 1px;
  text-align: right;
  line-height: 14px;
  background: transparent;
  border: 1px solid;
  border-color: #222 #666 #666 #222;
}
.cp-color-picker .cp-panel hr {
  margin: 0 -2px 2px;
  height: 1px;
  border: 0;
  background: #666;
  border-top: 1px solid #222;
}
.cp-color-picker .cp-panel .cp-HEX {
  margin: 1px -3px 0 -2px;
  width: 65px;
  font-size: 14px;
  height: 20px;
}
.cp-color-picker .cp-panel .cp-z-slider {
  margin-left: 0;
}
.cp-color-picker .cp-panel .cp-xy-slider:active {
  cursor: none;
}
.cp-color-picker .cp-buttons {
  margin: 5px 0;
  clear: both;
}
.cp-color-picker .cp-buttons > button {
  float: right;
}

.ex-form-field input.ex-color-input {
  width: 12em;
}

/*------------------------------------------------------------------------------
	jQueryUI Date Picker
------------------------------------------------------------------------------*/
button.ui-datepicker-trigger {
  padding: 0.25em 0.5em;
  margin: 0 0.25em;
  font-size: 1em;
  font-family: "FontAwesome";
  border: 1px solid #999;
  border-radius: 0.25em;
}
button.ui-datepicker-trigger:hover {
  background-color: #495057;
  color: #f8f9fa;
}

.ui-datepicker {
  border: 1px solid #ddd;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

/*------------------------------------------------------------------------------
	Drop-Downs
------------------------------------------------------------------------------*/
.ex-dropdown > button.dropdown-toggle {
  height: 2.5em;
  padding: 0 0.25em;
}
.ex-dropdown > button.dropdown-toggle::after {
  vertical-align: middle;
}
.ex-dropdown .dropdown-menu {
  max-height: 250px;
  max-width: 100%;
  overflow-y: auto;
}
.ex-dropdown .dropdown-menu a {
  padding: 0.25rem 0.5rem;
}
.ex-dropdown .dropdown-menu a i.ex-icon::before {
  display: inline-block;
  width: 1em;
}
.ex-dropdown .dropdown-menu a.selected {
  color: #f8f9fa;
  background-color: #007bff;
}
.ex-dropdown.full-width {
  display: block;
}
.ex-dropdown.full-width > button.dropdown-toggle {
  width: 100%;
  text-align: left;
}
.ex-dropdown.full-width > button.dropdown-toggle > span {
  display: inline-block;
  width: calc(100% - 1.25em);
  overflow: hidden;
}
.ex-dropdown.full-width > button.dropdown-toggle::after {
  position: absolute;
  right: 0.5em;
  top: 1em;
}

.ex-dropdown-placeholder {
  height: 2.5em;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}

/*------------------------------------------------------------------------------
	Tiny MCE HTML Editors
------------------------------------------------------------------------------*/
.ui-tabs .ex-form-field.ex-fill-tab .ex-html-container {
  height: 100%;
}
.ui-tabs .ex-form-field.ex-fill-tab .mce-tinymce {
  height: calc(100% - 2px);
}
.ui-tabs .ex-form-field.ex-fill-tab .mce-tinymce > .mce-container-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ui-tabs .ex-form-field.ex-fill-tab .mce-tinymce > .mce-container-body > .mce-edit-area {
  flex: 1;
  height: 1px;
}

/*------------------------------------------------------------------------------
	Basic Inputs
------------------------------------------------------------------------------*/
label {
  cursor: pointer;
  /* Bootstrap puts 0.5em */
  margin-bottom: 0;
}

.ex-input, .ui-multiselect {
  box-sizing: border-box;
  padding: 5px;
  background: none;
  color: #333;
  transition: box-shadow 0.25s;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}
.ex-input:focus, .ui-multiselect:focus {
  outline: none;
  border: 1px solid #007bff;
  box-shadow: 0 0 0.25em 0.1em rgb(102, 175.8, 255);
  border-radius: 0.5em;
}
.ex-input:disabled, .ui-multiselect:disabled {
  background: #f8f9fa;
  color: #adb5bd;
}

/*------------------------------------------------------------------------------
	Invalid Inputs
------------------------------------------------------------------------------*/
.ex-invalid {
  position: relative;
}
.ex-invalid .ex-input, .ex-invalid .ui-multiselect {
  border: 1px solid #dc3545;
}
.ex-invalid .ex-input:focus, .ex-invalid .ui-multiselect:focus {
  border: 1px solid #dc3545;
  box-shadow: 0 0 0.25em 0.1em rgb(235.0632911392, 139.9367088608, 149.0506329114);
}

.ex-invalid::after {
  content: "* Required";
  display: inline-block;
  position: absolute;
  margin: 0.25em;
  padding: 0.25em;
  top: 0;
  right: 0;
  vertical-align: middle;
  font-size: 0.8em;
  font-style: italic;
  background: #FFF;
  box-shadow: 0 0 5px 0 #FFF;
  border-radius: 0.5em;
  color: #c33;
  white-space: nowrap;
}

.ex-form.option-borders .ex-invalid .ex-field-options.fixed-cols {
  border: 1px solid #dc3545;
}

.ex-form-field.ex-invalid-message {
  margin-top: 0.25em;
}

.ex-form-field.ex-notes + .ex-form-field.ex-invalid-message {
  margin-top: 0 !important;
}

.ex-invalid-content {
  padding: 0.5em;
  background: #FFDDBB;
  /*border: 1px solid #FF3334;*/
  border-radius: 0.5rem;
  color: #000;
}
.ex-invalid-content > b {
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  background-image: url("../Content/Excalibur/Dialogs/hint-warn.png");
  background-size: 1.25em;
  background-repeat: no-repeat;
}
.ex-invalid-content > span {
  margin-left: 1.5em;
}

/*------------------------------------------------------------------------------
	List of Configurable Items (in a table)
------------------------------------------------------------------------------*/
.ex-listinput {
  position: relative;
  min-height: 50px;
}

/*------------------------------------------------------------------------------
	Photo Inputs
------------------------------------------------------------------------------*/
.ex-photo-container {
  display: table;
  width: 100%;
}
.ex-photo-container .ex-photo {
  display: table-cell;
  vertical-align: top;
  width: 1px;
}
.ex-photo-container .ex-photo-requirements {
  display: table-cell;
  vertical-align: top;
  font-size: 0.75em;
  white-space: normal;
  padding: 1em;
}

/*------------------------------------------------------------------------------
	Ratings
------------------------------------------------------------------------------*/
input.ex-rating {
  display: none;
}
input.ex-rating + div i::before {
  content: "\f006";
  font-family: FontAwesome;
  font-style: normal;
  font-size: 1.5em;
  color: gray;
  cursor: pointer;
}
input.ex-rating + div i.on::before {
  content: "\f005";
  color: #007bff;
}

/*------------------------------------------------------------------------------
	jQuery UI Sliders
------------------------------------------------------------------------------*/
.ui-slider {
  display: inline-block;
}

.ui-slider .ui-slider-handle {
  cursor: pointer;
}
.ui-slider .ui-slider-handle:hover, .ui-slider .ui-slider-handle:focus {
  border: 1px solid #007bff;
  box-shadow: 0 0 0.25em 0.1em rgb(102, 175.8, 255);
  border-radius: 0.5em;
}

p + .ui-slider {
  margin-top: 0.5em;
}

/*------------------------------------------------------------------------------
	Text Areas
------------------------------------------------------------------------------*/
textarea {
  vertical-align: top;
}

/* To prevent scrollbar ugliness on the textarea we style a surrounding div instead */
.ex-memo {
  padding: 0.25em;
  display: block;
  width: 100%;
}
.ex-memo:not(.no-border) {
  border: 1px solid #CCC;
  border-radius: 0.5em;
}
.ex-memo.focused {
  outline: none;
  border: 1px solid #007bff;
  box-shadow: 0 0 0.25em 0.1em rgb(102, 175.8, 255);
  border-radius: 0.5em;
}
.ex-memo textarea {
  margin: 0;
  padding: 0;
  width: 100%;
  border: none;
  outline: none;
  overflow: auto;
  font-family: "Segoe UI", "Calibri", "Sans-Serif", "Arial";
}
.ex-memo textarea[rows] {
  resize: none;
}
.ex-memo .ex-textarea-limit {
  display: block;
  margin: 0;
  padding: 0;
  font-size: x-small;
  color: #AAA;
}

.ui-tabs .ex-form-field.ex-fill-tab .ex-input-container {
  height: 100%;
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-memo {
  height: 100%;
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-memo textarea {
  height: calc(100% - 1em);
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-memo textarea.text-monospace {
  font-family: monospace !important;
}

/*------------------------------------------------------------------------------
	jQueryUI: Time Picker
	http://jonthornton.github.com/jquery-timepicker/
------------------------------------------------------------------------------*/
.ui-timepicker-wrapper {
  overflow-y: auto;
  height: 10em;
  width: 8em;
  background: #fff;
  outline: none;
  z-index: 10001;
  margin: 0;
  border: 1px solid #ddd;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.ui-timepicker-wrapper.ui-timepicker-with-duration {
  width: 13em;
}

.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-30,
.ui-timepicker-wrapper.ui-timepicker-with-duration.ui-timepicker-step-60 {
  width: 11em;
}

.ui-timepicker-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ui-timepicker-duration {
  margin-left: 5px;
  color: #888;
}

.ui-timepicker-list:hover .ui-timepicker-duration {
  color: #888;
}

.ui-timepicker-list li {
  padding: 3px 0 3px 5px;
  cursor: pointer;
  white-space: nowrap;
  color: #000;
  list-style: none;
  margin: 0;
}

.ui-timepicker-list:hover .ui-timepicker-selected {
  background: #fff;
  color: #000;
}

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list .ui-timepicker-selected:hover {
  background: #007bff;
  color: #fff;
}

li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
  color: #ccc;
}

.ui-timepicker-list li.ui-timepicker-disabled,
.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  color: #888;
  cursor: default;
}

.ui-timepicker-list li.ui-timepicker-disabled:hover,
.ui-timepicker-list li.ui-timepicker-selected.ui-timepicker-disabled {
  background: #f2f2f2;
}

/*------------------------------------------------------------------------------
	Toggle Switch
------------------------------------------------------------------------------*/
input[type=checkbox].ex-toggle {
  display: none;
  /* Yes/No text */
}
input[type=checkbox].ex-toggle + label {
  position: relative;
  display: inline-block;
  top: 0;
  left: 0;
  width: 65px;
  height: 30px;
  z-index: 1;
  border-radius: 20px;
  box-shadow: 8px 2px 8px rgba(0, 0, 0, 0.7) inset, -7px 1px 8px rgba(0, 0, 0, 0.7) inset;
  background: #7A7A7A;
  font: bold 12px Arial;
  cursor: pointer;
}
input[type=checkbox].ex-toggle + label:before {
  position: absolute;
  top: 9px;
  left: 35px;
  content: "Off";
  color: white;
  text-shadow: 0 -2px 1px #8a8a8a;
}
input[type=checkbox].ex-toggle + label:after {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 30px;
  height: 29px;
  border-radius: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5), 2px -5px 5px rgba(0, 0, 0, 0.2) inset;
  background: radial-gradient(ellipse at center, rgb(255, 255, 255) 0%, rgb(224, 224, 224) 37%, rgb(186, 186, 186) 38%, rgb(244, 244, 244) 48%, rgb(252, 252, 252) 100%);
  content: "";
  transition: all 0.25s ease;
}
input[type=checkbox].ex-toggle + label + label {
  margin-left: 0.25em;
  height: 30px;
  line-height: 32px;
  vertical-align: top;
}
input[type=checkbox].ex-toggle:checked + label {
  background: #007bff;
  box-shadow: 8px 2px 8px rgb(0, 49.2, 102) inset, -7px 1px 8px rgb(0, 49.2, 102) inset;
}
input[type=checkbox].ex-toggle:checked + label::before {
  left: 10px;
  content: "On";
}
input[type=checkbox].ex-toggle:checked + label::after {
  left: 35px;
}
input[type=checkbox].ex-toggle.ex-yesno + label:before {
  content: "No";
}
input[type=checkbox].ex-toggle.ex-yesno:checked + label:before {
  content: "Yes";
}

/*------------------------------------------------------------------------------
	Forms
------------------------------------------------------------------------------*/
.ex-form {
  display: inline-block;
  overflow: auto;
}
.ex-form .ex-custom {
  white-space: normal;
}

.ui-dialog-content.ex-form {
  display: block;
}

.ex-form-field {
  margin: 0;
  padding: 0;
}
.ex-form-field:first-child {
  margin-top: 0.25em;
}
.ex-form-field > .ex-field-label {
  display: block;
  width: 100%;
  white-space: normal;
  vertical-align: top;
}
.ex-form-field > .ex-field-label:not(.checkbox) {
  margin-top: 0.5em;
}
.ex-form-field > .ex-field-label .ex-icon {
  margin-right: 0.25em;
  display: inline-block;
}
.ex-form-field > .ex-field-input {
  display: block;
  width: 100%;
  vertical-align: top;
}
.ex-form-field > .ex-field-input > input, .ex-form-field > .ex-field-input button, .ex-form-field > .ex-field-input span, .ex-form-field > .ex-field-input i {
  vertical-align: middle;
}
.ex-form-field input {
  width: 100%;
}
.ex-form-field label + .ex-btn + label, .ex-form-field .ex-btn + .ex-btn {
  margin-left: 0.1em;
}
.ex-form-field.ex-custom > .ex-field-input {
  margin-top: 0.5em;
}
.ex-form-field.indent {
  padding-left: 2em;
}

.ex-form-field.checkbox > .ex-input-container {
  padding: 0.1em;
}

.ex-form-field.product-field {
  height: 52px;
}
.ex-form-field.product-field > .ex-input-container label {
  height: 56px;
  line-height: 52px;
}
.ex-form-field.product-field > .ex-input-container .product-img {
  border: 1px solid rgb(229.5135135135, 232, 234.4864864865);
  margin-right: 0.25em;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  width: 52px;
  height: 52px;
}
.ex-form-field.product-field > .ex-input-container .product-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.ex-form-field.product-field > .ex-input-container .product-price {
  float: right;
  margin-right: 0.75rem;
  line-height: 52px;
}
.ex-form-field.product-field > .ex-input-container .product-qty {
  float: right;
  margin-top: 0.5em;
}
.ex-form-field.product-field.selected > .ex-field-input .product-price, .ex-form-field.product-field.selected > .ex-field-input .product-qty {
  font-weight: bold;
}

.ex-form-field.ex-bold-box {
  margin-bottom: 0.5em;
}

.ex-form-caption {
  font-weight: bold;
}

.ex-field-block {
  margin-top: 0.25em;
}

.ex-field-row + .ex-field-row {
  margin-top: 0.25em;
}

.ex-field-row input + * {
  margin-left: 0.25em;
}

.ex-field-required {
  color: #dc3545;
  margin: 0.25em;
}

/*------------------------------------------------------------------------------
	Form Options
------------------------------------------------------------------------------*/
.ex-form[data-spacing="0"] .ex-form-field + .ex-form-field {
  margin-top: 0em;
}
.ex-form[data-spacing="1"] .ex-form-field + .ex-form-field {
  margin-top: 0.25em;
}
.ex-form[data-spacing="2"] .ex-form-field + .ex-form-field {
  margin-top: 0.5em;
}
.ex-form[data-spacing="3"] .ex-form-field + .ex-form-field {
  margin-top: 1em;
}
.ex-form[data-spacing="4"] .ex-form-field + .ex-form-field {
  margin-top: 1.5em;
}
.ex-form[data-spacing="5"] .ex-form-field + .ex-form-field {
  margin-top: 2em;
}

.ex-form[data-spacing="0"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="0"] .ex-form-field + .ex-fieldset-container {
  margin-top: 0.25em;
}
.ex-form[data-spacing="1"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="1"] .ex-form-field + .ex-fieldset-container {
  margin-top: 0.75em;
}
.ex-form[data-spacing="2"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="2"] .ex-form-field + .ex-fieldset-container {
  margin-top: 1em;
}
.ex-form[data-spacing="3"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="3"] .ex-form-field + .ex-fieldset-container {
  margin-top: 1.5em;
}
.ex-form[data-spacing="4"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="4"] .ex-form-field + .ex-fieldset-container {
  margin-top: 2em;
}
.ex-form[data-spacing="5"] .ex-form-field + .ex-form-fieldset,
.ex-form[data-spacing="5"] .ex-form-field + .ex-fieldset-container {
  margin-top: 2.5em;
}

.ex-form[data-style=Linear][data-spacing="0"] .ex-form-step + .ex-form-step {
  margin-top: 0.25em;
}
.ex-form[data-style=Linear][data-spacing="1"] .ex-form-step + .ex-form-step {
  margin-top: 0.75em;
}
.ex-form[data-style=Linear][data-spacing="2"] .ex-form-step + .ex-form-step {
  margin-top: 1em;
}
.ex-form[data-style=Linear][data-spacing="3"] .ex-form-step + .ex-form-step {
  margin-top: 1.5em;
}
.ex-form[data-style=Linear][data-spacing="4"] .ex-form-step + .ex-form-step {
  margin-top: 2em;
}
.ex-form[data-style=Linear][data-spacing="5"] .ex-form-step + .ex-form-step {
  margin-top: 2.5em;
}

.ex-compact-fields .ex-form-field + .ex-form-field {
  margin-top: 0 !important;
}

.ex-custom + .ex-custom {
  margin-top: 0.25em !important;
}
.ex-custom + .ex-custom > .ex-field-label, .ex-custom + .ex-custom > .ex-field-input {
  margin-top: 0 !important;
}

/*------------------------------------------------------------------------------
	Field Options
------------------------------------------------------------------------------*/
.ex-form[data-size="-5"] {
  font-size: 0.5rem;
}

.ex-form[data-size="-4"] {
  font-size: 0.6rem;
}

.ex-form[data-size="-3"] {
  font-size: 0.7rem;
}

.ex-form[data-size="-2"] {
  font-size: 0.8rem;
}

.ex-form[data-size="-1"] {
  font-size: 0.9rem;
}

.ex-form[data-size="0"] {
  font-size: 1rem;
}

.ex-form[data-size="1"] {
  font-size: 1.1rem;
}

.ex-form[data-size="2"] {
  font-size: 1.2rem;
}

.ex-form[data-size="3"] {
  font-size: 1.3rem;
}

.ex-form[data-size="4"] {
  font-size: 1.4rem;
}

.ex-form[data-size="5"] {
  font-size: 1.5rem;
}

.ex-form[data-split="0"] .ex-field-label {
  display: block;
  width: 100%;
  margin-top: 0;
}
.ex-form[data-split="0"] .ex-field-input {
  display: block;
  width: 100%;
}

.ex-form[data-split="1"] .ex-field-label {
  display: inline-block;
  width: 6em;
}
.ex-form[data-split="1"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 6em);
}

.ex-form[data-split="2"] .ex-field-label {
  display: inline-block;
  width: 7em;
}
.ex-form[data-split="2"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 7em);
}

.ex-form[data-split="3"] .ex-field-label {
  display: inline-block;
  width: 8em;
}
.ex-form[data-split="3"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 8em);
}

.ex-form[data-split="4"] .ex-field-label {
  display: inline-block;
  width: 9em;
}
.ex-form[data-split="4"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 9em);
}

.ex-form[data-split="5"] .ex-field-label {
  display: inline-block;
  width: 10em;
}
.ex-form[data-split="5"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 10em);
}

.ex-form[data-split="6"] .ex-field-label {
  display: inline-block;
  width: 11em;
}
.ex-form[data-split="6"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 11em);
}

.ex-form[data-split="7"] .ex-field-label {
  display: inline-block;
  width: 12em;
}
.ex-form[data-split="7"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 12em);
}

.ex-form[data-split="8"] .ex-field-label {
  display: inline-block;
  width: 13em;
}
.ex-form[data-split="8"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 13em);
}

.ex-form[data-split="9"] .ex-field-label {
  display: inline-block;
  width: 14em;
}
.ex-form[data-split="9"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 14em);
}

.ex-form[data-split="10"] .ex-field-label {
  display: inline-block;
  width: 15em;
}
.ex-form[data-split="10"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 15em);
}

.ex-form[data-split="11"] .ex-field-label {
  display: inline-block;
  width: 16em;
}
.ex-form[data-split="11"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 16em);
}

.ex-form[data-split="12"] .ex-field-label {
  display: inline-block;
  width: 17em;
}
.ex-form[data-split="12"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 17em);
}

.ex-form[data-split="13"] .ex-field-label {
  display: inline-block;
  width: 18em;
}
.ex-form[data-split="13"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 18em);
}

.ex-form[data-split="14"] .ex-field-label {
  display: inline-block;
  width: 19em;
}
.ex-form[data-split="14"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 19em);
}

.ex-form[data-split="15"] .ex-field-label {
  display: inline-block;
  width: 20em;
}
.ex-form[data-split="15"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 20em);
}

.ex-form[data-split="16"] .ex-field-label {
  display: inline-block;
  width: 22em;
}
.ex-form[data-split="16"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 22em);
}

.ex-form[data-split="17"] .ex-field-label {
  display: inline-block;
  width: 24em;
}
.ex-form[data-split="17"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 24em);
}

.ex-form[data-split="18"] .ex-field-label {
  display: inline-block;
  width: 26em;
}
.ex-form[data-split="18"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 26em);
}

.ex-form[data-split="19"] .ex-field-label {
  display: inline-block;
  width: 28em;
}
.ex-form[data-split="19"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 28em);
}

.ex-form[data-split="20"] .ex-field-label {
  display: inline-block;
  width: 30em;
}
.ex-form[data-split="20"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 30em);
}

.ex-form[data-cols="1"] .ex-field-options.fixed-cols > .ex-option {
  width: 100%;
}

.ex-form[data-cols="2"] .ex-field-options.fixed-cols > .ex-option {
  width: 50%;
}

.ex-form[data-cols="3"] .ex-field-options.fixed-cols > .ex-option {
  width: 33%;
}

.ex-form[data-cols="4"] .ex-field-options.fixed-cols > .ex-option {
  width: 25%;
}

.ex-form[data-cols="5"] .ex-field-options.fixed-cols > .ex-option {
  width: 20%;
}

.ex-form[data-cols="6"] .ex-field-options.fixed-cols > .ex-option {
  width: 15%;
}

.ex-form[data-cols="1"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 100%;
  margin-top: 0;
}

.ex-form[data-cols="2"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 50%;
  margin-top: 0;
}

.ex-form[data-cols="3"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 33%;
  margin-top: 0;
}

.ex-form[data-cols="4"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 25%;
  margin-top: 0;
}

.ex-form[data-cols="5"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 20%;
  margin-top: 0;
}

.ex-form[data-cols="6"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 15%;
  margin-top: 0;
}

.ex-form-step[data-size="-5"] {
  font-size: 0.5rem;
}

.ex-form-step[data-size="-4"] {
  font-size: 0.6rem;
}

.ex-form-step[data-size="-3"] {
  font-size: 0.7rem;
}

.ex-form-step[data-size="-2"] {
  font-size: 0.8rem;
}

.ex-form-step[data-size="-1"] {
  font-size: 0.9rem;
}

.ex-form-step[data-size="0"] {
  font-size: 1rem;
}

.ex-form-step[data-size="1"] {
  font-size: 1.1rem;
}

.ex-form-step[data-size="2"] {
  font-size: 1.2rem;
}

.ex-form-step[data-size="3"] {
  font-size: 1.3rem;
}

.ex-form-step[data-size="4"] {
  font-size: 1.4rem;
}

.ex-form-step[data-size="5"] {
  font-size: 1.5rem;
}

.ex-form-step[data-split="0"] .ex-field-label {
  display: block;
  width: 100%;
  margin-top: 0;
}
.ex-form-step[data-split="0"] .ex-field-input {
  display: block;
  width: 100%;
}

.ex-form-step[data-split="1"] .ex-field-label {
  display: inline-block;
  width: 6em;
}
.ex-form-step[data-split="1"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 6em);
}

.ex-form-step[data-split="2"] .ex-field-label {
  display: inline-block;
  width: 7em;
}
.ex-form-step[data-split="2"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 7em);
}

.ex-form-step[data-split="3"] .ex-field-label {
  display: inline-block;
  width: 8em;
}
.ex-form-step[data-split="3"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 8em);
}

.ex-form-step[data-split="4"] .ex-field-label {
  display: inline-block;
  width: 9em;
}
.ex-form-step[data-split="4"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 9em);
}

.ex-form-step[data-split="5"] .ex-field-label {
  display: inline-block;
  width: 10em;
}
.ex-form-step[data-split="5"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 10em);
}

.ex-form-step[data-split="6"] .ex-field-label {
  display: inline-block;
  width: 11em;
}
.ex-form-step[data-split="6"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 11em);
}

.ex-form-step[data-split="7"] .ex-field-label {
  display: inline-block;
  width: 12em;
}
.ex-form-step[data-split="7"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 12em);
}

.ex-form-step[data-split="8"] .ex-field-label {
  display: inline-block;
  width: 13em;
}
.ex-form-step[data-split="8"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 13em);
}

.ex-form-step[data-split="9"] .ex-field-label {
  display: inline-block;
  width: 14em;
}
.ex-form-step[data-split="9"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 14em);
}

.ex-form-step[data-split="10"] .ex-field-label {
  display: inline-block;
  width: 15em;
}
.ex-form-step[data-split="10"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 15em);
}

.ex-form-step[data-split="11"] .ex-field-label {
  display: inline-block;
  width: 16em;
}
.ex-form-step[data-split="11"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 16em);
}

.ex-form-step[data-split="12"] .ex-field-label {
  display: inline-block;
  width: 17em;
}
.ex-form-step[data-split="12"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 17em);
}

.ex-form-step[data-split="13"] .ex-field-label {
  display: inline-block;
  width: 18em;
}
.ex-form-step[data-split="13"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 18em);
}

.ex-form-step[data-split="14"] .ex-field-label {
  display: inline-block;
  width: 19em;
}
.ex-form-step[data-split="14"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 19em);
}

.ex-form-step[data-split="15"] .ex-field-label {
  display: inline-block;
  width: 20em;
}
.ex-form-step[data-split="15"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 20em);
}

.ex-form-step[data-split="16"] .ex-field-label {
  display: inline-block;
  width: 22em;
}
.ex-form-step[data-split="16"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 22em);
}

.ex-form-step[data-split="17"] .ex-field-label {
  display: inline-block;
  width: 24em;
}
.ex-form-step[data-split="17"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 24em);
}

.ex-form-step[data-split="18"] .ex-field-label {
  display: inline-block;
  width: 26em;
}
.ex-form-step[data-split="18"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 26em);
}

.ex-form-step[data-split="19"] .ex-field-label {
  display: inline-block;
  width: 28em;
}
.ex-form-step[data-split="19"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 28em);
}

.ex-form-step[data-split="20"] .ex-field-label {
  display: inline-block;
  width: 30em;
}
.ex-form-step[data-split="20"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 30em);
}

.ex-form-step[data-cols="1"] .ex-field-options.fixed-cols > .ex-option {
  width: 100%;
}

.ex-form-step[data-cols="2"] .ex-field-options.fixed-cols > .ex-option {
  width: 50%;
}

.ex-form-step[data-cols="3"] .ex-field-options.fixed-cols > .ex-option {
  width: 33%;
}

.ex-form-step[data-cols="4"] .ex-field-options.fixed-cols > .ex-option {
  width: 25%;
}

.ex-form-step[data-cols="5"] .ex-field-options.fixed-cols > .ex-option {
  width: 20%;
}

.ex-form-step[data-cols="6"] .ex-field-options.fixed-cols > .ex-option {
  width: 15%;
}

.ex-form-step[data-cols="1"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 100%;
  margin-top: 0;
}

.ex-form-step[data-cols="2"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 50%;
  margin-top: 0;
}

.ex-form-step[data-cols="3"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 33%;
  margin-top: 0;
}

.ex-form-step[data-cols="4"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 25%;
  margin-top: 0;
}

.ex-form-step[data-cols="5"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 20%;
  margin-top: 0;
}

.ex-form-step[data-cols="6"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 15%;
  margin-top: 0;
}

.ex-form-field[data-size="-5"] {
  font-size: 0.5rem;
}

.ex-form-field[data-size="-4"] {
  font-size: 0.6rem;
}

.ex-form-field[data-size="-3"] {
  font-size: 0.7rem;
}

.ex-form-field[data-size="-2"] {
  font-size: 0.8rem;
}

.ex-form-field[data-size="-1"] {
  font-size: 0.9rem;
}

.ex-form-field[data-size="0"] {
  font-size: 1rem;
}

.ex-form-field[data-size="1"] {
  font-size: 1.1rem;
}

.ex-form-field[data-size="2"] {
  font-size: 1.2rem;
}

.ex-form-field[data-size="3"] {
  font-size: 1.3rem;
}

.ex-form-field[data-size="4"] {
  font-size: 1.4rem;
}

.ex-form-field[data-size="5"] {
  font-size: 1.5rem;
}

.ex-form-field[data-split="0"] .ex-field-label {
  display: block;
  width: 100%;
  margin-top: 0;
}
.ex-form-field[data-split="0"] .ex-field-input {
  display: block;
  width: 100%;
}

.ex-form-field[data-split="1"] .ex-field-label {
  display: inline-block;
  width: 6em;
}
.ex-form-field[data-split="1"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 6em);
}

.ex-form-field[data-split="2"] .ex-field-label {
  display: inline-block;
  width: 7em;
}
.ex-form-field[data-split="2"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 7em);
}

.ex-form-field[data-split="3"] .ex-field-label {
  display: inline-block;
  width: 8em;
}
.ex-form-field[data-split="3"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 8em);
}

.ex-form-field[data-split="4"] .ex-field-label {
  display: inline-block;
  width: 9em;
}
.ex-form-field[data-split="4"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 9em);
}

.ex-form-field[data-split="5"] .ex-field-label {
  display: inline-block;
  width: 10em;
}
.ex-form-field[data-split="5"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 10em);
}

.ex-form-field[data-split="6"] .ex-field-label {
  display: inline-block;
  width: 11em;
}
.ex-form-field[data-split="6"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 11em);
}

.ex-form-field[data-split="7"] .ex-field-label {
  display: inline-block;
  width: 12em;
}
.ex-form-field[data-split="7"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 12em);
}

.ex-form-field[data-split="8"] .ex-field-label {
  display: inline-block;
  width: 13em;
}
.ex-form-field[data-split="8"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 13em);
}

.ex-form-field[data-split="9"] .ex-field-label {
  display: inline-block;
  width: 14em;
}
.ex-form-field[data-split="9"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 14em);
}

.ex-form-field[data-split="10"] .ex-field-label {
  display: inline-block;
  width: 15em;
}
.ex-form-field[data-split="10"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 15em);
}

.ex-form-field[data-split="11"] .ex-field-label {
  display: inline-block;
  width: 16em;
}
.ex-form-field[data-split="11"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 16em);
}

.ex-form-field[data-split="12"] .ex-field-label {
  display: inline-block;
  width: 17em;
}
.ex-form-field[data-split="12"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 17em);
}

.ex-form-field[data-split="13"] .ex-field-label {
  display: inline-block;
  width: 18em;
}
.ex-form-field[data-split="13"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 18em);
}

.ex-form-field[data-split="14"] .ex-field-label {
  display: inline-block;
  width: 19em;
}
.ex-form-field[data-split="14"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 19em);
}

.ex-form-field[data-split="15"] .ex-field-label {
  display: inline-block;
  width: 20em;
}
.ex-form-field[data-split="15"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 20em);
}

.ex-form-field[data-split="16"] .ex-field-label {
  display: inline-block;
  width: 22em;
}
.ex-form-field[data-split="16"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 22em);
}

.ex-form-field[data-split="17"] .ex-field-label {
  display: inline-block;
  width: 24em;
}
.ex-form-field[data-split="17"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 24em);
}

.ex-form-field[data-split="18"] .ex-field-label {
  display: inline-block;
  width: 26em;
}
.ex-form-field[data-split="18"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 26em);
}

.ex-form-field[data-split="19"] .ex-field-label {
  display: inline-block;
  width: 28em;
}
.ex-form-field[data-split="19"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 28em);
}

.ex-form-field[data-split="20"] .ex-field-label {
  display: inline-block;
  width: 30em;
}
.ex-form-field[data-split="20"] .ex-field-input {
  display: inline-block;
  width: calc(100% - 30em);
}

.ex-form-field[data-cols="1"] .ex-field-options.fixed-cols > .ex-option {
  width: 100%;
}

.ex-form-field[data-cols="2"] .ex-field-options.fixed-cols > .ex-option {
  width: 50%;
}

.ex-form-field[data-cols="3"] .ex-field-options.fixed-cols > .ex-option {
  width: 33%;
}

.ex-form-field[data-cols="4"] .ex-field-options.fixed-cols > .ex-option {
  width: 25%;
}

.ex-form-field[data-cols="5"] .ex-field-options.fixed-cols > .ex-option {
  width: 20%;
}

.ex-form-field[data-cols="6"] .ex-field-options.fixed-cols > .ex-option {
  width: 15%;
}

.ex-form-field[data-cols="1"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 100%;
  margin-top: 0;
}

.ex-form-field[data-cols="2"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 50%;
  margin-top: 0;
}

.ex-form-field[data-cols="3"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 33%;
  margin-top: 0;
}

.ex-form-field[data-cols="4"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 25%;
  margin-top: 0;
}

.ex-form-field[data-cols="5"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 20%;
  margin-top: 0;
}

.ex-form-field[data-cols="6"] .fixed-cols > .ex-form-field {
  display: inline-block;
  width: 15%;
  margin-top: 0;
}

/*------------------------------------------------------------------------------
	Radio/Check Options
------------------------------------------------------------------------------*/
.ex-field-options {
  white-space: normal;
  overflow: auto;
  padding: 0.5em 0.1em;
}
.ex-field-options label {
  white-space: nowrap;
}
.ex-field-options label > i.ex-note {
  font-weight: normal;
}
.ex-field-options > .ex-option {
  display: inline-block;
  white-space: nowrap;
  height: 1.5em;
}
.ex-field-options.ex-hierarchy > .ex-option > i {
  padding-left: 1.5em;
}
.ex-field-options .ex-inherited + label {
  color: #adb5bd;
}
.ex-field-options .ex-inherited + label::before {
  color: #adb5bd !important;
}
.ex-field-options.inline .ex-option {
  margin-right: 0.5em;
}
.ex-field-options .ex-option + .ex-option.ex-heading {
  margin-top: 0.5em;
}

.ex-form.smaller-options .ex-field-options.fixed-cols label {
  font-size: 0.75em;
  height: 1.5em;
  line-height: 1.5em;
}

.ex-form.option-borders .ex-field-options:not(.no-border) {
  padding: 0.25em 0.5em 0.5em 0.5em;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}

/*------------------------------------------------------------------------------
	Form Styles
------------------------------------------------------------------------------*/
.ex-fixed-content .ex-form[data-style=Linear] {
  overflow: auto;
  margin-bottom: 0.25em;
}
.ex-form[data-style=Linear] .ex-form-step.ex-border {
  margin: 0em;
  padding: 1em;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}

.ex-fixed-content .ex-form[data-style=Accordion] {
  overflow: auto;
  margin-bottom: 0.25em;
}
.ex-form[data-style=Accordion] .ex-form-step.ui-accordion-content {
  padding: 1em;
  /* Defeats quirk with .ui-helper-reset in jquery-ui.css (they just have "1.3") */
  /* This makes accordion spacing consistent with the other layouts */
  line-height: 1.3em;
}

.ex-form[data-style=Tabs].has-height {
  overflow: hidden;
}
.ex-form[data-style=Tabs].has-height .ui-tabs:not(.ui-tabs-vertical) {
  height: calc(100% - 2.1em);
}
.ex-form[data-style=Tabs].has-height .ui-tabs.ui-tabs-vertical {
  height: 100%;
}
.ex-form[data-style=Tabs].has-height .ui-tabs-panel {
  overflow: auto;
  height: 100%;
}

/*------------------------------------------------------------------------------
	Groups
------------------------------------------------------------------------------*/
.ex-form .ex-form-caption {
  margin-bottom: 0.5em;
}
.ex-form .ex-form-caption .ex-icon {
  margin-right: 0.25em;
}
.ex-form .ex-form-caption + .ex-form-field {
  margin-top: 0.75rem;
}
.ex-form .ex-form-fieldset {
  margin: 0.25em 0 0 0;
  padding: 1em;
  position: relative;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}
.ex-form .ex-form-fieldset > .ex-form-caption {
  position: absolute;
  top: -0.55em;
  background: #FFF;
  padding: 0 0.5em;
  border-radius: 0.5em;
}
.ex-form .ex-form-fieldset > .ex-form-caption + .ex-form-field {
  margin-top: 0;
}
.ex-form .ex-form-section > .ex-form-caption {
  text-align: center;
  border-bottom: 5px dotted #CCC;
}
.ex-form.mobile-friendly .ex-form-section > .ex-form-caption {
  border-bottom: 2px dotted #CCC;
}

/*------------------------------------------------------------------------------
	Inputs
------------------------------------------------------------------------------*/
.ex-form .ex-form-field .ex-input.ex-date-input, .ex-form .ex-form-field .ex-input.ex-time-input {
  width: 10em;
}
.ex-form .ex-form-field .ex-input.ex-mny-input, .ex-form .ex-form-field .ex-input.ex-num-input, .ex-form .ex-form-field .ex-input.ex-slider-input {
  text-align: right;
}
.ex-form .ex-form-field .ex-input + .ui-slider {
  margin-left: 0.75em;
  display: inline-block;
  width: calc(100% - 5em);
}
.ex-form .ex-form-field .ex-example {
  font-size: 0.85em;
  color: #adb5bd;
  margin-left: 0.25em;
}
.ex-form .ex-form-field textarea {
  width: 100%;
}
.ex-form input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.15) !important;
}
.ex-form input:-moz-placeholder {
  color: rgba(0, 0, 0, 0.15) !important;
}
.ex-form input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.15) !important;
}
.ex-form input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.15) !important;
}

.has-click {
  cursor: pointer;
}

/*------------------------------------------------------------------------------
	Stretch label/input field to fill Dialog Tab
------------------------------------------------------------------------------*/
.ui-tabs .ex-form-field.ex-fill-tab {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  margin-top: 0;
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-field-label {
  flex: 0;
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-field-input {
  flex: 1;
}
.ui-tabs .ex-form-field.ex-fill-tab .ex-fill-tab-container {
  height: 100%;
}

/*------------------------------------------------------------------------------
	Inline form fields (more than one field per line)
------------------------------------------------------------------------------*/
.ex-form-field.inline {
  display: inline-block;
  vertical-align: bottom;
  white-space: nowrap;
}

.ex-form-field.inline + .ex-form-field.inline {
  margin-left: 0.5em;
}

/*------------------------------------------------------------------------------
	Buttons in fields
------------------------------------------------------------------------------*/
.ex-form-field .ex-buttons {
  margin-top: 0.25em;
}

/*------------------------------------------------------------------------------
	Tabs Watermark
------------------------------------------------------------------------------*/
.ex-tabs .ex-tabs-watermark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8em;
  height: auto;
  text-align: center;
  color: rgb(229.5135135135, 232, 234.4864864865);
}
.ex-tabs .ex-tabs-watermark i.ex-icon {
  font-size: 8em;
}

.ex-tabs-right .ex-tabs-watermark {
  left: auto;
  right: 0;
}

/*------------------------------------------------------------------------------
	Full Height Tabs
------------------------------------------------------------------------------*/
.ex-fixed-tab .step {
  overflow: hidden;
}
.ex-fixed-tab .ex-form-field {
  height: 100%;
}
.ex-fixed-tab .grid-container {
  height: 100%;
}

/*------------------------------------------------------------------------------
	Admin/Secret Fields
------------------------------------------------------------------------------*/
.ex-form .admin {
  background: rgba(0, 123, 255, 0.025);
}
.ex-form .secret {
  background: rgba(220, 53, 69, 0.025);
}

/*------------------------------------------------------------------------------
	Misc
------------------------------------------------------------------------------*/
.ex-bold-note {
  display: block;
  margin: 0.5em;
  font-style: italic;
}

/*------------------------------------------------------------------------------
	Wizards
------------------------------------------------------------------------------*/
.ex-wizard {
  background: #FFF;
  color: #000;
  text-align: center;
  font-size: 1em;
}

.ex-wizard-content {
  display: block;
  margin: auto;
  padding: 1em 0em;
  text-align: center;
}

.ex-wizard-steps {
  display: block;
  padding: 1em;
  text-align: left;
}

.ex-wizard-step {
  display: block;
  margin: auto;
  padding: 1em;
  background: #FFF;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
}

/*------------------------------------------------------------------------------
	Progress Indication
------------------------------------------------------------------------------*/
.ex-wizard-progress {
  display: block;
  margin: 0;
  padding: 0;
  counter-reset: step;
  white-space: nowrap;
  list-style: none;
  font-size: 0;
}
.ex-wizard-progress li {
  position: relative;
  display: inline-block;
  width: 70px;
  margin: 0 0.5em;
  padding: 0;
  color: #333;
  font-size: 8px;
  cursor: pointer;
  z-index: 1;
}
.ex-wizard-progress li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: #CCC;
  border-radius: 3px;
  border: none;
  margin: 0 auto 5px auto;
}
.ex-wizard-progress li:after {
  position: absolute;
  z-index: -2;
  left: -33px;
  top: 9px;
  content: "";
  width: 100%;
  height: 2px;
  background: #CCC;
}
.ex-wizard-progress li:first-child:after {
  content: none;
}
.ex-wizard-progress li.active:before, .ex-wizard-progress li.active:after {
  background: #007bff;
  color: white;
}

/*------------------------------------------------------------------------------
	Buttons
------------------------------------------------------------------------------*/
.ex-wizard-foot {
  text-align: center;
  font-size: 1.25em;
}
.ex-wizard-foot i, .ex-wizard-foot span {
  height: 1em;
  line-height: 1em;
}
.ex-wizard-foot button {
  min-width: 9em;
  text-align: center;
}
.ex-wizard-foot button + button {
  margin-left: 0.5em;
}

/*------------------------------------------------------------------------------
	Transitions
------------------------------------------------------------------------------*/
.ex-wizard-step {
  display: none;
}
.ex-wizard-step.show {
  display: block;
}

/*------------------------------------------------------------------------------
	jQueryUI: Dialogs
------------------------------------------------------------------------------*/
.ui-dialog, .ui-dialog-content {
  box-sizing: content-box;
}

.ui-dialog {
  box-shadow: 3px 3px 8px #555;
}
.ui-dialog .ui-dialog-titlebar {
  padding: 0.25em 0.75em;
}
.ui-dialog .ui-dialog-content {
  padding: 0.5em;
}
.ui-dialog .ui-dialog-buttonpane {
  margin: 0;
  padding: 0.25em;
  white-space: nowrap;
  overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar-close {
  right: 0.5em;
  width: 1.5em;
  height: 1.5em;
  margin-top: -0.75em;
}
.ui-dialog .ui-dialog-titlebar-maximize {
  position: absolute;
  top: 50%;
  right: 2em;
  width: 1.5em;
  height: 1.5em;
  margin: -0.75em 0 0 0;
  padding: 1px;
}
.ui-dialog.no-close .ui-dialog-titlebar-close {
  display: none;
}
.ui-dialog .ex-dialog-left-buttons {
  float: left;
  padding: 0.7em;
}
.ui-dialog .ex-dialog-left-buttons span {
  margin-right: 0.5em;
}
.ui-dialog .ex-dialog-left-buttons + .ui-dialog-buttonset {
  float: none;
  text-align: right;
}

.ui-widget-overlay {
  background-color: #343a40;
  opacity: 0.3;
}

/*------------------------------------------------------------------------------
	Message Box (with jQuery UI dialog)
------------------------------------------------------------------------------*/
.ex-msgbox td {
  vertical-align: middle;
  text-align: justify;
}

.ex-msgbox td + td {
  padding-left: 0.5em;
}

/*------------------------------------------------------------------------------
	Common Dialog Elements
------------------------------------------------------------------------------*/
.ex-selectable {
  margin: 0.25em;
  padding: 0.25em;
  border: 3px solid #CCC;
  border-radius: 0.25em;
  cursor: pointer;
}
.ex-selectable:hover {
  border-color: #495057 !important;
}
.ex-selectable.selected {
  border-color: #007bff !important;
}

/*------------------------------------------------------------------------------
	Content Loaders
	<div class="ex-loader"></div>
	<div class="ex-loader"><span>Loading…</span></div>
------------------------------------------------------------------------------*/
.ex-ontop {
  z-index: 10003;
}

.ex-loader {
  display: block;
  text-align: center;
  overflow: hidden;
  font-size: 5rem;
  line-height: normal;
  padding: 0.5rem;
}
.ex-loader.top-layer {
  z-index: 1000;
  height: 100%;
}
.ex-loader.top:not(.inline) {
  min-height: 5rem;
}
.ex-loader.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ex-loader.fixed:before {
  top: 50%;
  animation: fa-spin-middle 1s infinite steps(9);
}
.ex-loader.absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ex-loader.absolute:before {
  top: 50%;
  animation: fa-spin-middle 1s infinite steps(9);
}
.ex-loader.greyed-out {
  background: rgba(52, 58, 64, 0.25);
}
.ex-loader.greyed-out:before {
  color: #007bff;
}
.ex-loader:before {
  display: block;
  position: relative;
  color: #495057;
  content: "\f110";
  font-family: "FontAwesome";
  animation: fa-spin 1s infinite steps(9);
}
.ex-loader.inline {
  padding: 0;
  font-size: 1rem;
}
.ex-loader.inline:before {
  display: inline-block;
  left: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1.5em;
  vertical-align: middle;
  margin-right: 0.25rem;
}
.ex-loader.inline > span {
  color: #343a40;
  line-height: 1.5em;
  vertical-align: middle;
}

@keyframes fa-spin-middle {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(359deg);
    transform: translateY(-50%) rotate(359deg);
  }
}
/*------------------------------------------------------------------------------
	Modal Windows
------------------------------------------------------------------------------*/
.ex-md {
  position: fixed;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  z-index: 10002; /* > .ex-md-overlay (10001) */
  visibility: hidden;
  backface-visibility: hidden;
  transform: translateX(-50%) translateY(-50%);
  max-height: 95%;
}
.ex-md.ex-md-show {
  visibility: visible;
}
.ex-md.ex-md-full {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
  max-height: none;
  background: white;
  margin: 0;
  padding: 0.5em;
}

.ex-md-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  visibility: hidden;
  top: 0;
  left: 0;
  z-index: 10001; /* > jqui dialog (101) */
  opacity: 0;
  background: rgba(100, 100, 100, 0.8);
  transform: translate(0, 0);
  transition: all 0.3s;
}

.ex-md-show + .ex-md-overlay {
  opacity: 1;
  visibility: visible;
}

.ex-md-content {
  position: relative;
  border-radius: 5px;
  margin: 0 auto;
}

/* Modal Messages */
.ex-md-msg .ex-md-content {
  background: rgb(96.26875, 105.5, 114.73125);
  color: #f8f9fa;
}
.ex-md-msg .ex-md-content .ex-md-title h1 {
  margin: 0;
  padding: 0.4em;
  text-align: center;
  font-size: 2.4em;
  opacity: 0.8;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px 3px 0 0;
  color: #f8f9fa;
}
.ex-md-msg .ex-md-content .ex-md-message {
  padding: 1.5em 2em 2em 2em;
  margin: 0;
}
.ex-md-msg .ex-md-content .ex-md-buttons {
  padding: 0em 2em 2em 2em;
  margin: 0;
}
.ex-md-msg .ex-md-content .ex-md-buttons button {
  display: block;
  margin: 0 auto 0 auto;
  color: #f8f9fa;
  background: rgb(26.4625, 29, 31.5375);
  font-size: 1.25em;
}
.ex-md-msg .ex-md-content .ex-md-buttons button:hover {
  background: rgb(49.73125, 54.5, 59.26875);
}

/* Alert Message (red) */
.ex-md-alert .ex-md-content {
  background: #e74c3c;
}
.ex-md-alert .ex-md-content .ex-md-buttons button {
  background: #c0392b;
}
.ex-md-alert .ex-md-content .ex-md-buttons button:hover {
  background: #A5281B;
}
.ex-md-alert + .ex-md-overlay {
  background: rgba(143, 27, 15, 0.8);
}

/* GES Message */
.ex-md-ges .ex-md-content {
  background: #93c03d;
}
.ex-md-ges .ex-md-content .ex-md-buttons button {
  background: rgb(117.3675889328, 153.2964426877, 48.7035573123);
}
.ex-md-ges .ex-md-content .ex-md-buttons button:hover {
  background: rgb(87.7351778656, 114.5928853755, 36.4071146245);
}
.ex-md-ges + .ex-md-overlay {
  background: rgba(147, 192, 61, 0.5);
}

/* Loader */
.ex-md-loader .ex-md-content h1 {
  font-size: 1.8em;
  padding: 0.5em 1em;
}

/* Effect 1: Fade in and scale up */
.ex-md-effect-1 .ex-md-content {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.ex-md-effect-1.ex-md-show .ex-md-content {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/*------------------------------------------------------------------------------
	Prevent main body scrolling while modal is open
------------------------------------------------------------------------------*/
body.ex-md-showing {
  height: 100vh;
  overflow-y: hidden;
}

/*------------------------------------------------------------------------------
  Notifications (toasts/snackbars/growls)
------------------------------------------------------------------------------*/
#ex-notifications {
  position: fixed;
  top: 1.5em;
  right: 2em;
  z-index: 101;
  /* Fixed Notification Tooltips */
}
#ex-notifications .ex-tooltip {
  display: block;
  float: right;
  clear: both;
}
#ex-notifications .ex-tooltip > span {
  position: relative;
  display: inline-block;
  margin-top: 1em;
  visibility: hidden;
  opacity: 0;
  max-width: 350px;
  left: 200px;
}
#ex-notifications .ex-tooltip > span .buttons {
  /* must be able to click on links*/
  pointer-events: auto;
}
#ex-notifications .ex-tooltip > span .buttons a {
  text-decoration: none;
  color: #FFF;
}
#ex-notifications .ex-tooltip > span .buttons a:hover {
  text-decoration: underline;
}
#ex-notifications .ex-tooltip.show > span {
  visibility: visible;
  opacity: 0.95;
  left: 0px;
}
#ex-notifications meter {
  width: 100%;
  height: 2em;
}

/*------------------------------------------------------------------------------
	Dynamic popup tooltips (positioned by script)
------------------------------------------------------------------------------*/
.ex-popup {
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  visibility: hidden;
  opacity: 0;
  z-index: 95; /* >= #MainNav (95) */
  padding: 0.5em;
  background: rgb(120.15, 131, 141.85);
  border-radius: 5px 5px;
  color: #f8f9fa;
  pointer-events: none;
  transition: opacity 0.25s ease;
  box-shadow: 3px 3px 8px #555;
  /* Show the popup */
}
.ex-popup.show {
  visibility: visible;
  opacity: 0.95;
}

/*------------------------------------------------------------------------------
	Tooltips and Info Icons
	Simple CSS only tooltips.
	<span class="tooltip {abs} {top} {ok | info | help | warning | error | ges }">
		{Visible Text}
		<span><b></b><em>{Caption}</em>{Message}</span>
	</span>
------------------------------------------------------------------------------*/
.ex-tooltip {
  position: relative;
  color: #000000;
  outline: none;
  cursor: help;
  text-align: left;
  text-decoration: none;
  /* Tooltips anchored on the right */
  /* Tooltips at the top */
  /* Show the tooltip */
  /* Caption */
  /* Icon */
  /* Styles */
}
.ex-tooltip > span {
  position: absolute;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 95; /* >= #MainNav (95) */
  left: 2em;
  top: 2em;
  min-width: 250px;
  max-width: 500px;
  white-space: normal;
  pointer-events: none;
  font-family: Calibri, Tahoma, Geneva, sans-serif;
  font-size: 14px;
  text-align: justify;
  border-radius: 5px 5px;
  transition: all 0.25s ease;
  box-shadow: 3px 3px 8px #555;
}
.ex-tooltip.right > span {
  left: unset;
  right: 0em;
}
.ex-tooltip.top > span {
  top: auto;
  bottom: 2em;
}
.ex-tooltip.abs {
  position: absolute;
}
.ex-tooltip:hover > span, .ex-tooltip.show > span {
  visibility: visible;
  opacity: 0.9;
}
.ex-tooltip > span > em {
  display: block;
  padding: 0.2em 0 0.6em 0;
  font-family: Candara, Tahoma, Geneva, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
  white-space: nowrap;
}
.ex-tooltip > span > b {
  position: absolute;
  margin: -20px 0 0 -50px;
  padding: 0;
  background-repeat: no-repeat;
  width: 48px;
  height: 48px;
}
.ex-tooltip > span {
  padding: 0.8em 1em 0.8em 1em;
  background: #495057;
  border: 1px solid rgb(26.4625, 29, 31.5375);
  color: #f8f9fa;
}
.ex-tooltip.ok > span {
  padding: 0.8em 1.8em 0.8em 2em;
  background: #92BF3D;
  border: 1px solid #557711;
  color: #FFFFFF;
}
.ex-tooltip.info > span {
  padding: 0.5em 1.8em 0.8em 2em;
  background: #9FDAEE;
  border: 1px solid #2BB0D7;
  color: #000;
}
.ex-tooltip.help > span {
  padding: 0.5em 1.8em 0.8em 2em;
  background: #9FDAEE;
  border: 1px solid #2BB0D7;
  color: #000;
}
.ex-tooltip.warning > span {
  padding: 0.5em 1.8em 0.8em 2em;
  background: #FFFFAA;
  border: 1px solid #FFAD33;
  color: #000;
}
.ex-tooltip.error > span {
  padding: 0.5em 1.8em 0.8em 2em;
  background: #FFCCAA;
  border: 1px solid #FF3334;
  color: #000;
}
.ex-tooltip.ges > span {
  padding: 0.8em 1.8em 0.8em 2em;
  background: #93c03d;
  border: 1px solid rgb(87.7351778656, 114.5928853755, 36.4071146245);
  color: #FFFFFF;
}
.ex-tooltip.ok > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Dialogs/hint-ok.png");
}
.ex-tooltip.info > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Dialogs/hint-info.png");
}
.ex-tooltip.help > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Dialogs/hint-help.png");
}
.ex-tooltip.warning > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Dialogs/hint-warn.png");
}
.ex-tooltip.error > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Dialogs/hint-error.png");
}
.ex-tooltip.ges > span > b {
  background-size: 48px;
  background-image: url("../Content/Excalibur/Logos/ges-circle-48.png");
}
.ex-tooltip.file > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Disk-2.png");
}
.ex-tooltip.pdf > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Application-pdf.png");
}
.ex-tooltip.excel > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Doc-Spreadsheet.png");
}
.ex-tooltip.chart > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Chart-Pie.png");
}
.ex-tooltip.process > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Gear.png");
}
.ex-tooltip.database > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/Database.png");
}
.ex-tooltip.email > span > b {
  background-size: 48px;
  background-image: url("../Content/Stock/Icons/mail-reply.png");
}

/* Inline tooltip (spans) */
span.ex-tooltip {
  border-bottom: 1px dotted #000000;
}

/* info-icon is an fa-info icon with a tooltip */
.info-icon, .warning-icon {
  font-weight: normal;
  /*font-style: normal;*/
  font-size: 1em;
}
.info-icon:before, .warning-icon:before {
  position: relative;
  font: normal normal normal 1.25em/1 FontAwesome;
  content: "\f05a"; /* fa-info-circle */
  color: #77e;
  transform: translate(0, 0);
}

.warning-icon:before {
  content: "\f06a"; /* fa-exclamation-circle */
  color: #FFAD33;
}

/*------------------------------------------------------------------------------
  User Tips
------------------------------------------------------------------------------*/
#ex-usertips {
  position: fixed;
  bottom: 1px;
  z-index: 101;
  transition: all 0.25s ease;
  width: 100%;
  text-align: center;
  font-size: 0.8em;
  pointer-events: none;
}
#ex-usertips .ex-usertip {
  display: block;
}
#ex-usertips .ex-usertip > span {
  position: relative;
  display: inline-block;
  margin: 0 0 1px 0;
  visibility: hidden;
  opacity: 0;
  background: #007bff;
  color: #fff;
  padding: 0.25em 0.5em;
  border-radius: 0.5em;
}
#ex-usertips .ex-usertip > span em {
  margin-right: 0.25em;
  font-weight: bold;
}
#ex-usertips .ex-usertip.show > span {
  visibility: visible;
  opacity: 0.95;
}
#ex-usertips .ex-usertip.warning > span {
  background-color: #fd7e14;
  color: black;
}
#ex-usertips .ex-usertip.error > span {
  background-color: #dc3545;
  color: white;
}

/*--------------------------------------------------------------------------------------------------
	Context Menus 

	Context menus are created on the fly in the oncontextmenu event (see ContextMenuManager.ts).
	The "show" class is added/removed in .ex-context-menu to trigger the show/hide transitions.
--------------------------------------------------------------------------------------------------*/
.ex-context-menu {
  min-width: 50px;
}
.ex-context-menu.show {
  visibility: visible;
  Opacity: 1;
}

.ex-context-menu {
  position: fixed;
  display: block;
  z-index: 2000;
  cursor: default;
  margin: 0px;
  padding: 0px;
  background: #FFF;
  color: #333;
  font-size: 10pt;
  font-family: "Segoe UI", "Calibri", "Sans-Serif", "Arial";
  text-align: left;
  white-space: nowrap;
  visibility: hidden;
  Opacity: 0;
  transition: opacity 0.5s;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
  /* Main items */
  /* Icons */
  /* Headings */
  /* Item Separator */
  /* Sub-Menu Indicator */
  /* Second level(s) */
}
.ex-context-menu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.ex-context-menu li {
  position: relative;
  margin: 0px;
  padding: 0px 5px;
  line-height: 32px;
  white-space: nowrap;
  cursor: pointer;
  color: #333;
}
.ex-context-menu li:hover {
  background: #888;
  color: #FFF;
}
.ex-context-menu li:hover > a {
  color: #FFF;
}
.ex-context-menu li a {
  display: inline-block;
  width: 100%;
  color: #333;
  text-decoration: none;
}
.ex-context-menu li.selected {
  color: #000;
  background-color: #007bff;
}
.ex-context-menu li > a > i {
  display: inline-block;
  margin-right: 0.5em;
  vertical-align: text-top;
  width: 1em;
  color: #CCC;
  font-size: 1.5em;
}
.ex-context-menu li.selected > a > i {
  color: #333;
}
.ex-context-menu li:hover > a > i {
  color: #FFF;
}
.ex-context-menu li > a > i.on {
  color: #007bff;
}
.ex-context-menu li.heading {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #CCC;
}
.ex-context-menu li.separator {
  border-bottom: 1px solid #CCC !important;
}
.ex-context-menu ul span {
  display: inline-block;
  width: 100%;
  margin-right: 1em;
}
.ex-context-menu ul li.has-items > a > span:after {
  content: "▸";
  color: #AAA;
  position: absolute;
  right: 0.25em;
}
.ex-context-menu li.selected > a > span:after {
  color: #333;
}
.ex-context-menu li > ul {
  display: none;
  z-index: 0;
  text-align: left;
  background: #FFF;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
}
.ex-context-menu li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1;
  left: 100%;
  top: 0%;
}

/*------------------------------------------------------------------------------
	Drop-Down Menus (context menus using Bootstrap/popper)
------------------------------------------------------------------------------*/
.dropdown-menu {
  padding: 0.5rem;
}
.dropdown-menu a > i.ex-icon {
  margin-right: 0.25em;
}

/*--------------------------------------------------------------------------------------------------
	Hover Panel

	The panel is placed inside a trigger element with .ex-hover-panel-button.
	It slides/fades into position when hovering over the trigger element.
	The panel is positioned below the trigger element.
	The panel may slide in from the left (default) or from the right (.ex-hover-right).
	The final position of the panel may be hanging to the right of the trigger element (default),
	or to the left of the trigger element (.ex-arrow-right).
--------------------------------------------------------------------------------------------------*/
.ex-hover-panel {
  position: absolute;
  display: block;
  z-index: 2000;
  margin: 0;
  padding: 1em;
  background: #FFF;
  color: #333;
  line-height: 1.25em;
  font-size: 1em;
  font-family: "Segoe UI", "Calibri", "Sans-Serif", "Arial";
  text-align: justify;
  white-space: normal;
  cursor: default;
  min-width: 10em;
  left: -150px;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
  /* Arrow (pointing at the activator button) */
}
.ex-hover-panel:after, .ex-hover-panel:before {
  position: absolute;
  top: -24px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "  ";
  pointer-events: none;
  border-color: transparent;
  left: 14px;
}
.ex-hover-panel:after {
  border-bottom-color: #fff;
  border-width: 8px;
  top: -16px;
  margin-left: -8px;
}
.ex-hover-panel:before {
  border-bottom-color: #ccc;
  border-width: 12px;
  margin-left: -12px;
}

/* Show when hovering over parent button, or when "show" class is added */
.ex-hover-panel-button:hover > .ex-hover-panel, .ex-hover-panel.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  left: 10px;
}

/* Hover in from the right */
.ex-hover-panel.ex-hover-right {
  left: 150px;
}

.ex-hover-panel-button:hover > .ex-hover-panel.ex-hover-right {
  left: 10px;
}

/* Arrow on the right */
.ex-hover-panel.ex-arrow-right:after {
  right: 14px;
  left: auto;
  margin-right: -8px;
  margin-left: auto;
}
.ex-hover-panel.ex-arrow-right:before {
  right: 14px;
  left: auto;
  margin-right: -12px;
  margin-left: auto;
}

/* Hover in from the right, Arrow on the right */
.ex-hover-panel.ex-hover-right.ex-arrow-right {
  left: auto;
  right: -150px;
}

.ex-hover-panel-button:hover > .ex-hover-panel.ex-hover-right.ex-arrow-right {
  left: auto;
  right: 8px;
}

/* Hover in from the left, Arrow on the right */
.ex-hover-panel.ex-arrow-right {
  left: auto;
  right: 150px;
}

.ex-hover-panel-button:hover > .ex-hover-panel.ex-arrow-right {
  left: auto;
  right: 8px;
}

/**
 * Hover Pads
 * Adds padding to left/right of trigger element to make it easier to hover onto the panel without it sliding away.
 */
/* This is preventing onclick event on the header control. Benefit is minimal.
.ex-hover-panel-button:hover:before {
	content: "";
	position: absolute;
	display: inline-block;
	z-index: 10;
	top: 0;
	bottom: 0;
	left: -2em;
	right: -2em;
	pointer-events: auto;

	border: 1px solid red;
}*/
/*------------------------------------------------------------------------------
	Main Menu
------------------------------------------------------------------------------*/
.ex-main-menu {
  background-color: rgb(49.73125, 54.5, 59.26875);
  border-color: rgb(49.73125, 54.5, 59.26875);
  min-width: 200px;
  overflow: auto;
  font-size: 0.9rem;
  scrollbar-base-color: rgb(3.19375, 3.5, 3.80625);
  scrollbar-face-color: rgb(3.19375, 3.5, 3.80625);
  scrollbar-track-color: #495057;
}
.ex-main-menu::-webkit-scrollbar {
  width: 5px;
  padding: 2px;
  background-color: rgb(3.19375, 3.5, 3.80625);
}
.ex-main-menu::-webkit-scrollbar-thumb {
  background-color: #495057;
}
.ex-main-menu a {
  display: block;
  padding: 0.5em;
  color: rgba(248, 249, 250, 0.75) !important;
}
.ex-main-menu a.active {
  /*background-color: lighten(ex-color(background-dark), 10%);*/
  background-color: #007bff;
}
.ex-main-menu a:hover {
  text-decoration: none;
  color: rgba(248, 249, 250, 0.75);
  background: #495057;
}
.ex-main-menu ul {
  padding: 0;
  margin: 0;
}
.ex-main-menu li {
  position: relative;
  list-style: none;
  white-space: nowrap;
}
.ex-main-menu li i {
  display: inline-block;
  width: 0.75em;
  font-size: 1em;
  vertical-align: middle;
}
.ex-main-menu li i.ex-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.5em;
  font-size: 1.75em;
  color: #f8f9fa;
}
.ex-main-menu li.separator {
  border-top: 1px solid rgb(14.828125, 16.25, 17.671875);
  border-bottom: 1px solid rgb(38.096875, 41.75, 45.403125);
}
.ex-main-menu li > ul {
  font-size: 0.9em;
  max-height: 10000px;
  overflow-y: hidden;
  transition: max-height 0.25s ease-in-out;
  transition: background 0.25s ease-in-out;
}
.ex-main-menu li.open > ul {
  background-color: rgb(26.4625, 29, 31.5375);
}
.ex-main-menu li.closed > ul {
  max-height: 0;
}
.ex-main-menu li.has-items::before {
  position: absolute;
  top: 0.75rem;
  right: 0.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  padding: 0;
  font-size: 1rem;
  line-height: 0.75rem;
  text-align: center;
  color: rgba(248, 249, 250, 0.25);
  content: ">";
  transition: 0.2s;
  transform: rotate(90deg);
}
.ex-main-menu li.has-items.closed::before {
  transform: rotate(0deg);
}

/*------------------------------------------------------------------------------
	Project Tiles
------------------------------------------------------------------------------*/
.ex-menutiles {
  text-align: center;
}

.ex-menutiles-item {
  position: relative;
  display: inline-block;
  width: 150px;
  height: 150px;
  margin: 1em;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
}
.ex-menutiles-item:hover {
  border-color: #007bff;
}
.ex-menutiles-item h1 {
  display: none;
  font-size: 1em;
}
.ex-menutiles-item h2 {
  display: none;
}

/*------------------------------------------------------------------------------
	Nav Tiles (modified accordions)
------------------------------------------------------------------------------*/
a.ex-nav-tile {
  color: #007bff;
  text-decoration: none;
  display: inline-block;
  margin: 0.5em;
  text-align: center;
  border-radius: 0.5em;
  padding: 0.25em;
  width: 8em;
  height: 7em;
  vertical-align: top;
}
a.ex-nav-tile:hover {
  color: #f8f9fa;
  background-color: #495057;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}
a.ex-nav-tile.ex-nav-back {
  color: #adb5bd;
}
a.ex-nav-tile.disabled {
  color: #adb5bd;
}
a.ex-nav-tile > i {
  display: block;
  font-size: 4em;
  font-style: normal;
  line-height: 1em;
}

/*------------------------------------------------------------------------------
	Tiles (large icon links)
------------------------------------------------------------------------------*/
.ex-tile {
  display: inline-block;
  font-size: 1em;
  width: 12em;
  height: 10em;
  text-align: center;
  vertical-align: middle;
}
.ex-tile > a {
  display: block;
  padding: 1em;
  text-decoration: none;
}
.ex-tile > a > .ex-icon {
  display: block;
  font-size: 5em;
}
.ex-tile > a > h1 {
  font-size: 1.5em;
}
.ex-tile > a > h2 {
  font-size: 1em;
}
.ex-tile > a:hover {
  color: #fff;
  background: #007bff;
}

/*------------------------------------------------------------------------------
	Sidebars & Sidebar Widgets
------------------------------------------------------------------------------*/
.ex-sidebar {
  min-width: 250px;
}

.ex-sbw {
  font-size: 0.8em;
  white-space: nowrap;
}

.ex-sidebar-contact + .ex-sidebar-contact {
  display: block;
  padding-top: 1rem;
  border-top: 1px solid #ced4da;
  margin-top: 1rem;
}

.ex-sbw-contact {
  display: flex;
}
.ex-sbw-contact .ex-sbw-contact-content {
  padding: 0 0.5rem;
}
.ex-sbw-contact .ex-sbw-contact-name {
  font-size: 1.5em;
  font-weight: bold;
}
.ex-sbw-contact .ex-sbw-contact-company {
  font-size: 1.3em;
  font-style: italic;
}
.ex-sbw-contact .ex-sbw-contact-details span {
  display: inline-block;
  width: 4em;
}

/*------------------------------------------------------------------------------
	Toolbars
------------------------------------------------------------------------------*/
.ex-toolbar {
  margin: 0;
  padding: 0.25em 0.25em;
  border-bottom: 1px solid #adb5bd;
  background: #f8f9fa;
}
.ex-toolbar.ex-center {
  text-align: center;
}
.ex-toolbar > select {
  vertical-align: middle;
}
.ex-toolbar > .ex-icon-btn {
  margin: 0 0.1em;
  padding: 0.15em 0;
  width: 1.1em;
  height: 1.2em;
  font-size: 3em;
  color: #adb5bd;
  background: none;
  box-shadow: none;
  border-radius: 0;
  vertical-align: middle;
}
.ex-toolbar > .ex-icon-btn > i {
  margin: 0;
  padding: 0;
  text-shadow: 1px 1px rgba(3.19375, 3.5, 3.80625, 0.9);
}
.ex-toolbar > .ex-icon-btn:hover:not([disabled]) {
  color: #007bff;
  box-shadow: 0 0 0 6px rgba(173, 181, 189, 0.4);
}
.ex-toolbar > .ex-icon-btn:hover:not([disabled]) > i {
  text-shadow: 3px 3px 5px #343a40;
}
.ex-toolbar > .ex-icon-btn[disabled] {
  color: rgb(218.25, 223.5, 228.75);
}
.ex-toolbar > .ex-icon-btn[disabled] > i {
  text-shadow: 1px 1px white;
}

/*------------------------------------------------------------------------------
	Toolbar Strip
------------------------------------------------------------------------------*/
.ex-toolstrip-vertical .ex-toolstrip {
  padding: 0 0.25em;
  border-right: 1px solid #adb5bd;
  border-bottom: none;
}
.ex-toolstrip-vertical .ex-toolstrip > button {
  display: block;
}

.ex-toolbar.ex-toolstrip {
  text-align: center;
}

/*------------------------------------------------------------------------------
	jQueryUI: Accordion
------------------------------------------------------------------------------*/
.ui-accordion .ui-accordion-header {
  font-size: 1.1em;
  font-weight: bold;
  background-image: none;
  background-color: transparent;
}
.ui-accordion .ui-accordion-header.ui-state-hover {
  background: #dddddd;
}
.ui-accordion .ui-accordion-header.ui-state-active {
  background: #495057;
  border-color: rgb(26.4625, 29, 31.5375);
}
.ui-accordion .ui-accordion-header i.ex-icon {
  display: inline-block;
  width: 1.25em;
  text-align: center;
}
.ui-accordion .ui-accordion-header span {
  vertical-align: middle;
}

/*------------------------------------------------------------------------------
	jQueryUI: Accordion - as icon blocks
------------------------------------------------------------------------------*/
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-header {
  display: inline-block;
  margin: 0em 1em 1em 0em;
  padding: 0.5em;
  text-align: center;
  width: 175px;
  height: 105px;
  border-radius: 5px;
  font-size: 0.9em;
}
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-header i.ex-icon {
  display: block;
  margin: 0;
  font-size: 72px;
  width: auto;
  color: #adb5bd;
}
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-header.ui-state-hover {
  background: #495057;
  box-shadow: 0 0 15px #495057;
  color: #FFF;
}
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-header-icon {
  display: none;
}
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-content {
  border: 1px solid #aaaaaa;
  border-radius: 4px;
  padding: 0.5em;
}
.ui-accordion[data-style=ex-navtiles-blocks] .ui-accordion-content-active {
  margin: 0em 0em 1em 0em;
}

/*------------------------------------------------------------------------------
	jQueryUI: Accordion - Task Count overlay
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	jQueryUI: Accordion - Compact / Mobile displays
------------------------------------------------------------------------------*/
.ui-accordion.compact .ui-accordion-content {
  padding: 0.5em;
}

/*------------------------------------------------------------------------------
	Dashboard Widgets
------------------------------------------------------------------------------*/
.ui-dash-widget {
  display: inline-block;
  width: 300px;
  height: 200px;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin: 0.25rem;
  color: #333;
  text-align: center;
}
.ui-dash-widget h1 {
  font-size: 2.5em;
  font-weight: bold;
}
.ui-dash-widget h2 {
  font-size: 2em;
}
.ui-dash-widget.complete {
  background: #93c03d;
}

/*------------------------------------------------------------------------------
	Content Panel - with optional Heading (as in all the demo pages)
------------------------------------------------------------------------------*/
.ex-content-panel {
  padding: 0;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
}
.ex-content-panel .ex-heading {
  padding: 1rem;
  border-bottom: 1px solid #ced4da;
  background: #f8f9fa;
  border-radius: 0.5rem 0.5rem 0 0;
  font-weight: 500;
}
.ex-content-panel .ex-content {
  padding: 1rem;
}
.ex-content-panel + .ex-content-panel {
  margin-top: 0.5rem;
}

.ex-content-padding {
  padding: 0.5rem;
}
.ex-content-padding + .ex-content-padding {
  padding-top: 0;
}

.ex-content-panel.compact .ex-heading {
  padding: 0.25rem 0.25rem 0.25rem 1rem;
}

/*------------------------------------------------------------------------------
	Simple Panel - with optional Heading (as in the Wizard Control)
------------------------------------------------------------------------------*/
.ex-simple-panel .ex-heading {
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: #f8f9fa;
  font-size: 1.5em;
}
.ex-simple-panel.center .ex-heading {
  text-align: center;
}

/*------------------------------------------------------------------------------
	Content Container - with padding (but no border)
------------------------------------------------------------------------------*/
.ex-container {
  position: relative;
  min-height: 5em;
}

.ex-content-container {
  position: relative;
  padding: 0.5rem;
  overflow: auto;
}

.ex-content-scrollbars {
  scrollbar-base-color: #f8f9fa;
  scrollbar-face-color: #adb5bd;
  scrollbar-track-color: #343a40;
}
.ex-content-scrollbars::-webkit-scrollbar {
  width: 14px;
  height: 14px;
  background-color: #adb5bd;
}
.ex-content-scrollbars::-webkit-scrollbar-thumb {
  background-color: rgb(26.4625, 29, 31.5375);
}

/*------------------------------------------------------------------------------
	Content Section - top margin only (and no border)
------------------------------------------------------------------------------*/
.ex-content-section {
  position: relative;
  overflow: auto;
}
.ex-content-section + div, div + .ex-content-section, table + .ex-content-section, .ex-content-section + table {
  margin-top: 0.5rem;
}

.ex-content-band {
  margin: 0.5rem 0;
}

/*------------------------------------------------------------------------------
	Popup Panels / Sticky Control Panels
------------------------------------------------------------------------------*/
.ex-popup-panel {
  padding: 1rem;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
  background-color: #FFF;
}

/*------------------------------------------------------------------------------
	Photo / Image Containers
------------------------------------------------------------------------------*/
.ex-img-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
}

/*------------------------------------------------------------------------------
	Control Notes - notes displayed below a control/widget
------------------------------------------------------------------------------*/
.ex-control-notes {
  font-size: 0.8em;
  font-style: italic;
  color: #adb5bd;
}
.ex-control-notes div {
  font-style: normal;
  font-weight: bold;
  color: #343a40;
}

/*------------------------------------------------------------------------------
	Control Buttons - set of buttons displayed below a control/widget
------------------------------------------------------------------------------*/
.ex-control-buttons {
  text-align: center;
  margin-top: 0.25em;
}

/*------------------------------------------------------------------------------
	Tabs - Bootstrap
------------------------------------------------------------------------------*/
.tab-content {
  padding: 1rem;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: auto;
}

.nav.nav-tabs {
  /*flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;*/
}
.nav.nav-tabs .nav-item {
  white-space: nowrap;
}
.nav.nav-tabs .nav-item .ex-icon {
  font-size: 1.25em;
  margin-right: 0.25em;
  vertical-align: middle;
}

.tab-pane {
  position: relative;
}

/*------------------------------------------------------------------------------
	jQueryUI: Tabs
------------------------------------------------------------------------------*/
.ui-tabs {
  border: none;
}
.ui-tabs.ui-widget.ui-widget-content {
  border: none;
  padding: 4px 0 0 0;
}
.ui-tabs .ui-widget-header {
  background: none;
  border: none;
}
.ui-tabs .ui-tabs-panel {
  border: 1px solid #ced4da;
  padding: 1em;
}
.ui-tabs .ui-tabs-nav {
  display: flex;
  margin: 0;
  padding: 0;
  /*overflow: auto hidden;*/
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab {
  float: none;
  display: inline-block;
  position: relative;
  margin: 0px 2px 0px 0px;
  border-bottom: none;
  /*top: 4px;
  margin-bottom: 2px;
  padding-bottom: 2px;*/
  top: 0px;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab .ui-tabs-anchor {
  padding: 0.5em 0.75em 0.2em 0.75em;
  color: #343a40;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab .ui-tabs-anchor i.ex-icon {
  margin-right: 0.25em;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab.ui-tabs-active {
  /*top: 0px;*/
  top: -4px;
  margin-bottom: -6px;
  border-bottom: 1px solid #FFF !important;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab.ui-tabs-active .ui-tabs-anchor {
  cursor: default;
  font-weight: bold;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab.ui-state-default {
  background: #eee;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab.ui-state-hover {
  background: #ccc;
}
.ui-tabs .ui-tabs-nav .ui-tabs-tab.ui-state-active {
  border-color: #ced4da;
  background: #fff;
}
.ui-tabs.small-tabs .ui-tabs-nav {
  font-size: 0.75em;
}

/*------------------------------------------------------------------------------
	jQueryUI: Tabs - Vertical Tabs
------------------------------------------------------------------------------*/
.ui-tabs.ui-tabs-vertical .ui-tabs-nav {
  float: left;
  width: 125px;
  display: inline-block;
  white-space: normal;
  font-size: 0.8em;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li {
  width: 100%;
  border-radius: 0.5em 0 0 0.5em;
  border: 1px solid #ced4da !important;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li a {
  width: 100%;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav li.ui-tabs-active {
  Top: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #ced4da !important;
}
.ui-tabs.ui-tabs-vertical .ui-tabs-nav .ui-tabs-anchor i.ex-icon {
  margin: auto;
  display: inline-block;
  width: 1.25em;
}
.ui-tabs.ui-tabs-vertical.ex-tabs-left .ui-tabs-nav li {
  left: 1px;
}
.ui-tabs.ui-tabs-vertical.ex-tabs-left .ui-tabs-nav li.ui-tabs-active {
  border-right: 1px solid #FFF !important;
}
.ui-tabs.ui-tabs-vertical.ex-tabs-right .ui-tabs-nav {
  float: right;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
}
.ui-tabs.ui-tabs-vertical.ex-tabs-right .ui-tabs-nav li {
  right: 1px;
  border-radius: 0 0.5em 0.5em 0;
}
.ui-tabs.ui-tabs-vertical.ex-tabs-right .ui-tabs-nav li.ui-tabs-active {
  border-left: 1px solid #FFF !important;
}

/*------------------------------------------------------------------------------
	Excalibur Carousel
	Taken From:
	http://tympanus.net/Development/ParallaxContentSlider/
------------------------------------------------------------------------------*/
.da-slider {
  width: 100%;
  min-width: 520px;
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #343a40 url(../Content/Stock/Tiles/NoiseDark.jpg) repeat 0% 0%;
  border-top: 8px solid #495057;
  border-bottom: 8px solid #495057;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2), 0px -2px 1px #fff;
  transition: background-position 1.4s ease-in-out 0.3s;
}

.da-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  font-family: "BebasNeueRegular", "Arial Narrow", Arial, sans-serif;
  text-align: left;
}

.da-slide-current {
  z-index: 15;
}

.da-slide h2,
.da-slide p,
.da-slide .da-link,
.da-slide .da-img {
  position: absolute;
  opacity: 0;
  left: 110%;
}

.da-slide h2 {
  color: #fff;
  font-size: 50px;
  width: 50%;
  top: 25px;
  white-space: nowrap;
  z-index: 10;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  font-family: "Economica", Arial, sans-serif;
  font-weight: 700;
}

.da-slide p {
  width: 45%;
  top: 100px;
  color: #adb5bd;
  font-size: 20px;
  line-height: 30px;
  height: 130px;
  overflow: hidden;
  font-style: italic;
  font-family: "Economica", Arial, sans-serif;
  font-weight: 400;
  font-style: italic;
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
}

.da-slide da-img {
  text-align: center;
  width: 300px;
  height: 256px;
  line-height: 300px;
  left: 110%;
}

.da-slide .da-link {
  top: 220px; /* depends on p height */
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  color: #fff;
  border: 8px solid rgba(255, 255, 255, 0.8);
  padding: 2px 20px 0px;
  font-size: 18px;
  line-height: 30px;
  width: auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.2);
}

.da-slide .da-link:hover {
  background: rgba(255, 255, 255, 0.3);
}

.da-dots {
  width: 100%;
  position: absolute;
  text-align: center;
  left: 0px;
  bottom: 10px;
  z-index: 20;
  user-select: none;
  pointer-events: none; /* prevent obscuring the link */
}

.da-dots span {
  display: inline-block;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #495057;
  margin: 3px;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 1px rgba(255, 255, 255, 0.1);
}

.da-dots span.da-dots-current:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  opacity: 0.5;
  background: #000;
}

.da-arrows {
  user-select: none;
}

.da-arrows span {
  position: absolute;
  top: 135px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #495057;
  cursor: pointer;
  z-index: 20;
  opacity: 0;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1) inset, 1px 1px 1px rgba(255, 255, 255, 0.1);
  transition: opacity 0.4s ease-in-out 0.2s;
}

.da-slider:hover .da-arrows span {
  opacity: 1;
}

.da-arrows span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 5px;
  left: 5px;
  background: transparent url(../Content/Excalibur/Controls/Carousel/arrows.png) no-repeat top left;
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.da-arrows span:hover:after {
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.da-arrows span:active:after {
  box-shadow: 1px 1px 1px rgba(255, 255, 255, 0.1);
}

.da-arrows span.da-arrows-next:after {
  background-position: top right;
}

.da-arrows span.da-arrows-prev {
  left: 15px;
}

.da-arrows span.da-arrows-next {
  right: 15px;
}

.da-slide-current h2,
.da-slide-current p,
.da-slide-current .da-link {
  left: 10%;
  opacity: 1;
}

.da-slide-current .da-img {
  left: 70%;
  opacity: 1;
}

/* Animation classes and animations */
.da-slide-fromright h2 {
  animation: fromRightAnim1 0.6s ease-in 0.8s both;
}

.da-slide-fromright p {
  animation: fromRightAnim2 0.6s ease-in 0.8s both;
}

.da-slide-fromright .da-link {
  animation: fromRightAnim3 0.4s ease-in 1.2s both;
}

.da-slide-fromright .da-img {
  animation: fromRightAnim4 0.6s ease-in 0.8s both;
}

@keyframes fromRightAnim1 {
  0% {
    left: 110%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromRightAnim2 {
  0% {
    left: 110%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromRightAnim3 {
  0% {
    left: 110%;
    opacity: 0;
  }
  1% {
    left: 10%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromRightAnim4 {
  0% {
    left: 110%;
    opacity: 0;
  }
  100% {
    left: 70%;
    opacity: 1;
  }
}
.da-slide-fromleft h2 {
  animation: fromLeftAnim1 0.6s ease-in 0.6s both;
}

.da-slide-fromleft p {
  animation: fromLeftAnim2 0.6s ease-in 0.6s both;
}

.da-slide-fromleft .da-link {
  animation: fromLeftAnim3 0.4s ease-in 1.2s both;
}

.da-slide-fromleft .da-img {
  animation: fromLeftAnim4 0.6s ease-in 0.6s both;
}

@keyframes fromLeftAnim1 {
  0% {
    left: -110%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromLeftAnim2 {
  0% {
    left: -110%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromLeftAnim3 {
  0% {
    left: -110%;
    opacity: 0;
  }
  1% {
    left: 10%;
    opacity: 0;
  }
  100% {
    left: 10%;
    opacity: 1;
  }
}
@keyframes fromLeftAnim4 {
  0% {
    left: -110%;
    opacity: 0;
  }
  100% {
    left: 70%;
    opacity: 1;
  }
}
.da-slide-toright h2 {
  animation: toRightAnim1 0.6s ease-in 0.6s both;
}

.da-slide-toright p {
  animation: toRightAnim2 0.6s ease-in 0.3s both;
}

.da-slide-toright .da-link {
  animation: toRightAnim3 0.4s ease-in both;
}

.da-slide-toright .da-img {
  animation: toRightAnim4 0.6s ease-in both;
}

@keyframes toRightAnim1 {
  0% {
    left: 10%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes toRightAnim2 {
  0% {
    left: 10%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes toRightAnim3 {
  0% {
    left: 10%;
    opacity: 1;
  }
  99% {
    left: 10%;
    opacity: 0;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes toRightAnim4 {
  0% {
    left: 70%;
    opacity: 1;
  }
  30% {
    left: 60%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
.da-slide-toleft h2 {
  animation: toLeftAnim1 0.6s ease-in both;
}

.da-slide-toleft p {
  animation: toLeftAnim2 0.6s ease-in 0.3s both;
}

.da-slide-toleft .da-link {
  animation: toLeftAnim3 0.4s ease-in both;
}

.da-slide-toleft .da-img {
  animation: toLeftAnim4 0.6s ease-in 0.6s both;
}

@keyframes toLeftAnim1 {
  0% {
    left: 10%;
    opacity: 1;
  }
  30% {
    left: 15%;
    opacity: 1;
  }
  100% {
    left: -50%;
    opacity: 0;
  }
}
@keyframes toLeftAnim2 {
  0% {
    left: 10%;
    opacity: 1;
  }
  30% {
    left: 15%;
    opacity: 1;
  }
  100% {
    left: -50%;
    opacity: 0;
  }
}
@keyframes toLeftAnim3 {
  0% {
    left: 10%;
    opacity: 1;
  }
  99% {
    left: 10%;
    opacity: 0;
  }
  100% {
    left: -50%;
    opacity: 0;
  }
}
@keyframes toLeftAnim4 {
  0% {
    left: 70%;
    opacity: 1;
  }
  40% {
    left: 85%;
    opacity: 1;
  }
  90% {
    left: 0%;
    opacity: 0;
  }
  100% {
    left: -50%;
    opacity: 0;
  }
}
/*------------------------------------------------------------------------------
	Image Carousel (Bootstrap carousel)
------------------------------------------------------------------------------*/
.ex-image-slider-container {
  position: relative;
}

.ex-image-carousel .carousel-item {
  height: 100%;
}
.ex-image-carousel .carousel-item.active, .ex-image-carousel .carousel-item.carousel-item-prev, .ex-image-carousel .carousel-item.carousel-item-next {
  display: flex;
}
.ex-image-carousel .carousel-item img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}
.ex-image-carousel .carousel-control-prev, .ex-image-carousel .carousel-control-next {
  color: #343a40;
  text-shadow: -1px -1px 0 #FFF;
}
.large-controls .ex-image-carousel .carousel-control-prev, .large-controls .ex-image-carousel .carousel-control-next {
  font-size: 3em;
}
.indicators-below .ex-image-carousel .carousel-indicators {
  position: relative;
}
.ex-image-carousel .carousel-indicators li {
  background-color: #343a40;
}
.indicator-bullets .ex-image-carousel .carousel-indicators li {
  border: 2px solid #fff;
  background-clip: initial;
  width: 0.75em;
  height: 0.75em;
  border-radius: 0.75em;
  margin: 0 0.1em;
}
.large-controls .ex-image-carousel .carousel-indicators li {
  font-size: 1.5em;
}
.ex-image-carousel .carousel-caption {
  color: #FFF;
  text-shadow: 1px 1px 0 #000;
}
.ex-image-carousel .carousel-caption h1, .ex-image-carousel .carousel-caption p {
  text-align: center;
}
/*------------------------------------------------------------------------------
	Catalogues
------------------------------------------------------------------------------*/
.ex-catalogue {
  text-align: center;
}
.ex-catalogue .ex-header-row {
  text-align: center;
  margin: 0.25em;
}
.ex-catalogue .ex-footer-row {
  text-align: center;
  margin: 0.25em;
}
.ex-catalogue .ex-footer-row > span {
  display: inline-block;
  margin: 0 0.1em;
  height: 2em;
  line-height: 2em;
}
.ex-catalogue .ex-footer-row > span.page {
  border: 1px solid #adb5bd;
  width: 2em;
  cursor: pointer;
}
.ex-catalogue .ex-footer-row > span.current {
  cursor: default;
  background: #adb5bd;
}

/*------------------------------------------------------------------------------
	Tiled Display (figures)
------------------------------------------------------------------------------*/
.ex-catalogue figure {
  position: relative;
  display: inline-block;
  width: 225px;
  height: 250px;
  margin: 0.25em;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
  white-space: normal;
  color: #000;
  background: none;
}
.ex-catalogue figure:not(.ex-catalogue-group) {
  border: 1px solid rgba(0, 123, 255, 0.5);
  background: #FFF;
}
.ex-catalogue figure.ex-catalogue-item-add {
  line-height: 250px;
  background: none;
  border: none;
}
.ex-catalogue figure header {
  font-weight: bold;
}
.ex-catalogue figure .ex-catalogue-img {
  display: table;
  width: 100%;
  padding: 0;
}
.ex-catalogue figure .ex-catalogue-img > div {
  display: table-cell;
  vertical-align: middle;
  height: 190px;
}
.ex-catalogue figure .ex-catalogue-img > div img {
  max-width: 225px;
  max-height: 190px;
}
.ex-catalogue figure figcaption {
  padding: 0.25em;
  height: 60px;
}
.ex-catalogue figure figcaption h1 {
  font-weight: bold;
  font-size: 0.75em;
  margin: 0 0 0.1em 0;
}
.ex-catalogue figure figcaption h2 {
  font-weight: normal;
  font-size: 0.6em;
  margin: 0;
}
.ex-catalogue figure figcaption p {
  text-align: center;
  font-weight: normal;
  font-size: 0.6em;
  margin: 0;
}
.ex-catalogue figure figcaption footer {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.ex-catalogue figure figcaption b {
  display: block;
  height: 2em;
  line-height: 2em;
  font-size: 1.1em;
  background: #007bff;
  font-weight: normal;
}
.ex-catalogue figure figcaption b, .ex-catalogue figure figcaption b a {
  color: #fff;
}
.ex-catalogue figure figcaption b:hover {
  background: rgb(51, 149.4, 255);
}
.ex-catalogue figure figcaption .ex-btns {
  margin: 0;
  font-size: 0.65em;
}
.ex-catalogue figure:hover {
  outline: 5px solid rgba(0, 123, 255, 0.25);
}
.ex-catalogue figure:hover.ex-available {
  outline: 8px solid rgba(0, 123, 255, 0.5);
}
.ex-catalogue figure:hover figcaption footer {
  display: block;
}
.ex-catalogue figure .ex-qty {
  position: absolute;
  display: inline-block;
  padding: 0 0.5em;
  top: 0;
  right: 0;
  height: 1.5em;
  min-width: 1.5em;
  font-size: 1em;
  font-weight: normal;
  text-align: center;
  color: #FFF;
  background: orange;
  cursor: pointer;
}
.ex-catalogue figure[data-overlay]:after {
  position: absolute;
  padding: 0 0.5em;
  top: 30%;
  left: 0;
  right: 0;
  height: 2em;
  line-height: 2em;
  font-size: 1.5em;
  font-weight: 800;
  text-align: center;
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  content: attr(data-overlay);
  color: #FFF;
  background: #F00;
  border-radius: 0.5em;
  opacity: 0.5;
}
.ex-catalogue.has-prices figure {
  height: 275px;
}
.ex-catalogue.has-prices figure.ex-catalogue-item-add {
  line-height: 275px;
}
.ex-catalogue.has-prices figure header {
  height: 1.5em;
  line-height: 1.5em;
  background: rgba(0, 123, 255, 0.5);
  color: #fff;
}

/*------------------------------------------------------------------------------
	Detailed Display (article)
------------------------------------------------------------------------------*/
.ex-catalogue article {
  cursor: pointer;
  background: #f8f9fa;
  padding: 1em;
}
.ex-catalogue article:hover {
  outline: 2px solid rgba(0, 123, 255, 0.5);
}
.ex-catalogue article:hover.ex-available {
  outline: 5px solid rgba(0, 123, 255, 0.5);
}
.ex-catalogue article > table {
  width: 100%;
}
.ex-catalogue article .ex-catalogue-img {
  display: table;
  width: 100%;
  padding: 0.25em;
}
.ex-catalogue article .ex-catalogue-img > div {
  display: table-cell;
  height: 160px;
  vertical-align: middle;
  background: #FFF;
}
.ex-catalogue article .ex-catalogue-img > div img {
  max-width: 150px;
  max-height: 150px;
}

/*------------------------------------------------------------------------------
	Item Details (popup/dialog)
------------------------------------------------------------------------------*/
.ex-catalogue-details .ex-price {
  font-weight: bold;
}

/*------------------------------------------------------------------------------
	Item Details Page
------------------------------------------------------------------------------*/
.ex-catalogue-item-page {
  margin: 1em;
  padding: 1em;
  outline: 8px solid rgba(0, 123, 255, 0.5);
  border-radius: 0.5em;
  background: #FFF;
}
.ex-catalogue-item-page h1 {
  font-size: 1.5em;
}
.ex-catalogue-item-page h2 {
  font-size: 1.25em;
}

/*------------------------------------------------------------------------------
	Charts (ChartJS/Google Charts)
------------------------------------------------------------------------------*/
.ex-fixed > .ex-chart, .ex-fixed-content > .ex-chart {
  height: 100%;
  padding: 1em;
}

.ex-fixed-tabs > .tab-content > .tab-pane > .ex-chart {
  height: 100%;
}

.ex-charts-container {
  text-align: center;
}

.ex-chart {
  overflow: hidden !important;
  vertical-align: top;
}
.ex-chart.medium {
  display: inline-block;
  width: 500px;
  height: 350px;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 0.5rem;
}
.ex-chart.small {
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin: 0.25rem;
}
.ex-chart.mini {
  display: inline-block;
  width: 300px;
  height: 200px;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  padding: 0.25rem;
  margin: 0.25rem;
}

/*------------------------------------------------------------------------------
	Google Charts
------------------------------------------------------------------------------*/
div.google-visualization-tooltip {
  padding: 0.25em 0.25em 0 0.25em;
}
div.google-visualization-tooltip h1 {
  font-size: 1em;
  font-weight: bold;
  white-space: nowrap;
}
div.google-visualization-tooltip h2 {
  font-size: 0.85em;
  font-weight: normal;
  white-space: nowrap;
}

/*------------------------------------------------------------------------------
	GDPR Cookie Consent
------------------------------------------------------------------------------*/
.ex-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  margin: 2em;
  padding: 1em;
  background-color: #F1F6F4;
  border-radius: 0.5em;
  outline: 10px solid rgba(55, 55, 55, 0.5);
}
.ex-cookie-banner .ex-cookie-header {
  font-weight: bold;
  margin: 0 0 0.25em 0;
}
.ex-cookie-banner .ex-cookie-content {
  display: inline-block;
  margin: 0 0 0.5em 0;
}
.ex-cookie-banner .ex-cookie-buttons {
  display: inline-block;
  float: right;
  margin: 0 0 0.5em 0;
}
.ex-cookie-banner .ex-cookie-buttons a {
  text-decoration: none;
  border: 2px solid gray;
  padding: 0.25em;
  margin: 0;
  color: gray;
}
.ex-cookie-banner .ex-cookie-buttons a:visited {
  color: gray;
}
.ex-cookie-banner .ex-cookie-buttons a:hover {
  outline: 3px solid gray;
}

/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  .ex-cookie-banner {
    margin: 1em;
  }
}
/*------------------------------------------------------------------------------
	Controls/Common
------------------------------------------------------------------------------*/
.ex-control-error {
  padding: 0.5em;
  background: #FFCCAA;
  border: 1px solid #FF3334;
  border-radius: 0.5em;
  color: #000;
}
.ex-control-error::before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 48px;
  height: 48px;
  margin-right: 0.5em;
  background-image: url("../Content/Excalibur/Dialogs/hint-error.png");
}

.ex-control-warning {
  padding: 0.5em;
  background: #FEE2B9;
  border: 8px solid rgba(245, 121, 0, 0.2);
  border-radius: 0.75em;
  color: #000;
}
.ex-control-warning::before {
  content: " ";
  display: inline-block;
  vertical-align: middle;
  width: 64px;
  height: 64px;
  margin-right: 0.5em;
  background-image: url("../Content/Excalibur/Dialogs/dlg-warning.png");
}

/*------------------------------------------------------------------------------
	Data Grids
------------------------------------------------------------------------------*/
.ex-data-grid {
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #ced4da;
  height: 100%;
  min-height: 50px;
}
.ex-data-grid table {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ex-data-grid.has-statusbar table {
  height: calc(100% - 2.5em);
}
.ex-data-grid.has-statusbar.mobile table {
  height: calc(100% - 6em);
}
.ex-data-grid thead {
  white-space: nowrap;
  overflow: hidden;
}
.ex-data-grid thead th {
  height: 1.75em;
}
.ex-data-grid tbody {
  flex: 1;
  overflow: auto;
  white-space: nowrap;
}
.ex-data-grid tbody tr {
  margin-top: -2px;
}
.ex-data-grid tbody td {
  height: 1.75rem;
  line-height: 1.75rem;
}
.ex-data-grid tbody td.ex-img {
  line-height: 48px;
}
.ex-data-grid tfoot, .ex-data-grid tr.total-row {
  flex: 0 0 1.75em;
  overflow: hidden;
  white-space: nowrap;
}
.ex-data-grid tfoot td + td, .ex-data-grid tr.total-row td + td {
  border-left: none;
}
.ex-data-grid tfoot td, .ex-data-grid tr.total-row td {
  font-weight: bold;
  height: 1.75em;
  border: 1px solid rgba(255, 255, 255, 0);
  border-top: none;
  background: none !important;
}
.ex-data-grid tfoot td.total, .ex-data-grid tr.total-row td.total {
  background: #EEE !important;
  border: 1px solid #ced4da;
  border-top: none;
}
.ex-data-grid tfoot td.total + td.total, .ex-data-grid tr.total-row td.total + td.total {
  border-left: none !important;
}
.ex-data-grid th, .ex-data-grid td {
  display: inline-block;
  width: 100px;
  border: 1px solid #ced4da;
  border-left: none;
  border-top: none;
  padding: 0 0.25em;
  overflow: hidden;
}
.ex-data-grid tr.filter-row th {
  background: #FFF;
  user-select: none;
}
.ex-data-grid tr.filter-row th input {
  width: 100%;
  font-size: 0.75em;
  border: none;
  margin: 0;
  vertical-align: top;
  padding: 0.25em;
}
.ex-data-grid tr.filter-row th input:focus {
  outline: 1px solid #495057;
}
.ex-data-grid tr.header-row th {
  background: rgba(0, 0, 0, 0.25);
}
.ex-data-grid tr.header-row th.can-order span {
  cursor: pointer;
}
.ex-data-grid tr.header-row th.can-order span:hover {
  background: #007bff;
  color: #fff;
}
.ex-data-grid .ex-col-grip:hover {
  background: #495057;
}
.ex-data-grid tbody.has-photos td {
  height: 51px;
  line-height: 51px;
}
.ex-data-grid tbody.has-photos td.ex-img {
  padding: 0;
}
.ex-data-grid tbody.has-photos td.ex-img > img {
  vertical-align: unset;
  margin-top: 1px;
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.ex-data-grid.rows-have-two-lines tbody td {
  min-height: 2.75rem;
}
.ex-data-grid.rows-have-two-lines tbody td.two-lines {
  padding-top: 0.25em;
  line-height: 1.25rem;
}
.ex-data-grid.zebra-stripes tbody tr:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.025);
}
.ex-data-grid tbody > tr[data-obj="1"] {
  cursor: pointer;
}
.ex-data-grid tbody > tr[data-obj="1"]:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.ex-data-grid tbody > tr.selected, .ex-data-grid tbody > tr.selected:hover {
  background: rgba(0, 123, 255, 0.5);
  font-weight: bold;
}
.ex-data-grid tbody > tr.selected .ex-note, .ex-data-grid tbody > tr.selected:hover .ex-note {
  color: #343a40;
  font-weight: normal;
}
.ex-data-grid .pad {
  visibility: hidden;
}
.ex-data-grid td.ex-num {
  text-align: center;
}
.ex-data-grid td.ex-mny {
  text-align: right;
}
.ex-data-grid td > i.ex-icon {
  width: 1.5em;
}

/** Data Grid header panel (e.g. parameters) */
.ex-data-grid-header {
  background: rgba(0, 0, 0, 0.025);
  margin: 0;
  padding: 0.25em;
}

/*------------------------------------------------------------------------------
	Sort Order Overlay
------------------------------------------------------------------------------*/
th[data-sort]:before {
  display: inline-block;
  margin: 0 0.2em 0 0;
  padding: 0 0.2em;
  z-index: 20;
  min-width: 0.9em;
  font-size: 8pt;
  font-weight: 100;
  text-align: center;
  content: "▲ " attr(data-sort);
  color: #EEE;
  background: #AAA;
  border-radius: 25%;
}

th.desc[data-sort]:before {
  content: "▼ " attr(data-sort);
}

/*------------------------------------------------------------------------------
	Data Pager
------------------------------------------------------------------------------*/
.ex-data-pager {
  padding: 0.25em;
  font-size: 0.8em;
  min-width: 500px;
  overflow: hidden;
}
.ex-data-pager > a, .ex-data-pager > span {
  display: inline-block;
  margin: 0 0.25em;
  height: 1.75rem;
  line-height: 1.75rem;
  vertical-align: middle;
}
.ex-data-pager > a {
  width: 1.75rem;
  border: 1px solid #ced4da;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.ex-data-pager > a:hover:not([disabled]) {
  background-color: #495057;
  color: #f8f9fa;
}
.ex-data-pager > a[disabled] {
  cursor: default;
  color: #adb5bd;
}
.ex-data-pager .jump {
  font-size: 0.75em;
}
.ex-data-pager .selected:not(.jump) {
  background: rgba(73, 80, 87, 0.5);
  color: #343a40;
}
.ex-data-pager .ex-grid-buttons {
  float: right;
}
.ex-data-pager .ex-grid-buttons button {
  padding: 0 0.5em;
  height: 1.75rem;
  vertical-align: top;
}
.ex-data-pager .ex-grid-buttons button > i {
  font-size: 1.5em;
  vertical-align: text-top;
}
.ex-data-pager .ex-grid-buttons button > span {
  vertical-align: top;
}

/*------------------------------------------------------------------------------
	Data Tree
------------------------------------------------------------------------------*/
ul.ex-tree {
  display: inline-block;
  margin: 0em;
  padding: 0em;
  white-space: nowrap;
}
ul.ex-tree.drag-over, ul.ex-tree.drag-into {
  border-bottom: 2px solid #007bff !important;
}
ul.ex-tree .drag-over {
  border-top: 3px solid #007bff !important;
}
ul.ex-tree .drag-into {
  outline: 2px solid #007bff !important;
}
ul.ex-tree ul, ul.ex-tree li {
  margin: 0em;
  padding: 0em;
}
ul.ex-tree li {
  list-style: none;
  cursor: pointer;
}
ul.ex-tree li > span {
  padding: 0 0.3em 0 0;
  border-radius: 0.5em;
}
ul.ex-tree li > span:hover {
  background-color: #CCC;
}
ul.ex-tree li.selected > span {
  font-weight: bold;
}
ul.ex-tree li.checked > span {
  font-weight: bold;
  color: #007bff;
}
ul.ex-tree li.default-checked > span {
  color: #adb5bd;
}
ul.ex-tree li.default-checked:not(.checked) > span {
  font-weight: normal;
}
ul.ex-tree li.open ul {
  display: block;
}
ul.ex-tree li.closed ul {
  display: none;
}
ul.ex-tree li > span > i {
  display: inline-block;
  width: 1.25em;
  margin-right: 0.25em;
  text-align: center;
  font-weight: normal;
  font-size: 1em;
}
ul.ex-tree li > span i.prop {
  color: #adb5bd;
}
ul.ex-tree li > b {
  display: inline-block;
  width: 1em;
  margin-right: 0.25em;
  text-align: center;
  font-family: "FontAwesome", "Calibri", "Segoe UI", "Sans-Serif", "Arial";
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
  color: #adb5bd;
}
ul.ex-tree li.modified > span::after {
  content: " *";
  font-family: FontAwesome;
  color: #dc3545;
}
ul.ex-tree ul li {
  padding-left: 1em;
}
ul.ex-tree li.open > b:before {
  content: "\f147"; /* fa-minus-square-o */
}
ul.ex-tree li.closed > b:before {
  content: "\f196"; /* fa-plus-square-o */
}
ul.ex-tree.icons-folders li.open > b:before {
  content: "\f07c"; /* fa-folder-open */
}
ul.ex-tree.icons-folders li.closed > b:before {
  content: "\f07b"; /* fa-folder */
}
ul.ex-tree li.ex-header-node {
  margin: 0.25em 0;
}
ul.ex-tree li.ex-header-node > span {
  font-size: 1.1em;
  border-radius: 0.75em;
  padding: 0.1em 0.3em;
  border: 1px solid #adb5bd;
}
ul.ex-tree li.admin {
  color: #007bff;
}
ul.ex-tree li.secret {
  color: #dc3545;
}
ul.ex-tree li.exclude {
  color: #adb5bd;
}
ul.ex-tree li.exclude > span > i:first-child {
  color: #dc3545;
}
ul.ex-tree li.offline {
  color: #868e96;
}
ul.ex-tree input {
  border: 1px solid #ccc;
  border-radius: 0.5em;
  padding: 0.1em;
  width: auto;
  font: inherit;
}

/*------------------------------------------------------------------------------
	Drag Icons Panel
------------------------------------------------------------------------------*/
.ex-drag-icons {
  padding: 1rem;
  border: 3px solid #CCC;
  border-radius: 5px;
  box-shadow: 3px 3px 8px #555;
  border-radius: 0.25em;
  font-size: 5em;
  padding: 0 0.5em;
  background: #FFF;
  z-index: 10;
}
.ex-drag-icons .ex-icon.ex-dragover {
  color: #dc3545;
}
.ex-drag-icons .ex-icon.ex-dragover.fa-trash-o:before {
  content: "\f1f8";
}

/*------------------------------------------------------------------------------
	File Upload Drag Panels
------------------------------------------------------------------------------*/
.ex-file-drag-panel {
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  padding: 1rem;
}
.ex-file-drag-panel.dragging {
  outline: 3px solid #007bff;
}
.ex-file-drag-panel, .ex-file-drag-panel p {
  text-align: center;
}
.ex-file-drag-panel p.error {
  color: #dc3545;
}
.ex-file-drag-panel div, .ex-file-drag-panel img, .ex-file-drag-panel p {
  pointer-events: none;
}
.ex-file-drag-panel .ex-file-progress {
  width: 100%;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
}
.ex-file-drag-panel .ex-file-progress div {
  width: 0%;
  height: 20px;
  background-color: #4caf50;
  text-align: center;
  color: white;
  line-height: 20px;
}

/*------------------------------------------------------------------------------
	Excalibur Image Viewer (full-screen image/slide viewer)
------------------------------------------------------------------------------*/
.ex-image-viewer {
  z-index: 10010; /* > .ex-md (10002) */
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 2em;
  background: black;
  display: flex;
  flex-direction: row;
}
.ex-image-viewer .ex-thumbnails {
  margin-right: 1em;
}
.ex-image-viewer .ex-thumbnails img {
  display: block;
  border: 1px solid #888;
  width: 64px;
  height: 64px;
  margin-bottom: 0.25em;
}
.ex-image-viewer .ex-thumbnails img:hover {
  outline: 1px solid #CCC;
  cursor: pointer;
}
.ex-image-viewer .ex-thumbnails img.active {
  outline: 2px solid #FFF;
}
.ex-image-viewer .ex-image-slider-container {
  flex: 1;
}
.ex-image-viewer .ex-image-slider-container .ex-image-carousel {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ex-image-viewer .ex-image-slider-container .ex-image-carousel .carousel {
  flex: 1;
  height: calc(100% - 2.5em);
}
.ex-image-viewer .ex-image-slider-container .ex-image-carousel .carousel .carousel-inner {
  height: 100%;
}
.ex-image-viewer .ex-tools {
  position: absolute;
  right: 2em;
  z-index: 10; /* > slider controls (1) */
}
.ex-image-viewer .ex-status {
  position: absolute;
  right: 2em;
  bottom: 0;
  padding: 0.5em 0;
  color: white;
}

/*------------------------------------------------------------------------------
	Jumbo Search, Jumbotron etc.
------------------------------------------------------------------------------*/
.ex-jumbo-search input {
  margin: 0.75em auto;
  padding: 0.25em 0.5em;
  font-size: 1.5em;
  width: 500px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  display: block;
}

/*------------------------------------------------------------------------------
	Stock Registration Pages
------------------------------------------------------------------------------*/
.ex-reg-group-header span.name {
  font-weight: bold;
}

table.ex-reg-groups {
  width: 100%;
}

tr.ex-reg-group {
  min-height: 4.5em;
}
tr.ex-reg-group td {
  padding: 10px;
}
tr.ex-reg-group div.name {
  font-weight: bold;
}
tr.ex-reg-group.tracking {
  cursor: pointer;
}
tr.ex-reg-group.tracking:hover {
  background: #007bff;
  color: #fff;
}

/*------------------------------------------------------------------------------
	Wizard Process
------------------------------------------------------------------------------*/
.ex-wizard-container {
  max-width: 1200px;
  margin: auto;
  padding: 0;
}

/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  .ex-wizard-container {
    margin: auto;
    padding: 0;
  }
  .ex-wizard-container .ex-content-panel .ex-heading {
    border: none;
    border-radius: 0;
    padding: 0.5rem 0.25rem;
  }
  .ex-wizard-container .ex-content-panel .ex-content {
    padding: 0.5rem 0;
  }
}
/*------------------------------------------------------------------------------
	Access Control Terminal
------------------------------------------------------------------------------*/
.access-result {
  font-size: 1.5em;
  font-weight: bold;
}
.access-result.error {
  background-color: #dc3545;
}
.access-result.granted {
  background-color: #28a745;
}

/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Account Documents (jQueryUI Accordion)
------------------------------------------------------------------------------*/
.ex-account-docs .ui-accordion-header {
  border: 1px solid #4F4F4F;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
}
.ex-account-docs .ui-accordion-header-active {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ex-account-docs .ui-accordion-header td {
  padding: 0 0.5em;
}
.ex-account-docs .ui-accordion-content {
  padding: 5px;
  border: 1px dashed #4F4F4F;
  border-top: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.ex-account-docs h3 b {
  display: inline-block;
}
.ex-account-docs h3 b + b {
  margin-left: 0.5em;
}
.ex-account-docs .quotes .ui-accordion-header {
  background-color: #a7c3c3;
  border-color: #405165;
}
.ex-account-docs .orders.wip .ui-accordion-header {
  background-color: #c8d7e9;
  border-color: #405165;
}
.ex-account-docs .orders .ui-accordion-header {
  background-color: #739ed4;
  border-color: #405165;
}
.ex-account-docs .invoices .ui-accordion-header {
  background-color: #b2a7c3;
  border-color: #5e546d;
}
.ex-account-docs .credits .ui-accordion-header {
  background-color: #fbd0ac;
  border-color: #b27746;
}
.ex-account-docs .payments .ui-accordion-header {
  background-color: #c5d4aa;
  border-color: #6f7e55;
}
.ex-account-docs .refunds .ui-accordion-header {
  background-color: #d6a5a5;
  border-color: #7e5151;
}
.ex-account-docs .deliveries .ui-accordion-header {
  background-color: #ffffff;
  border-color: #4F4F4F;
}
.ex-account-docs .ex-tab .ui-accordion-header.cancelled {
  background-color: #c2c3c5;
  border-color: #4F4F4F;
}
.ex-account-docs .ex-tab .ui-accordion-header.failed {
  background-color: #bf7373;
  border-color: #4F4F4F;
}
.ex-account-docs .ui-state-active .ui-icon {
  background-image: url(../Content/images/ui-icons_444444_256x240.png);
}

.ex-item-parameters > table {
  font-size: 0.75em;
}
.ex-item-parameters > table td {
  padding: 0.1rem;
}

.ex-current-order {
  white-space: normal;
}

/*------------------------------------------------------------------------------
	Account Document Tables
------------------------------------------------------------------------------*/
.ex-doc-footer td {
  border: none;
}

/*------------------------------------------------------------------------------
	Matchmaking Schedule
------------------------------------------------------------------------------*/
.ex-matchmaking-schedule .accepted {
  background-color: #28a745;
}

.ex-matchmaking-tables .confirmed {
  background-color: rgb(146.3289855072, 228.9710144928, 165.2);
}
.ex-matchmaking-tables .conducted {
  background-color: #28a745;
}

/*------------------------------------------------------------------------------
	Matchmaking Time Slot Selection
------------------------------------------------------------------------------*/
.ex-mm-timeslots-container {
  padding: 1em;
  border: 1px solid #CCC;
  font-size: 10px;
}

.ex-mm-timeslots {
  padding: 0.5em 0;
  white-space: nowrap;
}
.ex-mm-timeslots > span {
  display: inline-block;
  vertical-align: middle;
}

.ex-mm-label {
  padding: 0 1em;
  white-space: nowrap;
}

.ex-mm-time {
  border: 1px solid #CCC;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.readonly .ex-mm-time {
  cursor: default;
}
.ex-mm-time.unavailable {
  background-color: #AAA;
  cursor: not-allowed;
}
.ex-mm-time.booked {
  background-color: #777;
  cursor: not-allowed;
}
.ex-mm-time.selected {
  background-color: #007bff;
}

.ex-mm-details {
  margin-top: 0.5em;
  font-size: 1rem;
}

/*------------------------------------------------------------------------------
	Matchmaking Catalogue (Search Results)
------------------------------------------------------------------------------*/
.ex-matchmaking-catalogue .ex-header-row, .ex-matchmaking-catalogue .ex-footer-row {
  text-align: center;
  margin: 0.25em;
}
.ex-matchmaking-catalogue .ex-header-row > span, .ex-matchmaking-catalogue .ex-footer-row > span {
  display: inline-block;
  margin: 0 0.1em;
  height: 2em;
  line-height: 2em;
}
.ex-matchmaking-catalogue .ex-header-row > span.page, .ex-matchmaking-catalogue .ex-footer-row > span.page {
  border: 1px solid #adb5bd;
  width: 2em;
  cursor: pointer;
}
.ex-matchmaking-catalogue .ex-header-row > span.current, .ex-matchmaking-catalogue .ex-footer-row > span.current {
  cursor: default;
  background: #adb5bd;
}
.ex-matchmaking-catalogue article {
  margin: 1em;
  padding: 0.5em;
}
.ex-matchmaking-catalogue article:nth-of-type(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.ex-matchmaking-catalogue article:hover {
  outline: 2px solid rgba(0, 123, 255, 0.5);
}
.ex-matchmaking-catalogue article > table td {
  position: relative;
}
.ex-matchmaking-catalogue article h1 {
  font-weight: bold;
  font-size: 1em;
}
.ex-matchmaking-catalogue article.has-images .mm-content {
  min-height: 150px;
}
.ex-matchmaking-catalogue article .mm-images {
  float: right;
}
.ex-matchmaking-catalogue article .mm-images img {
  max-width: 150px;
  max-height: 150px;
}
.ex-matchmaking-catalogue article footer {
  margin-top: 0.25em;
  font-size: 1em;
  text-align: center;
}
.ex-matchmaking-catalogue article footer .ex-meeting {
  display: inline-block;
  padding: 0.5em;
  background: #EEE;
  border-radius: 0.5em;
}
.ex-matchmaking-catalogue article footer .ex-meeting td + td {
  padding-left: 0.5em;
}
.ex-matchmaking-catalogue article footer button {
  padding: 0.25em 0.5em;
  font-size: 0.8em;
}

/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
/* On screens that are 600px wide or less */
@media screen and (max-width: 600px) {
  #mm-filter-controls {
    display: none;
  }
  .ex-matchmaking-catalogue article {
    margin: 1em 0 1em 0;
  }
  .ex-matchmaking-catalogue article.has-images .mm-content {
    min-height: unset;
  }
  .ex-matchmaking-catalogue article .mm-images {
    float: none;
    text-align: center;
  }
  .ex-meeting-buttons {
    text-align: center;
  }
}
/* On TOUCH screens that are 800px wide or less */
@media screen and (max-width: 800px) {
  .touch #mm-filter-controls {
    display: none;
  }
  .touch .ex-matchmaking-catalogue article {
    margin: 1em 0 1em 0;
  }
  .touch .ex-matchmaking-catalogue article.has-images .mm-content {
    min-height: unset;
  }
  .touch .ex-matchmaking-catalogue article .mm-images {
    float: none;
    text-align: center;
  }
  .touch .ex-meeting-buttons {
    text-align: center;
  }
}
/*------------------------------------------------------------------------------
	Main Registration Process
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Report Summaries / Charts
------------------------------------------------------------------------------*/
.ex-report-container {
  overflow: auto;
}
/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  .ex-report-container .ex-table-fixed {
    table-layout: unset;
  }
}
/*------------------------------------------------------------------------------
	Schedule of Events
------------------------------------------------------------------------------*/
.ex-schedule tr.ex-schedule-event.selectable:hover {
  background-color: rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.ex-schedule tr.selected, .ex-schedule tr.ex-schedule-event.selectable.selected:hover {
  background: rgba(0, 123, 255, 0.5);
}

/*------------------------------------------------------------------------------
	Event Tickets Home Page
------------------------------------------------------------------------------*/
.event-tickets .ex-page-blank {
  background-size: contain;
  background: url("Expowiz/EventTickets/Background.jpg");
  background-image: linear-gradient(to right, #007bff 0%, black 30%, black 70%, #007bff 100%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.event-tickets .ex-page-content {
  height: 100%;
}
.event-tickets .ex-header-row {
  text-align: center;
}
.event-tickets .ex-header-row .header-panel {
  white-space: nowrap;
  margin: 0.1em 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  height: 50px;
}
.event-tickets .ex-header-row .header-badge {
  padding: 0;
  border-radius: 0.5em;
  outline: 0.5em solid black;
  box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, 0.5);
}
.event-tickets .ex-header-row .header-btn, .event-tickets .ex-header-row .header-search {
  display: inline-block;
  border-radius: 0.5em;
  background: white;
  padding: 0.5em;
  height: 50px;
  line-height: calc(50px - 1em);
  vertical-align: middle;
  min-width: 3em;
}
.event-tickets .ex-header-row .header-search i {
  margin: auto 0.5em auto 0;
}
.event-tickets .ex-header-row .header-search input {
  border: none;
}
.event-tickets .ex-footer-row {
  text-align: center;
  font-size: 1em;
}
.event-tickets .ex-footer-row .footer-panel {
  margin: 0.25em;
}
.event-tickets .ex-footer-row .footer-panel .footer-link {
  margin: 0 0.5em;
  white-space: nowrap;
}
.event-tickets .ex-footer-row .footer-panel .check-out {
  font-size: 1.25em;
  display: table;
  margin: auto;
  border-radius: 0.5em;
  background: white;
  padding: 0.25em 0.5em;
}
.event-tickets .ex-footer-row .footer-panel .check-out .ex-icon {
  font-size: 1.5em;
}

/*------------------------------------------------------------------------------
	Event Tickets Item Details Page
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Mobile / Small Displays
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
	Event Tickets Catalogue
------------------------------------------------------------------------------*/
.event-tickets .ex-catalogue {
  min-height: 200px;
}
.event-tickets .ex-catalogue figure {
  margin: 1em;
  padding: 0;
  color: #FFF;
  border-radius: 1em;
}
.event-tickets .ex-catalogue figure:not(.ex-catalogue-group):not(.ex-catalogue-item-add) {
  border: none;
  outline: 5px solid rgba(248, 249, 250, 0.15);
  background: #000;
}
.event-tickets .ex-catalogue figure:hover {
  outline: 10px solid rgba(0, 123, 255, 0.75) !important;
}
.event-tickets .ex-catalogue .ex-footer-row {
  color: #f8f9fa;
}
.event-tickets .ex-catalogue .ex-footer-row > span {
  border-radius: 0.5em;
}
.event-tickets .ex-item-popup {
  width: 95%;
  height: 95%;
  max-width: 900px;
}
.event-tickets .ex-item-popup .ex-md-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1em;
  background: white;
  border-radius: 1em;
  outline: 10px solid rgba(0, 123, 255, 0.75);
}
.event-tickets .ex-item-popup .ex-md-content .ex-md-title h1 {
  padding-bottom: 0.5em;
}
.event-tickets .ex-item-popup .ex-md-content .ex-md-title h1 .ex-price {
  float: right;
}
.event-tickets .ex-item-popup .ex-md-content .ex-md-title h1 button {
  float: right;
  font-size: 1rem;
  padding: 0.25em;
  margin-left: 1em;
  padding-left: 0.333em;
}
.event-tickets .ex-item-popup .ex-md-content .ex-md-message {
  flex: 1;
  overflow: auto;
}
.event-tickets .ex-item-popup .ex-md-content .ex-md-buttons {
  padding: 0.5em 1em;
  text-align: center;
}
.event-tickets .ex-item-popup .ex-price, .event-tickets .ex-item-popup .ex-qty {
  font-weight: bold;
}

/*------------------------------------------------------------------------------
	Box Office Sales
------------------------------------------------------------------------------*/
.boxoffice-order {
  border: 1px solid #ccc;
  border-radius: 0.5em;
  padding: 1em;
}

/*------------------------------------------------------------------------------
	jQuery UI Multiselect Widget

	Some mods made to original file (RJA)

	https://github.com/ehynds/jquery-ui-multiselect-widget
------------------------------------------------------------------------------*/
.ui-multiselect {
  box-sizing: border-box;
  padding: 2px 0 2px 4px;
  text-align: left;
  width: auto;
}

.ui-multiselect .ui-multiselect-open {
  float: right;
}

.ui-multiselect-menu {
  display: none;
  box-sizing: border-box;
  position: absolute;
  text-align: left;
  z-index: 101;
  width: auto;
  height: auto;
  padding: 3px;
  /* RJA */
  min-width: 15em;
}

.ui-multiselect-menu.ui-multiselect-listbox {
  position: relative;
  z-index: 0;
}

.ui-multiselect-header {
  display: block;
  box-sizing: border-box;
  position: relative;
  width: auto;
  padding: 3px 0 3px 4px;
  margin-bottom: 2px;
}

.ui-multiselect-header > ul {
  font-size: 0.9em;
}

.ui-multiselect-header li {
  float: left;
  margin: 0 10px 0 0;
}

.ui-multiselect-header a {
  text-decoration: none;
  /* RJA */
}
.ui-multiselect-header a span {
  margin: 0;
  height: 1.25em;
}

.ui-multiselect-header a:hover {
  text-decoration: underline;
  cursor: pointer;
}

.ui-multiselect-header .ui-icon {
  float: left;
}

.ui-multiselect-header .ui-multiselect-close {
  float: right;
  margin-right: 0;
  text-align: right;
}

.ui-multiselect-checkboxes {
  display: block;
  box-sizing: border-box;
  position: relative;
  overflow: auto;
  width: auto;
  border: 0;
  padding: 4px 0 8px;
}

.ui-multiselect-checkboxes li:not(.ui-multiselect-optgroup) {
  clear: both;
  font-size: 0.9em;
  list-style: none;
  padding-right: 3px;
}

.ui-multiselect-checkboxes label {
  border: 1px solid transparent;
  cursor: default;
  display: block;
  padding: 3px 1px 3px 21px;
  text-indent: -20px;
}

.ui-multiselect-checkboxes input {
  position: relative;
  top: 1px;
  cursor: pointer;
  margin-right: 3px;
}

.ui-multiselect-checkboxes img {
  height: 30px;
  vertical-align: middle;
  margin-right: 3px;
}

.ui-multiselect-grouplabel {
  border-bottom: 1px solid;
  display: block;
  font-weight: bold;
  margin: 1px 0;
  padding: 3px;
  text-align: center;
  text-decoration: none;
}

.ui-multiselect-selectable {
  cursor: pointer;
}

.ui-multiselect-optgroup > ul {
  padding: 3px;
}

.ui-multiselect-columns {
  display: inline-block;
  vertical-align: top;
}

.ui-multiselect-collapser {
  float: left;
  padding: 0 1px;
  margin: 0;
}

.ui-multiselect-collapsed > ul {
  display: none;
}

.ui-multiselect-single .ui-multiselect-checkboxes input {
  left: -9999px;
  position: absolute !important;
  top: auto !important;
}

.ui-multiselect-single .ui-multiselect-checkboxes label {
  padding: 5px !important;
  text-indent: 0 !important;
}

.ui-multiselect.ui-multiselect-nowrap {
  white-space: nowrap;
}

.ui-multiselect.ui-multiselect-nowrap > span {
  display: inline-block;
}

.ui-multiselect-checkboxes.ui-multiselect-nowrap li,
.ui-multiselect-checkboxes.ui-multiselect-nowrap a {
  white-space: nowrap;
}

.ui-multiselect-measure > .ui-multiselect-header,
.ui-multiselect-measure > .ui-multiselect-checkboxes {
  float: left;
}

.ui-multiselect-measure > .ui-multiselect-checkboxes {
  margin: 4px;
  overflow-y: scroll;
}

.ui-multiselect-resize {
  border: 2px dotted #00F;
}

/* RJA */
button.ui-multiselect {
  overflow: hidden;
  min-width: 16em;
  max-width: 100%;
  padding: 0.2em;
  background: #eee;
  border: 1px solid #CCC;
  border-radius: 0.5em;
}
button.ui-multiselect > span {
  font-size: 0.8em;
  color: #343a40;
}
button.ui-multiselect.ui-state-active {
  background: #495057;
}
button.ui-multiselect.ui-state-active > span {
  color: #f8f9fa;
}

@media print {
  .ui-multiselect-menu {
    display: none;
  }
}
