/* BEGIN ./vendor/assets/stylesheets/vendor.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/_bootstrap.scss */
/** Bootstrap v2.0.3
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 * Converted to Sass by @thomasmcdonald_, and distributed as bootstrap-sass */
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}

/* Prevents modern browsers from displaying 'audio' without controls */
/* ------------------------- */
audio:not([controls]) {
  display: none;
}

/* Base settings */
/* ------------------------- */
html {
  font-size: 100%;
  /* Prevent text zooming on mobile devices: */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Focus states */
a:focus {
  /* Default */
  outline: thin dotted rgb(var(--grey-800));
  /* Grey-800 */
  /* Webkit */
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* Hover & Active */
a:hover,
a:active {
  outline: 0;
}

/* Prevents sub and sup affecting line-height in all browsers */
/* ------------------------- */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Img border in a's and image quality */
/* ------------------------- */
img {
  max-width: 100%;
  /* Make images inherently responsive */
  vertical-align: middle;
  border: 0;
}

/* Forms */
/* ------------------------- */
/* Font size in all browsers, margin changes, misc consistency */
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  /* Inner padding and border oddities in FF3/4 */
  padding: 0;
  border: 0;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* Cursors on all buttons applied consistently */
  appearance: button;
  /* Style clickable inputs in iOS */
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  /* Inner-padding issues in Chrome OSX, Safari 5 */
}

textarea {
  vertical-align: top;
  /* Readability and alignment cross-browser */
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_reset.scss */
/* Grid system and page structure */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_scaffolding.scss */
/* Scaffolding */
/* Basic and global styles for generating a grid system, structural layout, and page templates */
/* ------------------------------------------------------------------------------------------- */
/* Body reset */
/* ----------------- */
body {
  line-height: 18px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_scaffolding.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_grid.scss */
/* Fixed (940px) */
.row {
  margin-left: -20px;
}
.row:before,
.row:after {
  display: table;
  content: "";
}
.row:after {
  clear: both;
}

[class*="span"] {
  float: left;
  margin-left: 20px;
}

/* Set the container width, and override it for fixed navbars in media queries */
.container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

.span1 {
  width: 60px;
}

.span2 {
  width: 140px;
}

.span3 {
  width: 220px;
}

.span4 {
  width: 300px;
}

.span5 {
  width: 380px;
}

.span6 {
  width: 460px;
}

.span7 {
  width: 540px;
}

.span8 {
  width: 620px;
}

.span9 {
  width: 700px;
}

.span10 {
  width: 780px;
}

.span11 {
  width: 860px;
}

.span12 {
  width: 940px;
}

.offset1 {
  margin-left: 100px;
}

.offset2 {
  margin-left: 180px;
}

.offset3 {
  margin-left: 260px;
}

.offset4 {
  margin-left: 340px;
}

.offset5 {
  margin-left: 420px;
}

.offset6 {
  margin-left: 500px;
}

.offset7 {
  margin-left: 580px;
}

.offset8 {
  margin-left: 660px;
}

.offset9 {
  margin-left: 740px;
}

.offset10 {
  margin-left: 820px;
}

.offset11 {
  margin-left: 900px;
}

.offset12 {
  margin-left: 980px;
}

/* Fluid (940px) */
.row-fluid {
  width: 100%;
  /* generate .spanX */
}
.row-fluid:before,
.row-fluid:after {
  display: table;
  content: "";
}
.row-fluid:after {
  clear: both;
}
.row-fluid [class*="span"] {
  display: block;
  width: 100%;
  min-height: 28px;
  /* Make inputs at least the height of their button counterpart */
  box-sizing: border-box;
  /* Makes inputs behave like true block-level elements */
  float: left;
  margin-left: 2.12766%;
}
.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.row-fluid .span1 {
  width: 6.38298%;
}
.row-fluid .span2 {
  width: 14.89362%;
}
.row-fluid .span3 {
  width: 23.40426%;
}
.row-fluid .span4 {
  width: 31.91489%;
}
.row-fluid .span5 {
  width: 40.42553%;
}
.row-fluid .span6 {
  width: 48.93617%;
}
.row-fluid .span7 {
  width: 57.44681%;
}
.row-fluid .span8 {
  width: 65.95745%;
}
.row-fluid .span9 {
  width: 74.46809%;
}
.row-fluid .span10 {
  width: 82.97872%;
}
.row-fluid .span11 {
  width: 91.48936%;
}
.row-fluid .span12 {
  width: 100%;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_grid.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_layouts.scss */
/* Layouts */
/* Fixed-width and fluid (with sidebar) layouts */
/* -------------------------------------------- */
/* Container (centered, fixed-width layouts) */
.container {
  margin-right: auto;
  margin-left: auto;
}
.container:before,
.container:after {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}

/* Fluid layouts (left aligned, with sidebar, min- & max-width content) */
.container-fluid {
  padding-right: 20px;
  padding-left: 20px;
}
.container-fluid:before,
.container-fluid:after {
  display: table;
  content: "";
}
.container-fluid:after {
  clear: both;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_layouts.scss */
/* Base CSS */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_type.scss */
/* Typography.less */
/* Headings, body text, lists, code, and more for a versatile and durable typography system */
/* ---------------------------------------------------------------------------------------- */
/* BODY TEXT */
/* --------- */
p {
  margin: 0 0 9px;
  font-size: 13px;
  line-height: 18px;
}
p small {
  font-size: 11px;
  color: rgb(var(--grey-500));
}

.lead {
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 200;
  line-height: 27px;
}

/* HEADINGS */
/* -------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizelegibility;
  /* Fix the character spacing for headings */
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  color: rgb(var(--grey-500));
}

h1 {
  font-size: 30px;
  line-height: 36px;
}
h1 small {
  font-size: 18px;
}

h2 {
  font-size: 24px;
  line-height: 36px;
}
h2 small {
  font-size: 18px;
}

h3 {
  font-size: 18px;
  line-height: 27px;
}
h3 small {
  font-size: 14px;
}

h4,
h5,
h6 {
  line-height: 18px;
}

h4 {
  font-size: 14px;
}
h4 small {
  font-size: 12px;
}

h5 {
  font-size: 12px;
}

h6 {
  font-size: 11px;
  color: rgb(var(--grey-500));
  text-transform: uppercase;
}

/* Page header */
.page-header {
  padding-bottom: 17px;
  margin: 18px 0;
  border-bottom: 1px solid rgb(var(--grey-200));
}

.page-header h1 {
  line-height: 1;
}

/* LISTS */
/* ----- */
/* Unordered and Ordered lists */
ul,
ol {
  padding: 0;
  margin: 0 0 9px 25px;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li {
  line-height: 18px;
}

ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}

/* Description Lists */
dl {
  margin-bottom: 18px;
}

dt,
dd {
  line-height: 18px;
}

dt {
  font-weight: bold;
  line-height: 17px;
  /* fix jank Helvetica Neue font bug */
}

dd {
  margin-left: 9px;
}

/* MISC */
/* ---- */
/* Horizontal rules */
hr {
  margin: 18px 0;
  border: 0;
  border-top: 1px solid rgb(var(--grey-200));
  border-bottom: 1px solid var(--background-default);
}

/* Emphasis */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

.muted {
  color: rgb(var(--grey-500));
}

/* Abbreviations and acronyms */
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted var(--border-default);
  /* Grey-300 */
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

/* Blockquotes */
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 18px;
  border-left: 5px solid rgb(var(--grey-200));
  /* Float right with text-align: right */
}
blockquote p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 22.5px;
}
blockquote small {
  display: block;
  line-height: 18px;
  color: rgb(var(--grey-500));
}
blockquote small:before {
  content: "\2014 \00A0";
}
blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid rgb(var(--grey-200));
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}

/* Quotes */
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}

/* Addresses */
address {
  display: block;
  margin-bottom: 18px;
  font-style: normal;
  line-height: 18px;
}

/* Misc */
small {
  font-size: 100%;
}

cite {
  font-style: normal;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_type.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_code.scss */
/* Code.scss */
/* Code typography styles for the <code> and <pre> elements */
/* -------------------------------------------------------- */
/* Inline and block code styles */
code,
pre {
  padding: 0 3px 2px;
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: rgb(var(--grey-600));
  border-radius: 3px;
}

/* Inline code */
code {
  padding: 2px 4px;
  color: rgb(var(--red-700));
  background-color: var(--background-default);
  border: 1px solid rgb(var(--grey-200));
  /* Grey-200 */
}

/* Blocks of code */
pre {
  display: block;
  padding: 8.5px;
  margin: 0 0 9px;
  font-size: 12.025px;
  /* 13px to 12px */
  line-height: 18px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: var(--background-recessed);
  border-radius: 4px;
}
/* Make prettyprint styles more spaced out for readability */
pre.prettyprint {
  margin-bottom: 18px;
}
/* Account for some code outputs that place code tags in pre tags */
pre code {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
}

/* Enable scrollable blocks of code */
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_code.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_forms.scss */
/* Forms.less */
/* Base styles for various input types, form layouts, and states */
/* ------------------------------------------------------------- */
/* GENERAL STYLES */
/* -------------- */
/* Make all forms have space below them */
form {
  margin: 0 0 18px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

/* Groups of fields with labels on top (legends) */
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 27px;
  font-size: 19.5px;
  line-height: 36px;
  color: rgb(var(--grey-600));
  border: 0;
  border-bottom: 1px solid rgb(var(--grey-200));
  /* Grey-200 */
  /* Small */
}
legend small {
  font-size: 13.5px;
  color: rgb(var(--grey-500));
}

/* Set font for forms */
label,
input,
button,
select,
textarea {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  /* Set size, weight, line-height here */
}

input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* And only set font-family here for those that need it (note the missing label element) */
}

/* Identify controls by their labels */
label {
  display: block;
  margin-bottom: 5px;
  color: var(--foreground-default);
}

/* Inputs, Textareas, Selects */
.uneditable-input {
  display: inline-block;
  width: 210px;
  height: 18px;
  padding: 4px;
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 18px;
  color: rgb(var(--grey-600));
  background-color: var(--background-default);
  border: 1px solid rgb(var(--grey-400));
  border-radius: 3px;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

/* Inputs within a label */
label input,
label textarea,
label select {
  display: block;
}

/* Mini reset for unique input types */
input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  line-height: normal;
  cursor: pointer;
  background-color: transparent;
  border-radius: 0;
}

