.ta-hidden-input {
  width: 1px;
  height: 1px;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: -10000px;
  left: -10000px;
  opacity: 0;
  overflow: hidden;
}
/* add generic styling for the editor */
.ta-root.focussed > .ta-scroll-window.form-control {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.ta-editor.ta-html,
.ta-scroll-window.form-control {
  min-height: 300px;
  height: auto;
  overflow: auto;
  font-family: inherit;
  font-size: 100%;
}
.ta-scroll-window.form-control {
  position: relative;
  padding: 0;
}
.ta-scroll-window > .ta-bind {
  height: auto;
  min-height: 300px;
  padding: 6px 12px;
}
.ta-editor:focus {
  user-select: text;
}
/* add the styling for the awesomness of the resizer */
.ta-resizer-handle-overlay {
  z-index: 100;
  position: absolute;
  display: none;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-info {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border: 1px solid black;
  background-color: #FFF;
  padding: 0 4px;
  opacity: 0.7;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-background {
  position: absolute;
  bottom: 5px;
  right: 5px;
  left: 5px;
  top: 5px;
  border: 1px solid black;
  background-color: rgba(0, 0, 0, 0.2);
}
.ta-resizer-handle-overlay > .ta-resizer-handle-corner {
  width: 10px;
  height: 10px;
  position: absolute;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tl {
  top: 0;
  left: 0;
  border-left: 1px solid black;
  border-top: 1px solid black;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-tr {
  top: 0;
  right: 0;
  border-right: 1px solid black;
  border-top: 1px solid black;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-bl {
  bottom: 0;
  left: 0;
  border-left: 1px solid black;
  border-bottom: 1px solid black;
}
.ta-resizer-handle-overlay > .ta-resizer-handle-corner-br {
  bottom: 0;
  right: 0;
  border: 1px solid black;
  cursor: se-resize;
  background-color: white;
}
/* copy the popover code from bootstrap so this will work even without it */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  white-space: normal;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.popover.top {
  margin-top: -10px;
}
.popover.bottom {
  margin-top: 10px;
}
.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-radius: 5px 5px 0 0;
}
.popover-content {
  padding: 9px 14px;
}
.popover > .arrow,
.popover > .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.popover > .arrow {
  border-width: 11px;
}
.popover > .arrow:after {
  content: "";
  border-width: 10px;
}
.popover.top > .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}
.popover.top > .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  content: " ";
  border-top-color: #fff;
  border-bottom-width: 0;
}
.popover.bottom > .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-width: 0;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.popover.bottom > .arrow:after {
  top: 1px;
  margin-left: -10px;
  content: " ";
  border-top-width: 0;
  border-bottom-color: #fff;
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}
/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

ui-cropper {
  width: 100%;
  display: block;
}
ui-cropper.fixed-height {
  height: 100%;
  position: relative;
  overflow: hidden;
}
ui-cropper.fixed-height canvas {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}
ui-cropper.full-width {
  text-align: center;
}
ui-cropper.full-width canvas {
  display: inline;
}
ui-cropper canvas {
  outline: 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
ui-cropper .loading {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.75);
}
ui-cropper .loading .fixed-height {
  height: 100%;
  position: absolute;
}

/* general */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  height: 100%;
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
  height: 100%;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/* fonts */
/* colors */
/*@blue:          #0A4ECB;
@steel:         #5A7494;
@teal:          #52A3A5;

@green:         #468847;*/
/* new accents */
/* validation */
/* eProducer colors 

@eblue: #009eef;
@eorange: #f59b1c;
@elight-gray: #eee;
@emed-gray: #999;
@edark-gray: #222;
@eblack: #000;
@egreen: #76c43a;*/
/* translucent colors */
/* radius */
/* box shadows */
/* padding */
/* main font */
body {
  font-family: Open Sans, "Myriad Pro", Arial, Times, Georgia, sans-serif;
  font-size: 14px;
}
.monospace {
  font-family: monospace !important;
}
header .small:not(button) {
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
  text-transform: uppercase;
}
h1.thin,
h2.thin,
h3.thin,
h4.thin,
h5.thin,
h6.thin {
  margin-top: 0;
  margin-bottom: 0;
}
a:focus {
  text-decoration: none;
}
.disabled {
  opacity: 0.7;
}
.opaque {
  opacity: 0.8;
}
.line-through,
.line-through * {
  text-decoration: line-through !important;
}
.is-removed,
.is-removed * {
  text-decoration: line-through !important;
  opacity: 0.8;
}
.inline-block {
  display: inline-block !important;
}
.wrap-normal {
  white-space: normal !important;
}
.nowrap {
  white-space: nowrap;
}
.reverse-nowrap {
  white-space: normal !important;
}
.no-margin {
  margin: 0 !important;
}
.top-margin-negative-big {
  margin-top: -20px !important;
}
.top-margin-negative {
  margin-top: -10px !important;
}
.no-top-margin {
  margin-top: 0 !important;
}
.top-margin-thin {
  margin-top: 5px !important;
}
.top-margin {
  margin-top: 10px !important;
}
.top-margin-big {
  margin-top: 20px !important;
}
.top-margin-super {
  margin-top: 40px;
}
.top-margin-auto {
  margin-top: auto !important;
}
.no-bottom-margin {
  margin-bottom: 0 !important;
}
.bottom-margin-thin {
  margin-bottom: 5px !important;
}
.bottom-margin {
  margin-bottom: 10px !important;
}
.bottom-margin-big {
  margin-bottom: 20px;
}
.bottom-margin-super {
  margin-bottom: 40px;
}
.bottom-margin-auto {
  margin-bottom: auto !important;
}
.no-left-margin {
  margin-bottom: 0 !important;
}
.left-margin-thin {
  margin-left: 5px;
}
.left-margin {
  margin-left: 10px;
}
.left-margin-big {
  margin-left: 20px;
}
.left-margin-super {
  margin-left: 40px;
}
.left-margin-auto {
  margin-left: auto !important;
}
.no-right-margin {
  margin-right: 0 !important;
}
.right-margin-thin {
  margin-right: 5px !important;
}
.right-margin {
  margin-right: 10px;
}
.right-margin-big {
  margin-right: 20px;
}
.right-margin-super {
  margin-right: 40px;
}
.right-margin-auto {
  margin-right: auto !important;
}
.top-border-none {
  border-top: none !important;
}
.right-border-none {
  border-right: none !important;
}
.bottom-border-none {
  border-bottom: none !important;
}
.left-border-none {
  border-left: none !important;
}
.top-border {
  border-top: 1px solid #CCC !important;
}
.right-border {
  border-right: 1px solid #CCC !important;
}
.bottom-border {
  border-bottom: 1px solid #CCC !important;
}
.left-border {
  border-left: 1px solid #CCC !important;
}
.h-center {
  margin-left: auto !important;
  margin-right: auto !important;
}
.no-padding {
  padding: 0;
}
.no-top-padding {
  padding-top: 0 !important;
}
.top-padding {
  padding-top: 10px !important;
}
.top-padding {
  padding-top: 15px !important;
}
.top-padding-small {
  padding-top: 5px !important;
}
.no-right-padding {
  padding-right: 0 !important;
}
.right-padding-small {
  padding-right: 5px;
}
.right-padding {
  padding-right: 10px !important;
}
.right-padding-big {
  padding-right: 15px;
}
.no-left-padding {
  padding-left: 0 !important;
}
.left-padding-small {
  padding-left: 5px;
}
.left-padding {
  padding-left: 10px !important;
}
.left-padding-big {
  padding-left: 15px;
}
.no-bottom-padding {
  padding-bottom: 0 !important;
}
.bottom-padding {
  padding-bottom: 10px !important;
}
.bottom-padding-big {
  padding-bottom: 15px !important;
}
.text-x-small,
.x-small {
  font-size: 60%;
}
.text-small {
  font-size: 85% !important;
}
.text-large {
  font-size: 120%;
}
.text-lg {
  font-size: 18px;
}
.text-xl {
  font-size: 25px;
}
.text-super-size,
.super-size {
  font-size: 175px;
}
.text-bold {
  font-weight: bold;
}
.text-italic {
  font-style: italic;
}
.text-faint {
  opacity: 0.5;
}
.width-auto {
  width: auto !important;
}
.width-100p {
  width: 100% !important;
}
.width-75 {
  width: 75px !important;
}
.width-85 {
  width: 85px !important;
}
.width-90 {
  width: 90px !important;
}
.width-100 {
  width: 100px !important;
}
.width-110 {
  width: 110px !important;
}
.width-125 {
  width: 125px !important;
}
.width-150 {
  width: 150px !important;
}
.width-175 {
  width: 175px !important;
}
.width-200 {
  width: 200px !important;
}
.width-250 {
  width: 250px !important;
}
.width-300 {
  width: 300px !important;
}
.width-350 {
  width: 350px !important;
}
.width-500 {
  width: 500px !important;
}
.max-width-500 {
  max-width: 500px !important;
}
.max-width-750 {
  max-width: 750px !important;
}
.max-width-1000 {
  max-width: 1000px !important;
}
.max-width-1200 {
  max-width: 1200px !important;
}
.width-8-rem {
  width: 8rem !important;
}
.height-auto {
  height: auto !important;
  min-height: auto !important;
}
.height-25 {
  height: 25px !important;
}
.height-40 {
  height: 40px !important;
}
.height-100p {
  height: 100% !important;
}
.min-height-15 {
  min-height: 15rem !important;
}
.min-height-25 {
  min-height: 25rem !important;
}
.min-height-100 {
  min-height: 100rem !important;
}
.min-height-1p5 {
  min-height: 1.5rem !important;
}
.min-width-10 {
  min-width: 10rem !important;
}
.min-width-20 {
  min-width: 20rem !important;
}
.min-width-25 {
  min-width: 25rem !important;
}
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.align-top {
  vertical-align: top !important;
}
/*@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url(/css/fonts/OpenSans.eot);
}*/
.help-popover {
  color: #555;
}
/* responsive */
@media (max-width: 1366px) {
  body {
    font-size: 13px;
  }
}
/* bagde */
span.new-badge {
  width: 39px;
  padding: 2px 4px 1px 4px;
  margin-right: 20px;
  display: inline-block;
  text-transform: uppercase;
}
span.new-badge:after {
  content: 'new';
}
span.fix-badge {
  width: 29px;
  padding: 2px 4px 1px 4px;
  margin-right: 30px;
  display: inline-block;
  text-transform: uppercase;
}
span.fix-badge:after {
  content: 'fix';
}
span.badge.blinking {
  animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0.2;
  }
}
.alert {
  padding: 10px 20px;
}
h5 {
  margin-bottom: 0;
}
section h5.sub-heading {
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  padding-bottom: 5px;
  display: flex;
}
section > h5.sub-heading:first-child {
  margin-top: 5px;
}
section h5.sub-heading span {
  flex: 1;
  text-align: right;
  color: #333c48;
}
span.new-badge {
  border-radius: 4px;
  text-align: center;
}
span.fix-badge {
  border-radius: 4px;
  text-align: center;
}
body .themed.a3 .green {
  color: #5b9840;
}
body .themed.a3 .orange {
  color: #ffa400;
}
body .themed.a3 .red {
  color: #fd4f00;
}
body .themed.a3 .light-gray {
  color: #ededed;
}
body .themed.a3 .gray {
  color: #9aa1a7;
}
body .themed.a3 .highlightedText {
  font-weight: bolder;
  text-decoration: underline;
}
body .themed.a3 section h5 {
  color: #ffa400;
  font-weight: bolder;
}
body .themed.a3 section h6 {
  color: #ffa400;
}
body .themed.a3 .badge {
  background-color: #5b9840;
  font-weight: normal;
  font-weight: bold;
  border-radius: 2px;
  margin-left: 3px;
}
body .themed.a3 .badge.red {
  background-color: #e64a4a;
  color: #ffffff;
}
body .themed.a3 span.new-badge {
  background: #ffa400;
  color: #fff;
}
body .themed.a3 span.fix-badge {
  background: #333c48;
  color: #fff;
}
.integration-icon {
  margin-left: 5px;
  width: 20px;
  height: 10px;
  pointer-events: initial;
}
.epic-integration-icon {
  height: 13px;
  border: 1px solid #fff;
  border-radius: 1px;
  margin-right: 5px;
  width: auto;
}
/* buttons */
button,
a.button,
input[type=button],
input[type=submit] {
  padding: 6px 20px 8px 20px;
  font-size: 11px;
  font-weight: normal;
  line-height: 13px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
a.button.flex {
  display: flex !important;
}
button,
a,
input[type=button],
input[type=submit] {
  user-select: none;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: unset;
}
a:focus {
  outline: none;
}
/* button behavior */
button + button {
  margin-left: 10px;
}
button.disabled {
  cursor: default;
}
.btn-group button + button {
  margin-left: 0;
}
button span + i,
button i + span,
button i + i,
button i + span.ng-hide + span {
  margin-left: 10px;
}
/* links */
a {
  cursor: pointer;
}
a + a {
  user-select: none;
}
a[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
/* sizes */
button.mini,
input[type=button].mini,
input[type=submit].mini,
a.button.mini {
  padding: 4px 8px;
  font-size: 10px;
  line-height: 9px;
  border-radius: 2px;
}
button.medium,
input[type=button].medium,
input[type=submit].medium,
a.button.medium {
  padding: 7px 12px;
  height: 28px;
  border-radius: 2px;
}
button.small,
input[type=button].small,
input[type=submit].small,
a.button.small,
.editable-buttons button {
  padding: 3px 15px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 2px;
}
button.large,
input[type=button].large,
input[type=submit].large,
a.button.large {
  padding: 10px 30px;
  font-size: 16px;
  line-height: 2;
  border-radius: 2px;
}
button.full,
input[type=button].full,
input[type=submit].full,
a.button.full {
  width: 100%;
}
/* tags */
.tag-container {
  margin: 10px 0;
}
.tag-container .tag-form button {
  padding: 3px 8px 3px 8px;
  margin: 0 0 0px 5px;
  vertical-align: text-bottom;
}
.tag-container .tag-form button:first-of-type {
  margin-left: 0;
}
.tag-container .tag-form input {
  height: 21px;
  width: 150px;
  background: white;
  line-height: 1;
}
.tag-container .tag-form .field-wrapper {
  min-height: 21px;
  margin-top: 0;
  margin-bottom: 0;
}
.tag-container .tag-form {
  display: flex;
}
.tag-container .tag {
  background: transparent url(../../img/tag.png) 100% 0 no-repeat;
  color: #333c48;
  font-weight: 600;
  display: inline-block;
  font-size: 9px;
  height: 20px;
  line-height: 21px;
  margin-right: 5px;
  padding: 0 12px 0 8px;
  text-transform: uppercase;
}
.tag-container .tag button {
  padding: 0;
  box-shadow: none;
  margin-left: 10px;
}
.tag:hover {
  text-decoration: none;
}
.tag-container .tag .tooltip {
  transform: none;
}
.tag-container .ui-helper-hidden-accessible {
  display: none;
}
/* Autocomplete
----------------------------------*/
.ui-autocomplete {
  position: absolute;
  cursor: default;
}
* html .ui-autocomplete {
  width: 1px;
}
/* without this, the menu expands to 100% in IE6 */
.ui-menu {
  border: 1px solid #d0d3d5;
  background: white;
  list-style: none;
  padding: 5px;
  margin: 0;
  display: block;
  width: 227px;
  z-index: 10000;
}
.ui-menu .ui-menu {
  margin-top: -3px;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 200px;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  color: #333c48;
}
.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
  margin: -1px;
  background-color: #333c48;
  color: white;
}
/* remove button */
.button-remove {
  margin-bottom: 20px;
}
/* tooltip overrides */
.tooltip-inner {
  max-width: 210px;
  white-space: normal;
}
/* btn-group */
.btn-group button:first-of-type {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group button:last-of-type {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group button {
  float: left;
}
.btn-group button.dropdown-toggle {
  padding: 12px 7px;
}
.btn-group button.dropdown-toggle i {
  font-size: 13px;
}
.btn-group button.small {
  padding: 3px 7px;
  font-size: 12px;
  line-height: 1.5;
  height: 24px;
}
.btn-group ~ .btn-group {
  margin-left: 10px;
}
.user user-avatar + span {
  font-weight: bold;
  line-height: 30px;
  margin-left: 10px;
}
.user-avatar .avatar-img {
  height: 30px;
  width: 30px;
  display: inline-block;
  float: left;
  font-size: 25px;
  text-align: center;
  line-height: 30px;
  margin-right: 4px;
}
button:disabled,
a.button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
button.disabled,
a.button.disabled,
input[type=button].disabled,
input[type=submit].disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.cursor-pointer {
  cursor: pointer;
}
/* tag button */
.tag-button {
  margin-right: 10px;
  padding: 3px 5px;
  border-radius: 2px;
  white-space: nowrap;
}
.tag-button i.fa-times {
  margin-left: 5px;
  cursor: pointer;
}
.system-account-logo {
  height: 30px;
  width: 30px;
  padding: 3px;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.large .system-account-logo {
  height: 60px;
  width: 60px;
}
body .themed.a3 {
  /* buttons */
  /* button types/colors */
  /* tag button */
}
body .themed.a3 button,
body .themed.a3 a.button,
body .themed.a3 input[type=button],
body .themed.a3 input[type=submit] {
  border-color: transparent;
  background: #ffa400;
  color: #333c48;
  font-weight: 600;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.18);
}
body .themed.a3 button.white {
  background: #ffffff;
  color: #333c48;
}
body .themed.a3 button.charcoal {
  background: #333c48;
  color: #ffffff;
}
body .themed.a3 button.gray {
  background: #ededed;
  color: #333c48;
}
body .themed.a3 button.gradient {
  background: -webkit-linear-gradient(#ffa400, #dc5f13);
  background: -o-linear-gradient(#ffa400, #dc5f13);
  background: -moz-linear-gradient(#ffa400, #dc5f13);
  background: linear-gradient(#ffa400, #dc5f13);
  color: #ffffff;
}
body .themed.a3 button.transparent,
body .themed.a3 a.button.transparent,
body .themed.a3 input[type=button].transparent,
body .themed.a3 input[type=submit].transparent {
  background: transparent;
  color: #ffa400;
  border-color: transparent;
  box-shadow: none;
}
body .themed.a3 button.transparent:hover,
body .themed.a3 a.button.transparent:hover,
body .themed.a3 input[type=button].transparent:hover,
body .themed.a3 input[type=submit].transparent:hover {
  color: #ffa400;
}
body .themed.a3 .tag-button {
  background-color: #ffa400;
  color: #ffffff;
}
body .themed.a3 .btn-group button.inactive {
  background: transparent;
  border-color: #d0d3d5;
}
/* text inputs &*/
input[type=text],
input[type=email],
input[type=url],
input[type=number],
input[type=password],
textarea,
select,
.ui-select-match {
  width: 100%;
  padding: 3px 10px 3px 10px;
  font-size: 12px;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  box-sizing: border-box;
}
/* placeholders */
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #ddd;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
  /* Firefox 19+ */
  color: #ddd;
}
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  /* IE 10+ */
  color: #ddd;
}
textarea:-moz-placeholder,
input:-moz-placeholder {
  /* Firefox 18- */
  color: #ddd;
}
.search textarea::-webkit-input-placeholder,
.search input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
.search textarea::-moz-placeholder,
.search input::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
.search textarea:-ms-input-placeholder,
.search input:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
.search textarea:-moz-placeholder,
.search input:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
body .main-view .a-container .a-box input[type=email]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
body .main-view .a-container .a-box input[type=email]::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
body .main-view .a-container .a-box input[type=email]:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
body .main-view .a-container .a-box input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
body .main-view .a-container .a-box input[type=password]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}
body .main-view .a-container .a-box input[type=password]::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}
body .main-view .a-container .a-box input[type=password]:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}
body .main-view .a-container .a-box input[type=password]:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}
/* textarea */
textarea {
  display: block;
  height: auto;
  line-height: 13px;
  min-height: 50px;
}
/* input outline */
input:not([type=button]):not([type=radio]):not([type=checkbox]):not([type=submit]):focus,
textarea:focus,
select:focus {
  outline: 0;
  border-width: 1px;
  border-style: solid;
}
input:disabled,
select:disabled,
select:disabled,
textarea:disabled {
  font-style: italic;
  opacity: 0.7;
  pointer-events: none;
}
/* selects */
.ui-select-match {
  overflow: hidden;
}
.ui-select-match span {
  white-space: nowrap;
}
/* small */
.small input:not([type=checkbox]):not([type=radio]),
.small select,
.small .ui-select-match {
  height: 26px;
  padding-bottom: 2px;
  padding-top: 2px;
}
.field-wrapper input[aa-field-group-strategy=date],
.field-wrapper input[aa-field-group-strategy=dateString] {
  min-width: 90px;
}
/* field-wrapper */
.field-wrapper {
  position: relative;
  min-height: 25px;
  margin-top: 25px;
}
.field-wrapper div.label {
  position: absolute;
  top: -15px;
  left: 0px;
  font-size: 11px;
  font-weight: normal;
  line-height: 12px;
  pointer-events: none;
  padding: 0;
}
.field-wrapper div.label a {
  pointer-events: all;
}
.field-wrapper[class*='col-'] div.label {
  left: 15px;
}
.field-wrapper .validation-indicator,
.address-field-wrapper .validation-indicator {
  font-size: 12px;
}
.field-wrapper input:not([type=checkbox]):not([type=radio]),
.field-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field-wrapper .ui-select-container .ui-select-match .caret {
  display: none;
}
.field-wrapper.inline-label-strategy .ui-select-a3 .fa-caret-down {
  position: absolute;
  top: 5px;
  right: 10px;
}
.field-wrapper label + label {
  margin-left: 10px;
}
.field-wrapper.no-label {
  margin-top: 10px;
}
/* empty-input */
.empty-input:not(.search) input:not(:focus),
.empty-input select:not(:focus),
.empty-input textarea:not(:focus) {
  box-shadow: none;
}
.field-wrapper.disabled {
  opacity: 1;
}
.field-wrapper.empty-input.select.disabled div.label {
  font-style: italic;
}
.field-wrapper.empty-input .validation-indicator {
  font-size: inherit;
}
/* labels */
label {
  margin: 0;
  font-weight: normal;
}
.inline-label {
  line-height: 25px;
  margin-top: 10px;
  font-size: 12px;
}
/* checkboxes & radios */
.radio,
.checkbox,
.radio + .radio,
.checkbox + .checkbox {
  padding-left: 0;
  margin-top: 10px;
}
.radio[class*="col-"],
.checkbox[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
}
.radio-option input[type="radio"],
input[type="checbox"] {
  margin-left: 0;
  margin-right: 3px;
}
.radio label,
.checkbox label {
  font-weight: bold;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  margin-left: 0;
  margin-right: 5px;
  margin-top: 1px;
}
.radio-option + .radio-option {
  margin-left: 10px;
}
select.width-auto {
  width: auto;
}
.field-wrapper.fixed-width-xs input,
.field-wrapper.fixed-width-xs select,
.field-wrapper.fixed-width-xs textarea,
.fixed-width-xs .field-wrapper .ui-select-bootstrap,
.fixed-width-xs .field-wrapper .ui-select-search,
select.fixed-width-xs {
  width: 75px;
}
.field-wrapper.fixed-width-sm input,
.field-wrapper.fixed-width-sm select,
.field-wrapper.fixed-width-sm textarea,
.fixed-width-sm .field-wrapper .ui-select-bootstrap,
.fixed-width-sm .field-wrapper .ui-select-search,
select.fixed-width-sm {
  width: 100px;
}
.field-wrapper.fixed-width-150 input,
.field-wrapper.fixed-width-150 select,
.field-wrapper.fixed-width-150 textarea,
.fixed-width-150 .field-wrapper .ui-select-bootstrap,
.fixed-width-150 .field-wrapper .ui-select-search,
select.fixed-width-150 {
  width: 150px;
}
.field-wrapper.fixed-width-md input,
.field-wrapper.fixed-width-md select,
.field-wrapper.fixed-width-md textarea,
.fixed-width-md .field-wrapper .ui-select-bootstrap,
.fixed-width-md .field-wrapper .ui-select-search,
select.fixed-width-md {
  width: 200px;
}
.field-wrapper.fixed-width-lg input,
.field-wrapper.fixed-width-lg select,
.field-wrapper.fixed-width-lg textarea,
.fixed-width-lg .field-wrapper .ui-select-bootstrap,
.fixed-width-lg .field-wrapper .ui-select-search,
select.fixed-width-lg {
  width: 300px;
}
.field-wrapper.checkbox.v-center {
  display: flex;
}
.field-wrapper.checkbox.v-center > label {
  display: flex;
  margin-top: auto;
  margin-bottom: auto;
}
.field-wrapper.checkbox.v-center > label > input,
.field-wrapper.checkbox.v-center > label > span {
  margin-top: auto;
  margin-bottom: auto;
}
/* validation */
input[type=text].ng-invalid.aa-had-focus,
input[type=text].ng-invalid.ng-dirty,
input[type=text].ng-invalid.aa-invalid-attempt,
input[type=email].ng-invalid.aa-had-focus,
input[type=email].ng-invalid.ng-dirty,
input[type=email].ng-invalid.aa-invalid-attempt,
input[type=url].ng-invalid.aa-had-focus,
input[type=url].ng-invalid.ng-dirty,
input[type=url].ng-invalid.aa-invalid-attempt,
input[type=number].ng-invalid.aa-had-focus,
input[type=number].ng-invalid.ng-dirty,
input[type=number].ng-invalid.aa-invalid-attempt,
input[type=password].ng-invalid.aa-had-focus,
input[type=password].ng-invalid.ng-dirty,
input[type=password].ng-invalid.aa-invalid-attempt,
textarea.ng-invalid.aa-had-focus,
textarea.ng-invalid.ng-dirty,
textarea.ng-invalid.aa-invalid-attempt,
select.ng-invalid.aa-had-focus,
select.ng-invalid.ng-dirty,
select.ng-invalid.aa-invalid-attempt,
.ui-select-match.ng-invalid.aa-had-focus,
.ui-select-match.ng-invalid.ng-dirty,
.ui-select-match.ng-invalid.aa-invalid-attempt,
.field-wrapper.ng-invalid.aa-had-focus .ui-select-match,
.field-wrapper.ng-invalid.ng-dirty .ui-select-match,
.field-wrapper.ng-invalid.aa-invalid-attempt .ui-select-match {
  border-width: 1px;
  border-style: solid;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}
.aa-notify-close .fa-circle {
  display: none;
}
.validation-errors {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 14px;
  right: 3px;
}
.validation-error {
  text-align: right;
  bottom: -13px;
  right: 0px;
  pointer-events: none;
  position: absolute;
  font-size: 70%;
}
/* validation alert notification */
.validation-notification {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 500px;
  z-index: 10000;
}
.validation-notification .alert-danger {
  border-width: 2px;
  border-style: solid;
  box-shadow: 2px 2px 2px #333c48;
}
.validation-notification ul {
  padding: 0 20px;
  margin-top: 5px;
}
.validation-notification ul li > a {
  margin-left: 10px;
}
.validation-notification .aa-notify-close {
  position: absolute;
  top: 0;
  right: 0;
}
.inline-label-strategy {
  display: flex;
}
.inline-label-strategy label {
  margin-top: auto;
  margin-bottom: auto;
}
.inline-label-strategy .validation-indicator {
  padding-top: 5px;
}
.inline-label-strategy :last-child {
  margin-left: 10px;
}
.field-wrapper.checkbox {
  margin-bottom: 0;
}
.field-wrapper.checkbox.form-inline {
  margin-top: 30px;
  min-height: unset;
}
.field-wrapper.checkbox.top-margin {
  margin-top: 10px;
}
.field-wrapper.checkbox.top-margin-big {
  margin-top: 20px;
}
.field-wrapper.checkbox.inline {
  margin-top: 25px;
  margin-bottom: 0;
  padding-left: 0;
}
.field-wrapper.checkbox .validation-indicator {
  display: none !important;
}
.field-wrapper.checkbox .validation-error {
  top: -10px;
  bottom: initial;
  left: 0;
  right: initial;
}
.field-wrapper.checkbox label {
  font-weight: normal;
}
/* search boxes */
.search > div > input:not([type=button]):not([type=submit]) {
  border-radius: 2px;
  height: auto;
  font-size: 13px;
  padding: 4px 10px 5px 10px;
}
.search > div > i.fa-search {
  position: absolute;
  top: 1px;
  right: 0;
  height: 27px;
  border-left: 1px solid;
  padding: 6px 14px;
}
*[class*="col-"].search > div > i.fa-search {
  margin-right: 15px;
}
.search .dropdown {
  position: absolute;
  right: 62px;
  top: calc(50% - 12px);
  height: 24px;
}
.search .dropdown button {
  border: none;
  box-shadow: none;
  font-weight: normal;
  background: transparent;
}
/* Sizes */
/* Very specific fixes */
/* - inline switches */
section h5 + .field-wrapper.bootstrap-switch-wrapper {
  margin-bottom: 0;
}
.field-wrapper.bootstrap-switch-wrapper .right-switch {
  position: absolute;
  right: 0;
}
.field-wrapper.bootstrap-switch-wrapper .right-switch + label {
  padding-right: 60px;
}
.col-* > .right-switch {
  right: 15px;
}
.field-wrapper.switch-leveler {
  margin-top: 24px;
}
/* inline edit inputs */
.boundGridInlineEdit {
  position: relative;
}
.boundGridInlineEdit .btn-group {
  position: absolute;
  right: 6px;
  top: 6px;
}
/* ==== editable-form ==== */
form.editable-wrap {
  text-align: left;
}
.editable-wrap {
  display: inline-block;
  white-space: nowrap;
  margin: 0;
}
.editable-wrap .editable-controls,
.editable-wrap .editable-error {
  display: inline-block;
  height: 29px;
  position: relative;
  margin-bottom: 0;
}
.editable-wrap .editable-controls > input {
  color: #333;
  box-shadow: none;
  font-weight: normal;
  margin-bottom: 0;
  padding-right: 150px;
}
.editable-wrap .editable-input {
  display: inline-block;
}
.editable-buttons {
  position: absolute;
  right: 0px;
  height: 29px;
  display: inline-block;
}
.editable-buttons button {
  text-transform: capitalize;
  height: 100%;
}
.editable-buttons button + button {
  border-left: 1px solid;
}
.editable-buttons button.editable-save-btn {
  float: right;
}
.editable-buttons button.editable-cancel-btn {
  padding-right: 15px;
}
.editable-input.editable-has-buttons {
  width: auto;
}
/* ==== editable-bstime ==== */
.editable-bstime .editable-input input[type="text"] {
  width: 46px;
}
.editable-bstime .well-small {
  margin-bottom: 0;
  padding: 10px;
}
/* ==== editable-range ==== */
.editable-range output {
  display: inline-block;
  min-width: 30px;
  vertical-align: top;
  text-align: center;
}
/* ==== editable-color ==== */
.editable-color input[type="color"] {
  width: 50px;
}
/* ==== editable-checkbox ==== */
/* ==== editable-checklist ==== */
/* ==== editable-radiolist ==== */
.editable-checkbox label span,
.editable-checklist label span,
.editable-radiolist label span {
  margin-left: 7px;
  margin-right: 10px;
}
/* ==== element ==== */
.editable-hide {
  display: none !important;
}
.editable-click {
  cursor: pointer;
  text-decoration: none;
}
.editable-click::after {
  content: '\f303';
  display: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 1rem;
  position: absolute;
  font-size: 75%;
  margin-top: 3px;
}
.editable-click:hover {
  text-decoration: none;
}
.editable-click:hover::after {
  display: inline-block;
}
.editable-empty,
.editable-empty:hover,
.editable-empty:focus,
a.editable-empty,
a.editable-empty:hover,
a.editable-empty:focus {
  font-style: italic;
  text-decoration: none;
}
.bootstrap-switch-wrapper {
  margin-top: 0;
}
.field-wrapper.input-sm {
  min-height: auto;
  height: auto;
}
user-dropdown {
  display: block;
}
/* Underwriting Conditions */
.underwriting-condition-container {
  border: 1px solid #ededed;
  padding: 10px;
  background-color: white;
}
.invalid .underwriting-condition-container {
  border-color: red;
}
.underwriting-condition {
  position: relative;
  padding-left: 20px;
}
.underwriting-condition-root > .underwriting-condition {
  padding-left: 0;
}
.underwriting-condition-root > .underwriting-condition > .underwriting-condition-child-line-vertical,
.underwriting-condition-root > .underwriting-condition > .underwriting-condition-child-line-horizontal {
  display: none;
}
.underwriting-condition.first {
  margin-left: 10px;
}
.underwriting-condition-children {
  margin-left: 10px;
}
.underwriting-condition-child-line-horizontal {
  width: 15px;
  border-top: 1px #aaa dotted;
  height: 1px;
  position: absolute;
  left: 0;
  top: 9px;
}
.underwriting-condition-child-line-vertical {
  height: calc(100% - 1px);
  border-left: 1px #aaa dotted;
  width: 1px;
  position: absolute;
  left: 0;
  top: 0;
}
.last > .underwriting-condition-child-line-vertical {
  height: 9px;
}
.underwriting-condition .field-wrapper {
  display: inline-block;
  margin: 0;
}
.underwriting-condition .field-wrapper select,
.underwriting-condition .field-wrapper input {
  padding: 0px;
}
.underwriting-condition-and .fa-plus:hover,
.underwriting-condition .fa-plus:hover {
  color: #9aa1a7;
}
.underwriting-condition .fa-pencil:hover {
  color: #9aa1a7;
}
.underwriting-condition .fa-trash:hover {
  color: #e64a4a;
}
.alert > .fa {
  margin-right: 10px;
}
.field-wrapper .validation-indicator,
.address-field-wrapper .validation-indicator {
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
[class^="col-"].field-wrapper .validation-errors {
  right: 18px;
}
.field-wrapper.empty-input .validation-indicator {
  color: red;
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
address {
  margin-bottom: 0;
}
.address-field-wrapper .address-field-border-wrapper {
  box-sizing: border-box;
  padding-top: 5px;
}
.address-field-wrapper > label {
  padding: 0;
  font-size: 11px;
  user-select: none;
}
.address-field-wrapper .address-same-as-checkbox {
  min-height: unset;
}
.address-field-wrapper .address-field-border-wrapper input,
.address-field-wrapper .address-field-border-wrapper select {
  border: none;
}
.address-field-wrapper .address-field-border-wrapper input:hover,
.address-field-wrapper .address-field-border-wrapper select:hover,
.address-field-wrapper .address-field-border-wrapper input:active,
.address-field-wrapper .address-field-border-wrapper select:active,
.address-field-wrapper .address-field-border-wrapper input:focus,
.address-field-wrapper .address-field-border-wrapper select:focus {
  outline: none !important;
  border: none !important;
}
.address-field-wrapper .address-field-border-wrapper .state-field {
  width: 115px;
}
.address-field-wrapper .address-field-border-wrapper .zip-field {
  width: 65px;
  text-align: center;
}
.address-field-wrapper .address-field-border-wrapper .county-field {
  width: 100px;
}
.toggle-switch .toggle-switch-wrapper {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 21px;
  margin-left: 0.5rem;
}
.toggle-switch .toggle-switch-wrapper input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-switch .toggle-switch-wrapper .toggle-switch-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  cursor: pointer;
  background: #AAA;
  border-radius: 30px;
}
.toggle-switch .toggle-switch-wrapper .toggle-switch-slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  bottom: 2.6px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
  top: 2px;
}
.toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider {
  background-color: #5b9840;
}
.toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider:before {
  transform: translateX(18px);
}
.toggle-switch .toggle-switch-wrapper .toggle-switch-label {
  position: absolute;
  left: 100%;
  width: max-content;
  line-height: 30px;
  cursor: pointer;
}
.small-switch.toggle-switch .toggle-switch-wrapper {
  width: 30px;
  height: 17px;
  margin-left: 0.5rem;
}
.small-switch.toggle-switch .toggle-switch-wrapper .toggle-switch-slider {
  border-radius: 22.5px;
}
.small-switch.toggle-switch .toggle-switch-wrapper .toggle-switch-slider:before {
  height: 12.75px;
  width: 12.75px;
  left: 2.4px;
  bottom: 1.95px;
  border-radius: 50%;
}
.small-switch.toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider:before {
  transform: translateX(13.5px);
}
.small-switch.toggle-switch .toggle-switch-wrapper .toggle-switch-label {
  line-height: 22.5px;
}
body .themed.a3 {
  /* text inputs &*/
  /* input outline */
  /* selects */
  /* field-wrapper */
  /* empty-input */
  /* validation */
  /* validation alert notification */
  /* search boxes */
  /* search box colors */
  /* Colors */
  /* inline edit inputs */
  /* ==== editable-form ==== */
  /* ==== element ==== */
}
body .themed.a3 input[type=text],
body .themed.a3 input[type=email],
body .themed.a3 input[type=url],
body .themed.a3 input[type=number],
body .themed.a3 input[type=password],
body .themed.a3 textarea,
body .themed.a3 select,
body .themed.a3 .ui-select-match {
  border-color: #d0d3d5;
  background-color: #FFF;
}
body .themed.a3 input[type=text].white,
body .themed.a3 input[type=email].white,
body .themed.a3 input[type=url].white,
body .themed.a3 input[type=number].white,
body .themed.a3 input[type=password].white,
body .themed.a3 textarea.white,
body .themed.a3 select.white,
body .themed.a3 .ui-select-match.white {
  background-color: #ffffff;
}
body .themed.a3 input:not([type=button]):not([type=radio]):not([type=checkbox]):not([type=submit]):focus,
body .themed.a3 textarea:focus,
body .themed.a3 select:focus {
  border-color: #ffa400;
}
body .themed.a3 input:disabled,
body .themed.a3 select:disabled,
body .themed.a3 select:disabled,
body .themed.a3 textarea:disabled {
  background-color: #ffffff;
  border-color: #d0d3d5;
}
body .themed.a3 select.unselected {
  color: #aaa;
}
body .themed.a3 select.unselected option {
  color: #333;
}
body .themed.a3 select option[disabled] {
  color: #aaa;
}
body .themed.a3 .field-wrapper div.label {
  background: transparent;
  color: #333;
}
body .themed.a3 .field-wrapper .validation-indicator,
body .themed.a3 .address-field-wrapper .validation-indicator {
  color: red;
}
body .themed.a3 .field-wrapper input:not([type=checkbox]):not([type=radio]),
body .themed.a3 .field-wrapper select {
  background-color: #ffffff;
}
body .themed.a3 .empty-input:not(.search) input:not([type=checkbox]):not([type=radio]),
body .themed.a3 .empty-input select,
body .themed.a3 .empty-input textarea {
  background: #ffffff;
}
body .themed.a3 .empty-input:not(.search) input:not(:focus),
body .themed.a3 .empty-input select:not(:focus),
body .themed.a3 .empty-input textarea:not(:focus) {
  border-color: #d0d3d5;
}
body .themed.a3 .empty-input input:not([type=checkbox]):not([type=radio]):disabled,
body .themed.a3 .empty-input select:disabled,
body .themed.a3 .empty-input textarea:disabled {
  border-color: #ededed;
}
body .themed.a3 .field-wrapper.empty-input.select.disabled select:disabled,
body .themed.a3 .field-wrapper select:disabled {
  border-color: #ededed;
}
body .themed.a3 .field-wrapper.empty-input.select.disabled div.label {
  color: #c3c3c3;
}
body .themed.a3 .field-wrapper.empty-input .validation-indicator {
  color: red;
}
body .themed.a3 input[type=text].ng-invalid.aa-had-focus,
body .themed.a3 input[type=text].ng-invalid.ng-dirty,
body .themed.a3 input[type=text].ng-invalid.aa-invalid-attempt,
body .themed.a3 input[type=email].ng-invalid.aa-had-focus,
body .themed.a3 input[type=email].ng-invalid.ng-dirty,
body .themed.a3 input[type=email].ng-invalid.aa-invalid-attempt,
body .themed.a3 input[type=url].ng-invalid.aa-had-focus,
body .themed.a3 input[type=url].ng-invalid.ng-dirty,
body .themed.a3 input[type=url].ng-invalid.aa-invalid-attempt,
body .themed.a3 input[type=number].ng-invalid.aa-had-focus,
body .themed.a3 input[type=number].ng-invalid.ng-dirty,
body .themed.a3 input[type=number].ng-invalid.aa-invalid-attempt,
body .themed.a3 input[type=password].ng-invalid.aa-had-focus,
body .themed.a3 input[type=password].ng-invalid.ng-dirty,
body .themed.a3 input[type=password].ng-invalid.aa-invalid-attempt,
body .themed.a3 textarea.ng-invalid.aa-had-focus,
body .themed.a3 textarea.ng-invalid.ng-dirty,
body .themed.a3 textarea.ng-invalid.aa-invalid-attempt,
body .themed.a3 select.ng-invalid.aa-had-focus,
body .themed.a3 select.ng-invalid.ng-dirty,
body .themed.a3 select.ng-invalid.aa-invalid-attempt,
body .themed.a3 .ui-select-match.ng-invalid.aa-had-focus,
body .themed.a3 .ui-select-match.ng-invalid.ng-dirty,
body .themed.a3 .ui-select-match.ng-invalid.aa-invalid-attempt,
body .themed.a3 .field-wrapper.ng-invalid.aa-had-focus .ui-select-match,
body .themed.a3 .field-wrapper.ng-invalid.ng-dirty .ui-select-match,
body .themed.a3 .field-wrapper.ng-invalid.aa-invalid-attempt .ui-select-match {
  border-color: #fd4f00;
}
body .themed.a3 .validation-error {
  color: #fd4f00;
}
body .themed.a3 .validation-notification .alert-danger {
  color: #ededed;
  background-color: #333c48;
  border-color: #fd4f00;
  box-shadow: 2px 2px 2px #333c48;
}
body .themed.a3 .validation-notification ul li > a {
  color: #ffa400;
}
body .themed.a3 .search > div > i.fa-search {
  background-color: transparent;
}
body .themed.a3 .search.white > div > input:not([type=button]):not([type=submit]) {
  background-color: #ffffff;
  border-color: #ccc;
}
body .themed.a3 .search.white > div > i {
  color: #ffa400;
}
body .themed.a3 .search .dropdown button {
  background: transparent;
  color: #aaa;
}
body .themed.a3 input.white:not([type=button]):not([type=submit]) {
  background-color: #ffffff;
}
body .themed.a3 input.black:not([type=button]):not([type=submit]) {
  background-color: #333c48;
  color: #ededed;
}
body .themed.a3 .boundGridInlineEdit input {
  background: #ffffff;
}
body .themed.a3 .editable-wrap .editable-controls > input {
  background: #ffffff;
}
body .themed.a3 .editable-click::after {
  color: #aaa;
}
body .themed.a3 .editable-click:hover {
  background: lightyellow;
}
body .themed.a3 .editable-empty,
body .themed.a3 .editable-empty:hover,
body .themed.a3 .editable-empty:focus,
body .themed.a3 a.editable-empty,
body .themed.a3 a.editable-empty:hover,
body .themed.a3 a.editable-empty:focus {
  color: #DD1144;
}
body .themed.a3 .editable-buttons button {
  box-shadow: none;
}
body .themed.a3 .toggle-switch .toggle-switch-wrapper .toggle-switch-slider {
  background: #AAA;
}
body .themed.a3 .toggle-switch .toggle-switch-wrapper .toggle-switch-slider:before {
  background-color: #fff;
}
body .themed.a3 .toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider {
  background-color: #428bca;
}
body .themed.a3 .address-field-wrapper .address-field-border-wrapper {
  border: 1px solid #d0d3d5;
}
body .themed.a3 .address-field-wrapper.invalid .address-field-border-wrapper {
  border-color: #fd4f00;
}
body .themed.a3 .address-field-wrapper.invalid .validation-message {
  color: #fd4f00;
}
body .themed.a3 .address-field-wrapper > label {
  color: #333;
}
/* Style when highlighting a search. */
.ui-select-highlight {
  font-weight: bold;
}
.ui-select-offscreen {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}
/* Select2 theme */
/* Mark invalid Select2 */
.ng-dirty.ng-invalid > a.select2-choice {
  border-color: #fd4f00;
}
.select2-result-single {
  padding-left: 0;
}
.select2-locked > .select2-search-choice-close {
  display: none;
}
/* Selectize theme */
/* Helper class to show styles when focus */
/*.selectize-input.selectize-focus{
    border-color: #007FBB !important;
}*/
/* Fix input width for Selectize theme */
.selectize-control > .selectize-input > input {
  width: 100%;
}
/* Fix uib-dropdown width for Selectize theme */
.selectize-control > .selectize-dropdown {
  width: 100%;
  top: 36px !important;
}
/* Mark invalid Selectize */
.ng-dirty.ng-invalid > div.selectize-input {
  border-color: #fd4f00;
}
/* Fix Bootstrap uib-dropdown position when inside a input-group */
.input-group > .ui-select-bootstrap.dropdown {
  /* Instead of relative */
  position: static;
}
.input-group > .ui-select-bootstrap > input.ui-select-search.form-control {
  border-radius: 4px;
  /* FIXME hardcoded value :-/ */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ui-select-bootstrap > .ui-select-match {
  /* Instead of center because of .btn */
  text-align: left !important;
}
.ui-select-bootstrap > .ui-select-match > .caret {
  position: absolute;
  top: 45%;
  right: 15px;
}
/* See Scrollable Menu with Bootstrap 3 http://stackoverflow.com/questions/19227496 */
.ui-select-choices {
  width: 100%;
  height: auto;
  max-height: 200px;
  overflow-x: hidden;
}
.ui-select-multiple.ui-select-bootstrap {
  height: auto;
  padding: 0.3em;
}
.ui-select-multiple.ui-select-bootstrap input.ui-select-search {
  background-color: transparent !important;
  /* To prevent double background when disabled */
  border: none;
  outline: none;
  height: 1.666666em;
  cursor: pointer;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match .close {
  font-size: 1.6em;
  line-height: 0.9;
}
.ui-select-multiple.ui-select-bootstrap .ui-select-match-item {
  outline: 0;
  background-color: #fcce01;
}
.ui-select-no-choice li {
  padding: 0.5rem 1rem;
}
.ui-select-choices-row > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}
.ui-select-choices-row > a:hover,
.ui-select-choices-row > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}
.ui-select-choices-row.active > a {
  text-decoration: none;
  outline: 0;
  background-color: #fcce01;
  color: inherit;
}
.ui-select-choices-row.disabled > a,
.ui-select-choices-row.active.disabled > a {
  color: #ededed;
  cursor: not-allowed;
  background-color: #ffffff;
}
/* fix hide/show angular animation */
.ui-select-match.ng-hide-add,
.ui-select-search.ng-hide-add {
  display: none !important;
}
.ui-select-match:focus {
  outline: none;
}
/* Mark invalid Bootstrap */
.ui-select-bootstrap.ng-dirty.ng-invalid > button.btn.ui-select-match {
  border-color: #fd4f00;
}
.select2 > .select2-choice.ui-select-match {
  /* Because of the inclusion of Bootstrap */
  height: 29px !important;
}
.ui-select-multiple,
.ui-select-bootstrap {
  width: 100%;
}
.ui-select-multiple .ui-select-match {
  background: transparent !important;
  box-shadow: none;
  border: none;
  padding: 0;
}
.ui-select-multiple .ui-select-match > span {
  margin-right: 10px;
  display: inline-block;
  background-color: #ffa400;
  border-radius: 2px;
  padding: 3px 7px;
  color: #fff;
}
.ui-select-multiple .ui-select-match > span .close {
  float: right;
  font-size: 14px;
  font-weight: normal;
  line-height: 30px;
  margin-left: 10px;
  color: #ffffff;
  text-shadow: none;
  opacity: 1;
  line-height: 16px;
}
.ui-select-multiple .ui-select-multiple-input-wrapper {
  margin-top: 15px;
}
.ui-select-multiple .ui-select-match-item:focus {
  outline: none;
}
body .themed .list .header {
  width: 100%;
  list-style: none;
  overflow: auto;
  zoom: 1;
}
body .themed .list .header li {
  padding: 10px 20px;
  float: left;
}
body .themed .list .body {
  width: 100%;
  list-style: none;
  overflow: auto;
  zoom: 1;
}
body .themed .list .body li {
  padding: 10px 20px;
  float: left;
}
body .themed .release-list {
  padding: 0;
  list-style: none;
}
body .themed .release-list li {
  padding: 4px 0;
}
body .themed ul.sortable li > i.grab-handle {
  width: 23px;
  padding-left: 10px;
  cursor: move;
}
body .themed ul.sortable li > a {
  padding: 5px 20px 5px 0px;
  width: calc(100% - 25px);
  display: inline-block;
}
body .themed .div-list {
  padding: 20px 10px 20px 10px;
}
body .themed .div-list + .div-list {
  border-top: 1px solid;
}
body .themed .div-list-grab-handle {
  padding: 5px;
  margin-left: -20px;
  width: 20px;
  cursor: move;
  display: none;
}
body .themed .div-list:hover .div-list-grab-handle {
  display: flex;
}
body .themed .themed.a3 .div-list + .div-list {
  border-top-color: #ededed;
}
/* layout */
form {
  text-align: right;
}
/* Buttons */
form > button,
form > input[type="button"],
form > input[type="submit"] {
  margin-top: 10px;
}
.label-left {
  line-height: 36px;
  text-align: right;
}
img.smallLogo {
  width: 75px;
  height: 75px;
}
i.favorite {
  cursor: pointer;
  color: #ffa400;
}
.field-flex-box {
  display: flex;
}
.field-flex-box div {
  -ms-flex: 1;
  flex: 1;
}
.field-flex-box button {
  height: 24px;
  -ms-flex: 0.15;
  flex: 0.15;
  margin-top: 25px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: white;
  padding: 4px 20px 8px 20px;
}
.modal {
  overflow-y: auto !important;
}
.modal-backdrop.in {
  filter: alpha(opacity=80);
  opacity: 0.9;
}
.modal-dialog {
  margin-top: 55px;
  overflow-y: 'auto';
}
.modal.full-screen .modal-dialog {
  margin: 2rem !important;
  height: calc(100% - 4rem) !important;
  width: calc(100% - 4rem) !important;
}
.modal.full-screen .modal-dialog .modal-content {
  height: 100%;
}
.modal.full-height .modal-dialog {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
  height: 100%;
  max-height: calc(100% - 4rem) !important;
}
.modal.full-height .modal-dialog .modal-content {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 0;
  padding-top: 0;
}
.modal.modal.full-height .modal-dialog header.modal-header > button {
  right: -20px;
}
.modal.full-height .modal-dialog .modal-content .modal-header {
  position: sticky;
  top: 0;
  border: none;
  min-height: unset;
  z-index: 1000;
  padding-top: 20px;
}
.modal.full-height .modal-dialog .modal-content .modal-footer {
  position: sticky;
  bottom: 0;
  border: none;
  min-height: unset;
  padding-top: 20px;
  margin-top: 0;
  padding-right: 0;
  padding-left: 0;
}
.modal .modal-dialog .scroller.modal-scroller {
  margin-right: -15px;
  padding-right: 15px;
}
.modal header.modal-header {
  text-align: left;
  padding: 0 20px 10px 0;
  border-bottom: none;
}
.modal header.modal-header > i {
  margin-right: 15px;
}
.modal header.modal-header > i.fa-chevron-left {
  margin-right: 5px;
}
.modal header.modal-header h1,
.modal header.modal-header h2,
.modal header.modal-header h3,
.modal header.modal-header h4,
.modal header.modal-header h5,
.modal header.modal-header h6 {
  margin-top: 0;
}
.modal header.modal-header > button {
  background: transparent;
  box-shadow: none;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
}
.modal header.modal-header > button i {
  margin: 0;
}
.modal header.modal-header > button.modal-refresh-button {
  right: 25px;
  padding-right: 5px;
}
.modal header.modal-header > button.modal-refresh-button + button {
  padding-left: 5px;
}
.modal footer {
  padding-top: 20px;
  text-align: right;
}
.modal footer button,
.modal footer input[type=button],
.modal footer input[type=submit] {
  margin-left: 5px;
}
.modal iframe {
  border: none;
}
.modal .busy-indicator-backdrop {
  height: 100%;
}
.modal-content {
  padding: 20px;
}
body .themed.a3 .modal-content {
  background-color: #ededed;
}
body .themed.a3 .modal-backdrop {
  background-color: #333c48;
}
body .themed.a3 .modal .modal-dialog .modal-content > header.modal-header button {
  color: #999;
  background: transparent;
  box-shadow: none;
}
body .themed.a3 .modal .modal-dialog .modal-content > header.modal-header button:hover {
  color: #333c48;
}
body .themed.a3 .modal .busy-indicator-backdrop {
  border-radius: 6px;
}
body .themed.a3 .modal-content .modal-header.modal-header,
body .themed.a3 .modal-content .modal-footer {
  background-color: #ededed;
}
/*.modal.fade {
  opacity: 1;
}

.modal.fade .modal-dialog, .modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}*/
/* modal sizes */
@media (min-width: 768px) {
  .modal-sm {
    width: 450px;
  }
}
@media (min-width: 925px) {
  .modal-lg {
    width: 900px;
  }
}
@media (max-width: 924px) {
  .modal-lg {
    width: 98%;
    margin: 30px auto;
  }
}
@media (min-width: 1224px) {
  .modal-xl {
    width: 1200px;
  }
}
@media (max-width: 1225px) {
  .modal-xl {
    width: 98%;
    margin: 15px auto;
  }
}
body {
  overflow: hidden;
}
.scroller {
  height: 100%;
  overflow: hidden;
  position: relative;
}
/* main view */
.main-view {
  width: 100%;
  height: 100%;
  display: flex;
}
.pad-main-view {
  padding-bottom: 40px;
  padding-top: 62px;
}
.themed {
  width: 100%;
}
.structure-wrapper {
  height: 100%;
}
/* page */
.embedded-title-bar .page-body {
  padding: 0;
}
.page {
  height: 100%;
  margin-left: 250px;
  padding: 0px;
  flex: 1;
  position: relative;
  overflow-y: auto;
}
.page-body {
  padding: 20px;
}
.side-menu-collapsed .page {
  margin-left: 50px;
}
.right-pane {
  margin-left: -350px;
  margin-right: 350px;
}
/* page title */
.page-title {
  padding-left: 20px;
  padding-right: 20px;
  border-width: 1px;
  border-style: solid;
  height: 41px;
  display: flex;
}
.page-title header {
  flex: 1;
  font-weight: bold;
  text-align: left;
  font-size: 14px;
}
.page-title > * {
  margin-top: auto;
  margin-bottom: auto;
}
.page-title .field-wrapper {
  min-height: initial;
}
.page-title a {
  font-size: 12px;
  line-height: 24px;
  padding: 0 5px;
}
.page-title .nav-divider {
  color: #d0d3d5;
}
.page-title .editable-buttons button {
  height: 24px;
  font-size: 11px;
  margin-left: 0px;
}
.page-body .page-body {
  padding: 20px;
}
.test-selector {
  width: 300px;
  margin-top: -3px;
  margin-bottom: 3px;
  display: inline-flex;
}
.ng-pageslide {
  padding: 20px;
}
.ng-pageslide-body-open > div {
  width: calc(100% - 350px);
}
.embedded-title-bar .page-title header p {
  font-weight: bold;
  margin: 0;
}
.embedded-title-bar .page-title header .dropdown {
  float: left;
}
.embedded-title-bar .page-title header .dropdown > a {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
.embedded-title-bar .page-title header nav {
  float: left;
  font-size: 12px;
  line-height: 24px;
  margin: 0 10px;
  font-weight: normal;
}
.embedded-title-bar .page-title header nav a {
  padding: 0 5px;
}
.embedded-title-bar .page-title header nav a > i {
  margin-right: 5px;
}
.embedded-title-bar .page-title header nav .nav-divider {
  color: #d0d3d5;
}
.embedded-title-bar .page-title header .editable-wrap {
  margin: -7px 0 0 -10px;
}
.embedded-title-bar .page-title .refresh-button {
  margin-right: 5px;
}
.embedded-title-bar .page-title .refresh-button:hover {
  text-decoration: none;
}
.embedded-title-bar .page-title .chart {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  text-align: left;
  width: 180px;
}
.embedded-title-bar .page-title .chart strong {
  display: block;
  font-size: 15px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  text-align: center;
  width: 44px;
  z-index: 100;
}
.embedded-title-bar .page-title .chart .chart-wrapper {
  height: 44px;
  overflow: hidden;
  position: absolute;
  width: 44px;
  vertical-align: middle;
}
.embedded-title-bar .page-title .chart .chart-wrapper > div {
  height: 86px;
  left: -20px;
  position: absolute;
  top: -20px;
  width: 86px;
}
.embedded-title-bar .page-title .chart p {
  display: inline-block;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.2em;
  margin: 0;
  padding-left: 49px;
  text-transform: capitalize;
  vertical-align: middle;
}
.embedded-title-bar .page-title .chart .small {
  text-transform: uppercase;
}
.page-body.sticky-page {
  position: absolute;
  top: 41px;
  bottom: 41px;
  padding-right: 3px;
  padding-bottom: 0;
  overflow: hidden;
}
.page-body.sticky-page .scroller {
  padding-right: 17px;
}
.sticky-page-footer {
  position: absolute;
  width: 100%;
  padding: 1rem 2rem;
  bottom: 0rem;
}
.page-body.fill-page {
  position: absolute;
  top: 41px;
  bottom: 0px;
  padding-bottom: 0;
  overflow: hidden;
  width: 100%;
}
.page-body.fill-page .content-scroller {
  height: unset;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.flex.gap {
  gap: 20px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.column {
  flex-direction: column;
}
.fill {
  flex: 1;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-2col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flex-2col > * {
  flex: 1 1 calc((100% - 10px) / 2);
  max-width: calc((100% - 10px) / 2);
  box-sizing: border-box;
}
.flex-4col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flex-4col > * {
  flex: 1 1 calc((100% - 30px) / 4);
  max-width: calc((100% - 30px) / 4);
  box-sizing: border-box;
}
.flex-3col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.flex-3col > * {
  flex: 1 1 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
  box-sizing: border-box;
}
.inline-flex {
  display: inline-flex;
}
.inline-block {
  display: inline-block;
}
.v-center {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.space-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
/*
  Allow angular.js to be loaded in body, hiding cloaked elements until
  templates compile.  The !important is important given that there may be
  other selectors that are more specific or come later and might alter display.
    https://stackoverflow.com/questions/11249768/angularjs-ng-cloak-ng-show-elements-blink
 */
[ng\:cloak],
[ng-cloak],
.ng-cloak {
  display: none !important;
}
/* responsive */
@media (max-width: 1366px) {
  .right-pane {
    margin-left: -300px;
    margin-right: 300px;
  }
}
@media (max-width: 850px) {
  .main-view {
    display: block;
    padding-top: 0;
  }
  .page {
    height: auto;
    margin-top: 0;
    margin-left: 0;
    padding-top: 0;
  }
  .right-pane {
    margin-left: -400px;
    margin-right: 400px;
  }
}
/* Activity UI */
.activity-created-info {
  padding: 0.5rem 0.5rem 0 0.5rem;
  border-top: 1px solid #444;
}
.message-content {
  padding: 10px;
  width: 90%;
  margin-left: 40px;
  margin-top: -10px;
}
.message-metadata {
  margin-top: 10px;
  display: flex;
  width: 100%;
  font-size: 11px;
}
.conversation-message {
  margin-bottom: 20px;
}
.new-message-container {
  display: flex;
  margin-top: 10px;
}
.new-message-container label {
  white-space: nowrap;
  margin-bottom: auto;
}
.new-message.message-content {
  margin-top: 0;
}
body .themed.a3 .page {
  background-color: #ededed;
}
body .themed.a3 .page-title {
  border-color: rgba(0, 0, 0, 0.15);
}
body .themed.a3 .ng-pageslide {
  background: #fff;
  box-shadow: #cccccc -1px 2px 5px;
}
body .themed.a3 .message-content {
  background-color: #efefef;
  border: 1px solid #ccc;
}
body .themed.a3 .message-medadata {
  color: #ccc;
}
/* Use of section as class so that we can apply to custom directives */
.section {
  display: block;
}
/* Use of <section> instead of class */
section {
  padding: 10px;
  width: 100%;
  text-align: left;
  border-radius: 2px;
  box-sizing: border-box;
  position: relative;
  border-width: 1px;
  border-style: solid;
}
section > header,
.modal section > header {
  margin: 0 0 10px 0;
  padding: 0px 0px 10px 0;
  font-size: 13px;
  font-weight: normal;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
section:after {
  content: "";
  display: table;
  clear: both;
}
/* main used for spacing */
section main {
  margin-top: 20px;
}
/* area above sections */
section.above .tooltip + button {
  margin-left: 10px;
}
section.above {
  padding: 0;
}
section.above .field-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}
section.above h1,
section.above h2,
section.above h3,
section.above h4,
section.above h5,
section.above h6 {
  margin-top: 0;
}
/* section behavior */
section:not(.ng-hide) + section,
button + section,
input[type=button] + section,
input[type=submit] + section,
section + .section,
.section + .section,
.section + section {
  margin-top: 20px;
}
section + div:not(.tab-set) {
  margin-top: 20px;
}
[class*="col-"] section {
  margin-bottom: 20px;
}
section header > i,
section header > h1 > i,
section header > h2 > i,
section header > h3 > i,
section header > h4 > i,
section header > h5 > i,
section header > h6 > i,
section header person-heading > i,
section header company-heading > i {
  margin-right: 20px;
  font-family: "fontAwesome";
  font-style: normal;
}
/* section tables */
section.table-scroll {
  overflow-x: auto;
}
section table {
  margin-bottom: 0;
}
/* section controls */
section footer button {
  padding: 13px 20px;
  float: right;
  box-shadow: none;
}
/* bootstrap-switch */
section.above .bootstrap-switch {
  margin-left: 10px;
}
section .bootstrap-switch i {
  margin-right: 0;
}
/* buttons */
section ~ button,
section ~ input[type=submit] {
  margin: 20px 0 20px 5px;
}
section table .field-wrapper {
  margin-bottom: 0;
}
section h1,
section h2,
section h3,
section h4,
section h5,
section h6 {
  margin-top: 20px;
}
section header h1,
section header h2,
section header h3,
section header h4,
section header h5,
section header h6 {
  margin-top: 10px;
}
section header a {
  text-decoration: underline;
  font-weight: normal;
}
section.above.text-right button + button {
  margin-right: 10px;
}
/* Collapsable Sections */
section.collapsed header {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}
section header .expander {
  padding: 0 5px;
}
/* text */
section > p {
  text-align: left;
}
section h1[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"],
section h2[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"],
section h3[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"],
section h4[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"],
section h5[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"],
section h6[class*="col-"] + .bootstrap-switch-wrapper[class*="col-"] {
  margin-top: 15px;
}
/* images */
section img {
  max-width: 100%;
}
section .profile-image {
  max-height: 200px;
  max-width: 200px;
}
/* release notes sections */
.release-left {
  width: 23%;
  height: 100%;
  margin-right: 2%;
  float: left;
}
.release-right {
  width: 75%;
  float: left;
  margin-top: 0;
}
.release-menu {
  width: 100%;
  text-align: left;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
}
.release-menu ul {
  padding: 0;
}
.release-menu li {
  width: 100%;
  padding: 11px;
  list-style: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  cursor: pointer;
}
.release-menu li:hover {
  width: 100%;
}
/* Bond Type Selection Section */
.underwriting-assignment-bond-type-selector section {
  border: 0;
  padding: 0;
}
.underwriting-assignment-bond-type-selector section > header {
  display: none;
}
.no-section section {
  padding: 0;
  border: none;
}
.no-section section > header {
  display: none;
}
section.inactive header {
  padding: 0;
  margin: 0;
  border: none;
}
body .themed.a3 {
  /* color variants */
}
body .themed.a3 section {
  background-color: #ffffff;
  border-color: #ccc;
}
body .themed.a3 section > header {
  border-bottom-color: rgba(0, 0, 0, 0.15);
  color: #333c48;
}
body .themed.a3 section.flag {
  border-color: red;
}
body .themed.a3 section.above {
  background-color: transparent;
  border-color: transparent;
}
body .themed.a3 section.dark {
  background-color: #d0d3d5;
}
body .themed.a3 .release-menu {
  background-color: #ffffff;
}
body .themed.a3 .release-menu li {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
body .themed.a3 .release-menu li:hover {
  background-color: #ededed;
  border-right: 5px solid #ffa400;
}
body .themed.a3 .release-menu ul li.on {
  background-color: #ededed;
  border-right: 5px solid #ffa400;
}
body .themed {
  /* top menu */
  /* buttons */
  /* avatar */
  /* left navbar */
  /* search bar */
  /* right navbar */
  /* responsive */
}
body .themed .top-menu {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  height: 63px;
  padding: 16px 20px 15px 20px;
  position: fixed;
  top: 0;
  left: 250px;
  right: 0;
  flex: 1;
  z-index: 100;
}
body .themed .top-menu:after {
  content: "";
  display: table;
  clear: both;
}
body .themed .top-menu.shadowed {
  box-shadow: 0 2px 12px -4px #999;
}
body .themed.side-menu-collapsed .top-menu {
  left: 50px;
}
body .themed .toggle-collapse {
  left: -1px;
  position: absolute;
  top: 0;
  padding: 5px;
}
body .themed .toggle-collapse i {
  margin: 0;
}
body .themed .top-menu .navbar-left button {
  float: left;
  box-shadow: none;
  font-weight: normal;
}
body .themed .top-menu img {
  width: 32px;
  height: 32px;
  float: right;
  border-radius: 20px;
}
body .themed .navbar-left {
  padding: 0;
  margin: 0 0 0 15px;
  list-style: none;
}
body .themed .navbar-left > li {
  float: left;
  position: relative;
}
body .themed .navbar-left > li:not(:first-of-type) {
  padding-left: 10px;
}
body .themed .top-menu .global-search {
  float: right;
  margin: 0 10px;
  position: relative;
  text-align: left;
  width: 33.333333%;
}
body .themed .top-menu .global-search::before {
  content: '\f002';
  display: block;
  font-family: 'Font Awesome 5 Free';
  left: 8px;
  pointer-events: none;
  position: absolute;
  top: 5px;
  z-index: 1001;
}
body .themed body .top-menu form.global-search .global-search-input input[type=text] {
  height: 25px;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-right: none;
  z-index: 1000;
}
body .themed body .top-menu form.global-search .global-search-input input[type=text]:focus,
body .themed body .top-menu form.global-search .global-search-input input[type=text]:active {
  border-right: none;
}
body .themed .top-menu .global-search .search .dropdown {
  display: none;
}
body .themed .top-menu .global-search .search-results {
  background: white;
  border-radius: 2px;
  min-width: 450px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 38px;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}
body .themed .top-menu .global-search .search-results.ng-hide {
  opacity: 0;
}
body .themed .top-menu .global-search .search-results .results-category {
  border-top-width: 1px;
  border-top-style: solid;
  list-style: none;
  margin: 0;
  padding: 10px 0 0;
}
body .themed .top-menu .global-search .search-results .results-category:first-child {
  border-top: 0;
}
body .themed .top-menu .global-search .search-results .results-category i {
  display: inline-block;
}
body .themed .top-menu .global-search .search-results .results-category li.title {
  font-size: 80%;
  padding: 0 10px 4px;
  text-transform: uppercase;
}
body .themed .top-menu .global-search .search-results .results-category li:not(.title) {
  cursor: pointer;
  padding: 5px 10px 5px 20px;
  text-decoration: none;
}
body .themed .top-menu .global-search .search-results .results-category small {
  display: block;
}
body .themed .top-menu .global-search .search-results .results-category .search-result-info {
  display: inline-block;
}
body .themed .top-menu .global-search .search-results .results-category button {
  margin-top: 6px;
}
body .themed .top-menu .global-search .search-results .results-category.searching,
body .themed .top-menu .global-search .search-results .results-category.no-results {
  border: none;
  padding: 5px 0;
}
body .themed .top-menu .global-search .field-wrapper {
  margin-top: 0;
}
body .themed .top-menu .global-search button.search-button {
  height: 25px;
  width: 35px;
  padding: 0;
  text-align: center;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  box-shadow: none;
  border: 1px solid;
}
body .themed .search-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  -webkit-transition: all linear 0.1s;
  transition: all linear 0.1s;
}
body .themed .search-overlay.ng-hide {
  opacity: 0;
}
body .themed .navbar-right {
  margin: 0;
  margin-top: -3px;
  padding-left: 0;
  float: right;
  list-style: none;
}
body .themed .navbar-right li {
  float: left;
  position: relative;
  margin-left: 10px;
}
body .themed .navbar-right li > a .user-avatar .avatar-img {
  min-width: 30px;
  padding: 8px;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 30px;
}
body .themed .navbar-right li > a:hover,
body .themed .navbar-right > li > a:active,
body .themed .navbar-right > li > a:focus,
body .themed .navbar-right > li > a:visited {
  text-decoration: none;
}
body .themed .profile-dropdown {
  width: 500px;
}
body .themed .profile-dropdown .col-sm-8 {
  padding-right: 20px;
}
body .themed .profile-dropdown .user-avatar .avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 80px;
  float: none;
  margin-top: 10px;
  margin-left: 35px;
}
body .themed .profile-dropdown .user-profile-button {
  margin-left: 35px;
}
body .themed .profile-dropdown h4 {
  margin-bottom: 0;
}
body .themed .profile-dropdown .change-password-button {
  padding-left: 0;
}
body .themed .profile-dropdown .logout-button {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 5px;
}
body .themed .profile-dropdown .field-wrapper {
  margin-top: 15px;
}
body .themed .profile-dropdown .button-container {
  height: 135px;
}
body .themed .navbar-right .notifications {
  height: 32px;
  width: 32px;
  position: relative;
}
body .themed .navbar-right .notifications > a {
  width: 32px;
  height: 32px;
  display: inline-block;
}
body .themed .navbar-right .notifications > a > i {
  background: transparent;
  padding: 0;
  font-size: 24px;
  left: 0;
  top: 5px;
  position: absolute;
}
body .themed .navbar-right .notifications > a > .badge {
  position: absolute;
  top: 0;
  left: 20px;
  padding: 2px;
  z-index: 100;
}
body .themed .notifications .dropdown-menu {
  width: 400px;
  padding: 0;
  background-color: #ededed;
}
body .themed .notifications .dropdown-menu > header {
  padding: 10px;
  border-bottom: solid 1px #ccc;
  background-color: white;
}
body .themed .notifications .dropdown-menu > main {
  height: 475px;
}
body .themed .notifications .dropdown-menu .empty-state {
  padding: 20px;
}
body .themed .notifications .initial-state {
  border: none;
  margin-top: 90px;
  background-color: transparent;
}
body .themed .notifications .initial-state .empty-backdrop {
  display: none;
}
body .themed .notifications .notification {
  margin-top: 5px;
  background-color: white;
  padding: 5px 10px 5px 0;
}
body .themed .notifications .notification:last-of-type {
  margin-bottom: 5px;
}
body .themed .notifications .notification:hover {
  background: #ededed;
}
body .themed .notifications .notification .notification-icon {
  float: left;
  width: 70px;
  height: 70px;
  margin-top: 3px;
}
body .themed .notifications .notification .notification-actions {
  color: #ccc;
  opacity: 0;
}
body .themed .notifications .notification:hover .notification-actions {
  opacity: 1;
}
body .themed .notifications .notification .notification-actions button {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #ccc;
  box-shadow: none;
}
body .themed .notifications .notification .notification-actions button:hover {
  color: #333c48;
}
body .themed .notifications .notification .notification-content {
  padding: 0.5rem 1rem;
  cursor: pointer;
}
body .themed .notifications .notification .notification-content header {
  font-weight: bold;
  color: #627789;
}
body .themed .notifications .notification .notification-content main {
  font-size: 85%;
  padding: 3px 0;
}
body .themed .notifications .notification .notification-content footer {
  font-size: 75%;
  color: #999;
}
body .themed .notification-loading-mask-wrapper {
  position: absolute;
  height: calc(100% - 40px);
  width: 100%;
  bottom: 0;
}
body .themed .notification-loading-mask-wrapper > div {
  height: 100%;
  width: 100%;
}
body .themed .notification-loading-mask-wrapper .busy-indicator-default-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
body .themed .notification-loading-mask-wrapper .busy-indicator-default-wrapper .busy-indicator-default-sign {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 35px;
  padding-top: 4px;
}
body .themed .notification-loading-mask-wrapper .busy-indicator-default-wrapper .busy-indicator-default-spinner {
  display: inline;
  top: auto;
  left: auto;
}
body .themed .notification-loading-mask-wrapper .busy-indicator-default-wrapper .busy-indicator-default-text {
  display: inline;
  margin-left: 35px;
}
body .themed .notification-loading-mask-wrapper .busy-indicator-default-wrapper .busy-indicator-default-spinner div {
  width: 4%;
  height: 20%;
  background: #555;
}
body .themed.a3 .top-menu {
  border-bottom-color: rgba(0, 0, 0, 0.15);
  background: #ffffff;
}
body .themed.a3 .top-menu .navbar-left button {
  background: #ededed;
  color: #333c48;
  border-color: #dedede;
}
body .themed.a3 .top-menu .global-search::before {
  color: #9aa1a7;
}
body .themed.a3 body .top-menu form.global-search .global-search-input input[type=text] {
  background-color: #f9f9f9;
}
body .themed.a3 .top-menu .global-search .search-results .results-category {
  border-top-color: #d0d3d5;
}
body .themed.a3 .top-menu .global-search .search-results .results-category li.title {
  color: #777;
}
body .themed.a3 .top-menu .global-search .search-results .results-category li:not(.title) {
  color: #333;
}
body .themed.a3 .top-menu .global-search .search-results .results-category li:not(.title):hover {
  background: #ededed;
  border-color: #ffa400;
}
body .themed.a3 .top-menu .global-search button.search-button {
  border-color: #d0d3d5;
}
body .themed.a3 .search-overlay {
  background: rgba(51, 60, 72, 0.7);
}
body .themed.a3 .navbar-right > li > a > i {
  background: #ffa400;
  color: #fff;
}
body .themed.a3 .top-menu .toggle-collapse {
  background-color: #333c48;
  color: #edf0f2;
  border-right: none;
  border-bottom: none;
}
body .themed.a3 .top-menu .profile-dropdown button.transparent {
  color: #333c48;
}
body .themed.a3 .navbar-right .notifications > a > i {
  background: transparent;
  color: #ffa400;
}
body .themed.a3 .navbar-right .notifications > a > i {
  color: #ffa400;
}
#footer {
  bottom: 0;
  height: 40px;
  left: 249px;
  display: flex;
  position: fixed;
  right: 0;
}
.footer-nav {
  float: left;
  font-size: 90%;
  list-style: none;
  margin: 0;
  padding: 12px 0 11px 20px;
}
.footer-nav li {
  display: inline-block;
  margin: 0;
  padding: 0 20px 0 0;
}
.side-menu-collapsed #footer {
  left: 49px;
}
.footer-logo,
.footer-logo:active,
.footer-logo:visited,
.footer-logo:hover {
  float: right;
  margin: 8px 20px 0 0;
  opacity: 0.9;
  font-size: 10px;
}
.footer-logo:hover {
  text-decoration: none;
}
.footer-logo img {
  margin-left: 10px;
}
#footer .system-account-name {
  line-height: 16px;
}
/* responsive */
@media (max-width: 1366px) {
  #footer {
    left: 250px;
  }
}
@media (max-width: 850px) {
  #footer {
    left: 0;
    position: relative;
  }
}
body .themed.a3 #footer {
  border-top: 1px solid #ccc;
  border-left: none;
  left: 250px;
}
body .themed.a3 .footer-nav li a {
  color: #333c48;
}
body .themed.a3 .footer-logo,
body .themed.a3 .footer-logo:active,
body .themed.a3 .footer-logo:visited,
body .themed.a3 .footer-logo:hover {
  color: #333c48;
}
body .themed.a3.side-menu-collapsed #footer {
  left: 50px;
}
/* side menu */
.side-menu {
  width: auto;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
}
.side-menu-collapsed-show {
  display: none;
}
.side-menu .menu-content {
  width: 250px;
}
/* side menu logo */
.main-logo {
  display: block;
  font-size: 18px;
  height: 34px;
  line-height: 20px;
  margin: 14px auto;
  width: 172px;
}
.main-logo img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
/* side menu content */
.side-menu ul {
  padding-left: 0;
  list-style: none;
}
.side-menu > ul {
  margin: 0;
}
.side-menu > ul > li.current a {
  text-decoration: none;
  padding-right: 15px;
}
.side-menu ul li.current ul li a {
  border: none;
}
.side-menu ul li a {
  display: block;
  padding: 11px 20px 10px 15px;
}
.side-menu ul li a i {
  margin-right: 11px;
}
.side-menu ul li a:hover {
  text-decoration: none;
}
.side-menu ul li .sub-menu {
  display: none;
}
.side-menu ul li.current .sub-menu {
  display: block;
}
.side-menu ul li ul li a {
  padding: 11px 20px 10px 15px;
}
.side-menu ul li a .arrow {
  float: right;
  margin-top: 3px;
}
.side-menu-collapsed .side-menu .menu-content {
  width: 50px;
}
.side-menu-collapsed .main-logo {
  width: 50px;
}
.side-menu-collapsed .main-logo {
  width: 30px;
  margin: 18px 10px 10px 10px;
}
.side-menu-collapsed .side-menu ul li a {
  font-size: 18px;
  padding: 7px 0 8px 0;
  text-align: center;
}
.side-menu-collapsed .side-menu ul li a i {
  margin: 0;
}
.side-menu-collapsed .side-menu-collapsed-hidden {
  display: none;
}
.side-menu-collapsed .side-menu-collapsed-show {
  display: initial;
}
/* search bar */
.side-menu .search {
  margin: 20px;
  position: relative;
}
.side-menu .search:before {
  position: absolute;
  right: 15px;
  content: '\f002';
  font-family: 'fontAwesome';
  line-height: 38px;
}
.side-menu .search input {
  width: 210px;
  padding: 4px 15px;
  font-size: 10px;
  border: none;
  border-radius: 5px;
}
.sub-menu-slide .sub-menu {
  list-style: none;
  padding-left: 0;
}
.sub-menu-slide header {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding: 5px 15px;
}
.sub-menu-slide header i {
  margin-right: 15px;
}
.sub-menu-slide .sub-menu li {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.sub-menu-slide .sub-menu li a {
  padding: 9px 20px 10px 15px;
  display: block;
  text-decoration: none;
}
.sub-menu-slide .sub-menu li a:hover,
.sub-menu-slide .sub-menu li a:focus {
  text-decoration: none;
}
/* responsive */
body .themed.a3 .side-menu {
  background-color: #333c48;
}
body .themed.a3 .side-menu ul > li:last-of-type {
  border-bottom: 1px solid #464e58;
}
body .themed.a3 .side-menu ul > li.current > a {
  text-decoration: none;
  border-right: 5px solid #ffa400;
}
body .themed.a3 .side-menu ul li {
  border-top: 1px solid #464e58;
}
body .themed.a3 .side-menu ul li a {
  color: #edf0f2;
}
body .themed.a3 .side-menu ul li a:hover {
  text-decoration: none;
  background: #2a333b;
}
body .themed.a3 .side-menu ul li ul li {
  border-top: 1px solid #333;
  background-color: #464e58;
}
body .themed.a3 .side-menu ul li ul li a {
  padding-left: 30px;
}
body .themed.a3 .side-menu ul li.current ul li.current a {
  border-right: 5px solid #ffd08d;
}
body .themed.a3 .side-menu ul li ul.sub-menu {
  border-top: 1px solid black;
}
body .themed.a3 .side-menu .search:before {
  color: #ffa400;
}
body .themed.a3 .side-menu .search input {
  background-color: #2a333b;
  color: rgba(255, 255, 255, 0.75);
}
body .themed.a3 .sub-menu-slide {
  background-color: #464e58;
  color: #edf0f2;
}
body .themed.a3 .sub-menu-slide header {
  border-bottom-color: #333;
  background-color: #d0d3d5;
  color: #333c48;
}
body .themed.a3 .sub-menu-slide .sub-menu li {
  border-bottom-color: #333;
}
body .themed.a3 .sub-menu-slide .sub-menu li a {
  color: #edf0f2;
}
body .themed.a3 .sub-menu-slide .sub-menu li a:hover,
body .themed.a3 .sub-menu-slide .sub-menu li a:focus {
  background-color: #2a333b;
}
body .themed.a3.side-menu-collapsed .side-menu ul > li.current > a {
  padding-left: 5px;
}
/* header */
.nav-tabs {
  border: 0;
  margin-top: 10px;
}
.nav-tabs li a {
  border-radius: 0;
}
.nav-tabs li.active a {
  font-weight: normal;
}
.nav-tabs li.active a:focus {
  outline: none;
}
.nav-tabs > li > a {
  border: 0;
}
.tab-header {
  overflow: auto;
  zoom: 1;
}
.tab-header .tab-section {
  padding: 10px 8px;
  float: left;
}
.tab-header .tab-section.on {
  font-weight: bold;
}
/* main tab container */
.tab-pane {
  width: 100%;
  padding: 12px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  min-height: 150px;
}
.tab-pane table {
  text-align: left;
}
/* buttons */
.tabs ~ button,
.tabs ~ input[type=submit] {
  margin: 20px 0 20px 5px;
}
.tab-pane button:last-child,
.tab-pane input[type=button]:last-child,
.tab-pane input[type=submit]:last-child {
  margin-bottom: 0;
}
/* area above tabs */
.tabs.above .body {
  padding: 0 0 0 0;
  text-align: left;
}
/* tab heading buttons */
.nav-tabs li a button i {
  margin: 0;
}
.nav-tabs li a button {
  padding: 2px 5px;
  margin-left: 5px;
}
/* sections in tabs */
.tab-pane section.above {
  padding-top: 0;
}
/* loading mask in tab-pane */
.tabs .tab-pane .busy-indicator-default-sign {
  top: 47px;
}
.tabs .tab-pane .busy-indicator-backdrop {
  display: none;
}
ul.nav.nav-tabs.nav-justified {
  border-bottom: none;
}
.nav-tabs.nav-justified > li > a {
  border-radius: 0;
}
ul.nav.nav-tabs.nav-justified > li:last-of-type > a {
  border-right: none;
}
div.wizard.disabled-tabs > ul.nav-tabs::before {
  content: '';
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  z-index: 1002;
}
div.wizard.disabled-tabs > ul.nav-tabs {
  position: relative;
}
div.wizard > ul li a::before {
  content: counter(wizard-step);
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #ebebeb;
  border-radius: 30px;
  top: -15px;
  left: calc(50% - 12px);
  z-index: 2;
  counter-increment: wizard-step;
  font-size: 11px;
  border: 2px solid #AAA;
  color: white;
  padding: 3px;
  font-weight: bold;
}
div.wizard > ul li a::after {
  content: '';
  position: absolute;
  background-color: #ebebeb;
  height: 2px;
  left: 0;
  top: -2px;
  width: 100%;
  left: -50%;
  z-index: 1;
}
div.wizard > ul li:first-of-type a::after {
  width: 0px;
}
div.wizard > ul.nav-tabs {
  border: none;
  background-color: transparent;
  counter-reset: wizard-step;
}
div.wizard > ul.nav-tabs > li.active > a {
  border: none;
  background-color: transparent;
}
div.wizard > ul.nav-tabs > li.active > a:hover {
  border: none;
  background-color: transparent;
}
div.wizard > ul.nav-tabs > li.active > a:focus {
  border: none;
  background-color: transparent;
}
div.wizard > ul.nav-tabs > li:first-of-type > a {
  border-left: none;
}
div.wizard > ul.nav-tabs > li > a {
  border: none;
}
div.wizard > ul.nav-tabs > li > a:hover {
  border: none;
  background-color: transparent;
}
div.wizard.transparent > .tab-content > .tab-pane {
  background: transparent;
  padding: 0;
}
ul.vertical-tab-nav {
  padding: 10px 0 0 10px;
  list-style: none;
  margin-right: 20px;
  margin-top: 10px;
  margin-bottom: 0;
  border-radius: 2px;
}
ul.vertical-tab-nav li.heading {
  margin-left: 10px;
  margin-right: 10px;
}
ul.vertical-tab-nav li.heading:not(:first-child) {
  margin-top: 20px;
}
ul.vertical-tab-nav li {
  margin-bottom: 5px;
}
ul.vertical-tab-nav li a {
  padding: 5px 10px;
  display: inline-block;
  width: 100%;
  border-right: 5px solid transparent;
  text-decoration: none;
}
body .themed.a3 {
  /* header */
  /* main tab container */
}
body .themed.a3 .nav-tabs li a {
  color: #333;
}
body .themed.a3 .nav-tabs li.active a {
  background-color: #d0d3d5;
}
body .themed.a3 .nav-tabs li.active a:focus {
  background-color: #d0d3d5;
}
body .themed.a3 .nav-tabs li.active a:hover {
  background-color: #d0d3d5;
}
body .themed.a3 .tab-header .tab-section.on {
  background: #d0d3d5;
}
body .themed.a3 .tab-pane {
  background: #d0d3d5;
}
body .themed.a3 .tabs.above {
  background-color: transparent;
}
body .themed.a3 div.wizard ul li a::before {
  background-color: #ffa400;
}
body .themed.a3 div.wizard ul li a::after {
  background-color: #ffa400;
}
body .themed.a3 div.wizard ul li.active ~ li a::after {
  background-color: #ccc;
}
body .themed.a3 div.wizard ul li.active ~ li a::before {
  background-color: #ccc;
}
body .themed.a3 ul.vertical-tab-nav {
  background: white;
}
body .themed.a3 ul.vertical-tab-nav li a {
  color: #333;
}
body .themed.a3 ul.vertical-tab-nav li a:hover,
body .themed.a3 ul.vertical-tab-nav li.active a {
  border-right-color: #ffa400;
  color: #ffa400;
  background-color: #333c48;
}
body .themed.a3 ul.vertical-tab-nav li.heading {
  color: #ffa400;
  font-weight: bold;
  border-bottom: 1px solid #DDD;
}
body .themed {
  /* uib-dropdown menu */
}
body .themed .dropdown:not(.flex) {
  display: inline-block;
}
body .themed .dropdown.actions.v-center {
  display: flex;
}
body .themed .dropdown-menu {
  border-radius: 2px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.175);
  padding: 5px 0;
}
body .themed .scrollbar.dropdown-menu ul {
  padding: 0;
}
body .themed .scrollbar.dropdown-menu ul {
  list-style: none;
  margin-bottom: 0;
}
body .themed .scrollbar.dropdown-menu {
  max-height: 325px;
}
body .themed .dropdown-menu ul {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}
body .themed .dropdown-menu > li > a,
body .themed .dropdown-menu > .scroller li > a,
body .themed .dropdown-menu .list-group > li > a {
  display: block;
  clear: both;
  line-height: 1.42857143;
  white-space: nowrap;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
body .themed .dropdown-menu > li > a .grab-handle,
body .themed .dropdown-menu > .scroller li > a .grab-handle,
body .themed .dropdown-menu .list-group > li > a .grab-handle {
  cursor: move;
}
body .themed .scrollbar.dropdown-menu ul > li,
body .themed .dropdown-menu > li,
body .themed .dropdown-menu > .scroller li,
body .themed .dropdown-menu > ul > .list-group > li {
  white-space: nowrap;
}
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > a,
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > button,
body .themed .dropdown-menu > li:not(.button-row) > a,
body .themed .dropdown-menu > li:not(.button-row) > button,
body .themed .dropdown-menu > .scroller li:not(.button-row) > a,
body .themed .dropdown-menu > .scroller li:not(.button-row) > span,
body .themed .dropdown-menu > .scroller li:not(.button-row) > button,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > a,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > button {
  padding: 5px 10px 5px 10px;
  background-color: #ffffff;
  color: #333;
  text-decoration: none;
  text-align: left;
  border-right: 5px solid;
  box-shadow: none;
  width: 100%;
  font-weight: normal;
  font-size: 14px;
  height: 30px;
}
body .themed .dropdown-menu > li:not(.button-row) > a > i.clickable,
body .themed .dropdown-menu > li:not(.button-row) > button > i.clickable,
body .themed .dropdown-menu > .scroller li:not(.button-row) > a > i.clickable,
body .themed .dropdown-menu > .scroller li:not(.button-row) > button > i.clickable,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > a i.clickable,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > button > i.clickable {
  margin-right: 0;
  padding-right: 20px;
  margin-left: -10px;
  padding-left: 13px;
}
body .themed .scrollbar.sortable.dropdown-menu ul > li:not(.button-row) > button,
body .themed .scrollbar.sortable.dropdown-menu ul > li:not(.button-row) > a,
body .themed .sortable.dropdown-menu > li:not(.button-row) > button,
body .themed .sortable.dropdown-menu > li:not(.button-row) > a,
body .themed .sortable.dropdown-menu > .scroller li:not(.button-row) > button,
body .themed .sortable.dropdown-menu > .scroller li:not(.button-row) > a,
body .themed .sortable.dropdown-menu > .list-group > li:not(.button-row) > button,
body .themed .sortable.dropdown-menu > .list-group > li:not(.button-row) > a {
  width: calc(100% - 27px);
}
body .themed .dropdown .scrollbar.dropdown-menu ul li.button-row a,
body .themed .dropdown .dropdown-menu li.button-row a {
  padding: 0;
}
body .themed .dropdown .scrollbar .dropdown-menu ul li.button-row a:hover,
body .themed .dropdown .dropdown-menu li.button-row a:hover {
  background-color: transparent;
}
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > a > i,
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > button > i,
body .themed .dropdown-menu > li:not(.button-row) > a > i,
body .themed .dropdown-menu > li:not(.button-row) > button > i,
body .themed .dropdown-menu > .scroller li:not(.button-row) > a > i,
body .themed .dropdown-menu > .scroller li:not(.button-row) > button > i,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > a > i,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > button > i {
  margin-right: 10px;
  width: 10px;
  display: inline-block;
}
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > a:hover,
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > button:hover,
body .themed .dropdown-menu > li:not(.button-row) > a:hover,
body .themed .dropdown-menu > li:not(.button-row) > button:hover,
body .themed .dropdown.scrollable .dropdown-menu > .scroller li:not(.button-row) > a:hover,
body .themed .dropdown.scrollable .dropdown-menu > .scroller li:not(.button-row) > button:hover,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > a:hover,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > button:hover {
  border-right: 5px solid #ffa400;
  color: #ffa400;
  background-color: #333c48;
  border-color: #ffa400;
  border-radius: 0;
}
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > a span,
body .themed .scrollbar.dropdown-menu ul > li:not(.button-row) > button span,
body .themed .dropdown-menu > li:not(.button-row) > a span,
body .themed .dropdown-menu > li:not(.button-row) > button span,
body .themed .dropdown-menu > .scroller li:not(.button-row) > a span,
body .themed .dropdown-menu > .scroller li:not(.button-row) > button span,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > a span,
body .themed .dropdown-menu > .list-group > li:not(.button-row) > button span {
  margin-left: 0;
}
body .themed .dropdown-menu .divider {
  margin: 5px 8px;
}
body .themed [dropdown] a:hover {
  text-decoration: none;
}
body .themed .scrollbar.dropdown-menu ul > li.input-field-row,
body .themed .dropdown-menu > li.input-field-row,
body .themed .dropdown-menu > .scroller li.input-field-row,
body .themed .dropdown-menu ul > li.input-field-row {
  margin: 4px 8px 12px 8px;
}
body .themed .dropdown-menu .input-field-row .field-wrapper {
  margin-top: unset;
  flex: 1;
}
body .themed .dropdown-menu .input-field-row .between-label {
  margin: auto 8px;
  font-size: 75%;
}
body .themed .dropdown-menu .input-field-row .field-wrapper + .dropdown-menu .input-field-row .field-wrapper {
  margin-left: 8px;
}
body .themed .dropdown-menu .button-row {
  display: flex;
  margin-top: 4px;
  padding: 8px;
  margin-left: auto;
  max-width: 260px;
}
body .themed .dropdown-menu .button-row button,
body .themed .dropdown-menu .button-row a {
  flex: 1;
}
body .themed .dropdown-menu .input-field-row input[aa-field-group-strategy=date],
body .themed .dropdown-menu .input-field-row input[aa-field-group-strategy=dateString] {
  text-align: center;
}
body .themed .dropdown-menu .query-builder {
  min-width: 400px;
  display: block;
  padding: 20px;
}
body .themed .dropdown-menu .view-selection-button {
  display: flex !important;
}
body .themed .dropdown-menu .view-selection-button .view-shared-icon:not(.active) {
  opacity: 0;
}
body .themed .dropdown-menu .view-selection-button:hover .view-shared-icon {
  opacity: 1;
}
body .themed .dropdown.column-selection-dropdown ul .scroller {
  min-width: 250px;
  max-height: 50vh !important;
}
body .themed .dropdown.scrollable .dropdown-menu {
  padding-bottom: 0;
}
body .themed .dropdown .dropdown-menu .more-record-indicator {
  padding-top: 3px;
  text-align: center;
  font-size: 75%;
  opacity: 0;
}
body .themed .dropdown .dropdown-menu .more-record-indicator.active {
  opacity: 0.5;
}
body .themed .dropdown .dropdown-menu > li.dropdown-search-field {
  padding: 10px;
}
body .themed .dropdown .dropdown-menu .dropdown-search-field .field-wrapper {
  margin-top: 0;
}
body .themed.a3 .dropdown-menu .view-selection-button .view-shared-icon {
  color: #9aa1a7;
}
body .themed.a3 .dropdown-menu .view-selection-button .view-shared-icon.active {
  color: #5b9840;
}
body .themed.a3 .dropdown .dropdown-menu > li,
body .themed.a3 .dropdown .dropdown-menu > li a,
body .themed.a3 .dropdown .dropdown-menu > li button,
body .themed.a3 .dropdown .dropdown-menu > li > i,
body .themed.a3 .dropdown .dropdown-menu > li > i,
body .themed.a3 .dropdown.scrollable .dropdown-menu .scroller li,
body .themed.a3 .dropdown.scrollable .dropdown-menu .scroller li a,
body .themed.a3 .dropdown.scrollable .dropdown-menu .scroller li span,
body .themed.a3 .dropdown .dropdown-menu .list-group li,
body .themed.a3 .dropdown .dropdown-menu .list-group li a {
  color: #333;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-color: transparent;
}
body .themed.a3 .dropdown .dropdown-menu > li a:hover,
body .themed.a3 .dropdown .dropdown-menu > li button:hover,
body .themed.a3 .dropdown.scrollable .dropdown-menu .scroller li a:hover,
body .themed.a3 .dropdown.scrollable .dropdown-menu .scroller li a:hover span,
body .themed.a3 .dropdown .dropdown-menu .list-group li a:hover {
  color: #ffa400;
  border-color: #ffa400;
}
body .themed.a3 .dropdown .dropdown-menu > li.divider,
body .themed.a3 .dropdown .dropdown-menu > .scroller li.divider {
  background-color: #E5E5E5;
}
@media (max-height: 650px) {
  body .themed .dropdown.column-selection-dropdown ul .scroller {
    max-height: 35vh !important;
  }
}
/* table */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}
table thead tr th {
  white-space: nowrap;
  font-weight: normal;
}
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td {
  padding: 5px 10px;
  vertical-align: middle;
}
table > tbody + tbody {
  border: none;
}
/* nested table */
table table {
  border-width: 0px;
  border-style: solid;
}
/* table icons */
table i {
  margin-right: 4px;
}
table tr > th i[class*='fa-sort'] {
  font-size: 85%;
}
/* table controls */
table button,
table a.button {
  padding: 3px 15px;
  font-size: 11px;
  margin: 0;
  border-left-width: 1px;
  border-left-style: solid;
  border-radius: 0;
}
table button:first-child,
table .button:first-child {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
  border-left: none;
}
table button:last-child,
table .button:last-child {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
table th button > i.fa,
table th a.button > i.fa,
table td button > i.fa,
table td a.button > i.fa,
table td span button > i.fa,
table td span a.button > i.fa {
  margin: 0;
}
table thead tr th button {
  box-shadow: none;
  font-size: inherit;
  padding: 0;
}
table td.fit-content,
table th.fit-content {
  white-space: nowrap;
  width: 1%;
  text-align: center;
}
table td.fit-content.text-left,
table th.fit-content.text-left {
  text-align: left;
}
table td.fit-content.text-right,
table th.fit-content.text-right {
  text-align: right;
}
table td.button-column {
  white-space: nowrap;
  width: 1%;
  font-size: 0;
}
table td.button-column > button:not(:last-of-type),
table td.button-column > a:not(:last-of-type) {
  margin-right: -4px;
}
.table-search-field,
.table-search-field.no-label {
  margin-top: 0;
  margin-right: 10px;
  min-width: 400px;
}
/* no records */
tr.noRecords {
  text-align: center;
}
tr.noRecords span {
  margin-top: 20px;
  font-size: 18px;
  display: inline-block;
}
tr.noRecords p {
  margin-bottom: 20px;
  display: block;
}
.dropzone + table {
  margin-top: 20px;
}
.date-column {
  text-align: center;
  width: 1px;
  white-space: nowrap;
}
.money-column {
  text-align: center;
  width: 1px;
  white-space: nowrap;
}
.bond-number-column {
  text-align: center;
  width: 1px;
  white-space: nowrap;
}
td.thumbnail-group span {
  display: inline-block;
  height: 30px;
  width: 30px;
}
td.thumbnail-group span img {
  display: inline;
  width: 100%;
}
td.carriers-thumbnails img {
  opacity: 0.15;
}
td.carriers-thumbnails img.on {
  opacity: 0.95;
}
table .check-column {
  text-align: center;
  width: 100px;
}
table .check-column .checkbox {
  min-height: unset;
}
table .check-column .checkbox input {
  float: unset;
}
table tr.clickable-table-row td {
  cursor: pointer;
}
table tr.table-details-row > tr:last-of-type td {
  border-width: 0;
}
table tr.table-details-row .bond-grid-details-row {
  border-width: 1px 0 0 0;
  border-style: solid;
  width: 100%;
  display: inline-block;
  padding: 5px 0;
}
table .logo-cell {
  padding: 0 0 0 5px;
}
table .logo-cell img {
  height: 35px;
  width: 35px;
  padding: 3px;
  background-color: white;
  border: 1px solid #ccc;
}
@media (max-width: 1366px) {
  table > thead > tr > th,
  table > tbody > tr > th,
  table > tfoot > tr > th,
  table > thead > tr > td,
  table > tbody > tr > td,
  table > tfoot > tr > td {
    padding: 8px;
  }
}
table.v-align-middle td,
table.v-align-middle th {
  vertical-align: middle !important;
}
table tr.cursor-pointer {
  cursor: pointer;
}
table td.grab-handle {
  cursor: move;
  padding-right: 0;
  width: 4px;
}
table .table-sortable-fallback {
  display: none;
}
table tr th.sortable-chosen,
table .sortable-chosen td {
  background-color: darkseagreen !important;
}
table th.expand-indicator-column,
table td.expand-indicator-column {
  width: 10px;
  text-align: center;
}
table th.row-select-column,
table td.row-select-column {
  width: 0.05%;
  text-align: center;
  vertical-align: middle;
}
table th.row-select-column .field-wrapper,
table td.row-select-column .field-wrapper {
  min-height: auto;
  margin: 0;
}
table th.row-select-column .field-wrapper input,
table td.row-select-column .field-wrapper input {
  margin: 0;
}
table:not(.group-by-tbody) > tbody > tr:not(.table-details-row):not(:last-of-type) > td {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
table.group-by-tbody > tbody > tr > td {
  border-bottom-width: 0;
}
table.group-by-tbody > tbody {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
table tr.no-row-border > td {
  border-bottom-color: transparent !important;
}
/* No stripes */
table.no-stripe > tr > td,
table.no-stripe > tbody > tr > td {
  background-color: transparent !important;
}
.email-preview > img {
  display: none;
}
table.form-table tr td .field-wrapper {
  margin: 0;
}
table.form-table tr td:first-of-type {
  width: 1%;
}
table.form-table tr td {
  background: transparent !important;
  vertical-align: text-bottom;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.orderable-column {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.orderable-column.grab-handle {
  cursor: move;
}
.orderable-column i.grab-handle {
  visibility: hidden;
}
.orderable-column:hover i.grab-handle {
  visibility: visible;
}
body .themed.a3 {
  /* Nested table */
  /* table stripes */
}
body .themed.a3 table table {
  border-color: #d0d3d5;
}
body .themed.a3 table thead tr th {
  background-color: #ededed;
  border-bottom-color: transparent;
}
body .themed.a3 table > tbody > tr > td {
  border-bottom-color: transparent;
}
body .themed.a3 table.group-by-tbody > tbody {
  border-bottom-color: #d0d3d5;
}
body .themed.a3 table thead tr th button {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #333;
}
body .themed.a3 table thead tr th button:hover {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #333;
}
body .themed.a3 table button,
body .themed.a3 table a.button {
  background: #ffa400;
  color: #333c48;
  border-left-color: #ededed;
  font-weight: 600;
}
body .themed.a3 table:not(.manual-stripe) > tbody > tr:nth-child(odd) > td,
body .themed.a3 table > tbody > tr:nth-child(odd) > th {
  background-color: #fafafa;
}
body .themed.a3 table:not(.manual-stripe) > tbody > tr:nth-child(even) > td,
body .themed.a3 table > tbody > tr:nth-child(even) > th {
  background-color: #ededed;
}
body .themed.a3 table.manual-stripe > tbody > tr > td {
  background-color: #ededed;
}
body .themed.a3 table.manual-stripe > tbody > tr.alt > td {
  background-color: #fafafa;
}
body .themed.a3 table.group-by-tbody > tbody:nth-of-type(even) > tr > td {
  background-color: #ededed;
}
body .themed.a3 table.group-by-tbody > tbody:nth-of-type(odd) > tr > td {
  background-color: #fafafa;
}
body .themed.a3 tr.noRecords span {
  text-shadow: 1px 1px 1px #ccc;
  color: #777;
}
body .themed.a3 table tr.table-details-row .bond-grid-details-row {
  border-color: #fafafa;
}
body .themed.a3 table tr.clickable-table-row:hover td.clickable-table-cell i {
  color: #ffa400;
}
body .themed.a3 table tr.alt.table-details-row .bond-grid-details-row {
  border-color: #ededed;
}
body .themed.a3 .hide-overflow > span > span > span {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 800px;
}
body .themed.a3 table .no-space {
  width: 1%;
  white-space: nowrap;
}
body .themed.a3 table tr td.table-row-status-critical {
  border-left: 1rem solid #e64a4a;
}
body .themed.a3 table tr td.table-row-status-warning {
  border-left: 1rem solid #fd4f00;
}
body .themed.a3 table tr td.table-row-status-attention {
  border-left: 1rem solid #ffa400;
}
body .themed.a3 .email-preview {
  border: 1px solid #ccc;
}
body .themed.a3 .email-preview table {
  border: none;
  background: white !important;
}
body .themed.a3 .email-preview table tr > td {
  background: white !important;
}
.list-pagination {
  margin-bottom: 20px;
}
.list-pagination:after {
  content: "";
  display: table;
  clear: both;
}
.list-pagination [class^="col-"] {
  padding: 0;
}
.list-pagination [class^="col-"]:first-of-type .dropdown > a {
  padding-left: 0;
}
.list-pagination [class^="col-"]:last-of-type {
  text-align: right;
}
.list-pagination .pagination {
  margin: 0;
}
.list-pagination .pagination a {
  border: none;
  padding: 8px 12px;
}
.list-pagination .records-per-page {
  margin: 0 10px 0 0;
}
.list-pagination .records-per-page > button {
  padding: 8px;
  font-weight: normal;
}
.list-pagination .records-per-page > button i {
  margin-right: 0;
}
.list-pagination .records-per-page .dropdown-menu {
  min-width: 0;
}
body .themed.a3 .list-pagination .pagination a {
  border: none;
  color: #777;
}
body .themed.a3 .list-pagination .pagination a:hover {
  color: #777;
}
body .themed.a3 .list-pagination .pagination > .active > a {
  background: #ffa400;
}
body .themed.a3 .list-pagination .records-per-page > button {
  background-color: #ffffff;
  color: #777;
}
.initial-state {
  color: #aaa;
  font-size: 14px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  text-align: center;
  border: 1px solid #ebebeb;
  background-color: #fff;
}
.initial-state.borderless {
  border: none;
}
.dashboard .initial-state {
  padding: 25px 20px;
}
.tab-pane .initial-state {
  background: #fafafa;
}
.initial-state.white,
.tab-pane .initial-state.white {
  background: #ffffff;
  border: 1px solid #f0f0f0;
}
.initial-state p {
  margin: 10px 0;
}
.initial-state .initial-state-body {
  margin: 0 auto;
  max-width: 450px;
  position: relative;
  z-index: 1;
}
.initial-state .icon {
  background: #d0d3d5;
  border-radius: 50%;
  color: #ffffff;
  height: 88px;
  margin: 0 auto 20px auto;
  text-align: center;
  width: 88px;
}
.initial-state .icon i {
  font-size: 50px;
  line-height: 88px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.initial-state .empty-backdrop {
  left: 0;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.initial-state .empty-backdrop-grad {
  background: -moz-linear-gradient(top, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(250, 250, 250, 0) 0%, #fafafa 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.dashboard .initial-state .empty-backdrop-grad {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.empty-state {
  color: #aaa;
  font-size: 14px;
  padding: 30px;
  text-align: center;
}
.dashboard .empty-state {
  padding: 25px 20px;
}
.empty-state i {
  line-height: 88px;
}
.empty-state i.fa-thumbs-o-up {
  color: #57a75b;
  font-size: 74px;
  margin-bottom: 20px;
}
input.amChartsButton {
  padding: 5px;
  font-weight: normal;
  font-size: 12px;
}
input.amChartsButtonSelected {
  padding: 5px;
  font-size: 12px;
}
input.amChartsInputField {
  background: #ededed;
  box-shadow: 1px 1px 1px #9aa1a7;
  border: 1px solid #ededed;
  border-radius: 0;
  box-sizing: border-box;
}
.amcharts-export-menu .export-main > a,
.amcharts-export-menu .export-drawing > a,
.amcharts-export-menu .export-delayed-capturing > a {
  height: 30px;
  width: 30px;
  margin-top: 55px;
}
.amcharts-pie-slice {
  transform: scale(1);
  transform-origin: 50% 50%;
  transition-duration: 0.3s;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  cursor: pointer;
  box-shadow: 0 0 30px 0 #000;
}
.amcharts-pie-slice:hover {
  transform: scale(1.1);
  filter: url(#shadow);
}
.query-builder-condition-set {
  width: fit-content;
  box-sizing: border-box;
  position: relative;
}
.query-builder-condition-set .query-builder-condition-set-pointer {
  border-top: 1px dashed #ededed;
  position: absolute;
  top: 1rem;
  left: -1rem;
  width: 1rem;
}
.query-builder-condition-set .query-builder-condition-container {
  display: flex;
  margin-left: 1rem;
  box-sizing: border-box;
  padding-top: 1rem;
  padding-bottom: 0;
  padding-right: 1rem;
  margin-top: 4px;
}
.query-builder-condition-set .query-builder-condition-container .query-builder-left-line {
  border-left: 1px dashed #ededed;
  margin-top: -10px;
  margin-bottom: 15px;
}
.query-builder-condition-set .query-builder-condition-container .query-builder-condition {
  position: relative;
  display: flex;
  height: 3rem;
  margin-top: 1rem;
  margin-left: 1rem;
  box-sizing: border-box;
  width: calc(100% - 1rem);
}
.query-builder-condition-set .query-builder-condition-container .query-builder-condition > span {
  margin-top: auto;
  margin-bottom: auto;
}
.query-builder-condition-set .query-builder-condition-container .query-builder-condition:first-of-type {
  margin-top: 0;
}
.query-builder-condition-set .query-builder-condition-container .query-builder-add-buttons {
  position: relative;
  display: flex;
  height: 3rem;
  margin-top: 1rem;
  margin-left: 1rem;
  box-sizing: border-box;
  width: calc(100% - 1rem);
}
.query-builder-condition-set .query-builder-condition-container .query-builder-condition-pointer {
  border-top: 1px dashed #ededed;
  position: absolute;
  top: 1.5rem;
  left: -1rem;
  width: 1rem;
}
.query-builder-condition-set .query-builder-condition-set {
  margin-top: 1rem;
  margin-left: 1rem;
}
.add-condition-button {
  margin-left: 0.25rem;
  margin-top: 0.25rem;
}
.query-builder-condition-set .query-builder-plus-button {
  margin-top: 4px;
  padding: 4px;
  font-size: 10px;
  line-height: 9px;
  border-radius: 2px;
}
.query-builder-condition-set .query-builder-condition .property-select-field {
  min-width: 180px;
}
.query-builder-condition-set .query-builder-condition .operator-select-field {
  min-width: 115px;
}
.query-builder-condition-set .query-builder-condition .value-input-field {
  min-width: 100px;
}
body .themed.a3 .query-builder-condition-set .query-builder-condition-set-pointer,
body .themed.a3 .query-builder-condition-set .query-builder-condition-container .query-builder-condition-pointer {
  border-top-color: #B8BEC1;
}
body .themed.a3 .query-builder-condition-set .query-builder-condition-container .query-builder-left-line {
  border-left-color: #B8BEC1;
}
/* mods */
/* login container */
body > .main-view > .a-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
body .main-view .a-container {
  /* login background */
  /* login message*/
  /* login box */
}
body .main-view .a-container .a-background {
  width: 100%;
  height: 100%;
  background-color: #333c48;
}
body .main-view .a-container .a-message {
  width: 480px;
  margin-bottom: 165px;
  margin-left: -240px;
  padding: 6px;
  position: absolute;
  left: 50%;
  bottom: 55%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 2px;
  background: #ffa400;
  color: #fff;
}
body .main-view .a-container .a-box {
  width: 400px;
  /*height:166px;*/
  margin-top: -145px;
  margin-left: -200px;
  padding: 20px;
  position: absolute;
  top: 45%;
  left: 50%;
  border-radius: 2px;
  background: rgba(51, 60, 72, 0.8);
}
body .main-view .a-container .a-box p {
  margin-bottom: 17px;
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  color: #fff;
}
body .main-view .a-container .a-box img {
  width: 75px;
  margin: 0 auto 20px;
  display: block;
}
body .main-view .a-container .a-box input[type=email],
body .main-view .a-container .a-box input[type=password],
body .main-view .a-container .a-box input[type=email]:focus,
body .main-view .a-container .a-box input[type=password]:focus {
  width: 100%;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-radius: 2px;
  background: #fff;
}
body .main-view .a-container .a-box input[type=submit] {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-size: 15px !important;
  border: none;
  background: linear-gradient(#ffd28e, #ffbb56);
  color: #fff;
}
body .main-view .a-container .a-box input[type=button] {
  padding-right: 0;
  padding-top: 0;
  float: right;
  line-height: 10px;
  font-size: 12px !important;
  border: none;
  background: none;
  color: #ffa403;
}
body .main-view .a-container .a-box .button-container {
  width: 100%;
}
body .main-view .a-container .a-box .button-container .btn {
  width: 49%;
  float: left;
}
body .main-view .a-container .a-box .button-container input {
  padding: 6px;
  font-size: 15px !important;
  line-height: 21px;
  border: none;
  border-radius: 2px;
  background: linear-gradient(#ffd28e, #ffbb56);
  color: #fff;
}
body .main-view .a-container .a-box .button-container input:first-of-type {
  margin-right: 1%;
}
body .main-view .a-container .a-box .button-container input:last-of-type {
  margin-left: 1%;
}
body .main-view .a-container .a-box .btn {
  box-shadow: none;
}
body .main-view .a-container .a-box input.error {
  border: 2px solid #e64a4a;
}
body .main-view .a-container .a-box.user-selection {
  color: #D3D7D9;
  width: 600px;
  margin-left: -300px;
  top: 0;
  margin-top: 0;
  padding-top: 4rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
}
body .main-view .a-container .a-box.user-selection h3 {
  border-bottom: 1px solid;
  padding-bottom: 2rem;
}
body .main-view .a-container .a-box.user-selection .user-selection-choices {
  overflow: auto;
}
body .main-view .a-container .a-box.user-selection .user-choice {
  cursor: pointer;
  padding: 1rem;
}
body .main-view .a-container .a-box.user-selection .user-choice:hover {
  background-color: #3A4552;
}
body .main-view .a-container .a-box.user-selection .user-choice img {
  width: 40px;
  height: 40px;
}
body .main-view .a-container .heading-message {
  font-size: 16px !important;
}
body .main-view .a-container .code-digit-input-wrapper {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
}
body .main-view .a-container .code-digit-input {
  height: 40px;
  font-size: 20px !important;
  text-align: center;
  border-radius: 8px !important;
  width: 36px !important;
}
body .main-view .a-container .code-digit-input + .code-digit-input {
  margin-left: 8px;
}
body .main-view .a-container .code-digit-input:first-of-type {
  margin-left: auto;
}
body .main-view .a-container .code-digit-input:last-of-type {
  margin-right: auto;
}
body .main-view .a-container .text-orange {
  color: #ffa403;
}
body .main-view .a-container .text-white {
  color: #fff;
}
/* footer */
.a-footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  background-color: #333c48;
}
.a-footer ul {
  margin: 15px 0;
  text-align: center;
  list-style: none;
}
.a-footer ul li {
  margin-right: 50px;
  display: inline-block;
  color: #fff;
}
/* Terms and Conditions */
.terms-and-conditions h1 {
  text-align: center;
}
.terms-and-conditions h2 {
  text-align: center;
  margin-top: 30px;
}
.terms-and-conditions h2:first-of-type {
  margin-top: 0;
}
.terms-and-conditions h3 {
  font-weight: bold;
  margin-bottom: 0;
}
.terms-and-conditions dt {
  width: 50px;
  float: left;
  margin-left: 25px;
}
.terms-and-conditions dd {
  float: left;
  margin: 0;
  display: block;
  width: calc(100% - 75px);
}
.payment-history-table {
  font-size: x-small;
}
.payment-history-table-year {
  color: #333c48;
  margin-right: 10px;
  margin-left: 2px;
  text-align: left;
}
.payment-history-table tr td {
  width: 7.69%;
  text-align: center;
  padding: 3px;
}
.payment-history-table td span {
  padding: 3px;
  font-weight: bold;
}
.payment-history-two {
  background-color: yellow;
}
.payment-history-three {
  background-color: orange;
  color: white;
}
.payment-history-four {
  background-color: orangered;
  color: white;
}
.payment-history-greater-than-four {
  background-color: red;
}
.payment-history-collection {
  background-color: red;
  color: white;
}
.payment-history-thirteen {
  background-color: black;
  color: white;
}
.payment-history-repossession {
  background-color: red;
  color: white;
}
.payment-history-charge-off {
  background-color: yellow;
}
.payment-history-ok {
  background-color: green;
  color: white;
}
body .themed {
  /* adds padding around content only and not scrollbar divs */
  /* widget border colors */
  /* stats */
  /* responsive */
}
body .themed .dashboard .dashboard-auto-dashboard-dropdown {
  min-width: 130px;
}
body .themed .dashboard-widget-wrapper {
  position: absolute;
  width: 100%;
}
body .themed .dashboard-widget-wrapper > div {
  display: box;
  display: flexbox;
  display: flex;
  flex-flow: column;
  height: 100%;
  width: 100%;
}
body .themed .dashboard .gridster {
  margin: 0 10px;
}
body .themed .gridster-item {
  border: 1px solid #ededed;
  border-radius: 2px;
  padding-top: 2px;
}
body .themed .gridster-item .dashboard-widget-header {
  height: 3.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  cursor: move;
  width: 100%;
  display: flex;
}
body .themed .gridster-item .dashboard-widget-header h2 {
  font-size: 14px;
  font-weight: bold;
  margin: auto 0;
  padding: 0px 10px;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options {
  margin-left: auto;
  display: none;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options .dropdown {
  display: flex;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options .dropdown > button,
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options > button {
  padding: 0.5rem;
  background: #ffffff;
  border-radius: 0;
  box-shadow: none;
  color: #d9d9d9;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options .dropdown button span {
  display: inline-block;
  font-weight: normal;
  margin-left: 0;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options .dropdown.open button {
  color: #333;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options .dropdown .tooltip-inner {
  min-width: 60px;
  width: auto;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button:hover {
  color: #777;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button + button {
  margin: 0;
}
body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button i {
  margin: 0;
}
body .themed .gridster-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
  z-index: 10;
}
body .themed .gridster .gridster-item:hover .handle-se {
  background: url(../../img/resize_handle.png) 100% 100% no-repeat;
  border: 0;
  bottom: 2px;
  height: 12px;
  width: 12px;
}
body .themed .gridster-item:hover .dashboard-widget-header .dashboard-widget-hover-options {
  display: flex;
  padding-right: 0.5rem;
}
body .themed .gridster-item .dashboard-widget-body {
  align-self: stretch;
  flex: 1;
  order: 2;
  position: relative;
  width: 100%;
}
body .themed .gridster-item .dashboard-widget-body > div {
  height: 100%;
  padding: 10px 10px 5px 10px;
  position: absolute;
  width: 100%;
}
body .themed .gridster-item .dashboard-widget-body .standard-widget {
  height: 100%;
}
body .themed .gridster-item .dashboard-widget-body .standard-widget .list-wrapper.scroller {
  height: calc(100% - 70px);
}
body .themed .gridster-item .dashboard-widget-body > div .meta-bar + .scroller {
  height: calc(100% - 14px);
}
body .themed .gridster-item .dashboard-widget-body > div .scroller.no-results {
  height: calc(100% - 20px);
  top: 20px;
  z-index: 0;
}
body .themed .gridster-item .dashboard-widget-body .widget-body-content {
  height: 100%;
}
body .themed .gridster-item-resizable-handler:not(.handle-se) {
  cursor: default;
  pointer-events: none;
}
body .themed .dashboard-widget-picker {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  height: 425px;
  overflow: hidden;
}
body .themed .dashboard-widget-picker > div {
  margin: 0;
}
body .themed .dashboard-widget-pane {
  height: 100%;
  padding: 0;
}
body .themed .dashboard-widget-pane .scroller > div:first-child {
  padding: 0 15px 15px;
}
body .themed .dashboard-widget-pane h5 {
  color: inherit;
}
body .themed .dashboard-widgets-list {
  background: rgba(0, 0, 0, 0.15);
  height: 100%;
  padding: 0 1px 0 0;
}
body .themed .dashboard-widgets-list .panel-group {
  margin: 0;
}
body .themed .dashboard-widgets-list .panel {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 1px;
  overflow: initial;
}
body .themed .dashboard-widgets-list .panel-group .panel + .panel {
  margin: 0 0 1px 0;
}
body .themed .dashboard-widgets-list .panel > .panel-heading {
  background: #ffffff;
  border: 0;
  border-radius: 0;
  color: #333;
  font-size: 15px;
  height: 56px;
  padding: 0;
}
body .themed .dashboard-widgets-list .panel > .panel-heading h4 {
  display: block;
  font-weight: bold;
  line-height: 56px;
}
body .themed .dashboard-widgets-list .panel > .panel-heading h4 a {
  display: block;
  padding: 0 20px;
  position: relative;
  text-decoration: none;
}
body .themed .dashboard-widgets-list .panel > .panel-heading h4 a i {
  box-shadow: none;
  float: right;
  line-height: 56px;
}
body .themed .dashboard-widgets-list .panel > .panel-heading h4 a em {
  font-style: normal;
  font-weight: normal;
}
body .themed .dashboard-widgets-list .panel > .panel-heading h4 a:hover,
body .themed .db-widgets-list .panel > .panel-heading h4 a:focus {
  text-decoration: none;
}
body .themed .dashboard-widgets-list .panel > .panel-heading + .panel-collapse .panel-body {
  background: transparent;
  border: 0;
  padding: 6px 4px;
}
body .themed .dashboard-widgets-list .panel-body button {
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: none;
  color: #333;
  font-size: 13px;
  font-weight: normal;
  line-height: 1em;
  margin: 2px 0;
  padding: 12px 15px;
  position: relative;
  text-align: left;
  width: 100%;
}
body .themed .dashboard-widgets-list .panel-body button small {
  color: #9aa1a7;
  font-size: 12px;
}
body .themed .dashboard-widgets-list .panel-body button + button {
  margin-left: 0;
}
body .themed .dashboard-widgets-list .panel-body button img {
  height: 32px;
  width: 32px;
}
body .themed .dashboard-widgets-list .panel-body button i {
  color: #9aa1a7;
  display: inline-block;
  font-size: 24px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  width: 32px;
}
body .themed .dashboard-widgets-list .panel-body button span {
  display: inline-block;
  vertical-align: middle;
}
body .themed .dashboard-widgets-list .panel-body button.active {
  border-color: #ffa400;
}
body .themed .dashboard-widget-pane h3 {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}
body .themed .dashboard-widget-pane img {
  display: block;
  margin: 15px auto 30px auto;
}
body .themed .dashboard-widget-pane .tag-container {
  margin: 30px 0 15px 0;
}
body .themed .dashboard-widget-wrapper table > thead > tr > th,
body .themed .dashboard-widget-wrapper table > tbody > tr > td {
  padding: 5px;
}
body .themed .dashboard-widget-wrapper .list-pagination {
  margin-bottom: 8px;
  order: 3;
  padding: 0;
}
body .themed .dashboard-widget-wrapper .list-pagination .records-per-page {
  margin: 0 3px 0 0;
}
body .themed .dashboard-widget-wrapper .list-pagination .records-per-page > button {
  padding: 5px;
}
body .themed .dashboard-widget-wrapper .list-pagination .pagination a {
  padding: 5px 10px;
}
body .themed .meta-bar {
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
body .themed .meta-bar .field-wrapper {
  margin-top: 0px;
}
body .themed .meta-bar .filter-btn {
  float: right;
  margin-left: 10px;
}
body .themed .meta-bar > div[class*="col-"]:first-of-type,
body .themed .meta-bar form > div[class*="col-"]:first-of-type {
  padding-left: 8px;
}
body .themed .meta-bar > div[class*="col-"].empty-input.select:first-of-type div.label,
body .themed .meta-bar form > div[class*="col-"].empty-input.select:first-of-type div.label {
  left: 7px;
}
body .themed .meta-bar > div[class*="col-"]:last-of-type,
body .themed .meta-bar form > div[class*="col-"]:last-of-type {
  padding-right: 8px;
}
body .themed .column-selector-dropdown.dropdown.open .dropdown-menu {
  display: flex;
}
body .themed .column-selector-dropdown.dropdown .dropdown-menu {
  min-width: 360px;
  flex-wrap: wrap;
}
body .themed .column-selector-dropdown.dropdown .dropdown-menu .column-selection-item {
  width: 50%;
  padding: 0 8px;
}
body .themed .column-selector-dropdown.dropdown .dropdown-menu .column-selection-item .field-wrapper {
  margin: 0;
  min-height: auto;
}
body .themed .column-selector-dropdown.dropdown .dropdown-menu .footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 10px;
  padding: 10px 10px 5px 10px;
  display: flex;
  width: 100%;
}
body .themed .column-selector-dropdown.dropdown .dropdown-menu .footer button:first-of-type {
  margin-left: auto;
}
body .themed .dropdown.filter-btn .dropdown-menu {
  min-width: 200px;
}
body .themed .dropdown.filter-btn ul.filters {
  font-size: 12px;
  list-style: none;
  padding: 5px 0;
}
body .themed .dropdown.filter-btn ul.filters li .tag-button-wrapper {
  padding: 5px 10px 0 10px;
  display: inline-block;
  width: 100%;
}
body .themed .dropdown.filter-btn ul.filters li .tag-button {
  display: inline-block;
  margin-bottom: 2px;
  margin-right: 0;
  padding: 3px 5px;
  width: 100%;
}
body .themed .dropdown.filter-btn ul.filters li .tag-button i.fa-times {
  margin-top: 2px;
  float: right;
}
body .themed .dropdown.filter-btn ul.filters li .tag-button > span {
  margin-right: 5px;
}
body .themed .dropdown.filter-btn ul.filters li .no-filters-indicator {
  padding: 10px 10px 0 10px;
  display: inline-block;
  width: 100%;
  text-align: center;
}
body .themed .gridster-item .chart-widget .dashboard-widget-body > div {
  padding: 8px;
}
body .themed .gridster-item .chart-widget .chart-div {
  height: 100%;
  width: 100%;
}
body .themed .gridster-item .chart-widget .meta-bar {
  margin-bottom: 5px;
  padding-bottom: 5px;
}
body .themed .gridster-item .chart-widget .meta-bar + .chart-div {
  height: calc(100% - 42px);
}
body .themed .gridster-item .chart-widget .amChartsPeriodSelector div:first-of-type {
  display: none !important;
}
body .themed .gridster-item .value-widget .dashboard-widget-header {
  border-color: transparent;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: none;
  position: absolute;
  z-index: 10;
}
body .themed .gridster-item:hover .value-widget .dashboard-widget-header {
  display: block;
}
body .themed .gridster-item .value-widget .dashboard-widget-body > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15%;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .label-wrapper {
  height: 32px;
  position: relative;
  z-index: 2;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .label-wrapper h3 {
  background: #ffffff;
  bottom: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 16px;
  margin: -3px;
  padding: 3px;
  position: absolute;
  width: 100%;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .label-wrapper h3 i {
  color: #aaa;
  display: none;
}
body .themed .gridster-item .value-widget:hover .dashboard-widget-body .label-wrapper {
  z-index: 3;
}
body .themed .gridster-item .value-widget .dashboard-widget-body a {
  font-size: 12px;
  margin: 6px 0 0 0;
}
body .themed .gridster-item .value-widget .dropdown a {
  text-transform: capitalize;
  margin: 0;
}
body .themed .gridster-item .value-widget .editable-wrap {
  position: absolute;
  top: -29px;
  white-space: normal;
  width: 100%;
}
body .themed .gridster-item .value-widget .editable-controls {
  display: block;
  margin: 0 -10px;
  width: calc(100% + 20px);
  height: 20px;
}
body .themed .gridster-item .value-widget .editable-click::after {
  margin-top: 0;
}
body .themed .gridster-item .value-widget .editable-wrap .editable-controls > input {
  padding-right: 1px;
  margin-right: 100px;
}
body .themed .gridster-item .editable-wrap .editable-controls,
body .themed .gridster-item .editable-wrap .editable-error {
  height: auto;
}
body .themed .gridster-item .editable-wrap .editable-controls > input {
  padding: 1px 105px 1px 1px;
  font-size: 10px;
  height: 20px;
}
body .themed .gridster-item .editable-buttons {
  top: 0px;
  height: 17px;
  overflow: hidden;
  height: 20px;
}
body .themed .gridster-item .editable-buttons button {
  position: relative;
  font-size: 10px;
  padding: 0px 10px;
  border-color: transparent;
  border-radius: 0px;
}
body .themed .gridster-item .editable-buttons button + button {
  position: relative;
  font-size: 10px;
  padding: 0px 10px;
  border-color: transparent;
  border-radius: 0px;
  margin-left: 0px;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value {
  display: block;
  font-size: 40px;
  font-weight: 300;
  height: 40px;
  line-height: 1em;
  margin: 15px 0;
  width: 100%;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper {
  color: #777;
  font-size: 11px;
  min-height: calc(1.42857143 * 2em);
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper p {
  margin: 0;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .success i,
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .success strong {
  color: #5b9840;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .failed i,
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .failed strong {
  color: #e64a4a;
}
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .success strong,
body .themed .gridster-item .value-widget .dashboard-widget-body .value-comparison-wrapper .failed strong {
  font-weight: 600;
}
body .themed .gridster-item .value-widget .dropdown {
  /*z-index: 0;*/
}
body .themed .gridster-item .value-widget .dropdown-menu {
  min-width: auto;
}
body .themed .gridster-item .value-widget .dropdown-menu > li > a {
  background-color: transparent;
  margin: 0;
}
body .themed .gridster-item .value-widget .widget-edit-background {
  background: #ffffff;
  border-radius: 2px;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
body .themed .dropdown .color-option span {
  background: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  height: 1em;
  left: 2px;
  margin-right: 5px;
  position: relative;
  top: 2px;
  width: 1em;
}
body .themed .dropdown .color-option.selected:not(.none) span {
  box-shadow: 0 0 0 2px #ffa400;
}
body .themed .dropdown .color-option.red span {
  background: #e64a4a;
}
body .themed .dropdown .color-option.green span {
  background: #5b9840;
}
body .themed .dropdown .color-option.blue span {
  background: #428bca;
}
body .themed .dropdown .color-option.orange span {
  background: #ffa400;
}
body .themed .dropdown .color-option.peach span {
  background: #f8cd95;
}
body .themed .dropdown .color-option.charcoal span {
  background: #333c48;
}
body .themed .gridster-item.has-border {
  border-width: 3px 1px 1px 1px;
  padding-top: 0;
}
body .themed .gridster-item.has-border-red {
  border-top-color: #e64a4a;
}
body .themed .gridster-item.has-border-green {
  border-top-color: #5b9840;
}
body .themed .gridster-item.has-border-blue {
  border-top-color: #428bca;
}
body .themed .gridster-item.has-border-orange {
  border-top-color: #ffa400;
}
body .themed .gridster-item.has-border-peach {
  border-top-color: #f8cd95;
}
body .themed .gridster-item.has-border-charcoal {
  border-top-color: #333c48;
}
body .themed .email-stats-widget .meta-bar .filter-btn {
  margin-top: 12px;
}
body .themed .stats-group {
  border: 1px solid #d0d3d5;
  border-radius: 2px;
  margin: 8px 0 10px 0;
  overflow: hidden;
}
body .themed .stats-group .stat {
  border-right: 1px solid #d0d3d5;
  float: left;
  padding: 10px;
  position: relative;
}
body .themed .stats-group .stat:last-of-type {
  border-right: none;
}
body .themed .stats-group.stats-x4 .stat {
  width: 25%;
}
body .themed .stats-group.stats-x3 .stat {
  width: 33.3333%;
}
body .themed .stats-group .stat .stats-btns {
  display: block;
  height: 26px;
  position: absolute;
  right: 6px;
  top: 4px;
}
body .themed .stats-group .stat .stats-value {
  margin-bottom: 0;
  font-weight: 700;
}
body .themed .stats-group .stat .stats-value span {
  color: #777;
  font-weight: 300;
}
body .themed .stats-group .stat .stats-label {
  text-transform: uppercase;
}
body .themed .stats-group .bootstrap-switch {
  margin: 0;
}
body .themed .stats-group .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
body .themed .stats-group .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
body .themed .stats-group .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
  line-height: 14px;
}
body .themed .stats-group .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
body .themed .stats-group .bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off {
  font-weight: bold;
}
body .themed .gridster-item .chart-widget .dashboard-widget-body .stats-group + .chart-div {
  height: calc(100% - 81px);
}
body .themed .gridster-item .chart-widget .dashboard-widget-body .meta-bar + .stats-group + .chart-div {
  height: calc(100% - 117px);
}
body .themed .dashboard-widget-wrapper .busy-indicator-backdrop {
  height: 100%;
}
body .themed .dashboard-widget-wrapper .busy-indicator-default-spinner {
  height: 15px;
  width: 15px;
  top: 9px;
}
body .themed .dashboard-widget-wrapper .busy-indicator-default-text {
  font-size: 11px;
  margin: 8px 12px 6px 39px;
}
body .themed .dashboard-widget-wrapper .busy-indicator-default-sign {
  padding-bottom: 2px;
  top: calc(50% - 30px);
}
body .themed .gridster .no-wigdets .initial-state {
  background: transparent;
  border: none;
}
@media (max-width: 1366px) {
  body .themed .gridster-item .dashboard-widget-header h2 {
    font-size: 13px;
  }
  body .themed .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button {
    height: 32px;
  }
  body .themed .gridster-item .value-widget .dashboard-widget-body .label-wrapper h3 {
    font-size: 13px;
  }
  body .themed .gridster-item .value-widget .dashboard-widget-body .value {
    font-size: 32px;
    margin: 12px 0;
  }
  body .themed .email-stats-widget .meta-bar .filter-btn {
    margin-top: 13px;
  }
}
body .themed .gridster-item .initial-state,
body .themed .gridster-item .empty-state {
  padding: 30px 30px 15px 30px;
  min-height: 225px;
}
body .themed.a3 .gridster-item {
  border: 1px solid #ccc;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border {
  border-top: 2px;
  border-top-style: solid;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-red {
  border-top-color: #e64a4a;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-green {
  border-top-color: #5b9840;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-blue {
  border-top-color: #428bca;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-orange {
  border-top-color: #ffa400;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-peach {
  border-top-color: #f8cd95;
}
body .themed.a3 .gridster-loaded .gridster-item.has-border-charcoal {
  border-top-color: #333c48;
}
body .themed.a3 .editable-buttons button {
  border-radius: 0;
}
#supportModal {
  display: flex;
  flex-direction: column;
  min-height: 550px;
  height: 75vh;
}
#supportModal .tabs {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
}
#supportModal .tabs .flex {
  flex: 1;
  height: 100%;
}
#supportModal .tabs .tab-content {
  height: calc(100% - 115px);
  margin-top: 10px;
}
#supportModal .tabs .tab-content .tab-pane {
  flex-direction: column;
  height: 100%;
}
#supportModal .tabs .tab-content .tab-pane.active {
  display: flex;
}
#supportModal .tabs .tab-content .tab-pane section {
  padding: 10px;
}
#supportModal section {
  padding-bottom: 10px;
}
#supportModal .tabs .tab-content.open .ticket-body.open {
  position: absolute;
  top: 80px;
  left: 12px;
  bottom: 145px;
  background: white;
  right: 12px;
  border-top: 1px solid #d0d3d5;
}
#supportModal .tabs .tab-content.open {
  height: calc(100% - 10px);
  position: relative;
}
#supportModal .tabs .tab-content.open .ticket footer {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
#supportModal .tabs .tab-content.open .ticket .reply {
  position: absolute;
  width: 100%;
  bottom: 48px;
  left: 0;
  padding-right: 0px;
}
#supportModal .tabs .tab-content.open .ticket .reply .response {
  padding-right: 10px;
  min-height: 0;
  height: 55px;
}
#supportModal .tabs .tab-content.open .ticket .reply .response article > div {
  border: none;
}
#supportModal .tabs .tab-content.open .ticket .reply .button-container {
  text-align: right;
  padding-right: 10px;
}
#supportModal .tabs .tab-content .tab-pane .initial-state {
  height: 100%;
}
#supportModal .tickets-list-filter .select {
  margin-top: 10px;
}
#supportModal .tickets-list {
  flex: 1;
  overflow: hidden;
}
#supportModal .ticket {
  background: #ffffff;
  border-radius: 2px;
}
#supportModal support-ticket {
  margin-top: 10px;
  display: block;
}
#supportModal support-ticket:first-of-type {
  margin: 0;
}
#supportModal .ticket-list-header {
  margin-bottom: 10px;
  display: table;
  width: 100%;
}
#supportModal .ticket-list-header span {
  text-align: left;
  display: table-cell;
  vertical-align: bottom;
}
#supportModal .ticket header {
  min-height: 39px;
  padding: 0;
  position: relative;
}
#supportModal .ticket header .ticket-number {
  color: #777;
  float: left;
  line-height: 1em;
  padding: 16px 10px 6px 10px;
  width: 20%;
}
#supportModal .ticket header .ticket-title {
  float: left;
  font-weight: 700;
  line-height: 1em;
  margin: 0;
  padding: 12px 10px 6px 10px;
  width: 80%;
}
#supportModal .ticket header .ticket-title .counter {
  color: #777;
  display: inline-block;
  font-size: 75%;
  line-height: 1em;
  margin-left: 5px;
}
#supportModal .ticket header .ticket-title .counter.has-new-message {
  color: #e64a4a;
}
#supportModal .ticket header .ticket-status {
  bottom: 5px;
  font-weight: 700;
  padding: 2px 10px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 20%;
}
#supportModal .ticket header .ticket-status.new {
  background: #e64a4a;
  color: #ffffff;
}
#supportModal .ticket header .ticket-status.in-progress {
  background: rgba(51, 60, 72, 0.8);
  color: #ffffff;
}
#supportModal .ticket .ticket-description {
  overflow: hidden;
  padding: 6px 10px 6px 10px;
  padding-left: calc(20% + 10px);
  border-bottom: 1px solid #d0d3d5;
  clear: both;
}
#supportModal .ticket .ticket-description .closed-description {
  margin-bottom: 10px;
}
#supportModal .ticket .ticket-description .closed-description > span {
  display: inline-block;
}
#supportModal .ticket .ticket-description .closed-description > span:last-of-type {
  color: #9aa1a7;
}
#supportModal .ticket .ticket-description .closed-description p {
  margin: 0;
}
#supportModal .ticket .message-thread {
  margin: 20px 0;
}
#supportModal .ticket .message-thread .button-container {
  padding: 0 20px;
  position: relative;
}
#supportModal .ticket .response {
  clear: both;
  margin-bottom: 1px;
  min-height: 2em;
  overflow: hidden;
  padding: 0 20px 0 10px;
  text-align: left;
}
#supportModal .ticket .response aside {
  float: left;
  padding-right: 10px;
  padding-top: 16px;
  text-align: right;
  width: 20%;
}
#supportModal .ticket .response aside img {
  max-height: 2em;
  max-width: 2em;
}
#supportModal .ticket .response aside .user-avatar {
  display: inline-block;
}
#supportModal .ticket .response:not(.support-team-response) aside .avatar-img {
  border-radius: 50%;
}
#supportModal .ticket .response aside .user-avatar .avatar-img {
  margin-right: 0;
}
#supportModal .ticket .response article {
  float: right;
  padding-left: 10px;
  width: 80%;
}
#supportModal .ticket .response article .field-wrapper {
  margin-top: 0;
}
#supportModal .ticket .response article time {
  color: #777;
  font-size: 85%;
  text-transform: uppercase;
}
#supportModal .ticket .response article > div:first-of-type {
  border-bottom: 1px solid #ededed;
  border-top: 1px solid #ededed;
  margin: 0;
  padding-bottom: 15px;
  padding-top: 15px;
}
#supportModal .ticket .response.support-team-response article {
  font-weight: 700;
}
#supportModal .ticket .response:first-of-type aside {
  padding-top: 0;
}
#supportModal .ticket .response:first-of-type article > div:first-of-type {
  border-top: none;
  padding-top: 0;
}
#supportModal .ticket .response.reply article > div:first-of-type {
  border-bottom: none;
}
#supportModal .ticket .response.last + .button-container {
  background: #ffffff;
  margin-top: -2px;
}
#supportModal .ticket footer {
  background: #ededed;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}