input[type="image"] {
  border: 0;
}

/* Reset the file input to browser defaults */
input[type="file"] {
  width: auto;
  padding: initial;
  line-height: initial;
  background-color: var(--background-default);
  background-color: initial;
  border: initial;
  box-shadow: none;
}

/* Help out input buttons */
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  height: auto;
}

/* Set the height of select and file controls to match text inputs */
select,
input[type="file"] {
  height: 28px;
  line-height: 28px;
}

/* Chrome on Linux and Mobile Safari need background-color */
select {
  width: 220px;
  /* default input width + 10px of padding that doesn't get applied */
  background-color: var(--background-default);
}

/* Make multiple select elements height not fixed */
select[multiple],
select[size] {
  height: auto;
}

/* Remove shadow from image inputs */
input[type="image"] {
  box-shadow: none;
}

/* Make textarea height behave */
textarea {
  height: auto;
}

/* Hidden inputs */
input[type="hidden"] {
  display: none;
}

/* CHECKBOXES & RADIOS */
/* ------------------- */
/* Indent the labels to position radios/checkboxes as hanging */
.radio,
.checkbox {
  min-height: 18px;
  /* clear the floating input if there is no label text */
  padding-left: 18px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -18px;
}

/* Move the options list down to align with labels */
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
  /* has to be padding because margin collaspes */
}

/* Radios and checkboxes on same line */
/* TODO v3: Convert .inline to .control-inline */
.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
  /* space out consecutive inline controls */
}

/* FOCUS STATE */
/* ----------- */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus,
select:focus {
  /* Default */
  outline: thin dotted rgb(var(--grey-800));
  /* Grey-800 */
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
  box-shadow: none;
  /* override for file inputs */
}

/* INPUT SIZES */
/* ----------- */
/* General classes for quick sizes */
.input-mini {
  width: 60px;
}

.input-small {
  width: 90px;
}

.input-medium {
  width: 150px;
}

.input-large {
  width: 210px;
}

.input-xlarge {
  width: 270px;
}

.input-xxlarge {
  width: 530px;
}

/* Grid style input sizes */
input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

/* GRID SIZING FOR INPUTS */
/* ---------------------- */
input,
textarea,
.uneditable-input {
  margin-left: 0;
  /* override margin-left from core grid system */
}

/* generate .spanX */
input.span1,
textarea.span1,
.uneditable-input.span1 {
  width: 50px;
}

input.span2,
textarea.span2,
.uneditable-input.span2 {
  width: 130px;
}

input.span3,
textarea.span3,
.uneditable-input.span3 {
  width: 210px;
}

input.span4,
textarea.span4,
.uneditable-input.span4 {
  width: 290px;
}

input.span5,
textarea.span5,
.uneditable-input.span5 {
  width: 370px;
}

input.span6,
textarea.span6,
.uneditable-input.span6 {
  width: 450px;
}

input.span7,
textarea.span7,
.uneditable-input.span7 {
  width: 530px;
}

input.span8,
textarea.span8,
.uneditable-input.span8 {
  width: 610px;
}

input.span9,
textarea.span9,
.uneditable-input.span9 {
  width: 690px;
}

input.span10,
textarea.span10,
.uneditable-input.span10 {
  width: 770px;
}

input.span11,
textarea.span11,
.uneditable-input.span11 {
  width: 850px;
}

input.span12,
textarea.span12,
.uneditable-input.span12 {
  width: 930px;
}

/* DISABLED STATE */
/* -------------- */
/* Disabled and read-only inputs */
input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: rgba(var(--grey-700), var(--opacity-100));
  border-color: var(--border-default);
  /* Grey-300 */
}

/* Explicitly reset the colors here */
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[role="combobox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly],
input[role="combobox"][readonly] {
  background-color: transparent;
}

/* FORM ACTIONS */
/* ------------ */
.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: var(--background-recessed);
  border-top: 1px solid var(--border-default);
  /* Grey-300 */
  /* Adding clearfix to allow for .pull-right button containers */
}
.form-actions:before,
.form-actions:after {
  display: table;
  content: "";
}
.form-actions:after {
  clear: both;
}

/* For text that needs to appear as an input but should not be an input */
.uneditable-input {
  overflow: hidden;
  /* prevent text from wrapping, but still cut it off like an input does */
  white-space: nowrap;
  cursor: not-allowed;
  background-color: var(--background-default);
  border-color: rgb(var(--grey-200));
  /* Grey-200 */
}

::placeholder {
  color: rgb(var(--grey-500));
}

/* HELP TEXT */
/* --------- */
.help-block,
.help-inline {
  color: rgb(var(--grey-600));
  /* lighten the text some for contrast */
}

.help-block {
  display: block;
  /* account for any element using help-block */
  margin-bottom: 9px;
}

.help-inline {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}

/* INPUT GROUPS */
/* ------------ */
/* Allow us to put symbols and text within the input field for a cleaner look */
.input-prepend,
.input-append {
  margin-bottom: 5px;
}
.input-prepend input,
.input-prepend select,
.input-prepend .uneditable-input,
.input-append input,
.input-append select,
.input-append .uneditable-input {
  position: relative;
  /* placed here by default so that on :focus we can place the input above the .add-on for full border and box-shadow goodness */
  margin-bottom: 0;
  /* prevent bottom margin from screwing up alignment in stacked forms */
  vertical-align: middle;
  border-radius: 0 3px 3px 0;
  /* Make input on top when focused so focused border and shadow always show */
}
.input-prepend input:focus,
.input-prepend select:focus,
.input-prepend .uneditable-input:focus,
.input-append input:focus,
.input-append select:focus,
.input-append .uneditable-input:focus {
  z-index: 2;
}
.input-prepend .uneditable-input,
.input-append .uneditable-input {
  border-left-color: rgb(var(--grey-400));
  /* Grey-400 */
}
.input-prepend .add-on,
.input-append .add-on {
  display: inline-block;
  width: auto;
  height: 18px;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 var(--background-default);
  vertical-align: middle;
  background-color: rgb(var(--grey-200));
  border: 1px solid rgb(var(--grey-400));
  /* Grey-400 */
}
.input-prepend .add-on,
.input-prepend .btn,
.input-append .add-on,
.input-append .btn {
  margin-left: -1px;
  border-radius: 0;
}
.input-prepend .active,
.input-append .active {
  background-color: rgb(var(--green-400));
  border-color: rgb(var(--green-500));
}

.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}

.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  border-radius: 3px 0 0 3px;
}

.input-append input,
.input-append select,
.input-append .uneditable-input {
  border-radius: 3px 0 0 3px;
}

.input-append .uneditable-input {
  border-right-color: rgb(var(--grey-400));
  /* Grey-400 */
  border-left-color: rgb(var(--grey-200));
  /* Grey-200 */
}

.input-append .add-on:last-child,
.input-append .btn:last-child {
  border-radius: 0 3px 3px 0;
}

/* Remove all border-radius for inputs with both prepend and append */
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  border-radius: 0;
}

.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  border-radius: 3px 0 0 3px;
}

.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  border-radius: 0 3px 3px 0;
}

/* SEARCH FORM */
/* ----------- */
.search-query {
  padding-right: 14px;
  padding-left: 14px;
  margin-bottom: 0;
  /* remove the default margin on all inputs */
  border-radius: 14px;
}

/* HORIZONTAL & VERTICAL FORMS */
/* --------------------------- */
/* Common properties */
/* ----------------- */
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend {
  display: inline-block;
  margin-bottom: 0;
}
.form-search .hide,
.form-inline .hide {
  display: none;
}

.form-search label,
.form-inline label {
  display: inline-block;
}

/* Remove margin for input-prepend/-append */
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}

/* Inline checkbox/radio labels (remove padding on left) */
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

/* Remove float and margin, set to inline-block */
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

/* Margin to space out fieldsets */
.control-group {
  margin-bottom: 9px;
}

/* Legend collapses margin, so next element is responsible for spacing */
legend + .control-group {
  margin-top: 18px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_forms.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_tables.scss */
/* Tables.less */
/* Tables for, you guessed it, tabular data */
/* ---------------------------------------- */
/* BASE TABLES */
/* ----------------- */
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

/* BASELINE STYLES */
/* --------------- */
.table {
  width: 100%;
  margin-bottom: 18px;
  /* Cells */
  /* Bottom align for column headings */
  /* Remove top border from thead by default */
  /* Account for multiple tbody instances */
}
.table th,
.table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--border-default);
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid var(--border-default);
}

/* CONDENSED TABLE W/ HALF PADDING */
/* ------------------------------- */
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

/* BORDERED VERSION */
/* ---------------- */
.table-bordered {
  border: 1px solid var(--border-default);
  border-collapse: separate;
  /* Done so we can round those corners! */
  border-left: 0;
  border-radius: 4px;
  /* Prevent a double border */
  /* For first th or td in the first row in the first thead or tbody */
  /* For first th or td in the first row in the first thead or tbody */
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid var(--border-default);
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  border-top-left-radius: 4px;
}
.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  border-top-right-radius: 4px;
}
.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: 4px;
}

/* ZEBRA-STRIPING */
/* -------------- */
/* Default zebra-stripe styles (alternating backgrounds) */
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: rgb(var(--grey-100));
}

/* HOVER EFFECT */
/* ------------ */
/* Placed here since it has to come after the potential zebra striping */
.table tbody tr:hover td,
.table tbody tr:hover th {
  background-color: var(--background-recessed);
}