#supportModal .ticket footer .ticket-meta {
  border-right: 1px solid #d0d3d5;
  float: left;
  padding: 6px 10px;
  height: 38px;
}
#supportModal .ticket footer .ticket-meta.created-date {
  width: 20%;
}
#supportModal .ticket footer .ticket-meta.created-by {
  width: 25%;
}
#supportModal .ticket footer .ticket-meta.assigned-to {
  width: 25%;
}
#supportModal .ticket footer .ticket-meta.priority {
  border-right: none;
  width: 15%;
}
#supportModal .ticket footer .ticket-meta.priority .critical {
  color: #e64a4a;
  font-weight: 700;
}
#supportModal .ticket footer .ticket-meta span.ticket-meta-label {
  color: #9aa1a7;
  display: block;
  font-size: 90%;
}
#supportModal .ticket footer .ticket-meta p {
  line-height: 1em;
  margin: 0;
}
#supportModal .ticket footer button {
  bottom: 6px;
  position: absolute;
  right: 10px;
}
#supportModal .ticket.open {
  margin: 0;
}
#supportModal .ticket.open .ticket-body {
  margin: 0;
}
#supportModal .ticket.open .ticket-description {
  border-bottom: 1px solid #d0d3d5;
  height: auto;
}
body .themed.silver #supportModal .tab-content {
  border-top: 1px solid #ebebeb;
}
body .themed.silver #supportModal .tab-pane {
  background: #F6F7F8;
}
.document-library {
  position: relative;
}
/* filter header row */
.document-library .above .filter {
  float: left;
  margin-left: 10px;
  position: relative;
}
.document-library .above .filter:first-child {
  margin-left: 0;
}
.document-library .above .filter input.search {
  height: 36px;
  border-top: 1px solid #ffffff;
  margin-right: 0;
  width: 300px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}
.document-library .above .filter input + button {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.document-thumbnail {
  border: 2px solid #d0d3d5;
  padding: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  margin-top: 10px;
}
.document-title {
  position: absolute;
  top: 5px;
  left: 5%;
  width: 90%;
  color: #ffffff;
  background-color: #333c48;
  opacity: 0.9;
  padding: 5px;
  text-align: center;
  overflow: hidden;
  font-size: 11px;
}
.document-thumbnail img {
  width: 100%;
  max-height: 100%;
}
/* I USE THESE TWO CLASSES TO KEEP THE RATIO (HEIGHT VS WIDTH) CORRECT AS THE WINDOW SCALES DOWN */
.document-library .ratio-keeper {
  width: 100%;
  position: relative;
  display: inline-block;
}
.document-library .ratio-keeper:after {
  padding-bottom: 110%;
  display: block;
  content: '';
  z-index: 1;
}
.document-footer {
  border-top: 1px solid #b2bbc8;
  color: #333;
  padding: 5px 10px;
  background-color: #ffffff;
  position: absolute;
  bottom: 1px;
  left: 1px;
  right: 1px;
  z-index: 10;
}
.document-footer .document-category {
  display: inline-block;
  font-size: 11px;
  line-height: 1.2em;
  vertical-align: middle;
}
.document-footer i.mapped {
  line-height: 22px;
  position: absolute;
  right: 10px;
}
.document-footer i.review {
  line-height: 22px;
  position: absolute;
  right: 30px;
}
.document-library .dropzone {
  margin-bottom: 10px;
}
.document-library .initial-state {
  margin-top: 20px;
}
/* hover effect */
.document-thumbnail:hover,
.open .document-thumbnail {
  border-color: #ffa400;
}
.document-thumbnail:hover {
  color: #ffa400;
}
.ng-pageslide img {
  border: 1px solid #888;
  margin: 20px 0;
}
.ng-pageslide .detail-info .detail-label {
  display: block;
  font-size: small;
  color: #888;
}
.ng-pageslide .detail-info .detail-label ~ .detail-label {
  margin-top: 10px;
}
.document-library .dropdown.details .document-thumbnail {
  border-color: #ffa400;
  box-shadow: 0px 0px 20px #555;
}
.document-library .dropdown.details .document-thumbnail {
  border-color: #ffa400;
  box-shadow: 0px 0px 20px #555;
}
.document-library table tr.details {
  border: 1px solid orange;
}
@media (min-width: 992px) and (max-width: 1588px) {
  .document-library .document-library-thumbnail-view .col-md-2:nth-of-type(6n+1) .dropdown-menu {
    left: 0;
    right: auto;
  }
}
@media (min-width: 992px) {
  .document-library .ratio-keeper-md {
    width: 100%;
    position: relative;
    display: inline-block;
  }
  .document-library .ratio-keeper-md:after {
    padding-bottom: 110%;
    display: block;
    content: '';
  }
}
body .themed.dark .document-footer .document-category {
  color: #232931;
}
#quoteSelection .quote {
  overflow: hidden;
  position: relative;
}
#quoteSelection .quote-inner header {
  display: none;
}
#quoteSelection .quote-inner {
  background: #ffffff;
  border-bottom: 1px solid #ededed;
  display: table;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
  width: 100%;
}
#quoteSelection .first .quote-inner {
  border-radius: 2px 2px 0 0;
}
#quoteSelection .last .quote-inner {
  border-radius: 0 0 2px 2px;
  border: 0;
}
#quoteSelection .quote-inner .underrider,
#quoteSelection .quote-inner .term,
#quoteSelection .quote-inner .quick-glance-icons,
#quoteSelection .quote-inner .premium,
#quoteSelection .quote-inner .actions {
  display: table-cell !important;
  float: none !important;
  margin: 0 !important;
  vertical-align: middle !important;
  width: 20% !important;
}
#quoteSelection .quote-inner .term,
#quoteSelection .quote-inner .quick-glance-icons {
  width: 12% !important;
}
#quoteSelection .quote-inner .premium {
  width: 18% !important;
}
#quoteSelection .quote-inner .underrider img {
  max-height: 60px;
  padding-bottom: 5px;
}
#quoteSelection .quote-inner .underrider span,
#quoteSelection .quote-inner .premium span {
  display: block;
  font-size: 12px;
}
#quoteSelection .quote-inner .term,
#quoteSelection .quote-inner .premium {
  font-size: 18px;
}
#quoteSelection .quote-inner .quick-glance-icons {
  font-size: 21px;
}
#quoteSelection .quote-inner .quick-glance-icons i {
  position: relative;
}
#quoteSelection .quote-inner .quick-glance-icons i:not(.on) {
  color: #d0d3d5;
}
#quoteSelection .quote-inner button {
  position: relative;
}
#quoteSelection .quote-inner i .tooltip,
#quoteSelection .quote-inner button .tooltip {
  display: none;
}
#quoteSelection .quote-inner i:hover .tooltip,
#quoteSelection .quote-inner button:hover .tooltip {
  bottom: 102%;
  display: block;
  font-family: Open Sans, "Myriad Pro", Arial, Times, Georgia, sans-serif;
  font-weight: 400;
  left: 50%;
  margin-left: -100px;
  opacity: 0.9;
}
#quoteSelection .quote-inner i:hover .tooltip-arrow,
#quoteSelection .quote-inner button:hover .tooltip-arrow {
  display: block;
}
#quoteSelection .quote-inner i:hover .tooltip-inner,
#quoteSelection .quote-inner button:hover .tooltip-inner {
  display: block;
  width: 200px;
}
#quoteSelection .quote-inner .actions button {
  margin: 0;
  padding: 12px 0;
  width: 100%;
}
#quoteSelection .quote-inner .actions .sub-actions-group {
  margin-top: 10px;
}
#quoteSelection .quote-inner .actions button.email-btn {
  margin-right: 4%;
  width: 24%;
}
#quoteSelection .quote-inner .actions button.download-btn {
  width: 72%;
}
#quoteSelection .quote-inner .pending-quote {
  display: table-cell !important;
  float: none !important;
  margin: 0 !important;
  vertical-align: middle !important;
  width: 20% !important;
}
#quoteSelection .quote-inner .pending-quote strong {
  font-size: 20px;
}
#quoteSelection .quote-details {
  background: #ffffff;
  border-bottom: 1px solid #ededed;
  display: none;
  overflow: hidden;
  padding-bottom: 20px;
}
#quoteSelection .quote-details h5 {
  font-size: 12px;
  font-weight: 700;
  margin: 20px 0 6px 0;
  text-transform: uppercase;
}
#quoteSelection .quote-details p {
  margin-bottom: 0;
}
#quoteSelection .quote-details p.quote-status {
  margin-top: 1em;
}
#quoteSelection .quote-details p.quote-status.approved {
  color: #5b9840;
}
#quoteSelection .quote-details i {
  width: 20px;
}
#quoteSelection .quote-details i:not(.on) {
  color: #d0d3d5;
}
#quoteSelection .quote.on:not(.sponsoredQuote) .quote-inner {
  border-bottom: 1px solid #ffa400;
  border-radius: 0;
}
#quoteSelection .quote.on .quote-details {
  display: block;
}
#quoteSelection .quote.last.on .quote-details {
  border-radius: 0 0 2px 2px;
}
#quoteSelection .sponsoredQuote {
  margin-bottom: 15px;
}
#quoteSelection .sponsoredQuote .quote-inner {
  border: 1px solid #ffa400;
  border-radius: 2px;
  padding-top: 37px;
}
#quoteSelection .sponsoredQuote .quote-inner header {
  background: #ffa400;
  color: #ffffff;
  display: block;
  font-size: 11px;
  line-height: 2em;
  padding: 0 15px;
  position: absolute;
  top: 0;
  width: 100%;
}
#quoteSelection .sponsoredQuote.on .quote-inner {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
#quoteSelection .sponsoredQuote .quote-details {
  border-radius: 0 0 2px 2px;
  display: none;
  margin-top: -5px;
  padding-top: 5px;
}
#quoteSelection .sponsoredQuote.on .quote-details {
  border: none;
}
#quoteSelection button.details-toggle {
  bottom: 0;
  border-radius: 2px 2px 0 0;
  font-size: 11px;
  font-weight: 400;
  left: 50%;
  margin-left: -50px;
  padding: 4px;
  position: absolute;
  text-transform: uppercase;
  width: 100px;
}
#quoteSelection .pending .premium {
  opacity: 0.5;
}
#filters {
  background: #ffffff;
  bottom: 0;
  display: none;
  padding: 20px;
  position: absolute;
  right: 0;
  top: 42px;
  width: 350px;
}
#filters header {
  margin-bottom: 20px;
  overflow: hidden;
}
#filters h5 {
  margin-top: 20px;
}
#filters h5 i {
  font-size: 18px;
}
#filters .checkbox {
  margin: 0;
}
#filters .checkbox label {
  font-weight: 400;
}
#filters .checkbox i:not(.on) {
  color: #d0d3d5;
}
#quoteSelection .busy-indicator-backdrop {
  display: none;
}
.right-pane #filters {
  display: block;
}
.right-pane #quoteSelection .busy-indicator-backdrop {
  display: block;
  height: calc(100% - 42px);
  margin-right: 350px;
  top: 42px;
}
/* responsive */
@media (max-width: 1366px) {
  #filters {
    top: 40px;
    width: 300px;
  }
  .right-pane #quoteSelection .busy-indicator-backdrop {
    height: calc(100% - 40px);
    margin-right: 300px;
    top: 40px;
  }
}
@media (max-width: 1199px) {
  #quoteSelection .quote-inner .actions button.email-btn {
    margin-right: 8%;
    width: 46%;
  }
  #quoteSelection .quote-inner .actions button.download-btn {
    width: 46%;
  }
}
body .themed.silver #quoteSelection .quote.on:not(.sponsoredQuote) .quote-inner {
  border-bottom: 1px solid #627789;
}
body .themed.silver #quoteSelection .sponsoredQuote .quote-inner {
  border: 1px solid #627789;
}
body .themed.silver #quoteSelection .sponsoredQuote .quote-inner header {
  background: #627789;
  color: white;
}
body .themed.silver #quoteSelection button.details-toggle {
  border: none;
}
html.indemnityLanding,
.indemnityLanding body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  /*background:@charcoal;*/
}
html.indemnityLanding form,
html.indemnityLanding .col-md-8 {
  height: 100%;
}
.indemnityLanding .clearfix {
  min-height: 100%;
  overflow: auto;
  zoom: 1;
}
.indemnityLanding p {
  color: #333c48;
}
.indemnityLanding ul {
  margin: 5px 0;
  padding: 0;
  list-style: none;
}
.indemnityLanding ul li {
  font-size: 14px;
  color: #333c48;
}
.indemnityLanding ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 5px;
  background: #ffa400;
}
.indemnityLanding p .center {
  margin-top: 30px;
}
.indemnityLanding .center {
  text-align: center;
  font-size: 15px;
}
.indemnityLanding input[type=checkbox] {
  margin-right: 10px;
}
.indemnityLanding .checkbox {
  margin-top: 30px;
}
.indemnityLanding .fields {
  text-align: center;
  margin-top: 30px;
}
.indemnityLanding .fields p {
  display: inline-block;
  font-size: 18px;
  line-height: 40px;
}
.indemnityLanding .indemnity-page {
  min-height: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  background: #fff;
}
/* header */
.indemnityLanding .indemnity-page > header {
  padding: 0 20px;
  text-align: right;
}
.indemnityLanding .indemnity-page > header img {
  max-height: 35px;
  margin-bottom: 20px;
  display: inline-block;
}
.indemnityLanding .indemnity-page > header h4 {
  float: left;
  font-weight: bold;
}
.indemnityLanding section .contract {
  width: 100%;
  max-height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  overflow-y: auto;
}
.indemnityLanding section header h4 {
  font-size: 13px;
  color: #333c48;
  font-weight: bold;
}
.indemnityLanding section .contract > .body {
  padding: 20px;
  margin-top: 0;
  margin-bottom: 30px;
}
.indemnityLanding .term-list {
  margin-top: 20px;
}
/* terms & conditions */
.indemnityLanding .center {
  width: 400px;
  margin: 0 auto;
  text-align: left;
}
/* signed */
.indemnityLanding h1 {
  font-size: 28px;
  color: #5b9840;
  font-weight: bold;
  text-align: center;
}
.indemnityLanding i.green {
  padding-bottom: 15px;
  color: #5b9840;
  text-align: center;
}
.indemnityLanding p {
  text-align: center;
}
/* input */
.indemnityLanding .indemnity-page [type=text] {
  width: 100%;
  margin-bottom: 6px;
  padding: 12px 16px;
  font-size: 14px;
  border: 2px solid #ddd;
  box-shadow: none;
  border-radius: 4px;
  box-sizing: border-box;
}
.indemnityLanding .signature {
  text-align: center;
  font-weight: bold;
  margin-top: 30px;
}
/* field-wrapper */
.indemnityLanding .field-wrapper {
  position: relative;
}
.indemnityLanding .field-wrapper div.label {
  padding: 2px 2px 4px 4px;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  border-radius: 0 0 0 4px;
  color: #fff;
}
.indemnityLanding .field-wrapper[class*='col-'] div.label {
  right: 15px;
}
.indemnityLanding .field-wrapper .validation-indicator {
  color: #ffa400;
}
.indemnityLanding .field-wrapper input:not([type=checkbox]):not([type=radio]),
.indemnityLanding .field-wrapper select {
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.indemnityLanding .field-wrapper .ui-select-container .ui-select-match .caret {
  display: none;
}
.indemnityLanding .field-wrapper label + label {
  margin-left: 10px;
}
/*buttons*/
.indemnityLanding button {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  background: #009eef;
  color: #fff;
  cursor: pointer;
}
.indemnityLanding button + button {
  margin-left: 4px;
}
.indemnityLanding .a-btn {
  width: initial;
  padding: 14px 24px;
}
.indemnityLanding section + button {
  margin-top: 20px;
  float: left;
}
/* footer */
.indemnityLanding footer {
  width: 100%;
  height: 44px;
  border-top: 1px solid #ccc;
  background: #ddd;
}
.indemnityLanding footer .logo {
  width: 84px;
  height: 100%;
  margin-right: 20px;
  float: right;
  display: inline-block;
  vertical-align: middle;
  background: url(../../img/a3_footer_logo.png) no-repeat right;
  background-size: 80%;
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  line-height: 0;
}
.clearfix:after {
  clear: both;
}
.editor-loading-mask {
  background-color: #ededed;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.editor-loading-mask > div {
  width: 500px;
  height: 365px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -250px;
  text-align: center;
}
.editor-loading-mask > div > img {
  width: 250px;
}
.editor-loading-mask p {
  font-weight: bold;
}
.editor-loading-mask p img {
  width: 35px;
}
.btn-formfield {
  font-weight: normal !important;
  background-color: #333c48 !important;
  color: #d0d3d5 !important;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  box-shadow: none;
}
.btn-formfield.btn-xlg {
  width: 100%;
  padding: 20px 0;
  font-size: 17px !important;
}
.document-editor-frame {
  border: none;
  height: 100%;
  width: 100%;
  display: block;
}
.document-editor {
  background-color: #F5F5F5;
  height: 100%;
}
.document-editor form {
  margin: 0;
}
.document-editor .docedit-top {
  position: relative;
  overflow: hidden;
  height: 70px;
  white-space: nowrap;
  overflow-x: hidden;
  background-color: #333c48;
  padding: 15px 55px;
  border-bottom: 1px #F5F5F5 solid;
}
.document-editor .docedit-top a:focus {
  text-decoration: none;
}
.document-editor .docedit-top .placeholder-categories-container {
  z-index: 1000;
  position: relative;
  height: 50px;
  overflow-x: hidden;
  overflow-y: visible;
}
.document-editor .docedit-top .placeholder-categories-container .btn {
  cursor: pointer;
  font-weight: normal !important;
  background-color: #333c48 !important;
  color: #d0d3d5 !important;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  box-shadow: none;
  background-color: #F5F5F5 !important;
}
.document-editor .docedit-top .placeholder-categories-container .btn.current:hover {
  background-color: #ffa400 !important;
  border: 1px solid #f59d00 !important;
  color: #fff !important;
}
.document-editor .docedit-top .placeholder-categories-container .horizontal-scroll {
  position: absolute;
  left: 0;
}
.document-editor .docedit-top .scroll-button-left {
  color: #F5F5F5;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  left: 0;
  top: 0;
  padding: 10px 10px 5px 10px;
  height: 69px;
  background-color: #333c48;
}
.document-editor .docedit-top .scroll-button-right {
  color: #F5F5F5;
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 10px 5px 10px;
  height: 69px;
  background-color: #333c48;
}
.document-editor .left-pane {
  padding-top: 20px;
}
.document-editor .left-pane .scroller {
  height: calc(100% - 350px);
}
.document-editor .left-pane .navigation-explanation {
  height: 110px;
}
.document-editor .docedit-left {
  height: 100%;
  position: relative;
  padding: 0;
}
.document-editor .formfield {
  padding-bottom: 30px !important;
}
.document-editor .form-field-container {
  width: 100%;
  height: 100%;
  padding: 70px 0 50px 0;
  position: absolute;
  top: 0;
  padding-bottom: 155px;
}
.document-editor .docedit-bottom {
  background-color: #333c48;
  border-top: 1px #F5F5F5 solid;
  padding: 20px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.document-editor .docedit-bottom div.input-group {
  background-color: #F5F5F5;
  color: #d0d3d5;
  border-radius: 5px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.document-editor .docedit-bottom input.btn-block {
  background-color: transparent;
  font-size: 15px !important;
  border: 0;
}
.document-editor .docedit-bottom .icon-search {
  color: #ffa400;
  font-size: 18px;
}
.document-editor .docedit-bottom .pull-right {
  text-align: right;
  padding-top: 20px;
}
.document-editor .docedit-bottom a.input-group-addon {
  background-color: transparent;
  border: 0;
}
.document-editor .docedit-right {
  background-color: #F5F5F5;
  height: 100%;
  padding: 0;
}
.document-editor .docedit-right .top {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 1px 1px 1px #9aa1a7;
}
.document-editor .docedit-right .top .form-group {
  margin: 0;
  background-color: #f5f5f5;
  border-radius: 5px;
  padding: 10px;
}
.document-editor .docedit-right .top .form-group > div {
  z-index: 1000;
}
.document-editor .docedit-right .top .form-group .form-control {
  height: 32px;
  box-shadow: 1px 1px 1px #9aa1a7;
  border-radius: 5px;
  border: 1px solid #dedede;
}
.document-editor .docedit-right .top .form-group .form-control:focus,
.document-editor .docedit-right .top .form-group .form-control:active {
  box-shadow: 0 1px 0 #9aa1a7 !important;
}
.document-editor .docedit-right .top .form-group .dropdown,
.document-editor .docedit-right .top .form-group .dropdown a {
  width: 100%;
  height: 32px;
}
.document-editor .docedit-right .top .form-group .dropdown .a-group:last-child {
  height: 30px;
  position: absolute;
  right: 0;
  padding-top: 9px;
}
.document-editor .editor-container {
  height: calc(100% - 35px);
  width: 100%;
  position: absolute;
  top: 35px;
  left: 0;
}
.document-editor .editor-container iframe {
  height: 100%;
  width: 100%;
  border: none;
}
.document-editor .button-container {
  padding-top: 10px;
}
.document-editor .button-container .btn {
  margin-left: 10px;
  box-shadow: none;
}
.document-editor .padding-top-10px {
  padding-top: 10px;
}
.document-editor .dark-orange {
  box-shadow: none;
}
.document-editor .input-group-addon:hover {
  color: #ffa400;
}
.document-editor .tabs .nav li {
  background-color: #ededed;
}
.document-editor .tabs .nav li a {
  border: none;
  margin: 0;
}
.field-draggable-wrapper {
  text-align: left;
}
.field-draggable-wrapper h4 {
  margin: 0;
  font-size: 14px;
}
.field-draggable-container {
  width: calc(50% - 9px);
  display: inline-block;
  margin: 3px 3px 3px 0;
  text-align: left;
}
.field-draggable {
  font-size: 10px;
  background-color: #ccffcc;
  padding: 3px;
}
.field-draggable.image {
  width: 75px;
  height: 75px;
}
.field-draggable.check-box {
  width: 20px;
  padding-left: 20px;
}
.document-editor .editor-controls {
  padding: 5px 20px 5px 0px;
}
.document-editor .editor-controls button.small {
  height: 24px;
}
.document-editor [class*="col-"] section {
  margin-bottom: 0;
}
.ta-toolbar {
  background-color: #F0F0F0;
  padding: 10px 0px 5px 0px;
  margin-left: 0;
  border: 1px solid #EEE;
}
.ta-toolbar .form-control {
  border-right: none;
  border-bottom: none;
  border-left: none;
  height: auto;
  border-radius: 0;
}
.ta-root {
  margin-top: 10px;
  display: block;
  border: 1px solid #ccc;
}
.ta-root .ta-bind:focus {
  outline: none;
}
.ta-root .btn-group {
  margin: 0 5px 5px 0;
}
.ta-root button,
.ta-root .btn {
  padding: 3px 5px;
  font-size: 14px;
}
.ta-root .btn:active,
.ta-root .btn:hover,
.ta-root .btn:focus,
.ta-root .btn-default.disabled,
.ta-root .btn-default[disabled],
.ta-root fieldset[disabled] .btn-default,
.ta-root .btn-default.disabled:hover,
.ta-root .btn-default[disabled]:hover,
.ta-root fieldset[disabled] .btn-default:hover,
.ta-root .btn-default.disabled:focus,
.ta-root .btn-default[disabled]:focus,
.ta-root fieldset[disabled] .btn-default:focus,
.ta-root .btn-default.disabled:active,
.ta-root .btn-default[disabled]:active,
.ta-root fieldset[disabled] .btn-default:active,
.ta-root .btn-default.disabled.active,
.ta-root .btn-default[disabled].active,
.ta-root fieldset[disabled] .btn-default.active {
  border-color: transparent;
  background: #ffa400;
  color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}
.ta-root .btn.active,
.ta-root button.active {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
}
.ta-root.focussed > .ta-scroll-window.form-control {
  border: none;
  box-shadow: none;
}
.ta-root.focussed {
  border: 1px solid #ffa400;
}
.ta-hidden-input {
  display: none;
}
i.disabled {
  opacity: 0.25;
}
.ta-bind table tr td {
  background-color: transparent !important;
}
.ta-bind {
  text-align: left !important;
}
.ta-bind table table {
  border-width: 0px !important;
}
.ta-root textarea:focus {
  box-shadow: none;
}
/* please don't change 'position' */
/* there must be 'bottom' for ps-scrollbar-x-rail */
.ps-container .ps-scrollbar-x-rail {
  position: absolute;
  bottom: 3px;
  height: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}
.ps-container:hover .ps-scrollbar-x-rail,
.ps-container.hover .ps-scrollbar-x-rail {
  opacity: 0.6;
}
.ps-container .ps-scrollbar-x-rail:hover,
.ps-container .ps-scrollbar-x-rail.hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container .ps-scrollbar-x-rail.in-scrolling {
  background-color: #eee;
  opacity: 0.9;
}
/* please don't change 'position' */
/* there must be 'right' for ps-scrollbar-y-rail */
.ps-container .ps-scrollbar-y-rail {
  position: absolute;
  right: 3px;
  width: 8px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  opacity: 0;
  -o-transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  -moz-transition: background-color 0.2s linear, opacity 0.2s linear;
  transition: background-color 0.2s linear, opacity 0.2s linear;
}
.ps-container:hover .ps-scrollbar-y-rail,
.ps-container.hover .ps-scrollbar-y-rail {
  opacity: 0.6;
}
.ps-container .ps-scrollbar-y-rail:hover,
.ps-container .ps-scrollbar-y-rail.hover {
  background-color: #eee;
  opacity: 0.9;
}
.ps-container .ps-scrollbar-y-rail.in-scrolling {
  background-color: #eee;
  opacity: 0.9;
}
/* please don't change 'position' */
/* there must be 'bottom' for ps-scrollbar-x */
.ps-container .ps-scrollbar-x {
  position: absolute;
  bottom: 0;
  height: 8px;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
/* fixed scrollbar height in xp sp3 ie6 */
.ps-container.ie6 .ps-scrollbar-x {
  font-size: 0;
}
.ps-container .ps-scrollbar-x-rail:hover .ps-scrollbar-x,
.ps-container .ps-scrollbar-x-rail.hover .ps-scrollbar-x {
  background-color: #999;
}
/* please don't change 'position' */
/* there must be 'right' for ps-scrollbar-y */
.ps-container .ps-scrollbar-y {
  position: absolute;
  right: 0;
  width: 8px;
  background-color: #aaa;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -o-transition: background-color 0.2s linear;
  -webkit-transition: background-color 0.2s linear;
  -moz-transition: background-color 0.2s linear;
  transition: background-color 0.2s linear;
}
/* fixed scrollbar height in xp sp3 ie6 */
.ps-container.ie6 .ps-scrollbar-y {
  font-size: 0;
}
.ps-container .ps-scrollbar-y-rail:hover .ps-scrollbar-y,
.ps-container .ps-scrollbar-y-rail.hover .ps-scrollbar-y {
  background-color: #999;
}
.ps-container.ie .ps-scrollbar-x,
.ps-container.ie .ps-scrollbar-y {
  visibility: hidden;
}
.ps-container.ie:hover .ps-scrollbar-x,
.ps-container.ie:hover .ps-scrollbar-y,
.ps-container.ie.hover .ps-scrollbar-x,
.ps-container.ie.hover .ps-scrollbar-y {
  visibility: visible;
}
.bond-detail .bond-summary {
  min-height: 135px;
  margin-bottom: 10px;
}
.bond-detail .bond-summary .bond-type {
  font-size: 1.5em;
}
.bond-detail .bond-summary .bond-type a {
  font-size: 0.5em;
}
.bond-detail .bond-summary sb.bond-number {
  font-size: 1.2em;
}
.bond-detail .bond-summary .right-content {
  text-align: right;
  position: relative;
}
.bond-detail .bond-summary .right-content .actions {
  margin-top: 5px;
}
.bond-detail .bond-summary .right-content .actions button {
  margin-left: 5px;
}
.bond-detail .tab-content iframe {
  min-height: 900px;
  width: 100%;
}
.bond-detail .bond-summary .right-content .total-value {
  display: inline-block;
  min-width: 75px;
  text-align: right;
}
.bond-detail .initial-state {
  padding: 5px;
}
.bond-detail .initial-state .initial-state-body {
  max-width: 100%;
}
.carrier {
  margin-top: 10px;
}
.carrier img {
  width: 35px;
  height: 35px;
  float: left;
  margin-right: 10px;
  padding: 3px;
  background: white;
  border: 1px solid #ccc;
}
.carrier .writing-company {
  font-size: 0.8em;
}
.obligee-drop-down-name {
  font-size: 1.1em;
  border-top: 1px solid #ededed;
}
.rider table tr td:first-of-type {
  width: 280px;
}
.rider table tr .rider-change-selection {
  vertical-align: middle;
}
.rider table tr .rider-change-originals {
  vertical-align: middle;
  text-align: left;
}
.rider table tr .rider-change-values {
  width: 200px;
  vertical-align: middle;
}
.rider table tr .rider-change-selection .field-wrapper:first-of-type {
  margin-top: 0;
}
.rider table tr .rider-change-remove {
  text-align: right;
  width: 65px;
  vertical-align: middle;
}
/* ng-img-crop*/
.ng-img-crop {
  overflow: hidden;
  float: left;
  width: 200px;
  height: 200px;
  margin-right: 20px;
  margin-left: 20px;
}
.user-profile-file-input {
  display: none;
}
.profile-user-image {
  float: left;
  text-align: center;
}
.profile-user-image label {
  background: transparent;
  color: #ffa400;
  border-color: transparent;
  box-shadow: none;
  padding: 20px 20px 8px 20px;
  font-size: 11px;
  font-weight: normal;
  line-height: 13px;
  border-width: 1px;
  border-style: solid;
  border-radius: 2px;
  outline: 0;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.profile-user-image label img {
  display: block;
  height: 200px;
  width: 200px;
}
.profile-user-image label button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
}
.profile-user-image label:hover button {
  display: inline;
}
.profile-user-info {
  float: left;
  min-width: 400px;
}
.page-body.customer-detail {
  padding-top: 10px;
}
/* transition classes */
.fx {
  transition: all 0.2s ease-out;
}
/* cube spinner animation */
.spinner {
  width: 42px;
  height: 54px;
  margin: 10px auto 0;
  display: none;
  position: relative;
}
.cube1,
.cube2 {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffa400;
  animation: cubemove 1.8s infinite ease-in-out;
}
.cube2 {
  animation-delay: -0.9s;
}
.ng-hide.ng-hide-animate {
  display: none !important;
}
@keyframes cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/* Fade in view animation */
.fadeIn .ng-enter,
.fadeIn .ng-leave {
  position: absolute;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.fadeIn .ng-enter {
  transform: translate3d(100%, 0, 0);
}
.fadeIn .ng-enter-active {
  transform: translate3d(0, 0, 0);
}
.fadeIn .ng-leave {
  transform: translate3d(0, 0, 0);
}
.fadeIn .ng-leave-active {
  transform: translate3d(-100%, 0, 0);
}
/* plugins */
.dropzone {
  border-width: 1px;
  border-style: dashed;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.file-uploader {
  position: relative;
  text-align: center;
  border-width: 1px;
  border-style: dashed;
  cursor: pointer;
}
.file-uploader .action-area {
  position: absolute;
  background-color: transparent;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.dropzone:hover,
.dz-drag-hover,
.file-uploader:hover,
.file-uploader.drag-over {
  border-style: solid;
}
.dropzone .progress {
  position: absolute;
  bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  background-color: transparent;
  opacity: 0.5;
}
.dz-click-area {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* sizes */
.dropzone.thin,
.file-uploader {
  min-height: 50px;
}
/* Hide some default stuff */
.dropzone .dz-message {
  display: none;
}
.dz-preview {
  display: none;
}
.dropzone > p,
.file-uploader p {
  margin: 5px;
}
body .themed.silver .dropzone {
  border: #ffa400 1px dashed;
  color: #666;
  background-color: #fff;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}
body .themed.silver .file-uploader {
  border: #ffa400 1px dashed;
  color: #666;
  background-color: #fff;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}
body .themed.silver .dz-drag-hover,
body .themed.silver .file-uploader.drag-over {
  border-style: solid;
  border-color: darkseagreen;
  background-color: darkseagreen;
  color: green;
}
body .themed.silver .file-uploader.invalid {
  border-color: red;
  color: darkred;
  background-color: lightpink;
}
body .themed.a3 .dropzone {
  border: #ffa400 1px dashed;
  background-color: #ffffff;
  color: #666;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}
body .themed.a3 .file-uploader {
  border: #ffa400 1px dashed;
  background-color: #ffffff;
  color: #666;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}
body .themed.a3 .dz-drag-hover,
body .themed.a3 .file-uploader.drag-over {
  border-style: solid;
  border-color: darkseagreen;
  background-color: darkseagreen;
  color: green;
}
body .themed.a3 .file-uploader.invalid {
  border-color: red;
  color: darkred;
  background-color: lightpink;
}
body .themed.dark .dropzone {
  border-color: #3A4552;
}
body .themed.dark .file-uploader {
  border-color: #3A4552;
}
body .themed.dark .dz-drag-hover,
body .themed.dark .file-uploader.drag-over {
  border-color: #ABE2AB;
  background-color: darkseagreen;
  color: #232931;
}
body .themed.dark .file-uploader.invalid {
  border-color: #F88;
  color: darkred;
  background-color: lightpink;
}
/**
 * gridster.js - v0.2.1 - 2013-10-28 * http://gridster.net
 * Copyright (c) 2013 ducksboard; Licensed MIT
 */
.dashboard-widget-wrapper {
  height: 100%;
}
.dashboard-widget {
  height: 100%;
}
.gridster {
  position: relative;
  margin: auto;
  height: 0;
}
.gridster > ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.gridster-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  z-index: 2;
  position: absolute;
  display: none;
  background-color: white;
}
.gridster-loaded {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s;
}
.gridster-loaded .gridster-item {
  display: block;
  position: absolute;
  -webkit-transition: opacity 0.3s, left 0.3s, top 0.3s, width 0.3s, height 0.3s;
  -moz-transition: opacity 0.3s, left 0.3s, top 0.3s, width 0.3s, height 0.3s;
  -o-transition: opacity 0.3s, left 0.3s, top 0.3s, width 0.3s, height 0.3s;
  transition: opacity 0.3s, left 0.3s, top 0.3s, width 0.3s, height 0.3s;
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.gridster-loaded .gridster-preview-holder {
  display: none;
  z-index: 1;
  position: absolute;
  background-color: #ddd;
  border-color: #fff;
  opacity: 0.2;
  -webkit-transition: width 0.2s, height 0.3s;
  -moz-transition: width 0.2s, height 0.3s;
  -o-transition: width 0.2s, height 0.3s;
  transition: width 0.2s, height 0.3s;
  -webkit-transition-delay: 50ms;
  -moz-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms;
}
.gridster-loaded .gridster-item.gridster-item-moving {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.gridster-mobile {
  height: auto !important;
}
.gridster-mobile .gridster-item {
  height: auto;
  position: static;
  float: none;
}
.gridster-item.ng-leave.ng-leave-active {
  opacity: 0;
}
.gridster-item.ng-enter {
  opacity: 1;
}
.gridster-item-moving {
  z-index: 3;
}
/* RESIZE */
.gridster-item-resizable-handler {
  position: absolute;
  font-size: 1px;
  display: block;
}
.handle-se {
  cursor: se-resize;
  width: 0;
  height: 0;
  right: 1px;
  bottom: 1px;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent;
}
.handle-ne {
  cursor: ne-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  top: 1px;
}
.handle-nw {
  cursor: nw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  top: 1px;
}
.handle-sw {
  cursor: sw-resize;
  width: 12px;
  height: 12px;
  left: 1px;
  bottom: 1px;
}
.handle-e {
  cursor: e-resize;
  width: 12px;
  bottom: 0;
  right: 1px;
  top: 0;
}
.handle-s {
  cursor: s-resize;
  height: 12px;
  right: 0;
  bottom: 1px;
  left: 0;
}
.handle-n {
  cursor: n-resize;
  height: 12px;
  right: 0;
  top: 1px;
  left: 0;
}
.handle-w {
  cursor: w-resize;
  width: 12px;
  left: 1px;
  top: 0;
  bottom: 0;
}
.gridster .gridster-item:hover .gridster-box {
  border: 1.5px solid #B3B2B3;
}
.gridster .gridster-item:hover .handle-se {
  border-color: transparent transparent #ccc;
}
.ng-toast {
  position: fixed;
  z-index: 1080;
  width: 100%;
  height: 0;
  margin-top: 0px;
  text-align: center;
}
.ng-toast.ng-toast--top {
  top: 40px;
  bottom: auto;
}
.ng-toast.ng-toast--top .ng-toast__list {
  top: 0;
  bottom: auto;
  width: 70%;
  margin-left: 250px;
}
.ng-toast.ng-toast--top.ng-toast--center .ng-toast__list {
  position: static;
}
.ng-toast.ng-toast--bottom {
  top: auto;
  bottom: 0;
}
.ng-toast.ng-toast--bottom .ng-toast__list {
  top: auto;
  bottom: 0;
}
.ng-toast.ng-toast--bottom.ng-toast--center .ng-toast__list {
  pointer-events: none;
}
.ng-toast.ng-toast--bottom.ng-toast--center .ng-toast__message .alert {
  pointer-events: auto;
}
.ng-toast.ng-toast--right .ng-toast__list {
  left: auto;
  right: 0;
  margin-right: 20px;
}
.ng-toast.ng-toast--right .ng-toast__message {
  text-align: right;
}
.ng-toast.ng-toast--left .ng-toast__list {
  right: auto;
  left: 0;
  margin-left: 20px;
}
.ng-toast.ng-toast--left .ng-toast__message {
  text-align: left;
}
.ng-toast .ng-toast__list {
  display: inline-block;
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.ng-toast .ng-toast__message {
  display: block;
  width: 100%;
  text-align: center;
}
.ng-toast .ng-toast__message .alert {
  display: inline-block;
  width: 100%;
}
.ng-toast .ng-enter,
.ng-toast .ng-leave,
.ng-toast .ng-move {
  transition: 0.3s ease left, 0.3s ease opacity;
}
.ng-toast .ng-enter {
  left: -50px;
  opacity: 0;
}
.ng-toast .ng-enter.ng-enter-active {
  left: 0;
  opacity: 1;
}
.ng-toast .ng-leave {
  left: 0;
  opacity: 1;
}
.ng-toast .ng-leave.ng-leave-active {
  left: -50px;
  opacity: 0;
}
.ng-toast .ng-move {
  opacity: 0.5;
}
.ng-toast .ng-move.ng-move-active {
  opacity: 1;
}
.ng-toast .alert {
  color: #fff;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
}
.ng-toast .alert-success {
  background-color: #333c48;
}
.ng-toast .alert-danger {
  background-color: #fd4f00;
}
@media (max-width: 991px) {
  .ng-toast__list {
    margin-left: 180px !important;
  }
}
@media (max-width: 767px) {
  .ng-toast .alert {
    text-align: left;
    border-radius: 0;
    opacity: 0.9;
  }
  .ng-toast {
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
    position: fixed;
  }
  .ng-toast__list {
    margin-left: 0 !important;
    width: 100% !important;
  }
}
.busy-indicator {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1001;
}
.busy-indicator-animation.ng-hide-add,
.busy-indicator-animation.ng-hide-remove {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block !important;
}
.busy-indicator-animation.ng-hide-remove {
  opacity: 0;
  -webkit-transform: translate(0px, -40px);
  -moz-transform: translate(0px, -40px);
  -ms-transform: translate(0px, -40px);
  -o-transform: translate(0px, -40px);
  transform: translate(0px, -40px);
}
.busy-indicator-animation.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.busy-indicator-animation.ng-hide-add {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  -o-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
.busy-indicator-animation.ng-hide-add.ng-hide-add-active {
  opacity: 0;
  -webkit-transform: translate(0px, -40px);
  -moz-transform: translate(0px, -40px);
  -ms-transform: translate(0px, -40px);
  -o-transform: translate(0px, -40px);
  transform: translate(0px, -40px);
}
.busy-indicator-backdrop {
  background-color: white;
  opacity: 0.7;
}
.busy-indicator-backdrop-animation.ng-hide-add,
.busy-indicator-backdrop-animation.ng-hide-remove {
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: block !important;
}
.busy-indicator-backdrop-animation.ng-hide {
  opacity: 0;
}
/* All styles below are for the default template. */
.busy-indicator-default-wrapper {
  text-align: center;
}
.busy-indicator-default-sign {
  top: 75px;
  display: inline-block;
  position: relative;
  z-index: 1002;
  padding-bottom: 6px;
  color: #333333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #e9eeee;
  border: 1px solid #dddddd;
  /*border-top-width:0;*/
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.busy-indicator-default-text {
  margin: 13px 12px 6px 49px;
  font-size: 16px;
  color: #555;
  text-align: left;
  max-width: 400px;
}
.busy-indicator-default-spinner {
  position: absolute;
  width: 25px;
  height: 25px;
  display: inline-block;
  top: 12px;
  left: 14px;
}
.busy-indicator-default-spinner div {
  width: 12%;
  height: 26%;
  background: #000;
  position: absolute;
  left: 44.5%;
  top: 37%;
  opacity: 0;
  -webkit-animation: busy-indicator-spinner-anim 1s linear infinite;
  -moz-animation: busy-indicator-spinner-anim 1s linear infinite;
  -ms-animation: busy-indicator-spinner-anim 1s linear infinite;
  -o-animation: busy-indicator-spinner-anim 1s linear infinite;
  animation: busy-indicator-spinner-anim 1s linear infinite;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.busy-indicator-default-spinner div.bar1 {
  -webkit-transform: rotate(0deg) translate(0, -142%);
  -moz-transform: rotate(0deg) translate(0, -142%);
  -ms-transform: rotate(0deg) translate(0, -142%);
  -o-transform: rotate(0deg) translate(0, -142%);
  transform: rotate(0deg) translate(0, -142%);
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}
.busy-indicator-default-spinner div.bar2 {
  -webkit-transform: rotate(30deg) translate(0, -142%);
  -moz-transform: rotate(30deg) translate(0, -142%);
  -ms-transform: rotate(30deg) translate(0, -142%);
  -o-transform: rotate(30deg) translate(0, -142%);
  transform: rotate(30deg) translate(0, -142%);
  -webkit-animation-delay: -0.9167s;
  -moz-animation-delay: -0.9167s;
  -ms-animation-delay: -0.9167s;
  -o-animation-delay: -0.9167s;
  animation-delay: -0.9167s;
}
.busy-indicator-default-spinner div.bar3 {
  -webkit-transform: rotate(60deg) translate(0, -142%);
  -moz-transform: rotate(60deg) translate(0, -142%);
  -ms-transform: rotate(60deg) translate(0, -142%);
  -o-transform: rotate(60deg) translate(0, -142%);
  transform: rotate(60deg) translate(0, -142%);
  -webkit-animation-delay: -0.833s;
  -moz-animation-delay: -0.833s;
  -ms-animation-delay: -0.833s;
  -o-animation-delay: -0.833s;
  animation-delay: -0.833s;
}
.busy-indicator-default-spinner div.bar4 {
  -webkit-transform: rotate(90deg) translate(0, -142%);
  -moz-transform: rotate(90deg) translate(0, -142%);
  -ms-transform: rotate(90deg) translate(0, -142%);
  -o-transform: rotate(90deg) translate(0, -142%);
  transform: rotate(90deg) translate(0, -142%);
  -webkit-animation-delay: -0.75s;
  -moz-animation-delay: -0.75s;
  -ms-animation-delay: -0.75s;
  -o-animation-delay: -0.75s;
  animation-delay: -0.75s;
}
.busy-indicator-default-spinner div.bar5 {
  -webkit-transform: rotate(120deg) translate(0, -142%);
  -moz-transform: rotate(120deg) translate(0, -142%);
  -ms-transform: rotate(120deg) translate(0, -142%);
  -o-transform: rotate(120deg) translate(0, -142%);
  transform: rotate(120deg) translate(0, -142%);
  -webkit-animation-delay: -0.667s;
  -moz-animation-delay: -0.667s;
  -ms-animation-delay: -0.667s;
  -o-animation-delay: -0.667s;
  animation-delay: -0.667s;
}
.busy-indicator-default-spinner div.bar6 {
  -webkit-transform: rotate(150deg) translate(0, -142%);
  -moz-transform: rotate(150deg) translate(0, -142%);
  -ms-transform: rotate(150deg) translate(0, -142%);
  -o-transform: rotate(150deg) translate(0, -142%);
  transform: rotate(150deg) translate(0, -142%);
  -webkit-animation-delay: -0.5833s;
  -moz-animation-delay: -0.5833s;
  -ms-animation-delay: -0.5833s;
  -o-animation-delay: -0.5833s;
  animation-delay: -0.5833s;
}
.busy-indicator-default-spinner div.bar7 {
  -webkit-transform: rotate(180deg) translate(0, -142%);
  -moz-transform: rotate(180deg) translate(0, -142%);
  -ms-transform: rotate(180deg) translate(0, -142%);
  -o-transform: rotate(180deg) translate(0, -142%);
  transform: rotate(180deg) translate(0, -142%);
  -webkit-animation-delay: -0.5s;
  -moz-animation-delay: -0.5s;
  -ms-animation-delay: -0.5s;
  -o-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.busy-indicator-default-spinner div.bar8 {
  -webkit-transform: rotate(210deg) translate(0, -142%);
  -moz-transform: rotate(210deg) translate(0, -142%);
  -ms-transform: rotate(210deg) translate(0, -142%);
  -o-transform: rotate(210deg) translate(0, -142%);
  transform: rotate(210deg) translate(0, -142%);
  -webkit-animation-delay: -0.41667s;
  -moz-animation-delay: -0.41667s;
  -ms-animation-delay: -0.41667s;
  -o-animation-delay: -0.41667s;
  animation-delay: -0.41667s;
}
.busy-indicator-default-spinner div.bar9 {
  -webkit-transform: rotate(240deg) translate(0, -142%);
  -moz-transform: rotate(240deg) translate(0, -142%);
  -ms-transform: rotate(240deg) translate(0, -142%);
  -o-transform: rotate(240deg) translate(0, -142%);
  transform: rotate(240deg) translate(0, -142%);
  -webkit-animation-delay: -0.333s;
  -moz-animation-delay: -0.333s;
  -ms-animation-delay: -0.333s;
  -o-animation-delay: -0.333s;
  animation-delay: -0.333s;
}
.busy-indicator-default-spinner div.bar10 {
  -webkit-transform: rotate(270deg) translate(0, -142%);
  -moz-transform: rotate(270deg) translate(0, -142%);
  -ms-transform: rotate(270deg) translate(0, -142%);
  -o-transform: rotate(270deg) translate(0, -142%);
  transform: rotate(270deg) translate(0, -142%);
  -webkit-animation-delay: -0.25s;
  -moz-animation-delay: -0.25s;
  -ms-animation-delay: -0.25s;
  -o-animation-delay: -0.25s;
  animation-delay: -0.25s;
}
.busy-indicator-default-spinner div.bar11 {
  -webkit-transform: rotate(300deg) translate(0, -142%);
  -moz-transform: rotate(300deg) translate(0, -142%);
  -ms-transform: rotate(300deg) translate(0, -142%);
  -o-transform: rotate(300deg) translate(0, -142%);
  transform: rotate(300deg) translate(0, -142%);
  -webkit-animation-delay: -0.1667s;
  -moz-animation-delay: -0.1667s;
  -ms-animation-delay: -0.1667s;
  -o-animation-delay: -0.1667s;
  animation-delay: -0.1667s;
}
.busy-indicator-default-spinner div.bar12 {
  -webkit-transform: rotate(330deg) translate(0, -142%);
  -moz-transform: rotate(330deg) translate(0, -142%);
  -ms-transform: rotate(330deg) translate(0, -142%);
  -o-transform: rotate(330deg) translate(0, -142%);
  transform: rotate(330deg) translate(0, -142%);
  -webkit-animation-delay: -0.0833s;
  -moz-animation-delay: -0.0833s;
  -ms-animation-delay: -0.0833s;
  -o-animation-delay: -0.0833s;
  animation-delay: -0.0833s;
}
@-webkit-keyframes busy-indicator-spinner-anim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
@-moz-keyframes busy-indicator-spinner-anim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
@keyframes busy-indicator-spinner-anim {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.25;
  }
}
.slabtexted .slabtext {
  display: -moz-inline-box;
  display: inline-block;
  letter-spacing: normal !important;
  white-space: nowrap;
}
.slabtextinactive .slabtext {
  display: inline;
  white-space: normal;
  font-size: 1em !important;
  letter-spacing: inherit !important;
  word-spacing: inherit !important;
  *letter-spacing: normal !important;
  *word-spacing: normal !important;
}
.slabtextdone .slabtext {
  display: block;
}
/* Themes */
body .themed.silver {
  /* buttons */
  /* button colors */
  /* tag button */
}
body .themed.silver button,
body .themed.silver a.button,
body .themed.silver input[type=button],
body .themed.silver input[type=submit] {
  border-color: #627789;
  color: #fff;
  background-color: #627789;
}
body .themed.silver button:hover,
body .themed.silver a.button:hover,
body .themed.silver input[type=button]:hover,
body .themed.silver input[type=submit]:hover {
  color: #fff;
  background-color: #ffa400;
  border-color: #ffa400;
}
body .themed.silver button.gray,
body .themed.silver a.button.gray,
body .themed.silver input[type=button].gray,
body .themed.silver input[type=submit].gray,
body .themed.silver button.white,
body .themed.silver a.button.white,
body .themed.silver input[type=button].white,
body .themed.silver input[type=submit].white {
  background: transparent;
  color: #1b4461;
  border-color: #a7b8c6;
}
body .themed.silver button.gray:hover,
body .themed.silver a.button.gray:hover,
body .themed.silver input[type=button].gray:hover,
body .themed.silver input[type=submit].gray:hover,
body .themed.silver button.white:hover,
body .themed.silver a.button.white:hover,
body .themed.silver input[type=button].white:hover,
body .themed.silver input[type=submit].white:hover {
  background-color: #627789;
  border-color: #627789;
  color: #fff;
}
body .themed.silver button.transparent,
body .themed.silver a.button.transparent,
body .themed.silver input[type=button].transparent,
body .themed.silver input[type=submit].transparent {
  background: transparent;
  color: #627789;
  border-color: transparent;
}
body .themed.silver button.transparent:hover,
body .themed.silver a.button.transparent:hover,
body .themed.silver input[type=button].transparent:hover,
body .themed.silver input[type=submit].transparent:hover {
  color: #ffa400;
}
body .themed.silver .btn-group button.inactive {
  background-color: #29313A;
}
body .themed.silver .tag-button {
  background-color: #ffa400;
  color: #fff;
  margin-right: 10px;
  padding: 5px;
  border-radius: 2px;
  white-space: nowrap;
  font-size: 11px;
}
body .themed.silver .tag-button i.fa-times {
  margin-left: 5px;
  cursor: pointer;
}
body .themed.silver a.tag {
  color: white;
}
body .themed.silver a.tag:hover {
  color: white;
}
body .themed.silver .panel-group .panel .panel-body button {
  color: #333;
  background-color: #fff;
  border-color: #fff;
}
body .themed.silver button:disabled:hover,
body .themed.silver a.button:disabled:hover,
body .themed.silver input[type=button]:disabled:hover,
body .themed.silver input[type=submit]:disabled:hover {
  background-color: #627789;
  border-color: #627789;
}
body .themed.silver .btn-group button:first-child,
body .themed.silver .btn-group input[type=submit]:first-child,
body .themed.silver .btn-group input[type=button]:first-child,
body .themed.silver .btn-group a.button:first-child {
  border-right: none;
}
body .themed.silver .tag-container .tag-form button {
  background-color: #ffa400;
  border-color: #ffa400;
}
body .themed.silver .tag-container .tag button {
  background-color: #ffa400;
  border-color: #ffa400;
}
body .themed.silver {
  /* nested table */
  /* table stripes */
}
body .themed.silver table table {
  border-color: #fff;
}
body .themed.silver table tr th {
  background-color: #fff;
  border-bottom-color: #ededed;
  color: #627789;
}
body .themed.silver table > tbody > tr > td {
  border-bottom-color: #ebebeb;
}
body .themed.silver table.group-by-tbody > tbody {
  border-bottom-color: #ebebeb;
}
body .themed.silver table thead tr th button {
  background-color: transparent;
  color: #627789;
  border-color: transparent;
}
body .themed.silver table thead tr th button:hover {
  background-color: transparent;
  border-color: transparent;
  color: #627789;
}
body .themed.silver table:not(.manual-stripe) > tbody > tr:nth-child(odd) > td,
body .themed.silver table > tbody > tr:nth-child(odd) > th {
  background-color: #fff;
}
body .themed.silver table:not(.manual-stripe) > tbody > tr:nth-child(even) > td,
body .themed.silver table > tbody > tr:nth-child(even) > th {
  background-color: #f9f9f9;
}
body .themed.silver table.manual-stripe > tbody > tr > td {
  background-color: #fff;
}
body .themed.silver table.manual-stripe > tbody > tr.alt > td {
  background-color: #f9f9f9;
}
body .themed.silver table.group-by-tbody > tbody:nth-of-type(even) > tr > td {
  background-color: #fff;
}
body .themed.silver table.group-by-tbody > tbody:nth-of-type(odd) > tr > td {
  background-color: #f9f9f9;
}
body .themed.silver tr.noRecords span {
  color: #777;
}
body .themed.silver table tr.table-details-row .bond-grid-details-row {
  border-color: #ededed;
}
body .themed.silver table tr.clickable-table-row:hover td.clickable-table-cell i {
  color: #ffa400;
}
body .themed.silver table tr.alt.table-details-row .bond-grid-details-row {
  border-color: #f9f9f9;
}
body .themed.silver table tr td.table-row-status-critical {
  border-left: 1rem solid #e64a4a;
}
body .themed.silver table tr td.table-row-status-warning {
  border-left: 1rem solid #fd4f00;
}
body .themed.silver table tr td.table-row-status-attention {
  border-left: 1rem solid #ffa400;
}
body .themed.silver .email-preview {
  border: 1px solid #ebebeb;
}
body .themed.silver .email-preview table {
  border: none;
  background: #fff !important;
}
body .themed.silver .email-preview table tr > td {
  background: #fff !important;
}
body .themed.silver {
  /* color variants */
}
body .themed.silver section {
  background-color: #F6F7F8;
  border-color: #ebebeb;
}
body .themed.silver section > header {
  border-bottom-color: #ebebeb;
  color: #333;
}
body .themed.silver section.flag {
  border-color: red;
}
body .themed.silver section.above {
  background-color: transparent;
  border-color: transparent;
}
body .themed.silver section.dark {
  background-color: #d0d3d5;
}
body .themed.silver .release-menu {
  background-color: #fff;
}
body .themed.silver .release-menu li {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
body .themed.silver .release-menu li:hover {
  background-color: #ededed;
}
body .themed.silver .release-menu ul li.on {
  background-color: #ededed;
  border-right: 6px solid #ffa400;
}
body .themed.silver {
  /* text inputs &*/
  /* input outline */
  /* selects */
  /* field-wrapper */
  /* empty-input */
  /* validation */
  /* validation alert notification */
  /* search boxes */
  /* search box colors */
  /* Colors */
  /* inline edit inputs */
  /* ==== editable-form ==== */
  /* ==== element ==== */
}
body .themed.silver input[type=text],
body .themed.silver input[type=email],
body .themed.silver input[type=url],
body .themed.silver input[type=number],
body .themed.silver input[type=password],
body .themed.silver textarea,
body .themed.silver select,
body .themed.silver .ui-select-match {
  border-color: #ddd;
  background-color: #fff;
}
body .themed.silver input[type=text].white,
body .themed.silver input[type=email].white,
body .themed.silver input[type=url].white,
body .themed.silver input[type=number].white,
body .themed.silver input[type=password].white,
body .themed.silver textarea.white,
body .themed.silver select.white,
body .themed.silver .ui-select-match.white {
  background-color: #ffffff;
}
body .themed.silver input:not([type=button]):not([type=radio]):not([type=checkbox]):not([type=submit]):focus,
body .themed.silver textarea:focus,
body .themed.silver select:focus {
  border-color: #627789;
}
body .themed.silver input:disabled,
body .themed.silver select:disabled,
body .themed.silver select:disabled,
body .themed.silver textarea:disabled {
  background-color: #fff;
}
body .themed.silver select.unselected {
  color: #aaa;
}
body .themed.silver select.unselected option {
  color: #333;
}
body .themed.silver select option[disabled] {
  color: #aaa;
}
body .themed.silver .field-wrapper div.label {
  color: #333;
}
body .themed.silver .field-wrapper .validation-indicator,
body .themed.silver .address-field-wrapper .validation-indicator {
  color: red;
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
body .themed.silver .field-wrapper input:not([type=checkbox]):not([type=radio]),
body .themed.silver .field-wrapper select {
  background-color: #ffffff;
}
body .themed.silver .empty-input:not(.search) input:not([type=checkbox]):not([type=radio]),
body .themed.silver .empty-input select,
body .themed.silver .empty-input textarea {
  background: #ffffff;
}
body .themed.silver .empty-input:not(.search) input:not(:focus),
body .themed.silver .empty-input select:not(:focus),
body .themed.silver .empty-input textarea:not(:focus) {
  border-color: #d0d3d5;
}
body .themed.silver .empty-input input:not([type=checkbox]):not([type=radio]):disabled,
body .themed.silver .empty-input select:disabled,
body .themed.silver .empty-input textarea:disabled {
  background: #fff;
  border-color: #ededed;
}
body .themed.silver .field-wrapper.empty-input.select.disabled select:disabled,
body .themed.silver .field-wrapper select:disabled {
  border-color: #ededed;
}
body .themed.silver .field-wrapper.empty-input .validation-indicator {
  color: red;
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
body .themed.silver .inline-label {
  font-weight: normal;
}
body .themed.silver input[type=text].ng-invalid.aa-had-focus,
body .themed.silver input[type=text].ng-invalid.ng-dirty,
body .themed.silver input[type=text].ng-invalid.aa-invalid-attempt,
body .themed.silver input[type=email].ng-invalid.aa-had-focus,
body .themed.silver input[type=email].ng-invalid.ng-dirty,
body .themed.silver input[type=email].ng-invalid.aa-invalid-attempt,
body .themed.silver input[type=url].ng-invalid.aa-had-focus,
body .themed.silver input[type=url].ng-invalid.ng-dirty,
body .themed.silver input[type=url].ng-invalid.aa-invalid-attempt,
body .themed.silver input[type=number].ng-invalid.aa-had-focus,
body .themed.silver input[type=number].ng-invalid.ng-dirty,
body .themed.silver input[type=number].ng-invalid.aa-invalid-attempt,
body .themed.silver input[type=password].ng-invalid.aa-had-focus,
body .themed.silver input[type=password].ng-invalid.ng-dirty,
body .themed.silver input[type=password].ng-invalid.aa-invalid-attempt,
body .themed.silver textarea.ng-invalid.aa-had-focus,
body .themed.silver textarea.ng-invalid.ng-dirty,
body .themed.silver textarea.ng-invalid.aa-invalid-attempt,
body .themed.silver select.ng-invalid.aa-had-focus,
body .themed.silver select.ng-invalid.ng-dirty,
body .themed.silver select.ng-invalid.aa-invalid-attempt,
body .themed.silver .ui-select-match.ng-invalid.aa-had-focus,
body .themed.silver .ui-select-match.ng-invalid.ng-dirty,
body .themed.silver .ui-select-match.ng-invalid.aa-invalid-attempt,
body .themed.silver .field-wrapper.ng-invalid.aa-had-focus .ui-select-match,
body .themed.silver .field-wrapper.ng-invalid.ng-dirty .ui-select-match,
body .themed.silver .field-wrapper.ng-invalid.aa-invalid-attempt .ui-select-match {
  border-color: #fd4f00;
}
body .themed.silver .validation-error {
  color: #fd4f00;
}
body .themed.silver .validation-notification .alert-danger {
  color: #ededed;
  background-color: #333c48;
  border-color: #fd4f00;
  box-shadow: 2px 2px 2px #333c48;
}
body .themed.silver .validation-notification ul li > a {
  color: #ffa400;
}
body .themed.silver .search > div > i.fa-search {
  background-color: transparent;
}
body .themed.silver .search.white > div > input:not([type=button]):not([type=submit]) {
  background-color: #ffffff;
  border-color: #ddd;
  box-shadow: none;
}
body .themed.silver .search.white > div > input:not([type=button]):not([type=submit]):focus {
  border-color: #627789;
}
body .themed.silver .search.white > div > i {
  color: #ddd;
}
body .themed.silver .search .dropdown button {
  background: transparent;
  color: #627789;
}
body .themed.silver .search .dropdown button:hover {
  background: transparent;
  color: #627789;
}
body .themed.silver input.white:not([type=button]):not([type=submit]) {
  background-color: #ffffff;
}
body .themed.silver input.black:not([type=button]):not([type=submit]) {
  background-color: #333c48;
  color: #ededed;
}
body .themed.silver .boundGridInlineEdit input {
  background: #ffffff;
}
body .themed.silver .editable-wrap .editable-controls > input {
  background: #ffffff;
}
body .themed.silver .editable-click::after {
  color: #aaa;
}
body .themed.silver .editable-click:hover {
  background: lightyellow;
}
body .themed.silver .editable-empty,
body .themed.silver .editable-empty:hover,
body .themed.silver .editable-empty:focus,
body .themed.silver a.editable-empty,
body .themed.silver a.editable-empty:hover,
body .themed.silver a.editable-empty:focus {
  color: #DD1144;
}
body .themed.silver .bootstrap-switch-wrapper label {
  font-weight: normal;
}
body .themed.silver .toggle-switch .toggle-switch-wrapper .toggle-switch-slider {
  background: #AAA;
}
body .themed.silver .toggle-switch .toggle-switch-wrapper .toggle-switch-slider:before {
  background-color: #fff;
}
body .themed.silver .toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider {
  background-color: darkseagreen;
}
body .themed.silver .address-field-wrapper .address-field-border-wrapper {
  border: 1px solid #CCC;
}
body .themed.silver .address-field-wrapper.invalid .address-field-border-wrapper {
  border-color: #fd4f00;
}
body .themed.silver .address-field-wrapper.invalid .validation-message {
  color: #fd4f00;
}
body .themed.silver .page {
  background-color: #fefdfd;
}
body .themed.silver .page-title {
  border-color: rgba(0, 0, 0, 0.15);
  background-color: #627789;
  color: #fff;
  font-weight: normal;
}
body .themed.silver .page-title a {
  color: #fff;
}
body .themed.silver .page-title header .dropdown > a {
  line-height: 23px;
  color: #fff;
  font-weight: normal;
}
body .themed.silver .page-title header .dropdown > a:hover {
  text-decoration: none;
  color: #ffa400;
}
body .themed.silver .page-title .dropdown > a > i.fa {
  margin-left: 5px;
}
body .themed.silver .page-title button:hover {
  color: #ffa400;
  background: #627789;
  border-color: transparent;
}
body .themed.silver .page-title > button:last-child {
  padding-right: 0;
}
body .themed.silver .ng-pageslide {
  background: #F6F7F8;
  border-left: 1px solid #ebebeb;
}
body .themed.silver {
  /* list pagination */
}
body .themed.silver .list-pagination {
  margin-bottom: 20px;
}
body .themed.silver .list-pagination:after {
  content: "";
  display: table;
  clear: both;
}
body .themed.silver .list-pagination [class^="col-"] {
  padding: 0;
}
body .themed.silver .list-pagination [class^="col-"]:first-of-type .dropdown > a {
  padding-left: 0;
}
body .themed.silver .list-pagination [class^="col-"]:last-of-type {
  text-align: right;
}
body .themed.silver .list-pagination .pagination {
  margin: 0;
}
body .themed.silver .list-pagination .pagination a {
  border: none;
  padding: 8px 12px;
}
body .themed.silver .list-pagination .records-per-page {
  margin: 0 10px 0 0;
}
body .themed.silver .list-pagination .records-per-page > button {
  padding: 8px;
  font-weight: normal;
}
body .themed.silver .list-pagination .records-per-page > button i {
  margin-right: 0;
}
body .themed.silver .list-pagination .records-per-page .dropdown-menu {
  min-width: 0;
}
body .themed.silver .list-pagination .pagination a {
  border: none;
  color: #777;
}
body .themed.silver .list-pagination .pagination a:hover {
  color: #777;
}
body .themed.silver .list-pagination .pagination > .active > a {
  background: #627789;
  color: white;
}
body .themed.silver .list-pagination .pagination > .active > a:hover {
  background: #627789;
  color: white;
}
body .themed.silver .list-pagination .records-per-page > button {
  background-color: #ffffff;
  color: #777;
}
body .themed.silver .pagination > li:last-child > a,
body .themed.silver .pagination > li:last-child > span {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
body .themed.silver .pagination > li:first-child > a,
body .themed.silver .pagination > li:first-child > span {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
body .themed.silver .top-menu {
  border-bottom-color: #ebebeb;
  background: #ffffff;
}
body .themed.silver .top-menu .navbar-left li button {
  background: transparent;
  color: #1b4461;
  border-color: #a7b8c6;
}
body .themed.silver .top-menu .navbar-left li button:hover {
  background-color: #627789;
  border-color: #627789;
  color: #fff;
}
body .themed.silver .top-menu .global-search button.search-button {
  border-color: #d0d3d5;
}
body .themed.silver .top-menu .global-search::before {
  color: #9aa1a7;
}
body .themed.silver .top-menu .global-search .search-results .results-category {
  border-top-color: #d0d3d5;
}
body .themed.silver .top-menu .global-search .search-results .results-category li.title {
  color: #777;
}
body .themed.silver .top-menu .global-search .search-results .results-category li:not(.title) {
  color: #333;
}
body .themed.silver .top-menu .global-search .search-results .results-category li:not(.title):hover {
  background: #ededed;
  border-color: #ffa400;
}
body .themed.silver .search-overlay {
  background: rgba(51, 60, 72, 0.7);
}
body .themed.silver .navbar-right > li > a > i {
  background: #ffa400;
  color: #fff;
}
body .themed.silver .top-menu .toggle-collapse {
  background-color: #f5f5f5;
  border-right: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
body .themed.silver .navbar-right .notifications > a > i {
  background: transparent;
  color: #627789;
}
body .themed.silver .navbar-right .notifications > a > i {
  color: #627789;
}
body .themed.silver {
  /* header */
  /* main tab container */
}
body .themed.silver .nav-tabs {
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-left: none;
}
body .themed.silver .nav-tabs li:first-of-type a {
  border-left: 1px solid #ebebeb;
}
body .themed.silver .nav-tabs li a {
  color: #1b4461;
}
body .themed.silver .nav-tabs li a:hover {
  color: #ffa400;
  background-color: #f9f9f9;
}
body .themed.silver .nav-tabs li.active a {
  background-color: #fff;
  color: #ffa400;
}
body .themed.silver .nav-tabs li.active a:focus {
  background-color: #fff;
}
body .themed.silver .nav-tabs li.active a:hover {
  background-color: #fff;
}
body .themed.silver .nav-tabs > li.active > a,
body .themed.silver .nav-tabs > li.active > a:hover,
body .themed.silver .nav-tabs > li.active > a:focus {
  border-top: none;
}
body .themed.silver .tab-header .tab-section.on {
  background: #fff;
}
body .themed.silver .tab-content {
  border: 1px solid #ebebeb;
  border-top: none;
}
body .themed.silver .wizard .tab-content {
  border-top: 1px solid #ebebeb;
}
body .themed.silver .wizard ul.nav-tabs {
  background-color: transparent;
  margin-bottom: 10px;
  padding-top: 25px;
}
body .themed.silver .wizard ul.nav-tabs li a {
  color: #627789;
}
body .themed.silver .wizard ul.nav-tabs li.active a {
  color: #627789;
}
body .themed.silver div.wizard ul.nav-tabs li a::before {
  background-color: #627789;
  color: white;
}
body .themed.silver div.wizard ul.nav-tabs li a::after {
  background-color: #627789;
}
body .themed.silver div.wizard ul.nav-tabs li.active ~ li a::after {
  background-color: #F6F7F8;
}
body .themed.silver div.wizard ul.nav-tabs li.active ~ li a::before {
  background-color: #F6F7F8;
  color: #627789;
}
body .themed.silver .tab-pane {
  background: #fff;
}
body .themed.silver .tabs.above {
  background-color: transparent;
}
body .themed.silver ul.vertical-tab-nav {
  background: white;
}
body .themed.silver ul.vertical-tab-nav li.active {
  border: 1px solid #ebebeb;
}
body .themed.silver ul.vertical-tab-nav li a {
  color: #1b4461;
  background-color: #f9f9f9;
}
body .themed.silver ul.vertical-tab-nav li a:hover {
  border-right-color: #ffa400;
  color: #ffa400;
}
body .themed.silver ul.vertical-tab-nav li.active a {
  border-right-color: #ffa400;
  color: #ffa400;
  font-weight: bold;
}
body .themed.silver ul.vertical-tab-nav li.heading {
  color: #627789;
  font-weight: bold;
  border-bottom: 1px solid #627789;
}
body .themed.silver ul.vertical-tab-nav li.heading {
  margin-left: 0px;
  margin-right: 0px;
}
body .themed.silver body {
  font-family: Open Sans, "Myriad Pro", Arial, Times, Georgia, sans-serif;
  font-size: 14px;
}
body .themed.silver header .small:not(button) {
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
  text-transform: uppercase;
}
body .themed.silver .green {
  color: #5b9840;
}
body .themed.silver .orange {
  color: #ffa400;
}
body .themed.silver .red {
  color: #fd4f00;
}
body .themed.silver .light-gray {
  color: #ededed;
}
body .themed.silver .gray {
  color: #9aa1a7;
}
body .themed.silver .highlightedText {
  font-weight: bolder;
}
body .themed.silver a {
  color: #627789;
}
body .themed.silver a:hover {
  color: #ffa400;
  text-decoration: none;
}
body .themed.silver section h5 {
  color: #ffa400;
  font-weight: normal;
}
body .themed.silver section h6 {
  color: #ffa400;
}
body .themed.silver .badge {
  background-color: #709cc1;
  color: #fff;
  font-weight: normal;
  border-radius: 2px;
}
body .themed.silver .badge.red {
  background-color: #e64a4a;
  color: #ffffff;
}
body .themed.silver span.new-badge {
  border-radius: 4px;
  background: #ffa400;
  color: #fff;
}
body .themed.silver span.fix-badge {
  border-radius: 4px;
  background: #333c48;
  color: #fff;
}
body .themed.silver .dropdown .dropdown-menu li:not(.button-row),
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) a:not(.link),
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) button,
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) > i,
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) > i {
  color: #666;
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-color: transparent;
}
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) a:hover,
body .themed.silver .dropdown .dropdown-menu li:not(.button-row) button:hover {
  color: #ffa400;
  border-color: #ffa400;
}
body .themed.silver .dropdown .dropdown-menu .divider {
  background-color: #E5E5E5;
}
body .themed.silver .document-title {
  background-color: #304967;
}
body .themed.silver .side-menu {
  background-color: #f5f5f5;
  border-right: 1px solid #ebebeb;
}
body .themed.silver .side-menu ul > li:last-of-type {
  border-bottom: 1px solid #f5f5f5;
}
body .themed.silver .side-menu ul > li.current {
  background: #f5f5f5;
}
body .themed.silver .side-menu ul > li.current > a {
  text-decoration: none;
  border-right: 6px solid #ffa400;
}
body .themed.silver .side-menu-collapsed .side-menu ul > li.current > a {
  padding-left: 5px;
}
body .themed.silver .side-menu ul li {
  border-top: 1px solid #f5f5f5;
}
body .themed.silver .side-menu ul li a {
  color: #1b4461;
  padding-top: 10px;
}
body .themed.silver .side-menu ul li a:hover {
  text-decoration: none;
  color: #ffa400;
}
body .themed.silver .side-menu ul li ul li {
  border-top: 1px solid #f5f5f5;
}
body .themed.silver .side-menu ul li ul li a {
  padding-left: 30px;
}
body .themed.silver .side-menu ul li.current ul li.current a {
  border-right: 6px solid #ffd08d;
}
body .themed.silver .side-menu ul li ul.a-sub-menu {
  border-top: 1px solid #f5f5f5;
}
body .themed.silver .side-menu .search:before {
  color: #ffa400;
}
body .themed.silver .side-menu .search input {
  background-color: #f5f5f5;
  color: rgba(255, 255, 255, 0.75);
}
body .themed.silver .sub-menu-slide {
  background-color: #627789;
  color: #edf0f2;
}
body .themed.silver .sub-menu-slide header {
  border-bottom-color: #333;
  background-color: #F6F7F8;
  color: #1b4461;
}
body .themed.silver .sub-menu-slide .sub-menu li {
  border-bottom-color: #ebebeb;
}
body .themed.silver .sub-menu-slide .sub-menu li a {
  color: #edf0f2;
  padding: 9px 20px 10px 15px;
}
body .themed.silver .sub-menu-slide .sub-menu li a:hover,
body .themed.silver .sub-menu-slide .sub-menu li a:focus {
  background-color: #2a333b;
}
body .themed.silver.side-menu-collapsed .side-menu ul > li.current > a {
  padding-left: 6px;
}
body .themed.silver.side-menu-collapsed .side-menu ul li a {
  padding: 8px 0 7px 0;
}
body .themed.silver #footer {
  border-top: 1px solid #ebebeb;
  border-left: none;
  background: #f5f5f5;
}
body .themed.silver .footer-nav li a {
  color: #627789;
}
body .themed.silver .footer-nav li a:hover {
  color: #ffa400;
  text-decoration: none;
}
body .themed.silver .footer-logo,
body .themed.silver .footer-logo:active,
body .themed.silver .footer-logo:visited,
body .themed.silver .footer-logo:hover {
  color: #333c48;
}
body .themed.silver .modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 3px;
}
body .themed.silver .modal-backdrop {
  background-color: #627789;
}
body .themed.silver .modal header.modal-header > button {
  margin: 4px;
  color: #ccc;
  font-size: 16px;
  background: transparent;
  border-color: transparent;
}
body .themed.silver .modal header.modal-header > button:hover {
  color: #627789;
  background: transparent;
  border-color: transparent;
}
body .themed.silver .modal .busy-indicator-backdrop {
  border-radius: 3px;
}
body .themed.silver .modal-content .modal-header.modal-header,
body .themed.silver .modal-content .modal-footer {
  background-color: #fff;
}
body .themed.silver .gridster-loaded .gridster-item {
  background-color: #f9f9f9;
  border-style: solid;
  border-width: 1px;
  border-color: #e5e6e9 #dfe0e4 #d0d1d5;
}
body .themed.silver .gridster-loaded .gridster-item.has-border {
  border-top: 2px;
  border-top-style: solid;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-red {
  border-top-color: #e64a4a;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-green {
  border-top-color: #5b9840;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-blue {
  border-top-color: #428bca;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-orange {
  border-top-color: #ffa400;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-peach {
  border-top-color: #f8cd95;
}
body .themed.silver .gridster-loaded .gridster-item.has-border-charcoal {
  border-top-color: #333c48;
}
body .themed.silver .editable-buttons button {
  border-radius: 0;
  border-color: transparent;
  right: 1px;
}
body .themed.silver .editable-cancel-btn {
  background: transparent;
  color: #1b4461;
  border-color: #a7b8c6;
}
body .themed.silver .editable-cancel-btn:hover {
  background-color: #627789;
  border-color: #627789;
  color: #fff;
}
body .themed.silver .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button {
  border-color: transparent;
  background-color: transparent;
}
body .themed.silver .gridster-item .value-widget .dashboard-widget-body .label-wrapper h3 {
  background-color: transparent;
}
body .themed.silver .gridster-loaded .gridster-item {
  background-color: #f9f9f9;
}
body .themed.silver .gridster-item .list-pagination .records-per-page > button {
  padding: 4px;
}
body .themed.silver .gridster-item .dashboard-widget-header h2 {
  font-weight: normal;
}
/* Typography */
/* Misc Styles */
/* Page Layout */
/* Inputs */
/* Badges */
/* Buttons */
/* Table */
/* Pagination */
/* Modals */
/* Tabs */
/* Loading Mask (busy-indicator) */
/* empty state */
/* Dropzone */
/* PageSlide */
/* Dashboard */
body .themed.dark {
  /* buttons */
  /* button colors */
  /* tag button */
}
body .themed.dark button,
body .themed.dark a.button,
body .themed.dark input[type=button],
body .themed.dark input[type=submit] {
  font-weight: normal;
  border-color: #167CD1;
  color: #D3D7D9;
  background-color: #167CD1;
}
body .themed.dark button:hover,
body .themed.dark a.button:hover,
body .themed.dark input[type=button]:hover,
body .themed.dark input[type=submit]:hover {
  background-color: #91C8F6;
  border-color: #91C8F6;
  color: #29313A;
}
body .themed.dark button.gray,
body .themed.dark a.button.gray,
body .themed.dark input[type=button].gray,
body .themed.dark input[type=submit].gray,
body .themed.dark button.white,
body .themed.dark a.button.white,
body .themed.dark input[type=button].white,
body .themed.dark input[type=submit].white {
  background: transparent;
  color: #b6c2cf;
  border-color: #8696A9;
}
body .themed.dark button.gray:hover,
body .themed.dark a.button.gray:hover,
body .themed.dark input[type=button].gray:hover,
body .themed.dark input[type=submit].gray:hover,
body .themed.dark button.white:hover,
body .themed.dark a.button.white:hover,
body .themed.dark input[type=button].white:hover,
body .themed.dark input[type=submit].white:hover {
  background-color: transparent;
  border-color: #ffa400;
  color: #ffa400;
}
body .themed.dark button.transparent,
body .themed.dark a.button.transparent,
body .themed.dark input[type=button].transparent,
body .themed.dark input[type=submit].transparent {
  background: transparent;
  color: #167CD1;
  border-color: transparent;
}
body .themed.dark button.transparent:hover,
body .themed.dark a.button.transparent:hover,
body .themed.dark input[type=button].transparent:hover,
body .themed.dark input[type=submit].transparent:hover {
  color: #ffa400;
}
body .themed.dark .tag-button {
  background-color: #ffa400;
  color: #1C2228;
}
body .themed.dark a.tag {
  color: #1C2228;
}
body .themed.dark a.tag:hover {
  color: #ffa400;
}
body .themed.dark .panel-group .panel .panel-body button {
  color: #D3D7D9;
  background-color: transparent;
  border-color: transparent;
}
body .themed.dark .panel-group .panel .panel-body button:hover,
body .themed.dark .panel-group .panel .panel-body button.active {
  color: #ffa400;
}
body .themed.dark button:disabled:hover,
body .themed.dark a.button:disabled:hover,
body .themed.dark input[type=button]:disabled:hover,
body .themed.dark input[type=submit]:disabled:hover {
  background-color: #8696A9;
  border-color: #8696A9;
}
body .themed.dark .btn-group button:first-child,
body .themed.dark .btn-group input[type=submit]:first-child,
body .themed.dark .btn-group input[type=button]:first-child,
body .themed.dark .btn-group a.button:first-child {
  border-right: none;
}
body .themed.dark .btn-group button.inactive {
  background-color: #29313A;
}
body .themed.dark .btn-group button.inactive:hover {
  color: #D3D7D9;
}
body .themed.dark .tag-container .tag {
  font-weight: bold;
}
body .themed.dark .tag-container .tag-form button {
  background-color: #ffa400;
  border-color: #ffa400;
  color: #1C2228;
}
body .themed.dark .tag-container .tag button {
  background-color: #ffa400;
  border-color: #ffa400;
  color: #1C2228;
}
body .themed.dark {
  /* nested table */
  /* table stripes */
}
body .themed.dark table table {
  border-color: #3A4552;
  color: #b6c2cf;
}
body .themed.dark table tr th {
  background-color: #232931;
  border-bottom-color: 1px solid #3A4552;
  color: #b6c2cf;
}
body .themed.dark table > tbody > tr > td {
  border-bottom-color: #3A4552;
}
body .themed.dark table.group-by-tbody > tbody {
  border-bottom-color: #3A4552;
}
body .themed.dark table thead tr th button {
  background-color: transparent;
  color: #91C8F6;
  border-color: transparent;
}
body .themed.dark table thead tr th button:hover {
  background-color: transparent;
  border-color: transparent;
  color: #ffa400;
}
body .themed.dark table:not(.manual-stripe) > tbody > tr:nth-child(odd) > td,
body .themed.dark table > tbody > tr:nth-child(odd) > th,
body .themed.dark table.manual-stripe > tbody > tr > td,
body .themed.dark table.group-by-tbody > tbody:nth-of-type(odd) > tr > td {
  background-color: #29313A;
}
body .themed.dark table:not(.manual-stripe) > tbody > tr:nth-child(even) > td,
body .themed.dark table > tbody > tr:nth-child(even) > th,
body .themed.dark table.manual-stripe > tbody > tr.alt > td,
body .themed.dark table.group-by-tbody > tbody:nth-of-type(even) > tr > td {
  background-color: #29313A;
}
body .themed.dark tr.noRecords span {
  color: #b6c2cf;
}
body .themed.dark table tr.table-details-row .bond-grid-details-row {
  border-color: #3A4552;
}
body .themed.dark table tr.clickable-table-row:hover td.clickable-table-cell i {
  color: #ffa400;
}
body .themed.dark table tr.alt.table-details-row .bond-grid-details-row {
  border-color: #3A4552;
}
body .themed.dark .initial-state .empty-backdrop-grad {
  background: none;
}
body .themed.dark .initial-state,
body .themed.dark .initial-state.white {
  border-color: transparent;
  background-color: transparent;
}
body .themed.dark .initial-state .icon {
  background-color: transparent;
}
body .themed.dark .initial-state .icon i {
  color: #8696A9;
  opacity: 0.33;
}
body .themed.dark table tr td.table-row-status-critical {
  border-left: 1rem solid #FF5555;
}
body .themed.dark table tr td.table-row-status-warning {
  border-left: 1rem solid #FF8888;
}
body .themed.dark table tr td.table-row-status-attention {
  border-left: 1rem solid #FABD64;
}
body .themed.dark .email-preview {
  border: 1px solid #8696A9;
}
body .themed.dark .email-preview table {
  border: none;
  background: #29313A !important;
}
body .themed.dark .email-preview table tr > td {
  background: #29313A !important;
}
body .themed.dark {
  /* color variants */
}
body .themed.dark section {
  background-color: #232931;
  border-color: transparent;
}
body .themed.dark section > header {
  border-bottom-color: #8696A9;
  color: #9fadbc;
  font-weight: bold;
}
body .themed.dark section.flag {
  border-color: #F88;
}
body .themed.dark section.above {
  background-color: transparent;
  border-color: transparent;
}
body .themed.dark section.dark {
  background-color: #3A4552;
}
body .themed.dark .release-menu {
  background-color: #232931;
}
body .themed.dark .release-menu li {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
body .themed.dark .release-menu li:hover {
  background-color: #29313A;
  border-right: 5px solid #ffa400;
}
body .themed.dark .release-menu ul li.on {
  background-color: #29313A;
  border-right: 5px solid #ffa400;
}
body .themed.dark section h5.sub-heading span {
  color: #b6c2cf;
}
body .themed.dark {
  /* text inputs &*/
  /* input outline */
  /* selects */
  /* field-wrapper */
  /* empty-input */
  /* validation */
  /* validation alert notification */
  /* search boxes */
  /* search box colors */
  /* Colors */
  /* inline edit inputs */
  /* ==== editable-form ==== */
  /* ==== element ==== */
}
body .themed.dark input[type=text],
body .themed.dark input[type=email],
body .themed.dark input[type=url],
body .themed.dark input[type=number],
body .themed.dark input[type=password],
body .themed.dark textarea,
body .themed.dark select,
body .themed.dark .ui-select-match {
  border-color: #8696A9;
  background-color: transparent;
  color: #D3D7D9;
}
body .themed.dark input::placeholder,
body .themed.dark select::placeholder {
  color: #3A4552;
}
body .themed.dark input:focus::placeholder,
body .themed.dark select:focus::placeholder {
  color: #8696A9;
}
body .themed.dark input[type=text].white,
body .themed.dark input[type=email].white,
body .themed.dark input[type=url].white,
body .themed.dark input[type=number].white,
body .themed.dark input[type=password].white,
body .themed.dark textarea.white,
body .themed.dark select.white,
body .themed.dark .ui-select-match.white {
  background-color: transparent;
}
body .themed.dark input:not([type=button]):not([type=radio]):not([type=checkbox]):not([type=submit]):focus,
body .themed.dark textarea:focus,
body .themed.dark select:focus {
  border-color: #8696A9;
}
body .themed.dark input:disabled,
body .themed.dark select:disabled,
body .themed.dark select:disabled,
body .themed.dark textarea:disabled {
  background-color: transparent;
}
body .themed.dark select.unselected {
  color: #D3D7D9;
}
body .themed.dark select.unselected option {
  color: #b6c2cf;
}
body .themed.dark select option[disabled] {
  color: #D3D7D9;
}
body .themed.dark select option {
  color: #b6c2cf;
  background-color: #1C2228;
}
body .themed.dark select optgroup {
  color: #b6c2cf;
  background-color: #1C2228;
}
body .themed.dark .field-wrapper div.label {
  color: #D3D7D9;
}
body .themed.dark .field-wrapper .validation-indicator,
body .themed.dark .address-field-wrapper .validation-indicator {
  color: #F88;
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
body .themed.dark .field-wrapper input:not([type=checkbox]):not([type=radio]),
body .themed.dark .field-wrapper select {
  background-color: transparent;
}
body .themed.dark .empty-input:not(.search) input:not([type=checkbox]):not([type=radio]),
body .themed.dark .empty-input select,
body .themed.dark .empty-input textarea {
  background: transparent;
}
body .themed.dark .empty-input:not(.search) input:not(:focus),
body .themed.dark .empty-input select:not(:focus),
body .themed.dark .empty-input textarea:not(:focus) {
  border-color: #8696A9;
}
body .themed.dark .empty-input input:not([type=checkbox]):not([type=radio]):disabled,
body .themed.dark .empty-input select:disabled,
body .themed.dark .empty-input textarea:disabled {
  background: transparent;
  border-color: #8696A9;
}
body .themed.dark .field-wrapper.empty-input.select.disabled select:disabled,
body .themed.dark .field-wrapper select:disabled {
  border-color: #8696A9;
}
body .themed.dark .field-wrapper.empty-input .validation-indicator {
  color: #F88;
  margin-top: 0px;
  vertical-align: bottom;
  display: inline-block;
  line-height: 8px;
}
body .themed.dark .inline-label {
  font-weight: normal;
}
body .themed.dark input[type=text].ng-invalid.aa-had-focus,
body .themed.dark input[type=text].ng-invalid.ng-dirty,
body .themed.dark input[type=text].ng-invalid.aa-invalid-attempt,
body .themed.dark input[type=email].ng-invalid.aa-had-focus,
body .themed.dark input[type=email].ng-invalid.ng-dirty,
body .themed.dark input[type=email].ng-invalid.aa-invalid-attempt,
body .themed.dark input[type=url].ng-invalid.aa-had-focus,
body .themed.dark input[type=url].ng-invalid.ng-dirty,
body .themed.dark input[type=url].ng-invalid.aa-invalid-attempt,
body .themed.dark input[type=number].ng-invalid.aa-had-focus,
body .themed.dark input[type=number].ng-invalid.ng-dirty,
body .themed.dark input[type=number].ng-invalid.aa-invalid-attempt,
body .themed.dark input[type=password].ng-invalid.aa-had-focus,
body .themed.dark input[type=password].ng-invalid.ng-dirty,
body .themed.dark input[type=password].ng-invalid.aa-invalid-attempt,
body .themed.dark textarea.ng-invalid.aa-had-focus,
body .themed.dark textarea.ng-invalid.ng-dirty,
body .themed.dark textarea.ng-invalid.aa-invalid-attempt,
body .themed.dark select.ng-invalid.aa-had-focus,
body .themed.dark select.ng-invalid.ng-dirty,
body .themed.dark select.ng-invalid.aa-invalid-attempt,
body .themed.dark .ui-select-match.ng-invalid.aa-had-focus,
body .themed.dark .ui-select-match.ng-invalid.ng-dirty,
body .themed.dark .ui-select-match.ng-invalid.aa-invalid-attempt,
body .themed.dark .field-wrapper.ng-invalid.aa-had-focus .ui-select-match,
body .themed.dark .field-wrapper.ng-invalid.ng-dirty .ui-select-match,
body .themed.dark .field-wrapper.ng-invalid.aa-invalid-attempt .ui-select-match {
  border-color: #F88;
}
body .themed.dark .validation-error {
  color: #F88;
}
body .themed.dark .validation-notification .alert-danger {
  color: #B8BEC1;
  background-color: #333c48;
  border-color: #F88;
  box-shadow: 2px 2px 2px #333c48;
}
body .themed.dark .validation-notification ul li > a {
  color: #ffa400;
}
body .themed.dark .search > div > i.fa-search {
  background-color: transparent;
  height: 25px;
}
body .themed.dark .search.white > div > input:not([type=button]):not([type=submit]) {
  background-color: transparent;
  border-color: #8696A9;
  box-shadow: none;
}
body .themed.dark .search.white > div > input:not([type=button]):not([type=submit]):focus {
  border-color: #8696A9;
}
body .themed.dark .search.white > div > i {
  color: #D3D7D9;
}
body .themed.dark .search .dropdown button {
  background: transparent;
  color: #D3D7D9;
}
body .themed.dark .search .dropdown button:hover {
  background: #1C2228;
  color: #D3D7D9;
}
body .themed.dark input.white:not([type=button]):not([type=submit]) {
  background-color: #FAFAFA;
}
body .themed.dark input.black:not([type=button]):not([type=submit]) {
  background-color: #333c48;
  color: #B8BEC1;
}
body .themed.dark .boundGridInlineEdit input {
  background: transparent;
}
body .themed.dark .editable-wrap .editable-controls > input {
  background: transparent;
}
body .themed.dark .editable-click::after {
  color: #91C8F6;
}
body .themed.dark .editable-click:hover {
  background: transparent;
  color: #91C8F6;
}
body .themed.dark .editable-empty,
body .themed.dark .editable-empty:hover,
body .themed.dark .editable-empty:focus,
body .themed.dark a.editable-empty,
body .themed.dark a.editable-empty:hover,
body .themed.dark a.editable-empty:focus {
  color: #F88;
}
body .themed.dark .bootstrap-switch-wrapper label {
  font-weight: normal;
}
body .themed.dark .ats-switch span.switch-right {
  background-color: #3A4552;
  color: #FAFAFA;
}
body .themed.dark .ats-switch .knob {
  background-color: #D3D7D9;
}
body .themed.dark .ats-switch .knob i {
  text-shadow: none;
}
body .themed.dark .address-field-wrapper .address-field-border-wrapper {
  border: 1px solid #8696A9;
}
body .themed.dark .address-field-wrapper.invalid .address-field-border-wrapper {
  border-color: #F88;
}
body .themed.dark .address-field-wrapper.invalid .validation-message {
  color: #F88;
}
body .themed.dark .address-field-wrapper > label {
  color: #D3D7D9;
}
body .themed.dark .toggle-switch .toggle-switch-wrapper .toggle-switch-slider {
  background: #3A4552;
}
body .themed.dark .toggle-switch .toggle-switch-wrapper .toggle-switch-slider:before {
  background-color: #29313A;
}
body .themed.dark .toggle-switch .toggle-switch-wrapper.active .toggle-switch-slider {
  background-color: #ABE2AB;
}
body .themed.dark {
  color: #b6c2cf;
}
body .themed.dark .page {
  background-color: #1C2228;
}
body .themed.dark .page-title {
  border-color: transparent;
  background-color: #29313A;
  color: #91C8F6;
  font-weight: normal;
}
body .themed.dark .page-title a {
  color: #91C8F6;
}
body .themed.dark .page-title header .dropdown {
  background: transparent;
}
body .themed.dark .page-title header .dropdown > a {
  line-height: 23px;
  color: #91C8F6;
  font-weight: normal;
}
body .themed.dark .page-title header .dropdown > a:hover {
  text-decoration: none;
  color: #ffa400;
}
body .themed.dark .page-title .dropdown > a > i.fa {
  margin-left: 5px;
}
body .themed.dark .page-title button:hover {
  color: #ffa400;
  background: #232931;
  border-color: #8696A9;
}
body .themed.dark .ng-pageslide {
  background: #232931;
  border-left: none;
  box-shadow: 1px 0 10px #000;
  top: 0px !important;
  z-index: 1001 !important;
}
body .themed.dark .busy-indicator-backdrop {
  background-color: #8696A9;
  opacity: 0.25;
}
body .themed.dark .busy-indicator-default-text {
  color: inherit;
}
body .themed.dark .busy-indicator-default-spinner div {
  background: #167CD1;
}
body .themed.dark .busy-indicator-default-sign {
  background: #29313A;
  border-color: #29313A;
  color: #b6c2cf;
  box-shadow: 0 1px 10px #000000;
  text-shadow: none;
}
body .themed.dark .message-content {
  background-color: #1c2228;
  border: 1px solid #323232;
}
body .themed.dark .message-medadata {
  color: #999;
}
body .themed.dark .list-pagination .pagination a {
  border: none;
  color: #D3D7D9;
  background-color: transparent;
  border-color: transparent;
}
body .themed.dark .list-pagination .pagination a:hover {
  color: #ffa400;
  background-color: transparent;
  border-color: transparent;
}
body .themed.dark .list-pagination .pagination > .active > a {
  background: transparent;
  color: #167CD1;
}
body .themed.dark .list-pagination .pagination > .active > a:hover {
  color: #ffa400;
}
body .themed.dark .list-pagination .records-per-page > button {
  background-color: #167CD1;
  border-color: #167CD1;
  color: #D3D7D9;
}
body .themed.dark .list-pagination .records-per-page > button:hover {
  background-color: #91C8F6;
  border-color: #91C8F6;
  color: #29313A;
}
body .themed.dark .top-menu {
  border-bottom: 1px solid #1C2228;
  background: #232931;
}
body .themed.dark .top-menu .navbar-left li button {
  background: transparent;
  color: #b6c2cf;
  border-color: #8696A9;
}
body .themed.dark .top-menu .navbar-left li button:hover {
  background-color: transparent;
  border-color: #ffa400;
  color: #ffa400;
}
body .themed.dark .top-menu .global-search::before {
  background-color: transparent;
  color: #D3D7D9;
}
body .themed.dark body .top-menu form.global-search .global-search-input input[type=text] {
  background-color: transparent;
  color: #D3D7D9;
  border-color: #8696A9;
}
body .themed.dark .top-menu .global-search button.search-button {
  border-color: #8696A9;
  background-color: transparent;
}
body .themed.dark .top-menu .global-search .search-results {
  background-color: #1C2228;
  color: #b6c2cf;
  box-shadow: 0 1px 10px #000000;
}
body .themed.dark .top-menu .global-search .search-results .results-category {
  border-top-color: #8696A9;
}
body .themed.dark .top-menu .global-search .search-results .results-category li.title {
  color: #ffa400;
}
body .themed.dark .top-menu .global-search .search-results .results-category li:not(.title) {
  border-right-color: transparent;
  color: #b6c2cf;
}
body .themed.dark .top-menu .global-search .search-results .results-category li:not(.title):hover {
  background: #232931;
  border-color: #ffa400;
}
body .themed.dark .search-overlay {
  background: #1C2228;
  opacity: 0.5;
}
body .themed.dark .navbar-right > li > a > i {
  background: #ffa400;
  color: #fff;
}
body .themed.dark .top-menu .toggle-collapse {
  background-color: transparent;
  border-color: transparent;
  top: 17px;
  left: -7px;
}
body .themed.dark .navbar-right .notifications > a > i {
  background: #232931;
  color: #b6c2cf;
}
body .themed.dark .navbar-right .notifications > a > i {
  color: #b6c2cf;
}
body .themed.dark .notifications .notification {
  background-color: transparent;
}
body .themed.dark .notifications .notification:hover {
  background-color: #29313A;
}
body .themed.dark .notifications .dropdown-menu > header {
  background-color: transparent;
}
body .themed.dark .notifications .notification .notification-actions button {
  color: #167CD1;
}
body .themed.dark .notifications .notification .notification-actions button:hover {
  color: #ffa400;
}
body .themed.dark {
  /* header */
  /* main tab container */
}
body .themed.dark .nav-tabs {
  background-color: transparent;
  border: 1px solid transparent;
  border-left: none;
}
body .themed.dark .nav-tabs li:first-of-type a {
  border-left: 1px solid transparent;
}
body .themed.dark .nav-tabs li a:hover {
  color: #ffa400;
}
body .themed.dark .nav-tabs li.active a {
  color: #ABE2AB;
  border-bottom: 5px solid #ABE2AB;
}
body .themed.dark .nav-tabs > li > a:hover {
  background: none;
}
body .themed.dark .nav-tabs > li.active > a,
body .themed.dark .nav-tabs > li.active > a:hover,
body .themed.dark .nav-tabs > li.active > a:focus {
  background-color: transparent;
  border-top: none;
  border-right: none;
  border-left: none;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
body .themed.dark .wizard ul.nav-tabs {
  background-color: transparent;
  margin-bottom: 10px;
  padding-top: 25px;
}
body .themed.dark .wizard ul.nav-tabs li a {
  color: #627789;
}
body .themed.dark .wizard ul.nav-tabs li.active a {
  color: #627789;
}
body .themed.dark div.wizard ul.nav-tabs li a::before {
  background-color: #627789;
  color: white;
}
body .themed.dark div.wizard ul.nav-tabs li a::after {
  background-color: #627789;
}
body .themed.dark div.wizard ul.nav-tabs li.active ~ li a::after {
  background-color: #F6F7F8;
}
body .themed.dark div.wizard ul.nav-tabs li.active ~ li a::before {
  background-color: #F6F7F8;
  color: #627789;
}
body .themed.dark .tab-pane {
  background: transparent;
  padding: 0;
}
body .themed.dark .tabs.above {
  background-color: transparent;
}
body .themed.dark ul.vertical-tab-nav {
  background: #232931;
}
body .themed.dark ul.vertical-tab-nav li.active {
  border: none;
}
body .themed.dark ul.vertical-tab-nav li a {
  background-color: unset;
}
body .themed.dark ul.vertical-tab-nav li a:hover,
body .themed.dark ul.vertical-tab-nav li.active a {
  border-right-color: #ABE2AB;
  color: #ABE2AB;
  background-color: transparent;
}
body .themed.dark ul.vertical-tab-nav li.heading {
  color: #8696A9;
  font-weight: bold;
  border-bottom: 1px solid #3A4552;
}
body .themed.dark body {
  font-family: Open Sans, "Myriad Pro", Arial, Times, Georgia, sans-serif;
  font-size: 14px;
}
body .themed.dark header .small:not(button) {
  font-size: 11px;
  font-weight: normal;
  line-height: 15px;
  text-transform: uppercase;
}
body .themed.dark .green {
  color: #ABE2AB;
}
body .themed.dark .orange {
  color: #ffa400;
}
body .themed.dark .red {
  color: #F88;
}
body .themed.dark .light-gray {
  color: #B8BEC1;
}
body .themed.dark .gray {
  color: #8696A9;
}
body .themed.dark .highlightedText {
  font-weight: bolder;
}
body .themed.dark a {
  color: #91C8F6;
}
body .themed.dark a:hover {
  color: #ffa400;
  text-decoration: none;
}
body .themed.dark section h5 {
  color: #ffa400;
  font-weight: normal;
}
body .themed.dark section h6 {
  color: #ffa400;
}
body .themed.dark .badge {
  background-color: #91C8F6;
  color: #232931;
}
body .themed.dark .badge.red {
  background-color: #FF5555;
  color: #232931;
}
body .themed.dark span.new-badge {
  background: #3A4552;
  color: #ABE2AB;
}
body .themed.dark span.fix-badge {
  background: #3A4552;
  color: #F88;
}
body .themed.dark .dropdown .dropdown-menu {
  box-shadow: 0 1px 10px #000000;
  background-color: #232931;
}
body .themed.dark .dropdown .dropdown-menu li:not(.button-row),
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) a:not(.link),
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) button,
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) > i,
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) > i {
  color: #b6c2cf;
  background-color: #232931;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-color: transparent;
}
body .themed.dark .dropdown .dropdown-menu li a.btn-link {
  color: #91C8F6;
}
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) a:hover,
body .themed.dark .dropdown .dropdown-menu li:not(.button-row) button:hover {
  color: #ffa400;
  border-color: #ffa400;
}
body .themed.dark .dropdown .dropdown-menu .divider {
  background-color: #3A4552 !important;
}
body .themed.dark .document-title {
  background-color: #232931;
}
body .themed.dark .ui-select-highlight {
  font-weight: bold;
  color: #ABE2AB;
}
body .themed.dark .alert {
  border-color: transparent;
  box-shadow: none;
}
body .themed.dark .alert-warning {
  background: transparent;
  border-color: #8a6d3b;
  color: #fcf8e3;
}
body .themed.dark .alert-danger {
  border: 2px solid #F88;
  background: #1C2228;
  color: unset;
}
body .themed.dark .side-menu {
  background-color: #232931;
  border-right: 1px solid transparent;
  box-shadow: -1px 1px 10px #000000;
}
body .themed.dark .side-menu ul > li:last-of-type {
  border-bottom: 1px solid transparent;
}
body .themed.dark .side-menu ul > li.current {
  background: #29313A;
}
body .themed.dark .side-menu ul > li.current > a {
  text-decoration: none;
  border-right: 6px solid #ffa400;
}
body .themed.dark .side-menu-collapsed .side-menu ul > li.current > a {
  padding-left: 5px;
}
body .themed.dark .side-menu ul li {
  border-top: 1px solid transparent;
}
body .themed.dark .side-menu ul li a {
  color: #b6c2cf;
  padding-top: 10px;
}
body .themed.dark .side-menu ul li a:hover {
  text-decoration: none;
  color: #ffa400;
}
body .themed.dark .side-menu ul li ul li {
  border-top: 1px solid transparent;
}
body .themed.dark .side-menu ul li ul li a {
  padding-left: 30px;
}
body .themed.dark .side-menu ul li.current ul li.current a {
  border-right: 6px solid #FABD64;
}
body .themed.dark .side-menu ul li ul.a-sub-menu {
  border-top: 1px solid transparent;
}
body .themed.dark .side-menu .search:before {
  color: #ffa400;
}
body .themed.dark .side-menu .search input {
  background-color: #232931;
  color: #b6c2cf;
}
body .themed.dark .sub-menu-slide {
  background-color: #232931;
  color: #b6c2cf;
}
body .themed.dark .sub-menu-slide header {
  border-bottom-color: transparent;
  background-color: #3A4552;
  color: #b6c2cf;
}
body .themed.dark .sub-menu-slide .sub-menu li {
  border-bottom-color: transparent;
}
body .themed.dark .sub-menu-slide .sub-menu li a {
  color: #b6c2cf;
  padding: 9px 20px 10px 15px;
}
body .themed.dark .sub-menu-slide .sub-menu li a:hover,
body .themed.dark .sub-menu-slide .sub-menu li a:focus {
  color: #ffa400;
}
body .themed.silver.side-menu-collapsed .side-menu ul > li.current > a {
  padding-left: 6px;
}
body .themed.silver.side-menu-collapsed .side-menu ul li a {
  padding: 8px 0 7px 0;
}
body .themed.dark #footer {
  border-top: 1px solid transparent;
  border-left: none;
  background: #232931;
  box-shadow: 10px 1px 10px #000000;
}
body .themed.dark .footer-nav li a {
  color: #b6c2cf;
}
body .themed.dark .footer-nav li a:hover {
  color: #ffa400;
  text-decoration: none;
}
body .themed.dark .footer-logo,
body .themed.dark .footer-logo:active,
body .themed.dark .footer-logo:visited,
body .themed.dark .footer-logo:hover {
  color: #b6c2cf;
}
body .themed.dark .modal-content {
  background-color: #1C2228;
  box-shadow: 0 1px 10px #000000;
}
body .themed.dark .modal-backdrop {
  background: #1C2228;
  opacity: 0.75;
}
body .themed.dark .modal header.modal-header > button {
  color: #D3D7D9;
  background: transparent;
  border-color: transparent;
}
body .themed.dark .modal header.modal-header > button:hover {
  color: #D3D7D9;
  background: transparent;
  border-color: transparent;
}
body .themed.dark .modal .modal-header,
body .themed.dark .modal .modal-footer {
  background-color: #1C2228;
}
body .themed.dark .gridster-loaded .gridster-item {
  background-color: #232931;
  border-style: solid;
  border-width: 1px;
  border-color: #232931;
}
body .themed.dark .gridster-loaded .gridster-item.has-border {
  border-top: 5px;
  border-top-style: solid;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-red {
  border-top-color: #F88;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-green {
  border-top-color: #ABE2AB;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-blue {
  border-top-color: #167CD1;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-orange {
  border-top-color: #ffa400;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-peach {
  border-top-color: #FABD64;
}
body .themed.dark .gridster-loaded .gridster-item.has-border-charcoal {
  border-top-color: #333c48;
}
body .themed.dark .editable-buttons button {
  border-radius: 0;
  border-color: transparent;
  right: 0px;
}
body .themed.dark .editable-cancel-btn {
  background: transparent;
  color: #b6c2cf;
  border-color: #8696A9;
}
body .themed.dark .editable-cancel-btn:hover {
  background-color: transparent;
  border-color: #ffa400;
  color: #ffa400;
}
body .themed.dark .gridster-item .dashboard-widget-header .dashboard-widget-hover-options button {
  border-color: transparent;
  background-color: transparent;
}
body .themed.dark .gridster-item .value-widget .dashboard-widget-body .label-wrapper h3 {
  background-color: transparent;
}
body .themed.dark .gridster-item .list-pagination .records-per-page > button {
  padding: 4px;
}
body .themed.dark .gridster-item .dashboard-widget-header h2 {
  font-weight: normal;
}
body .themed.dark .dashboard-widgets-list .panel > .panel-heading {
  background: transparent;
  border: 1px solid #1C2228;
}
body .themed.dark .ats-switch span.switch-left {
  background-color: #167CD1;
}
body .themed.dark .ta-root {
  border-color: transparent;
}
body .themed.dark .ta-root .btn:active,
body .themed.dark .ta-root .btn:hover,
body .themed.dark .ta-root .btn:focus,
body .themed.dark .ta-root .btn-default.disabled,
body .themed.dark .ta-root .btn-default[disabled],
body .themed.dark .ta-root fieldset[disabled] .btn-default,
body .themed.dark .ta-root .btn-default.disabled:hover,
body .themed.dark .ta-root .btn-default[disabled]:hover,
body .themed.dark .ta-root fieldset[disabled] .btn-default:hover,
body .themed.dark .ta-root .btn-default.disabled:focus,
body .themed.dark .ta-root .btn-default[disabled]:focus,
body .themed.dark .ta-root fieldset[disabled] .btn-default:focus,
body .themed.dark .ta-root .btn-default.disabled:active,
body .themed.dark .ta-root .btn-default[disabled]:active,
body .themed.dark .ta-root fieldset[disabled] .btn-default:active,
body .themed.dark .ta-root .btn-default.disabled.active,
body .themed.dark .ta-root .btn-default[disabled].active,
body .themed.dark .ta-root fieldset[disabled] .btn-default.active {
  border-color: none;
  color: #D3D7D9;
  background-color: #167CD1;
}
body .themed.dark .ta-root .ta-toolbar {
  background-color: transparent;
  border: none;
}
body .themed.dark .ta-root .ta-text {
  border: 1px solid #8696A9;
}
body .themed.dark .dropdown .dropdown-menu li span.disabled {
  color: #8696A9;
  background-color: transparent;
  border-right: none;
}
body .themed.dark .dropdown-menu .view-selection-button .view-shared-icon {
  color: #3A4552;
}
body .themed.dark .dropdown-menu .view-selection-button .view-shared-icon.active {
  color: #ABE2AB;
}
body .themed.dark .div-list {
  border-top: 1px solid #29313A;
  border-bottom: 1px solid #29313A;
}
body .themed.dark .div-list.alt {
  background-color: #29313A;
}
body .themed.dark .div-list + .div-list {
  border-top-color: rgba(0, 0, 0, 0.15);
}