/* TABLE CELL SIZING */
/* ----------------- */
table .span1 {
  float: none;
  /* undo default grid column styles */
  width: 44px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span2 {
  float: none;
  /* undo default grid column styles */
  width: 124px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span3 {
  float: none;
  /* undo default grid column styles */
  width: 204px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span4 {
  float: none;
  /* undo default grid column styles */
  width: 284px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span5 {
  float: none;
  /* undo default grid column styles */
  width: 364px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span6 {
  float: none;
  /* undo default grid column styles */
  width: 444px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span7 {
  float: none;
  /* undo default grid column styles */
  width: 524px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span8 {
  float: none;
  /* undo default grid column styles */
  width: 604px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span9 {
  float: none;
  /* undo default grid column styles */
  width: 684px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span10 {
  float: none;
  /* undo default grid column styles */
  width: 764px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span11 {
  float: none;
  /* undo default grid column styles */
  width: 844px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

table .span12 {
  float: none;
  /* undo default grid column styles */
  width: 924px;
  /* 16 is total padding on left and right of table cells */
  margin-left: 0;
  /* undo default grid column styles */
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_tables.scss */

/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_dropdowns.scss */
/* DROPDOWN MENUS */
/* -------------- */
/* Use the .menu class on any <li> element within the topbar or ul.tabs and you'll get some superfancy dropdowns */
.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

/* Dropdown arrow/caret */
/* -------------------- */
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid rgb(var(--grey-800));
  /* Grey-800 */
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 0.3;
}

/* Place the caret */
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

.dropdown:hover .caret,
.open .caret {
  opacity: 1;
}

/* The dropdown menu (ul) */
/* ---------------------- */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  /* none by default, but block on "open" of the menu */
  float: left;
  min-width: 160px;
  padding: 4px 0;
  margin: 1px 0 0;
  /* override default ul */
  list-style: none;
  background-color: var(--background-default);
  border: 1px solid rgb(var(--grey-400));
  /* Grey-400 */
  border: 1px solid var(--border-subtle);
  border-radius: 5px;
  box-shadow: 0 5px 10px var(--shadow-medium);
  background-clip: padding-box;
  /* Aligns the dropdown menu to right */
  /* Dividers (basically an hr) within the dropdown */
  /* Links within the dropdown menu */
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: rgb(var(--grey-200));
  /* Grey-200 */
  border-bottom: 1px solid var(--background-default);
}
.dropdown-menu a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: rgb(var(--grey-600));
  white-space: nowrap;
}

/* Hover state */
/* ----------- */
.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  color: var(--background-default);
  text-decoration: none;
  background-color: var(--background-primaryEmphasis);
}

/* Open state for the dropdown */
/* --------------------------- */
.open .dropdown-menu {
  display: block;
}

/* Right aligned dropdowns */
/* --------------------------- */
.pull-right .dropdown-menu {
  right: 0;
  left: auto;
}

/* Allow for dropdowns to go bottom up (aka, dropup-menu) */
/* ------------------------------------------------------ */
/* Just add .dropup after the standard .dropdown class and you're set, bro. */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid rgb(var(--grey-800));
  /* Grey-800 */
  content: "\2191";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

/* Typeahead */
/* --------- */
.typeahead {
  margin-top: 2px;
  /* give it some space to breathe */
  border-radius: 4px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_dropdowns.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_wells.scss */
/* WELLS */
/* ----- */
.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: var(--background-recessed);
  border: 1px solid rgb(var(--grey-200));
  /* Grey-200 */
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  box-shadow: inset 0 1px 1px var(--shadow-medium);
}
.well blockquote {
  border-color: var(--border-default);
  /* Grey-300 */
  border-color: var(--border-subtle);
}

/* Sizes */
.well-large {
  padding: 24px;
  border-radius: 6px;
}

.well-small {
  padding: 9px;
  border-radius: 3px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_wells.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_component-animations.scss */
/* COMPONENT ANIMATIONS */
/* -------------------- */
.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
.collapse.in {
  height: auto;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_component-animations.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_close.scss */
/* CLOSE ICONS */
/* ----------- */
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: var(--foreground-default);
  /* Grey-800 */
  text-shadow: 0 1px 0 var(--background-default);
  opacity: 0.2;
}
.close:hover {
  color: rgb(var(--foreground-subtle));
  /* Grey-800 */
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}

/* Additional properties for button version */
/* iOS requires the button element instead of an anchor tag. */
/* If you want the anchor version, it requires `href="#"`. */
button.close {
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  appearance: none;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_close.scss */
/* Components: Buttons & Alerts */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_buttons.scss */
/* BUTTON STYLES */
/* ------------- */
/* Base styles */
/* -------------------------------------------------- */
/* Core */
.btn {
  display: inline-block;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  /* For input.btn */
  font-size: 13px;
  line-height: 18px;
  color: rgb(var(--grey-600));
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-color: var(--background-default);
  background-image: linear-gradient(top, var(--background-default), rgb(var(--grey-200)));
  background-repeat: repeat-x;
  border-color: rgb(var(--grey-200)) rgb(var(--grey-200)) var(--border-default);
  border: 1px solid rgb(var(--grey-400));
  border-bottom-color: var(--border-default);
  border-radius: 4px;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: rgb(var(--grey-200));
}

/* Hover state */
.btn:hover {
  color: rgb(var(--grey-600));
  text-decoration: none;
  background-color: rgb(var(--grey-200));
  background-position: 0 -15px;
  transition: background-position 0.1s linear;
}

/* Focus state for keyboard and accessibility */
.btn:focus {
  /* Default */
  outline: thin dotted rgb(var(--grey-800));
  /* Grey-800 */
  /* Webkit */
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* Active state */
.btn.active,
.btn:active {
  background-color: rgb(var(--grey-200));
  background-image: none;
  outline: 0;
}

/* Disabled state */
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-color: rgb(var(--grey-200));
  background-image: none;
  opacity: 0.65;
  box-shadow: none;
}

/* Button Sizes */
/* -------------------------------------------------- */
/* Large */
.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  border-radius: 5px;
}

.btn-large [class^="icon-"] {
  margin-top: 1px;
}

/* Small */
.btn-small {
  padding: 5px 9px;
  font-size: 11px;
  line-height: 16px;
}

.btn-small [class^="icon-"] {
  margin-top: -1px;
}

/* Mini */
.btn-mini {
  padding: 2px 6px;
  font-size: 11px;
  line-height: 14px;
}

/* Alternate buttons */
/* -------------------------------------------------- */
/* Set text color */
/* ------------------------- */
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
  color: var(--background-default);
}

/* Provide *some* extra contrast for those who can get it */
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: var(--foreground-onEmphasis);
}

/* Set the backgrounds */
/* ------------------------- */
.btn {
  /* reset here as of 2.0.3 due to Recess property order */
  border-color: rgb(var(--grey-400));
}

.btn-primary {
  background-color: var(--background-primaryEmphasis);
  background-repeat: repeat-x;
  border-color: var(--border-primaryEmphasis);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: var(--background-primaryEmphasis);
}

.btn-warning {
  background-color: var(--background-warningEmphasis);
  background-repeat: repeat-x;
  border-color: var(--border-warning);
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background-color: var(--background-warningEmphasis);
}

.btn-danger {
  background-color: var(--background-dangerEmphasis);
  background-repeat: repeat-x;
  border-color: var(--border-dangerEmphasis);
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background-color: var(--background-dangerEmphasis);
}

.btn-success {
  background-color: var(--background-successEmphasis);
  background-repeat: repeat-x;
  border-color: var(--border-successEmphasis);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: var(--background-successEmphasis);
}

.btn-info {
  background-color: var(--background-primaryEmphasis);
  background-repeat: repeat-x;
  border-color: var(--border-primaryEmphasis);
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-color: var(--background-primaryEmphasis);
}

.btn-inverse {
  background-color: ar(--grey-700);
  background-repeat: repeat-x;
  border-color: rgb(var(--grey-700)) rgb(var(--grey-700));
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: rgb(var(--grey-700));
}

/* Cross-browser Jank */
/* -------------------------------------------------- */
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_buttons.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_button-groups.scss */
/* BUTTON GROUPS */
/* ------------- */
/* Make the div behave like a button */
.btn-group {
  position: relative;
  /* clears the floated buttons */
}
.btn-group:before,
.btn-group:after {
  display: table;
  content: "";
}
.btn-group:after {
  clear: both;
}

/* Space out series of button groups */
.btn-group + .btn-group {
  margin-left: 5px;
}

/* Optional: Group multiple button groups together for a toolbar */
.btn-toolbar {
  margin-top: 9px;
  margin-bottom: 9px;
}
.btn-toolbar .btn-group {
  display: inline-block;
}

/* Float them, remove border radius, then re-add to first and last elements */
.btn-group > .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  border-radius: 0;
}

/* Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match */
.btn-group > .btn:first-child {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

/* Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it */
.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Reset corners for large buttons */
.btn-group > .btn.large:first-child {
  margin-left: 0;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* On hover/focus/active, bring the proper btn to front */
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 2;
}

/* On active and open, don't show outline */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

/* Split button dropdowns */
/* ---------------------- */
/* Give the line between buttons some depth */
.btn-group > .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
  box-shadow: var(--shadow-medium);
}

.btn-group > .btn-mini.dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
}

.btn-group > .btn-large.dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
  background-image: none;
  box-shadow: var(--shadow-medium);
}
.btn-group.open .btn.dropdown-toggle {
  background-color: rgb(var(--grey-200));
}
.btn-group.open .btn-primary.dropdown-toggle {
  background-color: var(--background-primaryEmphasis);
}
.btn-group.open .btn-warning.dropdown-toggle {
  background-color: var(--background-warningEmphasis);
}
.btn-group.open .btn-danger.dropdown-toggle {
  background-color: var(--background-dangerEmphasis);
}
.btn-group.open .btn-success.dropdown-toggle {
  background-color: var(--background-successEmphasis);
}
.btn-group.open .btn-info.dropdown-toggle {
  background-color: var(--background-primaryEmphasis);
}
.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: rgb(var(--grey-700));
}

/* Reposition the caret */
.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}

.btn:hover .caret,
.open.btn-group .caret {
  opacity: 1;
}

/* Carets in other button sizes */
.btn-mini .caret {
  margin-top: 5px;
}

.btn-small .caret {
  margin-top: 6px;
}

.btn-large .caret {
  margin-top: 6px;
  border-left-width: 5px;
  border-right-width: 5px;
  border-top-width: 5px;
}

/* Upside down carets for .dropup */
.dropup .btn-large .caret {
  border-bottom: 5px solid rgb(var(--grey-800));
  /* Grey-800 */
  border-top: 0;
}

/* Account for other colors */
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: var(--background-default);
  border-bottom-color: var(--background-default);
  opacity: 0.75;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_button-groups.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_alerts.scss */
/* ALERT STYLES */
/* ------------ */
/* Base alert styles */
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  background-color: var(--background-warningEmphasis);
  border: 1px solid var(--border-warning);
  border-radius: 4px;
  color: var(--foreground-warning);
}

.alert-heading {
  color: inherit;
}

/* Adjust close link position */
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}

/* Alternate styles */
/* ---------------- */
.alert-success {
  background-color: var(--background-raised);
  border-color: var(--border-success);
  color: var(--foreground-success);
}

.alert-danger,
.alert-error {
  background-color: var(--background-raised);
  border-color: var(--border-danger);
  color: var(--foreground-danger);
}

.alert-info {
  background-color: var(--background-raised);
  border-color: var(--border-primaryEmphasis);
  color: var(--foreground-primary);
}

/* Block alerts */
/* ------------------------ */
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}

.alert-block p + p {
  margin-top: 5px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_alerts.scss */
/* Note: alerts share common CSS with buttons and thus have styles in buttons.less */
/* Components: Nav */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_navs.scss */
/* NAVIGATIONS */
/* ----------- */
/* BASE CLASS */
/* ---------- */
.nav {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
}

/* Make links block level */
.nav > li > a {
  display: block;
}

.nav > li > a:hover {
  text-decoration: none;
  background-color: rgb(var(--grey-200));
}

/* Redeclare pull classes because of specifity */
.nav > .pull-right {
  float: right;
}

/* Nav headers (for dropdowns and lists) */
.nav .nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 18px;
  color: rgb(var(--grey-500));
  text-transform: uppercase;
}

/* Space them out when they follow another list item (link) */
.nav li + .nav-header {
  margin-top: 9px;
}

/* NAV LIST */
/* -------- */
.nav-list {
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 0;
}

.nav-list > li > a,
.nav-list .nav-header {
  margin-left: -15px;
  margin-right: -15px;
}

.nav-list > li > a {
  padding: 3px 15px;
}

.nav-list > .active > a,
.nav-list > .active > a:hover {
  color: var(--background-default);
  background-color: var(--background-primaryEmphasis);
}

.nav-list [class^="icon-"] {
  margin-right: 2px;
}

/* Dividers (basically an hr) within the dropdown */
.nav-list .divider {
  height: 1px;
  margin: 8px 1px;
  overflow: hidden;
  background-color: rgb(var(--grey-200));
  /* Grey-200 */
  border-bottom: 1px solid var(--background-default);
}

/* TABS AND PILLS */
/* ------------- */
/* Common styles */
.nav-tabs:before,
.nav-tabs:after,
.nav-pills:before,
.nav-pills:after {
  display: table;
  content: "";
}
.nav-tabs:after,
.nav-pills:after {
  clear: both;
}

.nav-tabs > li,
.nav-pills > li {
  float: left;
}

.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
  /* keeps the overall height an even number */
}

/* TABS */
/* ---- */
/* Give the tabs something to sit on */
.nav-tabs {
  border-bottom: 1px solid var(--border-default);
  /* Grey-300 */
}

/* Make the list-items overlay the bottom border */
.nav-tabs > li {
  margin-bottom: -1px;
}

/* Actual tabs (as links) */
.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 18px;
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}
.nav-tabs > li > a:hover {
  border-color: rgb(var(--grey-200)) rgb(var(--grey-200)) rgb(var(--grey-300));
  /* Grey-300 */
}

/* Active state, and it's :hover to override normal :hover */
.nav-tabs > .active > a,
.nav-tabs > .active > a:hover {
  color: rgb(var(--grey-600));
  background-color: var(--background-default);
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-bottom-color: transparent;
  cursor: default;
}

/* PILLS */
/* ----- */
/* Links rendered as pills */
.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  border-radius: 5px;
}

/* Active state */
.nav-pills .active > a,
.nav-pills .active > a:hover {
  color: var(--background-default);
  background-color: var(--background-primaryEmphasis);
}

/* STACKED NAV */
/* ----------- */
/* Stacked tabs and pills */
.nav-stacked > li {
  float: none;
}

.nav-stacked > li > a {
  margin-right: 0;
  /* no need for the gap between nav items */
}

/* Tabs */
.nav-tabs.nav-stacked {
  border-bottom: 0;
}

.nav-tabs.nav-stacked > li > a {
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 0;
}

.nav-tabs.nav-stacked > li:first-child > a {
  border-radius: 4px 4px 0 0;
}

.nav-tabs.nav-stacked > li:last-child > a {
  border-radius: 0 0 4px 4px;
}

.nav-tabs.nav-stacked > li > a:hover {
  border-color: var(--border-default);
  /* Grey-300 */
  z-index: 2;
}

/* Pills */
.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}

.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
  /* decrease margin to match sizing of stacked tabs */
}

/* DROPDOWNS */
/* --------- */
.nav-tabs .dropdown-menu {
  border-radius: 0 0 5px 5px;
  /* remove the top rounded corners here since there is a hard edge above the menu */
}

.nav-pills .dropdown-menu {
  border-radius: 4px;
  /* make rounded corners match the pills */
}

/* Default dropdown links */
/* ------------------------- */
/* Make carets use linkColor to start */
.nav-tabs .dropdown-toggle .caret,
.nav-pills .dropdown-toggle .caret {
  border-top-color: var(--border-primaryEmphasis);
  border-bottom-color: var(--border-primaryEmphasis);
  margin-top: 6px;
}

.nav-tabs .dropdown-toggle:hover .caret,
.nav-pills .dropdown-toggle:hover .caret {
  border-top-color: var(--border-primaryEmphasis);
  border-bottom-color: var(--border-primaryEmphasis);
}

/* Active dropdown links */
/* ------------------------- */
.nav-tabs .active .dropdown-toggle .caret,
.nav-pills .active .dropdown-toggle .caret {
  border-top-color: rgb(var(--grey-600));
  border-bottom-color: rgb(var(--grey-600));
}

/* Active:hover dropdown links */
/* ------------------------- */
.nav > .dropdown.active > a:hover {
  color: rgb(var(--grey-800));
  /* Grey-800 */
  cursor: pointer;
}

/* Open dropdowns */
/* ------------------------- */
.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover {
  color: var(--background-default);
  background-color: rgb(var(--grey-500));
  border-color: rgb(var(--grey-500));
}

.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret {
  border-top-color: var(--background-default);
  border-bottom-color: var(--background-default);
  opacity: 1;
}

/* Dropdowns in stacked tabs */
.tabs-stacked .open > a:hover {
  border-color: rgb(var(--grey-500));
}

/* TABBABLE */
/* -------- */
/* COMMON STYLES */
/* ------------- */
/* Clear any floats */
.tabbable:before,
.tabbable:after {
  display: table;
  content: "";
}
.tabbable:after {
  clear: both;
}

.tab-content {
  overflow: auto;
  /* prevent content from running below tabs */
}

/* Remove border on bottom, left, right */
.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

/* Show/hide tabbable areas */
.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

/* BOTTOM */
/* ------ */
.tabs-below > .nav-tabs {
  border-top: 1px solid var(--border-default);
  /* Grey-300 */
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
}
.tabs-below > .nav-tabs > li > a:hover {
  border-bottom-color: transparent;
  border-top-color: var(--border-default);
  /* Grey-300 */
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover {
  border-color: transparent var(--border-default) var(--border-default) var(--border-default);
  /* Grey-300 */
}

/* LEFT & RIGHT */
/* ------------ */
/* Common styles */
.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

/* Tabs on the left */
.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid var(--border-default);
  /* Grey-300 */
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover {
  border-color: rgb(var(--grey-200)) var(--border-default) rgb(var(--grey-200)) rgb(var(--grey-200));
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover {
  border-color: var(--border-default) transparent var(--border-default) var(--border-default);
  /* Grey-300 */
}

/* Tabs on the right */
.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid var(--border-default);
  /* Grey-300 */
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover {
  border-color: rgb(var(--grey-200)) rgb(var(--grey-200)) rgb(var(--grey-200)) var(--border-default);
  /* Grey-300 */
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover {
  border-color: var(--border-default) var(--border-default) var(--border-default) transparent;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_navs.scss */

/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_breadcrumbs.scss */
/* BREADCRUMBS */
/* ----------- */
.breadcrumb {
  padding: 7px 14px;
  margin: 0 0 18px;
  list-style: none;
  background-color: var(--background-default);
  background-image: linear-gradient(top, var(--background-default), var(--background-recessed));
  background-repeat: repeat-x;
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 3px;
  box-shadow: inset 0 1px 0 var(--background-default);
}
.breadcrumb li {
  display: inline-block;
  text-shadow: 0 1px 0 var(--background-default);
}
.breadcrumb .divider {
  padding: 0 5px;
  color: rgb(var(--grey-500));
}
.breadcrumb .active a {
  color: rgb(var(--grey-600));
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_breadcrumbs.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_pagination.scss */
/* PAGINATION */
/* ---------- */
.pagination {
  height: 36px;
  margin: 18px 0;
}

.pagination ul {
  display: inline-block;
  margin-left: 0;
  margin-bottom: 0;
  border-radius: 3px;
  box-shadow: 0 var(--shadow-small);
}

.pagination li {
  display: inline;
}

.pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  text-decoration: none;
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-left-width: 0;
}

.pagination a:hover,
.pagination .active a {
  background-color: var(--background-recessed);
}

.pagination .active a {
  color: rgb(var(--grey-500));
  cursor: default;
}

.pagination .disabled span,
.pagination .disabled a,
.pagination .disabled a:hover {
  color: rgb(var(--grey-500));
  background-color: transparent;
  cursor: default;
}

.pagination li:first-child a {
  border-left-width: 1px;
  border-radius: 3px 0 0 3px;
}

.pagination li:last-child a {
  border-radius: 0 3px 3px 0;
}

/* Centered */
.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_pagination.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_pager.scss */
/* PAGER */
/* ----- */
.pager {
  margin-left: 0;
  margin-bottom: 18px;
  list-style: none;
  text-align: center;
}
.pager:before,
.pager:after {
  display: table;
  content: "";
}
.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager a {
  display: inline-block;
  padding: 5px 14px;
  background-color: var(--background-default);
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 15px;
}

.pager a:hover {
  text-decoration: none;
  background-color: var(--background-recessed);
}

.pager .next a {
  float: right;
}

.pager .previous a {
  float: left;
}

.pager .disabled a,
.pager .disabled a:hover {
  color: rgb(var(--grey-500));
  background-color: var(--background-default);
  cursor: default;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_pager.scss */
/* Components: Popovers */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_modals.scss */
/* MODALS */
/* ------ */
/* Recalculate z-index where appropriate */
.modal-open .dropdown-menu {
  z-index: 2050;
}

.modal-open .popover {
  z-index: 2060;
}

.modal-open .tooltip {
  z-index: 2070;
}

/* Background */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: rgba(var(--grey-900), var(--opacity-1000));
  /* Fade for backdrop */
}
.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.lr-growl-fix {
  z-index: 85; /* need to be below growl z-index defined in lotus_react/src/utils/styling/styleConstants.js */
}

[data-theme="dark"] .modal-backdrop {
  background-color: rgba(var(--grey-1200), var(--opacity-1000));
}

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
}

/* Base modal */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1050;
  overflow: auto;
  width: 560px;
  margin: -250px 0 0 -280px;
  background-color: var(--background-default);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  box-shadow: var(--shadow-large);
  background-clip: padding-box;
}
.modal.fade {
  transition:
    opacity 0.3s linear,
    top 0.3s ease-out;
  top: -25%;
}
.modal.fade.in {
  top: 50%;
}

.modal.lr-growl-fix {
  z-index: 86; /* need to be below growl z-index defined in lotus_react/src/utils/styling/styleConstants.js */
}

.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid var(--border-subtle);
  /* Close icon */
}
.modal-header .close {
  margin-top: 2px;
}

/* Body (where all modal content resides) */
.modal-body {
  overflow-y: auto;
  color-scheme: var(--color-scheme);
  max-height: 400px;
  padding: 15px;
}

/* Remove bottom margin if need be */
.modal-form {
  margin-bottom: 0;
}

/* Footer (for actions) */
.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  /* right align buttons */
  background-color: var(--background-recessed);
  border-top: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 0 0 6px 6px;
  box-shadow: inset 0 1px 0 var(--background-default);
  /* clear it in case folks use .pull-* classes on buttons */
  /* Properly space out buttons */
  /* but override that for button groups */
}
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: "";
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
  /* account for input[type="submit"] which gets the bottom margin like all other inputs */
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_modals.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_tooltip.scss */
/* TOOLTIP */
/* ------= */
.tooltip {
  position: absolute;
  z-index: 1020;
  display: block;
  visibility: visible;
  padding: 5px;
  font-size: 11px;
  opacity: 0;
}
.tooltip.in {
  opacity: 0.8;
}
.tooltip.top {
  margin-top: -2px;
}
.tooltip.right {
  margin-left: 2px;
}
.tooltip.bottom {
  margin-top: 2px;
}
.tooltip.left {
  margin-left: -2px;
}
.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--tooltip-border);
}
.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--tooltip-border);
}
.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--tooltip-border);
}
.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--tooltip-border);
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: var(--tooltip-foreground);
  text-align: center;
  text-decoration: none;
  background-color: var(--tooltip-background);
  /* Grey-800 */
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_tooltip.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_popovers.scss */
/* POPOVERS */
/* -------- */
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  padding: 5px;
}
.popover.top {
  margin-top: -5px;
}
.popover.right {
  margin-left: 5px;
}
.popover.bottom {
  margin-top: 5px;
}
.popover.left {
  margin-left: -5px;
}
.popover.top .arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--background-raised);
}
.popover.right .arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 5px solid var(--background-raised);
}
.popover.bottom .arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--background-raised);
}
.popover.left .arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--background-raised);
}
.popover .arrow {
  position: absolute;
  width: 0;
  height: 0;
}

.popover-inner {
  padding: 3px;
  width: 280px;
  overflow: hidden;
  background: var(--background-raised);
  border-radius: 6px;
  box-shadow: var(--shadow-large);
}

.popover-title {
  padding: 9px 15px;
  line-height: 1;
  background-color: var(--background-raised);
  border-bottom: 1px solid var(--border-default);
  /* Grey-200 */
  border-radius: 3px 3px 0 0;
}

.popover-content {
  padding: 14px;
  background-color: var(--background-raised);
  border-radius: 0 0 3px 3px;
  background-clip: padding-box;
}
.popover-content p,
.popover-content ul,
.popover-content ol {
  margin-bottom: 0;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_popovers.scss */
/* Components: Misc */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_thumbnails.scss */
/* THUMBNAILS */
/* ---------- */
/* Note: `.thumbnails` and `.thumbnails > li` are overriden in responsive files */
/* Make wrapper ul behave like the grid */
.thumbnails {
  margin-left: -20px;
  list-style: none;
}
.thumbnails:before,
.thumbnails:after {
  display: table;
  content: "";
}
.thumbnails:after {
  clear: both;
}

/* Fluid rows have no left margin */
.row-fluid .thumbnails {
  margin-left: 0;
}

/* Float li to make thumbnails appear in a row */
.thumbnails > li {
  float: left;
  margin: 0 0 18px 20px;
  float: left;
  /* Explicity set the float since we don't require .span* classes */
  margin-bottom: 18px;
  margin-left: 20px;
}

/* The actual thumbnail (can be `a` or `div`) */
.thumbnail {
  display: block;
  padding: 4px;
  line-height: 1;
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 4px;
  box-shadow: var(--shadow-small);
}

/* Add a hover state for linked versions only */
a.thumbnail:hover {
  border-color: var(--border-primaryEmphasis);
  box-shadow: var(--shadow-large);
}

/* Images and captions */
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.thumbnail .caption {
  padding: 9px;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_thumbnails.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_labels-badges.scss */
/* LABELS & BADGES */
/* --------------- */
/* Base classes */
.label,
.badge {
  font-size: 10.998px;
  font-weight: bold;
  line-height: 14px;
  /* ensure proper line-height if floated */
  color: var(--background-default);
  vertical-align: baseline;
  white-space: nowrap;
  background-color: rgb(var(--grey-500));
}

/* Set unique padding and border-radii */
.label {
  padding: 1px 4px 2px;
  border-radius: 3px;
}

.badge {
  padding: 1px 9px 2px;
  border-radius: 9px;
}

/* Hover state, but only for links */
a.label:hover,
a.badge:hover {
  color: var(--background-default);
  text-decoration: none;
  cursor: pointer;
}

/* Colors */
/* Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute) */
/* Important */
.label-important,
.badge-important {
  background-color: var(--background-dangerEmphasis);
}

.label-important[href],
.badge-important[href] {
  background-color: var(--background-dangerEmphasis);
}

/* Warnings */
.label-warning,
.badge-warning {
  background-color: var(--background-warningEmphasis);
}

.label-warning[href],
.badge-warning[href] {
  background-color: var(--background-warningEmphasis);
}

/* Success */
.label-success,
.badge-success {
  background-color: var(--background-successEmphasis);
}

.label-success[href],
.badge-success[href] {
  background-color: var(--background-successEmphasis);
}

/* Info */
.label-info,
.badge-info {
  background-color: var(--background-primaryEmphasis);
}

.label-info[href],
.badge-info[href] {
  background-color: var(--background-primaryEmphasis);
}

/* Inverse */
.label-inverse,
.badge-inverse {
  background-color: rgb(var(--grey-600));
}

.label-inverse[href],
.badge-inverse[href] {
  background-color: var(--background-emphasis);
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_labels-badges.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_progress-bars.scss */
/* PROGRESS BARS */
/* ------------- */
/* ANIMATIONS */
/* ---------- */
/* Spec */
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}

/* THE BARS */
/* -------- */
/* Outer container */
.progress {
  overflow: hidden;
  height: 18px;
  margin-bottom: 18px;
  background-color: rgb(var(--grey-100));
  background-image: linear-gradient(top, var(--background-recessed), rgb(var(--grey-100)));
  background-repeat: repeat-x;
  border-radius: 4px;
}

/* Bar of progress */
.progress .bar {
  width: 0%;
  height: 18px;
  color: var(--background-default);
  font-size: 12px;
  text-align: center;
  background-color: var(--background-primaryEmphasis);
  /* The standard */
  background-repeat: repeat-x;
  box-sizing: border-box;
  transition: width 0.6s ease;
}

/* Striped bars */
.progress-striped .bar {
  background-color: var(--background-primaryEmphasis);
  background-size: 40px 40px;
}

/* Call animation for the active one */
.progress.active .bar {
  animation: progress-bar-stripes 2s linear infinite;
}

/* COLORS */
/* ------ */
/* Danger */
.progress-danger .bar {
  background-color: var(--background-dangerEmphasis);
  background-repeat: repeat-x;
}

.progress-danger.progress-striped .bar {
  background-color: var(--background-dangerEmphasis);
}

/* Success */
.progress-success .bar {
  background-color: var(--background-successEmphasis);
  background-repeat: repeat-x;
}

.progress-success.progress-striped .bar {
  background-color: var(--background-successEmphasis);
}

/* Info */
.progress-info .bar {
  background-color: var(--background-primaryEmphasi);
  background-repeat: repeat-x;
}

.progress-info.progress-striped .bar {
  background-color: var(--background-primaryEmphasi);
}

/* Warning */
.progress-warning .bar {
  background-color: var(--background-warningEmphasis);
  background-repeat: repeat-x;
}

.progress-warning.progress-striped .bar {
  background-color: var(--background-warningEmphasis);
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_progress-bars.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_accordion.scss */
/* ACCORDION */
/* --------- */
/* Parent container */
.accordion {
  margin-bottom: 18px;
}

/* Group == heading + body */
.accordion-group {
  margin-bottom: 2px;
  border: 1px solid rgb(var(--grey-200));
  /* Grey-200 */
  border-radius: 4px;
}

.accordion-heading {
  border-bottom: 0;
}

.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}

/* General toggle styles */
.accordion-toggle {
  cursor: pointer;
}

/* Inner needs the styles because you can't animate properly with any styles on the element */
.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid rgb(var(--grey-200));
  /* Grey-200 */
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_accordion.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_carousel.scss */
/* CAROUSEL */
/* -------- */
.carousel {
  position: relative;
  margin-bottom: 18px;
  line-height: 1;
}

.carousel-inner {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel .item {
  display: none;
  position: relative;
  transition: 0.6s ease-in-out left;
}
.carousel .item > img {
  display: block;
  line-height: 1;
}
.carousel .active,
.carousel .next,
.carousel .prev {
  display: block;
}
.carousel .active {
  left: 0;
}
.carousel .next,
.carousel .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel .next {
  left: 100%;
}
.carousel .prev {
  left: -100%;
}
.carousel .next.left,
.carousel .prev.right {
  left: 0;
}
.carousel .active.left {
  left: -100%;
}
.carousel .active.right {
  left: 100%;
}

/* Left/right controls for nav */
/* --------------------------- */
.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: var(--background-default);
  text-align: center;
  background: rgb(var(--grey-700));
  border: 3px solid var(--background-default);
  border-radius: 23px;
  opacity: 0.5;
  /* we can't have this transition here */
  /* because webkit cancels the carousel */
  /* animation if you trip this while */
  /* in the middle of another animation */
  /* ;_; */
  /* @include transition(opacity .2s linear); */
  /* Reposition the right one */
  /* Hover state */
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover {
  color: var(--background-default);
  text-decoration: none;
  opacity: 0.9;
}

/* Caption for text below images */
/* ----------------------------- */
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px 5px;
  background: rgb(var(--grey-600));
  background: var(--background-subtle);
}

.carousel-caption h4,
.carousel-caption p {
  color: var(--background-default);
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_carousel.scss */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_hero-unit.scss */
/* HERO UNIT */
/* --------- */
.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  background-color: rgb(var(--grey-200));
  border-radius: 6px;
}
.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  color: inherit;
  letter-spacing: -1px;
}
.hero-unit p {
  font-size: 18px;
  font-weight: 200;
  line-height: 27px;
  color: inherit;
}

/* END ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_hero-unit.scss */
/* Utility classes */
/* BEGIN ./vendor/assets/stylesheets/bootstrap-sass/bootstrap/_utilities.scss */
/* UTILITY CLASSES */
/* --------------- */
/* Quick floats */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

/* Toggling content */
.hide {
  display: none;
}

.show {
  display: block;
}

/* Visibility */
.invisible {
  visibility: hidden;
}

.zd-menu-root {
  box-sizing: border-box;
  border-radius: 4px;
}

.zd-selectmenu-root,
.zd-searchmenu-root,
.zd-combo-selectmenu-root {
  font-size: 11px;
  position: relative;
}

.zd-combo-selectmenu .zd-searchmenu-base {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5px;
  font-size: 12px;
}

.zd-menu-root,
.zd-selectmenu,
.zd-combo-selectmenu,
.zd-searchmenu {
  user-select: none;
  outline: none;
}

.zd-selectmenu .zd-menu-root,
.zd-searchmenu .zd-menu-root,
.zd-combo-selectmenu .zd-menu-root,
.zd-selectmenu .zd-menu-panel-root,
.zd-searchmenu .zd-menu-panel-root,
.zd-combo-selectmenu .zd-menu-panel-root {
  position: absolute;
  z-index: 10000;
}

.zd-menu-panel-root .zd-menu-panel-holder {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  color-scheme: var(--color-scheme);
  max-height: 300px;
}

.zd-menu-panel-root.zd-menu-root {
  overflow-y: hidden;
}

.zd-selectmenu-base {
  position: relative;
  width: 100%;
  display: inline-block;
  border: 1px solid var(--border-default);
  color: rgb(var(--grey-800));
  background-color: var(--background-default);
  text-align: left;
  height: 28px;
  text-decoration: none;
  outline: none;
  padding: 0 0 0 5px;
  border-radius: 4px;
  line-height: 18px;
}

.zd-state-disabled .zd-selectmenu-base {
  cursor: not-allowed;
}

.zd-state-disabled.zd-selectmenu-root,
.zd-state-disabled.zd-searchmenu-root,
.zd-state-disabled.zd-combo-selectmenu-root,
.zd-state-disabled.zd-menu-root {
  opacity: 0.6;
}

.zd-searchmenu-base {
  width: 100%;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  border: 1px solid var(--border-default);
  color: rgb(var(--grey-700));
  background-color: var(--background-default);
  height: 28px;
  text-decoration: none;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 5px;
  font-size: 12px;
}

.zd-selectmenu-base-content {
  display: block;
  color: var(--foreground-default);
  font-size: 12px;
  padding: 0 22px 0 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.zd-menu-root {
  position: relative;
  height: 208px;
  border: 1px solid var(--border-default);
  z-index: 1;
  /* Shadow matches Garden, May 2018 */
  box-shadow: var(--shadow-large);
  background-color: var(--background-default);
  overflow-y: auto;
  overflow-x: hidden;
  color-scheme: var(--color-scheme);
}

.zd-menu-panel-root {
  position: relative;
}

.zd-combo-selectmenu .zd-highlight,
.zd-selectmenu .zd-highlight,
.zd-searchmenu .zd-highlight {
  font-weight: 600;
  color: var(--foreground-default);
}

.zd-state-hover .zd-selectmenu-base,
.zd-state-focus .zd-searchmenu-base {
  border-color: rgb(var(--blue-400));
  /* Matches Garden, May 2018 */
}

.zd-menu-list-holder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  list-style: none;
  padding: 8px 0;
  margin: 0;
}

.zd-menu-item {
  position: relative;
  cursor: pointer;
  list-style: none;
  color: rgb(var(--grey-800));
  background-color: var(--background-default);
  font-size: 12px;
  padding: 2px 4px;
}

.zd-menu-item.autocomplete-label:first-child {
  font-weight: semibold;
}

.zd-menu-item.autocomplete-label:last-child {
  font-style: italic;
}

.zd-menu-item-icon {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 16px;
  height: 16px;
}

.zd-menu-item.zd-item-focus a {
  color: inherit;
}

.zd-menu-item.zd-item-disabled {
  color: rgb(var(--grey-400));
  /* Matches Garden, May 2018 */
  cursor: default;
}

.zd-menu-item.zd-item-disabled a {
  color: rgb(var(--grey-400));
  cursor: inherit;
}

.zd-menu-item > a {
  display: block;
  color: inherit;
  line-height: 18px;
  padding: 6px 8px 6px 7px;
  text-decoration: none;
  outline: none;
}

.zd-menu-back-link > a {
  color: rgb(var(--blue-600));
}

.zd-menu-back-link.zd-item-focus > a {
  color: rgb(var(--blue-700));
}

.zd-menu-link > a {
  padding-right: 16px;
  color: rgb(var(--grey-800));
}

.zd-menu-item.zd-item-focus {
  background-color: var(--background-subtle);
}

.zd-menu-item.zd-item-disabled.zd-item-focus {
  background-color: var(--background-default);
  box-shadow: none;
}

.zd-selectmenu-base-arrow,
.zd-menu-item-arrow {
  position: absolute;
  width: 0px;
  height: 0px;
}

.zd-icon-arrow-up,
.zd-state-position-up .zd-icon-arrow-down {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgb(var(--grey-500));
  border-top-width: 0px;
  top: 50%;
  right: 7px;
  margin-top: -2px;
}

.zd-icon-arrow-down {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgb(var(--grey-500));
  top: 50%;
  right: 7px;
  margin-top: -2px;
}

.zd-icon-arrow-right {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid rgb(var(--grey-500));
  top: 50%;
  right: 9px;
  margin-top: -4px;
}

.zd-icon-arrow-left {
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 4px solid rgb(var(--grey-500));
  top: 50%;
  right: 9px;
  margin-top: -4px;
}

.zd-state-focus .zd-icon-arrow-up,
.zd-state-hover .zd-icon-arrow-up {
  border-bottom-color: rgb(var(--grey-800));
}

.zd-state-focus .zd-icon-arrow-down,
.zd-state-hover .zd-icon-arrow-down {
  border-top-color: rgb(var(--grey-800));
}

.zd-state-focus .zd-selectmenu-base,
.zd-state-focus .zd-searchmenu-base {
  /* Border color & box shadow glow matching Garden, May 2018 */
  border-color: rgb(var(--blue-600));
  box-shadow: 0 0 0 3px var(--border-primaryEmphasis);
  outline: medium none;
  border-radius: 4px;
}

.zd-menu-autofit-mode.zd-menu-root {
  height: auto;
  max-height: 300px;
}

.zd-menu-autofit-mode .zd-menu-root,
.zd-menu-autofit-mode .zd-menu-panel-root {
  height: auto;
  max-height: 300px;
}

.zd-menu-autofit-mode .zd-menu-list-holder {
  position: relative;
}

.zd-tag-menu-root {
  background-color: var(--background-default);
  border: 1px solid var(--border-default);
  border-radius: 4px;
  box-shadow: inset 0 0 1px 0 rgb(var(--grey-300));
  box-sizing: border-box;
  cursor: pointer;
  margin: 0;
  min-height: 32px;
  outline: none;
}

.zd-tag-menu-root:hover {
  border-color: rgb(var(--blue-400));
  /* Matches Garden, May 2018 */
}

.zd-tag-menu-root.zd-state-focus {
  /* Border color & box shadow glow matching Garden, May 2018 */
  border-color: rgb(var(--blue-600));
  box-shadow: 0 0 0 3px var(--border-primaryEmphasis);
  outline: thick none;
}

.zd-tag-menu-root .zd-menu-list-holder {
  padding: 4px 4px 1px 4px;
  box-sizing: border-box;
}

.zd-tag-item {
  background-color: var(--background-default);
  border: 1px solid var(--border-default);
  border-radius: 3px;
  color: var(--foreground-default);
  display: inline-block;
  font-size: 11px;
  line-height: 13px;
  margin: 0 3px 3px 0;
  padding: 3px 17px 4px 6px;
  position: relative;
  word-wrap: break-word;
  word-break: break-all;
}

.zd-tag-item a {
  outline: none;
}

.zd-tag-item:focus,
.zd-tag-item.zd-item-focus {
  background-color: rgb(var(--grey-700));
  border-color: rgb(var(--grey-700));
  color: var(--background-default);
  outline: none;
}

.zd-tag-item:focus .zd-tag-close,
.zd-tag-item.zd-item-focus .zd-tag-close {
  color: rgb(var(--grey-400));
}

.zd-tag-item:focus .zd-tag-close:hover {
  color: var(--background-default);
}

.zd-tag-close {
  font-size: 12px;
  color: rgb(var(--grey-500));
  cursor: pointer;
  padding: 3px;
  padding-right: 2px;
  position: absolute;
  top: 0;
  right: 1px;
  user-select: none;
}

.zd-tag-close:hover {
  color: var(--foreground-default);
}

.zd-item-focus .zd-tag-close:hover {
  color: var(--background-default);
}

.zd-state-disabled .zd-tag-close,
.zd-state-disabled .zd-tag-editor-holder,
.zd-item-disabled .zd-tag-close {
  display: none;
}

.zd-state-disabled .zd-tag-item,
.zd-tag-item.zd-item-disabled {
  padding-right: 6px;
}

.zd-tag-editor {
  border: none;
  border-radius: 0;
  color: rgb(var(--grey-800));
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
  min-height: 13px;
  min-width: 5px;
  position: relative;
  outline: none;
  background-color: transparent;
  width: 100px;
  padding: 3px;
  margin: 0;
}

.zd-tag-shortener {
  color: rgb(var(--grey-700));
  display: inline-block;
  font-size: 11px;
  line-height: 13px;
  margin: 0 3px 3px 0;
}

.zd-tag-editor-holder {
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.zd-state-focus .zd-tag-editor-holder {
  width: auto;
  height: auto;
  display: block;
}

.zd-tag-editor-holder button {
  width: 1px;
  height: 1px;
  border-width: 0;
  background-color: transparent;
}

.zd-tag-editor-holder .zd-searchmenu-base {
  border-width: 0;
  height: 22px;
  padding-left: 8px;
  box-shadow: none;
  outline: medium none;
}

.zd-tag-menu-root {
  position: relative;
}

.zd-multiselect:after {
  content: "";
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgb(var(--grey-500));
  bottom: 12px;
  right: 7px;
  position: absolute;
  margin-top: -2px;
}

.zd-multiselect .zd-selectmenu-base-arrow {
  display: none;
}

.zd-multiselect .zd-combo-selectmenu .zd-searchmenu-base,
.zd-multiselect .zd-combo-selectmenu .zd-selectmenu-base {
  width: 100%;
  height: 22px;
}

.zd-multiselect .zd-combo-selectmenu .zd-selectmenu-base-content {
  display: none;
}

.zd-multiselect .zd-combo-selectmenu .zd-selectmenu-base {
  background-image: none;
}

.zd-menu-root.zd-menu-with-checkboxes .zd-leaf input[type="checkbox"] {
  position: absolute;
  top: 8px;
  left: 8px;
}

.zd-menu-root.zd-menu-with-checkboxes .zd-leaf a {
  padding-left: 28px;
}

.zd-zero-state-holder {
  display: none;
  padding: 3px;
}

.zd-state-zero .zd-zero-state-holder {
  display: block;
}

.zd-state-zero .zd-tag-editor-holder {
  width: 100%;
}

.zd-state-zero .zd-tag-editor {
  width: 100%;
}

.zd-menu-focus-shim {
  padding: 0;
  margin: 0;
  width: 1px;
  height: 1px;
}

/* BEGIN ./vendor/assets/stylesheets/jquery-ui.fb210ae1ec16cefb1e4d.scss */
/**
 * jQuery UI CSS Framework 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 */

/* http://docs.jquery.com/UI/Theming/API */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ui-helper-clearfix {
  display: inline-block;
}

/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix {
  height: 1%;
}

.ui-helper-clearfix {
  display: block;
}

/* end clearfix */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* END ui_widgets */

/*
 * jQuery UI Accordion 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
.ui-accordion {
  width: 100%;
}

.ui-accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin-top: 1px;
}

.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}

.ui-accordion .ui-accordion-heading {
  display: block;
  font-size: 1em;
  padding: 0.5em 0.5em 0.5em 0.7em;
}

.ui-accordion-icons .ui-accordion-heading {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  position: absolute;
  left: 0.5em;
  top: 50%;
  margin-top: -8px;
}

.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  margin-top: -2px;
  position: relative;
  top: 1px;
  margin-bottom: 2px;
  overflow: auto;
  display: none;
}

.ui-accordion .ui-accordion-content-active {
  display: block;
}

/*
 * jQuery UI Autocomplete 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete {
  position: absolute;
  cursor: default;
}

/* workarounds */
* html .ui-autocomplete {
  width: 1px;
}

/* without this, the menu expands to 100% in IE6 */
/*
 * jQuery UI Button 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button {
  display: inline-block;
  position: relative;
  padding: 0;
  margin-right: 0.1em;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  overflow: visible;
}

/* the overflow property removes extra width in IE */
.ui-button-icon-only {
  width: 2.2em;
}

/* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only {
  width: 2.4em;
}

/* button elements seem to need a little more width */
.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

/*button text element */
.ui-button .ui-button-text {
  display: block;
  line-height: 1.4;
}

.ui-button-text-only .ui-button-text {
  padding: 0.4em 1em;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 1em 0.4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
  padding: 0.4em 2.1em 0.4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: 0.4em 1em;
}

/*button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
  left: 0.5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
  right: 0.5em;
}

/*button sets*/
.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}

/* workarounds */
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* reset extra padding in Firefox */
/*
 * jQuery UI Datepicker 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
  width: 17em;
  padding: 0.2em 0.2em 0;
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}

.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}

.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 49%;
}

.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}

.ui-datepicker th {
  padding: 0.7em 0.3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto 0.4em;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0em;
}

/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}

/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none;
  /*sorry for IE5*/
  display/**/: block;
  /*sorry for IE5*/
  position: absolute;
  /*must have*/
  z-index: -1;
  /*must have*/
  filter: mask();
  /*must have*/
  top: -4px;
  /*must have*/
  left: -4px;
  /*must have*/
  width: 200px;
  /*must have*/
  height: 200px;
  /*must have*/
}

/*
 * jQuery UI Dialog 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog {
  position: absolute;
  padding: 0.2em;
  width: 300px;
  overflow: hidden;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 16px 0.1em 0;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
}

.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin: 1px;
}

.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  padding: 0;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

/*
 * jQuery UI Menu 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  outline: none;
}

.ui-menu .ui-menu {
  margin-top: -3px;
  position: absolute;
}

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  width: 100%;
}

.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 2px 0.4em;
  line-height: 1.5;
  font-weight: normal;
}

.ui-menu .ui-menu-item a.ui-state-focus,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}

.ui-menu li.ui-state-disabled {
  font-weight: normal;
  padding: 0em 0.4em;
  margin: 0.4em 0 0.2em;
  line-height: 1.5;
}

/* icon support */
.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item a {
  position: relative;
  padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
  position: absolute;
  top: 0.2em;
  left: 0.2em;
}

/* right-aligned */
.ui-menu .ui-menu-icon {
  position: static;
  float: right;
}

/*
 * jQuery UI Menubar 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 */
.ui-menubar {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.ui-menubar-item {
  float: left;
}

.ui-menubar .ui-button {
  float: left;
  font-weight: normal;
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
  margin: 0;
  outline: none;
}

.ui-menubar .ui-menubar-link {
  border-right: 1px dashed transparent;
  border-left: 1px dashed transparent;
}

.ui-menubar .ui-menu {
  width: 200px;
  position: absolute;
  z-index: 9999;
}

/*
 * jQuery UI Progressbar 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar {
  height: 2em;
  text-align: left;
}

.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}

/*
 * jQuery UI Resizable 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  z-index: 99999;
  display: block;
}

.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}

.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}

.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}

.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}

.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}

/*
 * jQuery UI Selectable 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectable#theming
 */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted rgb(var(--grey-800));
  /* Grey-800 */
}

/*
 * jQuery UI Slider 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

/*
 * jQuery UI Spinner 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Spinner#theming
 */
.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  padding: 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 22px;
}

.ui-spinner-button {
  width: 16px;
  height: 50%;
  font-size: 0.5em;
  padding: 0;
  margin: 0;
  z-index: 100;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

.ui-spinner a.ui-spinner-button {
  border-top: none;
  border-bottom: none;
  border-right: none;
}

/* more specificity required here to overide default borders */
.ui-spinner .ui-icon {
  position: absolute;
  margin-top: -8px;
  top: 50%;
  left: 0;
}

/* vertical centre icon */
.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

/* TR overrides */
span.ui-spinner {
  background: none;
}

.ui-spinner .ui-icon-triangle-1-s {
  /* need to fix icons sprite */
  background-position: -65px -16px;
}

/*
 * jQuery UI Tabs 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs {
  position: relative;
  padding: 0.2em;
}

/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: 0.2em 0.2em 0;
}

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 0;
  margin: 1px 0.2em 0 0;
  border-bottom: 0 !important;
  padding: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: 0.5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a,
.ui-tabs .ui-tabs-nav li.ui-state-disabled a,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading a {
  cursor: text;
}

.ui-tabs .ui-tabs-nav li a,
.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a {
  cursor: pointer;
}

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}

/*
 * jQuery UI Tooltip 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tooltip#theming
 */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  box-shadow: 0 0 5px rgb(var(--grey-500));
  /* Grey-500 */
}

body .ui-tooltip {
  border-width: 2px;
}

/*
 * jQuery UI CSS Framework 1.9pre
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1.1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Verdana, Arial, sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  border: 1px solid var(--border-default);
  background: var(--background-default) url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;
  color: var(--foreground-default);
}

.ui-widget-content a {
  color: var(--foreground-default);
}

.ui-widget-header {
  border: 1px solid var(--border-default);
  background: var(--background-emphasis) url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;
  color: var(--foreground-default);
  font-weight: bold;
}

.ui-widget-header a {
  color: var(--foreground-default);
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
  border: 1px solid var(--border-default);
  background: var(--background-subtle) url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: var(--foreground-default);
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
  color: var(--foreground-default);
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
  border: 1px solid var(--border-emphasis) 9;
  background: var(--background-subtle) url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: var(--foreground-default);
}

.ui-state-hover a,
.ui-state-hover a:hover {
  color: var(--foreground-default);
  text-decoration: none;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
  border: 1px solid rgb(var(--grey-500));
  background: var(--background-default) url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;
  font-weight: normal;
  color: rgb(var(--grey-800));
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: rgb(var(--grey-800));
  text-decoration: none;
}

.ui-widget :active {
  outline: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid var(--border-emphasis);
  background: var(--background-default) url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;
  color: var(--foreground-default);
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: var(--foreground-default);
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid var(--border-dangerEmphasis);
  background: var(--background-default) url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;
  color: var(--foreground-danger);
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: var(--foreground-danger);
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: var(--foreground-danger);
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  background-image: none;
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
  background-image: url(images/ui-icons_222222_256x240.png);
}

.ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}

.ui-widget-header .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}

.ui-state-default .ui-icon {
  background-image: url(images/ui-icons_888888_256x240.png);
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
  background-image: url(images/ui-icons_454545_256x240.png);
}

.ui-state-active .ui-icon {
  background-image: url(images/ui-icons_454545_256x240.png);
}

.ui-state-highlight .ui-icon {
  background-image: url(images/ui-icons_2e83ff_256x240.png);
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url(images/ui-icons_cd0a0a_256x240.png);
}

/* positioning */
.ui-icon-carat-1-n {
  background-position: 0 0;
}

.ui-icon-carat-1-ne {
  background-position: -16px 0;
}

.ui-icon-carat-1-e {
  background-position: -32px 0;
}

.ui-icon-carat-1-se {
  background-position: -48px 0;
}

.ui-icon-carat-1-s {
  background-position: -64px 0;
}

.ui-icon-carat-1-sw {
  background-position: -80px 0;
}

.ui-icon-carat-1-w {
  background-position: -96px 0;
}

.ui-icon-carat-1-nw {
  background-position: -112px 0;
}

.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}

.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
  background: rgb(var(--grey-500)) url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: rgb(var(--grey-500)) url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  border-radius: 8px;
}

/* END ./vendor/assets/stylesheets/jquery-ui.fb210ae1ec16cefb1e4d.scss */
.jGrowl {
  z-index: 9999;
  position: fixed;
  margin: -6px 0 0 0;
  padding: 5px 8px 5px 5px;
  top: 66px;
  right: 0px;
}
html[data-rtl-language="true"] .jGrowl {
  direction: rtl;
  padding: 5px 5px 5px 8px;
  left: 0;
  right: auto;
}
.jGrowl-notification {
  text-align: left;
  display: none;
  border-radius: 4px !important;
  padding: 10px 25px 10px 36px;
  position: relative;
  width: 280px;
  min-height: 12px;
  margin: 5px 0;
  background-image: none;
  background-color: var(--background-default);
  color: var(--foreground-default);
  border: 1px solid var(--border-default); /* Grey-300 */
  box-shadow: var(--shadow-large);
}

html[data-rtl-language="true"] .jGrowl-notification {
  text-align: right;
  padding: 10px 36px 10px 25px;
}

.jGrowl-notification .jGrowl-header {
  font-weight: bold;
  font-size: 0.85em;
}

.jGrowl .jGrowl-notification .jGrowl-close {
  position: absolute;
  top: 7px;
  right: 10px;
  padding: 0;
  border: none;
  z-index: 99;

  cursor: pointer;

  color: rgb(var(--grey-700)); /* Grey-600 */
  background-color: transparent;

  font-family:
    "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 20px;
  line-height: 18px;
  font-weight: normal;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification .jGrowl-close {
  left: 10px;
  right: auto;
}
.jGrowl .jGrowl-notification .jGrowl-close:hover {
  color: rgb(var(--grey-800)); /* Grey-800 */
  background: transparent;
}

.jGrowl-closer {
  background-color: var(--foreground-default);
  width: 250px;
  padding: 10px;
  margin: 10px;
  text-align: left;
  display: none;
  border-radius: 5px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}

/** Hide jGrowl when printing **/
@media print {
  .jGrowl {
    display: none;
  }
}

/* END ./vendor/assets/stylesheets/vendor.scss */
/* BEGIN ./app/assets/stylesheets/overrides/jgrowl.scss */

.jGrowl .jGrowl-notification .btn,
.jGrowl .jGrowl-notification button {
  display: inline-block;
  padding: 5px 10px 5px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 20px;
  color: var(--foreground-default);
  text-align: center;
  text-shadow: none !important;
  vertical-align: middle;
  cursor: pointer;
  background-color: var(--background-default);
  background-image: none;
  border: 1px solid var(--border-default);
  /* Grey-300 */
  border-radius: 4px;
  box-shadow: none;
  white-space: nowrap;
  border-radius: 1000px;
}
.jGrowl .jGrowl-notification .btn:hover,
.jGrowl .jGrowl-notification button:hover {
  background-color: rgb(var(--grey-100));
  /* Grey-100 */
  border-color: rgb(var(--grey-400));
  /* Grey-400 */
  color: var(--foreground-default);
  box-shadow: inset 0 1px 0 var(--background-default);
}
.jGrowl .jGrowl-notification .btn:active,
.jGrowl .jGrowl-notification .btn.active,
.jGrowl .jGrowl-notification button:active,
.jGrowl .jGrowl-notification button.active {
  background-color: rgb(var(--grey-100));
  /* Grey-100 */
  border-color: rgb(var(--grey-400));
  /* Grey-400 */
  color: rgb(var(--grey-800));
  box-shadow: inset var(--shadow-small);
}
.jGrowl .jGrowl-notification .btn.disabled,
.jGrowl .jGrowl-notification .btn[disabled],
.jGrowl .jGrowl-notification button.disabled,
.jGrowl .jGrowl-notification button[disabled] {
  background-color: rgb(var(--grey-300)) !important;
  border-color: var(--border-default) !important;
  color: var(--background-default) !important;
  opacity: 1;
  box-shadow: none;
}
.jGrowl .jGrowl-notification a.btn {
  border-bottom: 1px solid rgb(var(--grey-400)) !important;
  /* Grey-400 */
}
.jGrowl .jGrowl-notification:after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification:after {
  left: 0px;
  right: 10px;
}
.jGrowl .jGrowl-notification.ui-state-notice:after {
  background-image: url(/agent/assets/icons/alerts/success-0629b259efb3f15f2543673af013f397.png);
}
.jGrowl .jGrowl-notification.ui-state-error:after {
  background-image: url(/agent/assets/icons/alerts/error-9edda0113d10e03df12a810e6322c91f.png);
}
.jGrowl .jGrowl-notification.ui-state-alert:after {
  background-image: url(/agent/assets/icons/alerts/warning-5ff93c60eef34c857fdb50ffe8b10d0f.png);
}
.jGrowl .jGrowl-notification.progress:after {
  background-image: url(/agent/assets/icons/spinners/dotted_bar-b0db0a3419081443c8a7ae0747b9937d.gif);
  background-size: 16px;
  background-position: 0 6px;
}
.jGrowl .jGrowl-notification a:focus {
  text-decoration: underline;
}
.jGrowl .jGrowl-notification .jGrowl-message {
  padding-right: 20px;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification .jGrowl-message {
  text-align: right;
  padding-left: 20px;
  padding-right: 0;
}
.jGrowl .jGrowl-notification .jGrowl-message h1 {
  margin-top: 0;
  line-height: 18px;
  font-size: 14px;
}
.jGrowl .jGrowl-notification .jGrowl-message ul:not(.unstyled) {
  margin: 10px 0 10px 20px;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification .jGrowl-message ul:not(.unstyled) {
  margin: 10px 20px 10px 0px;
}
.jGrowl .jGrowl-notification .jGrowl-message ul:not(.unstyled) li {
  list-style: disc;
}
.jGrowl .jGrowl-notification .jGrowl-message .add_message {
  margin-top: 7px;
}
.jGrowl .jGrowl-notification .jGrowl-message footer {
  background: transparent;
  border: none;
  margin-top: 1em;
}
.jGrowl .jGrowl-notification .jGrowl-message h4 {
  margin-bottom: 10px;
}
.jGrowl .jGrowl-notification .jGrowl-message p {
  margin-bottom: 10px;
}
.jGrowl .jGrowl-notification .jGrowl-message .actions {
  margin-bottom: 3px;
  white-space: nowrap;
}
.jGrowl .jGrowl-notification .jGrowl-message .actions button {
  padding-top: 4px;
  margin-right: 10px;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification .jGrowl-message .actions button {
  margin-left: 10px;
  margin-right: 0;
}
.jGrowl .jGrowl-notification .jGrowl-message .actions a {
  margin-left: 10px;
}
html[data-rtl-language="true"] .jGrowl .jGrowl-notification .jGrowl-message .actions a {
  margin-left: 0;
  margin-right: 10px;
}

.jGrowl .jGrowl-notification.ui-state-error {
  color: var(--foreground-danger);
  text-shadow: none;
}

.jGrowl .jGrowl-notification.ui-state-error h1 {
  margin: 5px 3px 5px 0px;
}
.jGrowl .jGrowl-notification.ui-state-error .close_btn {
  padding: 4px 30px 5px 30px;
  float: right;
  color: rgb(var(--grey-800));
  /* Grey-800 */
}
.jGrowl .jGrowl-notification.ui-state-error.ticket .jGrowl-close {
  display: none;
}
.jGrowl .jGrowl-notification.ui-state-error.ticket .jGrowl-message {
  padding-right: 0;
}

.jGrowl-notification {
  animation-name: slideDown;
  animation-duration: 170ms;
  animation-timing-function: linear;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0%);
  }
}
