@import url(//fonts.googleapis.com/css?family=Roboto:400italic,700italic,300,700,300italic,400);
@import url(//fonts.googleapis.com/css?family=Roboto+Slab:400,700,300);
.select {
  width: 300px;
  height: 202px !important;
  overflow: auto;
  border-radius: 0;
  margin: 0;
}

.treePanel {
  height: 200px;
  overflow-y: hidden;
  border: 1px solid #cccccc;
}

/*******************************************************************************
 * Tree container
 */
ul.dynatree-container {
  font-family: arial, helvetica;
  font-size: 11px; /* font size should not be too big */
  white-space: nowrap;
  padding: 3px;
  margin: 0; /* issue 201 */
  background-color: white;
  height: 194px;
  overflow-y: auto;
}

ul.dynatree-container ul {
  padding: 0 0 0 16px;
  margin: 0;
}

ul.dynatree-container li {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  -moz-background-clip: border;
  -moz-background-inline-policy: continuous;
  -moz-background-origin: padding;
  background-attachment: scroll;
  background-color: transparent;
  background-repeat: repeat-y;
  background-image: url("dynatree/vline.gif");
  background-position: 0 0;
  /*
  background-image: url("icons_96x256.gif");
  background-position: -80px -64px;
  */
  margin: 0;
  padding: 1px 0 0 0;
  line-height: normal;
}

/* Suppress lines for last child node */
ul.dynatree-container li.dynatree-lastsib {
  background-image: none;
}

/* Suppress lines if level is fixed expanded (option minExpandLevel) */
ul.dynatree-no-connector > li {
  background-image: none;
}

/* Style, when control is disabled */
.ui-dynatree-disabled ul.dynatree-container {
  opacity: 0.5;
  /*	filter: alpha(opacity=50); /* Yields a css warning */
  background-color: silver;
}

/*******************************************************************************
 * Common icon definitions
 */
span.dynatree-empty,
span.dynatree-vline,
span.dynatree-connector,
span.dynatree-expander,
span.dynatree-icon,
span.dynatree-checkbox,
span.dynatree-radio,
span.dynatree-drag-helper-img,
#dynatree-drop-marker {
  width: 16px;
  height: 16px;
  display: -moz-inline-box; /* @ FF 1+2 */
  display: inline-block; /* Required to make a span sizeable */
  vertical-align: top;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url("dynatree/icons.gif");
  background-position: 0 0;
}

/** Used by 'icon' node option: */
ul.dynatree-container img {
  width: 16px;
  height: 16px;
  margin-left: 3px;
  vertical-align: top;
  border-style: none;
}

/*******************************************************************************
 * Lines and connectors
 */
span.dynatree-connector {
  background-position: -16px -64px;
}

/*******************************************************************************
 * Expander icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: dynatree-exp-
 * 1st character: 'e': expanded, 'c': collapsed
 * 2nd character (optional): 'd': lazy (Delayed)
 * 3rd character (optional): 'l': Last sibling
 */
span.dynatree-expander {
  background-position: 0px -80px;
  cursor: pointer;
}

.dynatree-exp-cl span.dynatree-expander {
  background-position: 0px -96px;
}

.dynatree-exp-cd span.dynatree-expander {
  background-position: -64px -80px;
}

.dynatree-exp-cdl span.dynatree-expander {
  background-position: -64px -96px;
}

.dynatree-exp-e span.dynatree-expander,
.dynatree-exp-ed span.dynatree-expander {
  background-position: -32px -80px;
}

.dynatree-exp-el span.dynatree-expander,
.dynatree-exp-edl span.dynatree-expander {
  background-position: -32px -96px;
}

.dynatree-loading span.dynatree-expander {
  background-position: 0 0;
  background-image: url("dynatree/loading.gif");
}

/*******************************************************************************
 * Checkbox icon
 */
span.dynatree-checkbox {
  margin-left: 3px;
  background-position: 0px -32px;
}

span.dynatree-checkbox:hover {
  background-position: -16px -32px;
}

.dynatree-partsel span.dynatree-checkbox {
  background-position: -64px -32px;
}

.dynatree-partsel span.dynatree-checkbox:hover {
  background-position: -80px -32px;
}

.dynatree-selected span.dynatree-checkbox {
  background-position: -32px -32px;
}

.dynatree-selected span.dynatree-checkbox:hover {
  background-position: -48px -32px;
}

.ui-dynatree-disabled span.ui-dynatree-checkbox {
  background-position: -96px -32px;
}

.ui-dynatree-disabled span.ui-dynatree-checkbox:hover {
  background-position: -96px -32px;
}

/*******************************************************************************
 * Node type icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: dynatree-ico-
 * 1st character: 'e': expanded, 'c': collapsed
 * 2nd character (optional): 'f': folder
 */
span.dynatree-icon {
  margin-left: 3px;
  background-position: 0px 0px;
}

.dynatree-ico-cf span.dynatree-icon {
  background-position: 0px -16px;
}

.dynatree-ico-ef span.dynatree-icon {
  background-position: -64px -16px;
}

/* Status node icons */
.dynatree-statusnode-wait span.dynatree-icon {
  background-image: url("dynatree/loading.gif");
}

.dynatree-statusnode-error span.dynatree-icon {
  background-position: 0px -112px;
}

/*******************************************************************************
 * Node titles
 */
/* @Chrome: otherwise hit area of node titles is broken (issue 133)
   Removed again for issue 165; (133 couldn't be reproduced) */
span.dynatree-node {
  display: -moz-inline-box; /* issue 133, 165, 172, 192,  */
  /*  display: inline-block; /* Required to make a span sizeable */
}

/* Remove blue color and underline from title links */
ul.dynatree-container a {
  color: black; /* inherit doesn't work on IE */
  text-decoration: none;
  vertical-align: top;
  margin: 0px;
  margin-left: 3px;
  /*	outline: 0; /* @ Firefox, prevent dotted border after click */
}

span.dynatree-node a {
  font-size: 11px; /* required for IE, quirks mode */
  display: inline-block; /* Better alignment, when title contains <br> */
  /*	vertical-align: top;*/
  padding-left: 3px;
  padding-right: 3px; /* Otherwise italic font will be outside bounds */
  /*	line-height: 16px; /* should be the same as img height, in case 16 px */
}

span.dynatree-folder a {
  font-weight: bold;
}

ul.dynatree-container a:focus,
span.dynatree-focused a:link {
  background-color: #EFEBDE; /* gray */
}

span.dynatree-selected a {
  color: green;
}

span.dynatree-active a {
  background-color: #3169C6 !important;
  color: white !important; /* @ IE6 */
}

/*******************************************************************************
 * Drag'n'drop support
 */
/*** Helper object ************************************************************/
div.dynatree-drag-helper a {
  border: 1px solid gray;
  background-color: white;
  padding-left: 5px;
  padding-right: 5px;
  opacity: 0.8;
}

span.dynatree-drag-helper-img {
  /*
  position: relative;
  left: -16px;
  */
}

div.dynatree-drag-helper {
  /*    border-color: green;
  	background-color: red;*/
}

div.dynatree-drop-accept span.dynatree-drag-helper-img {
  background-position: -32px -112px;
}

div.dynatree-drag-helper.dynatree-drop-reject {
  border-color: red;
}

div.dynatree-drop-reject span.dynatree-drag-helper-img {
  background-position: -16px -112px;
}

/*** Drop marker icon *********************************************************/
#dynatree-drop-marker {
  width: 24px;
  position: absolute;
  background-position: 0 -128px;
}

#dynatree-drop-marker.dynatree-drop-after,
#dynatree-drop-marker.dynatree-drop-before {
  width: 64px;
  background-position: 0 -144px;
}

#dynatree-drop-marker.dynatree-drop-copy {
  background-position: -64px -128px;
}

#dynatree-drop-marker.dynatree-drop-move {
  background-position: -64px -128px;
}

/*** Source node while dragging ***********************************************/
span.dynatree-drag-source {
  /* border: 1px dotted gray; */
  background-color: #e0e0e0;
}

span.dynatree-drag-source a {
  color: gray;
}

/*** Target node while dragging cursor is over it *****************************/
span.dynatree-drop-target {
  /*border: 1px solid gray;*/
}

span.dynatree-drop-target a {
  /*background-repeat: no-repeat;
  background-position: right;
  background-image: url("drop_child.gif");*/
}

span.dynatree-drop-target.dynatree-drop-accept a {
  /*border: 1px solid green;*/
  background-color: #3169C6 !important;
  color: white !important; /* @ IE6 */
  text-decoration: none;
}

span.dynatree-drop-target.dynatree-drop-reject {
  /*border: 1px solid red;*/
}

span.dynatree-drop-target.dynatree-drop-after a {
  /*background-repeat: repeat-x;
  background-position: bottom;
  background-image: url("drop_append.gif");*/
}

/*******************************************************************************
 * Custom node classes (sample)
 */
span.custom1 a {
  background-color: maroon;
  color: yellow;
}

div.jGrowl {
  padding: 10px;
  z-index: 9999;
  color: #ffffff;
  font-size: 12px;
  background-image: none;
}

/** Normal Style Positions **/
body > div.jGrowl {
  position: fixed;
}

body > div.jGrowl.top-left {
  left: 0px;
  top: 0px;
}

body > div.jGrowl.top-right {
  right: 0px;
  top: 0px;
}

body > div.jGrowl.bottom-left {
  left: 0px;
  bottom: 0px;
}

body > div.jGrowl.bottom-right {
  right: 1px;
  bottom: 60px;
}

body > div.jGrowl.center {
  top: 0px;
  width: 50%;
  left: 25%;
}

body > div.jGrowl.bottom-right-high {
  right: 1px;
  bottom: 1px;
}

/** Cross Browser Styling **/
div.center div.jGrowl-notification, div.center div.jGrowl-closer {
  margin-left: auto;
  margin-right: auto;
}

div.jGrowl div.jGrowl-notification, div.jGrowl div.jGrowl-closer {
  background: #FFFFFF;
  opacity: 0.85;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  zoom: 1;
  width: 235px;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: Tahoma, Arial, Helvetica, sans-serif;
  font-size: 1em;
  text-align: left;
  display: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  border-radius: 5px;
  color: #7EBA00;
  border-width: 2px;
}

div.jGrowl div.jGrowl-notification {
  min-height: 40px;
  height: auto;
}

div.jGrowl div.jGrowl-notification div.header {
  font-weight: bold;
  font-size: 0.85em;
  padding-bottom: 5px;
}

div.jGrowl div.jGrowl-notification div.close {
  z-index: 99;
  float: right;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
}

div.jGrowl div.jGrowl-closer {
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
  text-align: center;
}

div.bubbleOutline {
  outline: 1px solid #7EBA00;
}

div.bubbleNotification {
  color: #FFFFFF;
}

/** Hide jGrowl when printing **/
@media print {
  div.jGrowl {
    display: none;
  }
}
/* basic rendering styles used both for TBE bundle and standalone for printable view */
.minWidth220 {
  min-width: 220px;
}

.width160 {
  min-width: 160px;
  width: 160px;
}

.width210 {
  min-width: 210px;
  width: 210px;
}

.width80 {
  min-width: 80px;
  width: 80px;
}

.width100 {
  min-width: 80px;
  width: 80px;
}

.width60 {
  min-width: 60px;
  width: 60px;
}

.width450 {
  width: 450px;
}

.width20 {
  width: 20px;
}

.width100pr {
  width: 100%;
}

.width50pr {
  width: 50%;
}

.width30pr {
  width: 30%;
}

.width10pr {
  width: 10%;
}

.widthAuto {
  width: auto;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.center {
  text-align: center !important;
}

.top {
  vertical-align: top !important;
}

.middle {
  vertical-align: middle;
}

.bottom {
  vertical-align: bottom;
}

.nowrap {
  white-space: nowrap;
}

.inlineBlock {
  display: inline-block;
}

.padding5 {
  padding: 5px;
}

.paddingRight5 {
  padding-right: 5px;
}

.paddingRight20 {
  padding-right: 20px;
}

.paddingLeft5 {
  padding-left: 5px;
}

.paddingBottom10 {
  padding-bottom: 10px;
}

.paddingTop12 {
  padding-top: 12px;
}

.marginRight5 {
  margin-right: 5px;
}

.marginLeft5 {
  margin-left: 5px;
}

.marginTop5 {
  margin-top: 5px;
}

.text-red {
  color: #b94a48;
}

.bottomImportant {
  vertical-align: bottom !important;
}

.hide {
  display: none;
}

button.ui-dialog-titlebar-close {
  background-image: url("../UIv9/jquery-ui/bootstrap/images/ui-icons_222222_256x240.png");
  background-position: -96px -128px;
  opacity: 1 !important;
}

/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #212529;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #212529;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #212529;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #cbccce;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #212529;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.25rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #212529;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 0.25rem;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #212529;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000;
  background-color: #f9fafb;
  border-color: #f9fafb;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-dark:hover {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #1c1f23;
  border-color: #1a1e21;
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1a1e21;
  border-color: #191c1f;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #212529;
  border-color: #212529;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #212529;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
  .navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-md .offcanvas-top,
  .navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
  .navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
  .navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
  .navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}
.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #636464;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light .alert-link {
  color: #4f5050;
}

.alert-dark {
  color: #141619;
  background-color: #d3d3d4;
  border-color: #bcbebf;
}
.alert-dark .alert-link {
  color: #101214;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #41464b;
  background-color: #cbccce;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #055160;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #664d03;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #636464;
  background-color: #fefefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #636464;
  background-color: #e5e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #636464;
  border-color: #636464;
}

.list-group-item-dark {
  color: #141619;
  background-color: #d3d3d4;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #141619;
  background-color: #bebebf;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #141619;
  border-color: #141619;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem 1rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}
.carousel-dark .carousel-caption {
  color: #000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
}
.offcanvas-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin-top: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
}

.offcanvas.show {
  transform: none;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite;
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite;
}

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #fff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

.user-select-none {
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
h3, .h3 {
  font-weight: normal;
  font-size: 12px;
}

form {
  margin: 0;
  padding: 0;
}

#tdcontent {
  padding-left: 10px;
  padding-right: 15px;
}

div.callout {
  position: absolute;
  background-color: transparent;
}

.menubody {
  color: #000000;
  margin: 0;
  font-size: 11px;
}

A.mediumText:link {
  color: #0087CC;
  font-size: 10px;
}

A.mediumText:visited {
  color: #0087CC;
  font-size: 10px;
}

A.mediumText:active {
  color: #0087CC;
  font-size: 10px;
}

A.mediumText:hover {
  color: #3366CC;
  font-size: 10px;
}

A.white:link {
  color: #000000;
  font-weight: bold;
  font-size: 10px;
}

A.white:visited {
  color: #000000;
  font-weight: bold;
  font-size: 10px;
}

A.white:active {
  color: #000000;
  font-weight: bold;
  font-size: 10px;
}

A.white:hover {
  color: #000000;
  font-weight: bold;
  font-size: 10px;
}

A.navy:link {
  font-weight: bold;
}

A.navy:visited {
  font-weight: bold;
}

A.navy:active {
  font-weight: bold;
}

A.navy:hover {
  font-weight: bold;
}

A.grey:link {
  color: #888888;
  text-decoration: none;
}

A.grey:visited {
  color: #888888;
  text-decoration: none;
}

A.grey:active {
  color: #888888;
  text-decoration: none;
}

A.grey:hover {
  color: #888888;
  text-decoration: none;
}

A:link.nowrapSmallBlack {
  font-weight: bold;
  font-size: 10px;
  color: #000000;
  text-decoration: none;
}

A:visited.nowrapSmallBlack {
  font-weight: bold;
  font-size: 10px;
  color: #000000;
  text-decoration: none;
}

A:active.nowrapSmallBlack {
  font-weight: bold;
  font-size: 10px;
  color: #000000;
  text-decoration: none;
}

A:hover.nowrapSmallBlack {
  color: #000000;
  font-weight: bold;
  text-decoration: underline;
}

A:link.smallGrey {
  font-weight: normal;
  font-size: 7pt;
  color: #666666;
  text-decoration: none;
}

A:visited.smallGrey {
  font-weight: normal;
  font-size: 7pt;
  color: #666666;
  text-decoration: none;
}

A:active.smallGrey {
  font-weight: normal;
  font-size: 7pt;
  color: #000080;
  text-decoration: none;
}

A:hover.smallGrey {
  color: #000080;
  text-decoration: underline;
}

.bodySmall {
  font-weight: normal;
  font-size: 10px;
  color: #000000;
  text-decoration: none;
}

A:link.bodySmall {
  font-weight: normal;
  font-size: 10px;
  text-decoration: underline;
}

A:visited.bodySmall {
  font-weight: normal;
  font-size: 10px;
  text-decoration: underline;
}

A:active.bodySmall {
  font-weight: normal;
  font-size: 10px;
  text-decoration: underline;
}

A:hover.bodySmall {
  font-weight: normal;
  font-size: 10px;
  text-decoration: underline;
}

img {
  border-style: none;
}

.topTitle {
  color: #333333;
  font-weight: bold;
}

.topRegular {
  vertical-align: top;
  COLOR: #333333;
}

.topSmall {
  vertical-align: top;
  FONT-SIZE: 9px;
  COLOR: #333333;
}

td.topRegularNoBorder {
  vertical-align: top;
  COLOR: #000000;
  border-right: 0px;
}

td.regularNoBorder {
  vertical-align: middle;
  COLOR: #333333;
  border-right: 0px;
}

.ftitle TD {
  color: #333333;
  font-size: 9px;
  font-weight: bold;
  border-right: none;
}

td.ftitle {
  color: #000000;
  font-size: 9px;
  font-weight: bold;
  border-right: none;
}

tr.sectionLine {
  background: #C6D67B;
  width: 100%;
}

td.sectionLine {
  background: #C6D67B;
  width: 100%;
}

td.topSmall A:link {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.topSmall A:visited {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.topSmall A:active {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.topSmall A:hover {
  color: #3366CC;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.smallText A:link {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.smallText A:visited {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.smallText A:active {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.smallText A:hover {
  color: #3366CC;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.nowrapSmall A:link {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.nowrapSmall A:visited {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.nowrapSmall A:active {
  color: #000080;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

td.nowrapSmall A:hover {
  color: #3366CC;
  font-size: 9px;
  font-weight: normal;
  text-decoration: underline;
}

.nowrapRegular {
  white-space: nowrap;
  COLOR: #000000;
  border-collapse: separate;
  empty-cells: show;
}

.nowrapMenuWhite {
  white-space: nowrap;
  font-size: 10px;
  color: #FFFFFF;
}

.nowrapSmall {
  white-space: nowrap;
  FONT-SIZE: 9px;
  COLOR: #000000;
  border-collapse: separate;
  empty-cells: show;
}

.nowrapTopRegular {
  vertical-align: top;
  white-space: nowrap;
  COLOR: #000000;
  border-collapse: separate;
  empty-cells: show;
  padding-left: 0 !important;
}

.nowrapFormLabel {
  white-space: nowrap;
  text-align: right;
  COLOR: #000000;
}

.nowrapFormLabelRequired, .nowrapFormLabelRequired label {
  white-space: nowrap;
  text-align: right;
  COLOR: #D70101;
  font-weight: bold;
}

.formLabelTop {
  vertical-align: top;
}

.nowrapFormLabelRequired label:before {
  content: "* ";
}

/* FAFBF0 */
.nowrapFormField {
  white-space: nowrap;
  COLOR: #000000;
  font-weight: bold;
  text-align: left;
}

.nowrapFormFieldNormal {
  white-space: nowrap;
  COLOR: #000000;
  font-weight: normal;
  text-align: left;
}

.formFieldNormal {
  COLOR: #000000;
  font-weight: normal;
  text-align: left;
}

.formFieldNormal table {
  width: auto;
}

/* For checkmark.gif, which should eventually become a sprite */
.formFieldNormal img {
  vertical-align: middle;
}

.smallGrey {
  white-space: nowrap;
  font-weight: normal;
  font-size: 7pt;
  color: #666666;
  text-decoration: none;
}

.highlight {
  color: #000000;
  background: #FFFF00;
  font-size: 11px;
  font-weight: bold;
}

td.text {
  color: #000000;
  font-weight: normal;
}

.smallText {
  FONT-SIZE: 9px;
  COLOR: #000000;
}

span.smallText {
  FONT-SIZE: 9px;
  COLOR: #000000;
}

.mediumText {
  FONT-SIZE: 10px;
  COLOR: #000000;
}

span.mediumText {
  FONT-SIZE: 10px;
  COLOR: #000000;
}

th {
  color: #000000;
  white-space: nowrap;
  font-weight: bold;
}

.tableHead {
  white-space: nowrap;
  color: #000000;
  background: #DEE7AD;
  font-weight: bold;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tableHeadEmpty {
  white-space: nowrap;
  color: #000000;
  background: #DEE7AD;
  font-weight: normal;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tableBottom {
  white-space: nowrap;
  color: #000000;
  font-weight: bold;
  vertical-align: middle;
}

.tableBottom td {
  padding-left: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 4px;
}

.tableHead td {
  white-space: nowrap;
  color: #000000;
  background: #DEE7AD;
  font-weight: bold;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tableHead th {
  white-space: nowrap;
  color: #000000;
  background: #DEE7AD;
  font-weight: bold;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.tableBottom td {
  white-space: nowrap;
  color: #000000;
  font-weight: bold;
}

.tableBottom th {
  white-space: nowrap;
  color: #000000;
  font-weight: bold;
}

.headerSmallText {
  FONT-SIZE: 9px;
  COLOR: #000000;
}

.PageLogoCell {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
}

.PageHelpLinkSection {
  color: #888888;
  padding-top: 0px;
  padding-right: 20px;
  padding-left: 8px;
  font-size: 11px;
  text-align: right;
  vertical-align: top;
}

.TabOverCell {
  color: #FFF;
  font-size: 11px;
  padding: 5px 8px 6px 8px;
  text-decoration: none;
  height: 24;
  cursor: pointer;
}

.TabSelCell {
  color: #FFF;
  font-size: 11px;
  padding: 5px 8px 6px 8px;
  text-decoration: none;
  height: 24;
  cursor: pointer;
}

.TabCell {
  font-size: 11px;
  padding: 5px 8px 6px 8px;
  text-decoration: none;
  height: 24px;
  cursor: pointer;
}

.BoardingBar {
  float: right;
  padding: 5px 4px;
}

div.menubar-text {
  font-size: 28px;
  line-height: 22px;
  margin-top: -2px;
  float: right;
}

.subtab-nav {
  padding: 0px 0px;
  height: 22px;
}

.subtab-nav table {
  margin: 0;
  padding: 0px;
}

.subtab-nav td {
  font-size: 11px;
  padding: 4px 8px 4px 8px;
  height: 22px;
}

.SubTabCell {
  text-decoration: none;
  height: 22px;
  cursor: pointer;
  white-space: nowrap;
}

.SubTabOverCell {
  color: #FFF;
  text-decoration: none;
  height: 22px;
  cursor: pointer;
  white-space: nowrap;
}

.SubTabSelCell {
  text-decoration: none;
  height: 22px;
  cursor: pointer;
  white-space: nowrap;
}

.SideMenuContent {
  PADDING: 4px 4px;
  FONT-SIZE: 10px;
}

.PageTitleCell table {
  width: auto;
}

.PageTitle {
  font-size: 16px;
  font-weight: normal;
  padding-left: 6px;
}

.FormTextBox {
  PADDING: 4px 4px 4px 4px;
  COLOR: #333333;
}

.SearchFormPopup {
  padding-left: 8px;
}

.ResultsCell {
  PADDING-TOP: 8px;
}

.ResultsCellWOPadding {
  PADDING-TOP: 0px;
}

.ResultsHeaderLeft {
  PADDING: 12px;
  FLOAT: left;
}

.ResultsHeaderRight {
  PADDING: 5px 4px 0px 4px;
  FLOAT: right;
}

.ResultsHeaderText {
  padding: 2px 5px;
}

.ResultsHeader TH {
  COLOR: #333333;
  FONT-SIZE: 11px;
  FONT-WEIGHT: bold;
}

.PortletHolder {
  display: none;
}

.PortletHeader {
  PADDING: 4px 3px 5px 4px;
  COLOR: #333333;
  FONT-WEIGHT: bold;
  zoom: 1;
}

.PortletHeaderRight {
  PADDING: 2px 3px 3px 4px;
  COLOR: #333333;
  FONT-WEIGHT: bold;
  zoom: 1;
  float: right;
}

.PortletHeaderBottom, .PortletHeaderBottom TD {
  PADDING: 3px 4px 3px 4px;
  COLOR: #333333;
  FONT-WEIGHT: bold;
}

.PortletHeader TD {
  PADDING-RIGHT: 6px;
  FONT-WEIGHT: bold;
  white-space: nowrap;
  vertical-align: middle;
}

.PortletContentWOPadding {
  BACKGROUND-COLOR: #FEFEFE;
  COLOR: #000000;
}

.PortletContent {
  PADDING: 4px 4px;
  LINE-HEIGHT: 16px;
  COLOR: #000000;
  padding: 10px;
}

.InformationHeader {
  PADDING: 6px 10px;
  COLOR: #333333;
  FONT-WEIGHT: normal;
  zoom: 1;
}

.InformationContent {
  PADDING: 4px 4px 10px;
  LINE-HEIGHT: 16px;
  COLOR: #000000;
}

.InformationContent.paddingBottom5 {
  padding-bottom: 5px;
}

.FoldableInformationHeader {
  PADDING: 3px 4px 3px 4px;
  FONT-WEIGHT: normal;
}

.FoldableInformationHeader table tbody tr td table tbody tr td:first-child {
  width: 10px;
}

.PortletHeader table {
  width: auto;
}

.FoldableInformationHeader td {
  PADDING-RIGHT: 6px;
  FONT-WEIGHT: normal;
  vertical-align: middle;
}

TD.HeaderButtonCell, td.buffButtonCell {
  PADDING: 2px 3px 3px 0px;
}

TD.HeaderSelectCell {
  PADDING: 0px 5px 0px 0px;
  vertical-align: middle;
}

.ActionLinkHead th {
  white-space: nowrap;
  font-weight: bold;
  padding-left: 4px;
  border-bottom: 1px solid #6d7155;
}

.ActionLinkHeadBottom th {
  color: #6C6F70;
  font-weight: bold;
  padding-left: 4px;
}

.DataTableHead th {
  white-space: nowrap;
  font-weight: bold;
  padding: 4px;
}

.DataTableOddRow {
  height: 40px;
  empty-cells: show;
}

.DataTableOddRow.height25 {
  height: 25px;
}

.DataTableEvenRow {
  height: 40px;
  empty-cells: show;
}

.DataTableEvenRow.height25 {
  height: 25px;
}

.LastCompetencyCell {
  padding-bottom: 2px;
}

.RequiredField {
  color: #D70101;
  font-weight: bold;
}

.ActionCell {
  padding: 2px 8px 2px 5px;
}

A.ActionLink:link, A.ActionLink:visited {
  font-weight: normal;
}

A.ActionLink:hover, A.ActionLink:active {
  font-weight: normal;
  TEXT-DECORATION: underline;
}

A.HelpActionLink:link, A.HelpActionLink:active, A.HelpActionLink:visited, A.HelpActionLink:hover {
  padding-top: 8px;
  text-align: right;
  text-decoration: none;
}

.HelpActionLink {
  color: #888888;
  padding-top: 8px;
  text-align: right;
  text-decoration: none;
}

A.ActionHeaderLink:link, A.ActionHeaderLink:visited, A.ActionHeaderLink:active {
  font-weight: normal;
}

A.ActionHeaderLink:hover {
  font-weight: normal;
  text-decoration: underline;
}

.ActionIndent {
  padding-left: 12px;
}

/* end editing CTI 11/06/07  */
/* row1, row2 section  */
.row2 {
  COLOR: #000000;
  border-collapse: separate;
  empty-cells: show;
}

/* http://mattsnider.com/css/css-string-truncation-with-ellipsis/ */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  -moz-binding: url("ellipsis.xml#ellipsis");
  width: 150px;
}

a.SideMenuLink {
  vertical-align: bottom;
}

A.SideMenuLink:link {
  text-decoration: none;
}

A.SideMenuLink:visited {
  text-decoration: none;
}

A.SideMenuLink:active {
  text-decoration: none;
}

A.SideMenuLink:hover {
  text-decoration: none;
}

.row2 td {
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.topSmallNoBorder {
  vertical-align: top;
  FONT-SIZE: 9px;
  COLOR: #000000;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row1 td.topRegularNoBorder {
  vertical-align: top;
  FONT-SIZE: 11px;
  COLOR: #000000;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.topRegularNoBorder {
  vertical-align: top;
  FONT-SIZE: 11px;
  COLOR: #000000;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row1 td.regularNoBorder {
  vertical-align: middle;
  FONT-SIZE: 11px;
  COLOR: #000000;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.regularNoBorder {
  vertical-align: middle;
  FONT-SIZE: 11px;
  COLOR: #000000;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row1 td.topRegular {
  background: #FAFBF0;
  color: #000000;
  font-weight: normal;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.topRegular {
  background: #F1F4DD;
  color: #000000;
  font-weight: normal;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row1 td.topRegularNoBorder {
  background: #FAFBF0;
  color: #000000;
  font-weight: normal;
  border-right: 0px;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.topRegularNoBorder {
  background: #F1F4DD;
  color: #000000;
  font-weight: normal;
  border-right: 0px;
  border-collapse: separate;
  empty-cells: show;
}

.row1 td.topSmall {
  background: #FAFBF0;
  color: #000000;
  font-size: 9px;
  font-weight: normal;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row2 td.topSmall {
  background: #F1F4DD;
  color: #000000;
  font-size: 9px;
  font-weight: normal;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

/* row1b, row2b section  */
.row1b td.topRegular {
  background: #FAFBF0;
  color: #000000;
  font-size: 11px;
  font-weight: bold;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row2b td.topRegular {
  background: #F1F4DD;
  color: #000000;
  font-size: 11px;
  font-weight: bold;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row1b td.topRegularNoBorder {
  background: #FAFBF0;
  color: #000000;
  font-size: 11px;
  font-weight: bold;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row2b td.topRegularNoBorder {
  background: #F1F4DD;
  color: #000000;
  font-size: 11px;
  font-weight: bold;
  border-right: 0px solid #FFFFFF;
  border-collapse: separate;
  empty-cells: show;
}

.row1b td.topSmall {
  background: #FAFBF0;
  color: #000000;
  font-size: 9px;
  font-weight: bold;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.row2b td.topSmall {
  background: #F1F4DD;
  color: #000000;
  font-size: 9px;
  font-weight: bold;
  border-right: 1px solid #A4BA36;
  border-collapse: separate;
  empty-cells: show;
}

.red {
  FONT-WEIGHT: bold;
  COLOR: #A62505;
}

.loginErrorMsg {
  FONT-SIZE: 11px;
  FONT-WEIGHT: bold;
  COLOR: #990000;
}

.head1 {
  font-size: 10pt;
  font-weight: bold;
  color: #000000;
  white-space: nowrap;
}

.commonBorder {
  font-weight: bold;
  color: #FFFFFF;
  background: #BBBBBB;
  white-space: nowrap;
  text-align: center;
}

.SideMenuTable {
  font-size: 11px;
}

.SideMenuTable td {
  font-size: 11px;
}

.SideMenuButton {
  font-size: 11px;
  width: 49;
  overflow: visible;
  padding-left: 2;
  padding-right: 2;
}

.SideMenuText {
  font-size: 10px;
  font-weight: normal;
}

.large {
  font-size: 13pt;
  font-weight: bold;
  color: #003366;
  white-space: nowrap;
}

div.CalendarBox {
  margin-top: 6px;
  margin-bottom: 6px;
  margin-left: 6px;
  margin-right: 6px;
  FONT: 10px;
}

table.CalendarBox {
  COLOR: #4C4E4A;
  FONT: 10px;
}

.dayLink {
  text-decoration: none;
}

td.shade1 {
  COLOR: #4C4E4A;
  FONT: 10px;
}

td.shade2 {
  background: #EAF4F8;
  COLOR: #4C4E4A;
  FONT: 10px;
}

td.PortletHeaderText {
  color: #333333;
  font-size: 11px;
  font-weight: bold;
}

.InnerTableBox tr:first-child td {
  padding-top: 0 !important;
}

.InnerTableBox tr:last-child td {
  padding-bottom: 0 !important;
}

TEXTAREA.disabled {
  font-size: 9pt;
  cursor: default;
}

TEXTAREA.enabled {
  font-size: 9pt;
  background-color: #FFFFFF;
}

.slidetabsmenu {
  float: left;
  width: 100%;
  line-height: normal;
  /* -6px is the correct setting to get this to line up in Chrome and Firefox */
  margin-top: -6px;
  margin-left: 5px;
}

.slidetabsmenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.slidetabsmenu li {
  display: inline;
  margin: 0;
  padding: 0;
}

.slidetabsmenu a {
  float: left;
  border: 1px solid;
  border-bottom-width: 0;
  margin: 0;
  margin-right: 5px;
  padding: 0 0 0 9px;
  text-decoration: none;
  position: relative;
  top: 7px;
  margin-top: -9px;
}

.slidetabsmenu a span {
  float: left;
  display: block;
  /*background: url( ../../img/UIv8/slide-right.gif ) no-repeat right top;*/
  padding-right: 13px;
  padding-left: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  color: #3B3B3B;
}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
.slidetabsmenu a span {
  float: none;
}

/* End IE5-Mac hack */
.slidetabsmenu a span.ArrowDropdown {
  padding-right: 8px;
}

.slidetabsmenu a:hover span, .slidetabsmenu .selected a span {
  color: #333333;
}

.slidetabsmenu a:hover, .slidetabsmenu .selected a {
  background-position: 0% -125px;
  text-decoration: none;
}

.slidetabsmenu a:hover span, .slidetabsmenu .selected a span {
  background-position: 100% -125px;
}

.dropmenudiv {
  position: absolute;
  top: 0;
  line-height: 18px;
  z-index: 100;
  width: 300px;
  visibility: hidden;
  overflow: hidden;
  margin-top: -1px;
  border: 1px solid;
  border-top-width: 0;
}

.dropmenudiv a:link,
.dropmenudiv a:active,
.dropmenudiv a:visited,
.dropmenudiv span {
  width: auto;
  display: block;
  text-indent: 5px;
  padding: 2px 0;
  text-decoration: none;
}

.dropmenudiv a:link {
  color: #333333;
}

.dropmenudiv a:active {
  color: #333333;
}

.dropmenudiv a:visited {
  color: #333333;
}

* html .dropmenudiv a {
  /*IE only hack*/
  width: 100%;
}

.dropmenudiv span {
  border-top-width: 1px;
  color: #333333;
}

.RankingTable td, .InformationContent .RankingTable td {
  padding: 0;
}

.RankingTable img {
  max-width: none;
}

#cluetip .ui-widget-content, #cluetip .ui-state-default {
  border: 0;
  padding: 5px;
}

.cluetip-talentCard .cluetip-inner {
  padding: 0 !important;
}

.cluetip-close img {
  border: 0 none;
  margin: 7px 7px 0 0;
}

.cluetip-title {
  overflow: hidden;
}

.cluetip-title .cluetip-close {
  float: right;
  position: relative;
}

#cluetip-waitimage {
  background-image: url(../../img/UIv8/cluetip/wait.gif);
  height: 11px;
  position: absolute;
  width: 43px;
}

.cluetip-arrows {
  background-position: 0 0 !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  height: 22px;
  left: -11px;
  position: absolute;
  top: 0;
  width: 11px;
}

#cluetip .ui-state-default {
  filter: none;
}

.cluetip-extra {
  display: none;
}

.cluetip-talentCard .cluetip-outer {
  margin: 0;
  position: relative;
  background-color: white;
}

.cluetip-default h3.cluetip-title, .cluetip-default .cluetip-title.h3 {
  font-size: 1.1em;
  font-weight: normal;
  padding: 2px 5px 0 5px;
  border-width: 0 0 1px 0;
}

.cluetip-default .cluetip-title a {
  color: #D9D9C2;
  font-size: 0.95em;
}

.cluetip-default .cluetip-inner {
  padding: 0 6px 2px;
  text-align: justify;
}

.cluetip-talentCard #cards_container, .orgChart #cards_container {
  margin: 0;
  height: 355px;
}

.cluetip-default div.cluetip-close,
.cluetip-talentCard .cluetip-close {
  color: #990000;
  margin: 0 5px 5px;
  text-align: right;
}

.cluetip-talentCard .cluetip-close {
  margin: 0;
  position: absolute;
  right: 6px;
  top: 6px;
}

.clue-right-default .cluetip-arrows {
  background-image: url(../../img/UIv8/cluetip/darrowleft.gif) !important;
}

.clue-left-default .cluetip-arrows {
  background-image: url(../../img/UIv8/cluetip/darrowright.gif) !important;
  left: 100%;
  margin-right: -11px;
}

.clue-top-default .cluetip-arrows {
  background-image: url(../../img/UIv8/cluetip/darrowdown.gif) !important;
  height: 11px;
  left: 50%;
  margin-left: -11px;
  top: 100%;
  width: 22px;
}

.clue-bottom-default .cluetip-arrows {
  background-image: url(../../img/UIv8/cluetip/darrowup.gif) !important;
  height: 11px;
  left: 50%;
  margin-left: -11px;
  top: -11px;
  width: 22px;
}

a.quickView, button.quickView, .hoverCandidateCount.quickView {
  padding-right: 17px;
}

a.quickView:hover, button.quickView:hover, .hoverCandidateCount.quickView:hover {
  background: url(../../img/UIv8/quickview.gif) no-repeat right;
}

/* Talent Card Styles */
.cluetip-talentCard #talentCard {
  margin: 10px;
  width: 300px;
}

#talentCard th {
  text-align: left;
}

#talentCard .header {
  background-color: #D1F4FF;
  margin-bottom: 10px;
  padding: 10px;
  vertical-align: top;
  height: 105px;
  width: 266px;
}

#talentCard .accessDenied {
  text-align: center;
  margin-top: 5px;
  font-weight: bold;
  display: none;
}

#talentCard .header .picture {
  float: left;
}

#talentCard .header .info {
  float: right;
  width: 160px;
  font-size: 12px;
}

#talentCard .header .info a {
  font-size: 12px;
}

#talentCard .header .info div {
  margin-bottom: 5px;
}

#talentCard .header .name {
  font-weight: bold;
  font-size: 15px;
}

#talentCard .header .title, #talentCard .header .department {
  color: #999;
}

#talentCard .header .email,
#talentCard .header .phone {
  padding-top: 2px;
  padding-left: 20px;
}

#talentCard .header .phone {
  font-weight: normal;
}

#talentCard .header .resume {
  padding-top: 2px;
  padding-left: 2px;
}

#talentCard .header .email {
  background: url("../../img/UIv8/icon_talent_card_header_icon_email.png") left no-repeat;
}

#talentCard .header .phone {
  background: url("../../img/UIv8/icon_talent_card_header_icon_phone.png") left no-repeat;
}

#talentCard .header .pdf {
  background: url("../../img/UIv8/icon_talent_card_candidate_resume_pdf.png") left no-repeat;
}

#talentCard .header .word {
  background: url("../../img/UIv8/icon_talent_card_candidate_resume_word.png") left no-repeat;
}

#talentCard .header button {
  width: 26px;
  height: 40px;
  margin: -15px -1px 0 0;
  border: 0;
  font-size: 9px;
  text-align: center;
  padding-top: 13px;
  top: 84px;
  position: absolute;
  right: 20px;
}

#talentCard .header .subsBtn {
  background: url("../../img/UIv8/icon_org_chart_tile_direct_subs_default.png") center no-repeat;
}

.tabs-bottom {
  margin-bottom: -1px;
  margin-left: -2px;
}

#talentCard .data {
  background-color: #FDFCEB;
  border: 1px solid #88ABC2;
  min-height: 212px;
  height: auto;
  width: 286px;
  padding-top: 5px;
  margin-top: 5px;
}

#talentCard .talentCardData {
  border-collapse: collapse;
}

#talentCard .talentCardData th {
  font-weight: normal;
  padding: 3px 3px 3px 10px;
  width: 40%;
  font-size: 12px;
}

#talentCard .talentCardData td, #talentCard .talentCardData td a {
  font-size: 12px;
}

.tabs-bottom #cards a, .tabs-bottom #cards .filler {
  border-top: 1px solid #A0BDD1;
  background: #D1F4FF;
  height: 39px;
  width: 39px;
  text-align: center;
  display: block;
  cursor: pointer;
}

.tabs-bottom #cards .filler {
  position: absolute;
  right: 0;
}

.tabs-bottom #cards .active a {
  border-top: 0;
  background-color: white !important;
  border-bottom: 1px solid transparent;
}

.tabs-bottom #cards a,
.tabs-bottom #manage_tabs_button,
.cluetip-talentCard #manage_tabs_button_no_tabs {
  /* Remove dotted border for older versions of Firefox */
  -moz-outline-style: none;
  outline: none;
}

.tabs-bottom .cornerTab a {
  border-left: 0;
}

.tabs-bottom #cards span img {
  border: 0;
  margin-top: 10px;
}

.tabs-bottom #manage_tabs_button, .cluetip-talentCard #manage_tabs_button_no_tabs {
  height: 35px;
  background: url("../../img/UIv8/icon_talent_card_tabs_icon_edit.png") #D1F4FF no-repeat center;
}

.tabs-bottom #manage_tabs_button:hover, .cluetip-talentCard #manage_tabs_button_no_tabs:hover {
  height: 35px;
  background: url("../../img/UIv8/icon_talent_card_tabs_icon_edit.png") #D1F4FF center no-repeat;
}

#talentCard h3, #talentCard .h3 {
  background-color: #bfd7ea;
  padding: 7px;
  font-weight: bold;
  font-size: 14px;
  margin: 5px 0 10px;
  line-height: 1;
}

#cluetip .mainHeaderTd {
  font-weight: bold;
}

.cluetip-talentCard .workHistoryContainer {
  width: 288px;
}

.cluetip-talentCard .workHistory {
  margin-top: -12px;
  margin-left: 0 !important;
  border: 1px solid silver;
  width: 100% !important;
}

#cluetip .workHistory thead tr {
  background-color: #d5ecfe;
}

#cluetip .workHistory td, #cluetip .workHistory th {
  padding: 5px;
  text-align: left;
  font-size: 12px;
}

#cluetip .workHistory .even {
  background-color: #eff4ff;
}

#cluetip .workHistory .ellipsis {
  display: block;
  width: 90px;
}

.cluetip-talentCard .name, .cluetip-talentCard .title,
.cluetip-talentCard .phone, .cluetip-talentCard .email {
  width: 165px;
}

.cluetip-talentCard .department {
  width: 150px;
}

.cluetip-talentCard .talentCardData .ellipsis {
  width: 145px;
  display: block;
}

/* End Talent Card Styles */
.grayOptionFont {
  color: #888888;
}

.transparent50 {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.transparent0 {
  filter: alpha(opacity=100);
  opacity: 1;
}

.numberInput {
  text-align: right;
  width: 50px;
}

.numberInputDisabled {
  text-align: right;
  width: 50px;
}

/* errors */
.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  padding-bottom: 13px;
  display: block;
  z-index: 97;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  color: #fff;
  width: 150px;
  border: 2px solid #ddd;
  padding: 4px 10px 4px 10px;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 15px;
  height: 15px;
  z-index: 5001;
}

.formError .formErrorArrowBottom {
  top: 0;
  margin: -6px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0px;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0px solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

.currency {
  text-align: right;
}

/* Beginning Rating scale styling*/
#ratingScalesContainer {
  height: 210px;
}

.ratingSegment {
  height: 120px;
  float: left;
}

.descriptionTextbox, .pointerTextbox, .rangeTextbox, .rangeTextboxLeft, .ratingButton, .ratingTextbox {
  border: 1px solid #96b6dd;
  text-align: center;
}

.rangeSegment_detailsBox table tr td, .inputLabels_detailsBox table tr td {
  height: 18px;
  border-bottom: dotted;
  border-bottom-color: #ccc;
  border-bottom-width: 1px;
}

/* End Rating scale styling*/
/* Begin of Compensation Calculator UI styling */
#boxContainer {
  white-space: nowrap;
}

.box {
  width: 160px;
  height: 260px;
  float: left;
  background: url(../../img/UIv8/verticalBox.png) no-repeat 0 0;
}

.box h4, .box .h4 {
  font-weight: normal;
  color: #025C8D;
  margin: 14px 0 0 0;
  white-space: normal;
  vertical-align: middle;
  text-align: center;
  font-size: 13px;
}

.box table {
  color: #0c3b4a;
  margin: 4px 30px 0 20px;
}

.box table td {
  width: 90px;
  padding: 4px;
  text-align: right;
}

.compCalTable {
  margin: 30px 0px 0 0px;
}

.compCalTable td {
  width: 90px;
  padding: 4px;
}

.labelsBox {
  width: 110px;
  background: url(../../img/UIv8/labelsBox.png) no-repeat 0 0;
}

.endBox {
  width: 110px;
  background: url(../../img/UIv8/endBox.png) no-repeat 0 0;
}

.chartContainerDiv {
  width: 150px;
  height: 150px;
  margin-top: -9px;
  margin-left: 5px;
}

/* End of Compensation Calculator UI */
/*Begin of Cycle Progressbar UI */
#progressBarContainer {
  white-space: nowrap;
}

.stepBox {
  width: 160px;
  height: 70px;
  float: left;
  background: url(../../img/UIv8/stepBox.png) no-repeat 0 0;
  text-align: center;
}

.percentage_stepBox {
  font-weight: normal;
  color: white;
  position: absolute;
  padding: 22px 0px 0px 2px;
  white-space: normal;
  vertical-align: middle;
  text-align: center;
  width: 35px;
}

.leftEndBox {
  width: 5px;
  background: url(../../img/UIv8/leftEnd_stepBox.png) no-repeat 0 0;
}

.rightEndBox {
  background: url(../../img/UIv8/rightEnd_stepBox.png) no-repeat 0 0;
}

.dueDate_stepBox {
  font-size: 9px;
  position: relative;
  top: 5px;
}

.progressBarDiv {
  color: #333;
}

.progressBarDiv table {
  margin-left: auto;
  margin-right: auto;
}

.progressBarDiv table td {
  height: 30px;
  vertical-align: top;
}

/* End of Cycle Progressbar UI */
.boldEnlargeText {
  font-size: 13px;
  font-weight: bold;
}

.fadeParsingImage {
  opacity: 0.4; /* Firefox, Safari, Opera */
  -ms-filter: "alpha(opacity=40)"; /* IE 8 */
  filter: alpha(opacity=40); /* IE 7 and lower*/
  zoom: 1; /* trigger "hasLayout" for IE7 and lower*/
}

/*Begin Menu rounded corner css */
.top-left, .top-right, .bottom-left, .bottom-right {
  height: 9px; /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
  font-size: 2px; /* DNC: correction IE for height of the <div>'s */
}

.top-left, .bottom-left {
  margin-right: 9px; /* CHANGE: replace by the width of one of your corners */
}

.top-right, .bottom-right {
  margin-left: 9px; /* CHANGE: replace by the width of one of your corners */
  margin-top: -9px; /* CHANGE: replace by the height of one of your corners */
}

.top-right {
  background-position: 100% 0; /* DNC: position right corner at right side, no vertical changes */
}

.bottom-left {
  background-position: 0 -9px; /* CHANGE: replace second number by negative height of one of your corners */
}

.bottom-right {
  background-position: 100% -9px; /* CHANGE: replace second number by negative height of one of your corners */
}

.inside {
  color: #000000; /* YCC: default text-color of the inside */
  padding-left: 10px; /* YCC: all texts at some distance of the left border */
  padding-right: 10px; /* YCC: all texts at some distance of the right border */
}

.notopgap {
  margin-top: 0;
}

/* DNC: to avoid splitting of the box */
.nobottomgap {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

/* DNC: to avoid splitting of the box */
/* End of Menu rounded corner css */
/*Begin Topsection rounded corner css */
.topsection_bottom-left, .topsection_bottom-right {
  height: 9px; /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */
  font-size: 2px; /* DNC: correction IE for height of the <div>'s */
}

.topsection_bottom-left {
  margin-right: 9px; /* CHANGE: replace by the width of one of your corners */
}

.topsection_bottom-right {
  margin-left: 9px; /* CHANGE: replace by the width of one of your corners */
  margin-top: -9px; /* CHANGE: replace by the height of one of your corners */
}

.topsection_bottom-left {
  background-position: 0 -9px; /* CHANGE: replace second number by negative height of one of your corners */
}

.topsection_bottom-right {
  background-position: 100% -9px; /* CHANGE: replace second number by negative height of one of your corners */
}

/* End of Menu rounded corner css */
/* Begin Comp guidelines table */
table.simpleTable {
  border-collapse: collapse;
  font-size: 0.8em;
  margin: 0;
  padding: 0;
}

table.simpleTable th, table.simpleTable td {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 0.6em;
  vertical-align: 4px;
  background-color: #F8F8FC;
}

table.simpleTable th {
  background: #F8F8FC url(../../img/UIv8/tableheader_bullet.gif) no-repeat 6px 0.8em;
  padding-left: 24px;
}

/* End Comp guidelines table */
.fourDigitInputField {
  width: 30px;
}

/* Begin EditPicklist UI */
.listItemsContainer {
  border: 1px solid #ddd;
}

.pickList {
  width: 350px;
  height: 150px;
}

/* End EditPicklist UI */
.reportsList {
  width: 100%;
}

.reportsList tr td, .reportFlaggedDiv {
  border-bottom: 1px solid #ccc;
  min-height: 40px;
  padding: 5px 0;
  overflow: auto;
  box-sizing: content-box;
}

.reportsSubHeader {
  background-color: #ccc;
  height: 30px;
  font-size: 18px;
}

.reportsSubHeader td {
  border: 1px solid #333;
}

.report-favorite, .report-schedule, .topic-select {
  width: 30px;
  float: left;
  text-align: center;
}

.report-text {
  float: left;
  width: 65%;
  padding-left: 10px;
}

/* BUTTONS */
.actionButtons a, .actionButtons button {
  display: block;
  float: left;
  margin: 0 7px 0 0;
  background-color: #f5f5f5;
  border: 1px solid #dedede;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  font-size: 80%;
  line-height: 130%;
  text-decoration: none;
  font-weight: normal;
  color: #565656;
  cursor: pointer;
  padding: 6px 4px 0px 4px; /* Links */
  min-height: 18px;
  text-align: center;
  width: 65px;
}

.actionButtons button {
  width: auto;
  overflow: visible;
  padding: 4px 10px 3px 7px; /* IE6 */
}

.actionButtons button[type] {
  padding: 5px 10px 5px 7px; /* Firefox */
  line-height: 17px; /* Safari */
}

*:first-child + html button[type] {
  padding: 4px 10px 3px 7px; /* IE7 */
}

.actionButtons button img, .actionButtons a img {
  margin: 0 3px -3px 0 !important;
  padding: 0;
  border: none;
  width: 16px;
  height: 16px;
}

/* STANDARD */
.actionButtons a:hover {
  background-color: #dff4ff;
  border: 1px solid #c2e1ef;
  color: #336699;
}

.actionButtons a:active {
  background-color: #6299c5;
  border: 1px solid #6299c5;
  color: #fff;
}

/* POSITIVE */
button.positive, .actionButtons a.positive {
  color: #529214;
}

.actionButtons a.positive:hover, button.positive:hover {
  background-color: #E6EFC2;
  border: 1px solid #C6D880;
  color: #529214;
}

.actionButtons a.positive:active {
  background-color: #529214;
  border: 1px solid #529214;
  color: #fff;
}

/* NEGATIVE */
.actionButtons a.negative, button.negative {
  color: #d12f19;
}

.actionButtons a.negative:hover, button.negative:hover {
  background: #fbe3e4;
  border: 1px solid #fbc2c4;
  color: #d12f19;
}

.actionButtons a.negative:active {
  background-color: #d12f19;
  border: 1px solid #d12f19;
  color: #fff;
}

/* FAVORITE */
.actionButtons a.favorite, button.favorite {
  color: #EE9D3E;
}

.actionButtons a.favorite:hover, button.favorite:hover {
  background: #FFFFEE;
  border: 1px solid #FFCC66;
  color: #EE9D3E;
}

.actionButtons a.favorite:active {
  background-color: #FFCC66;
  border: 1px solid #FFCC66;
  color: #fff;
}

/* Spellcheck */
/* AtD error styles */
.hiddenSpellError {
  border-bottom: 2px solid red;
  cursor: default;
}

.hiddenGrammarError {
  border-bottom: 2px solid green;
  cursor: default;
}

.hiddenSuggestion {
  border-bottom: 2px solid blue;
  cursor: default;
}

/* */
.AtD_proofread_button {
  width: 14px;
  height: 14px;
  background-image: url("../images/writing.gif");
  display: block;
}

.AtD_edit_button {
  width: 14px;
  height: 14px;
  background-image: url("../images/editing.gif");
  display: block;
}

/* Menu styles derived from:
 * jquery.spellchecker.js - a simple jQuery Spell Checker
 * Copyright (c) 2008 Richard Willis
 * MIT license  : http://www.opensource.org/licenses/mit-license.php
 * Project      : http://jquery-spellchecker.googlecode.com
 */
#suggestmenu {
  background: #fff;
  position: absolute;
  display: none;
  z-index: 9999;
  overflow: none;
  margin-top: 1px;
  text-align: left;
  font-size: 12px;
}

#suggestmenu strong {
  background: #ddd;
  font-weight: bold;
  padding: 3px 6px 3px 6px;
  display: block;
  border: 1px solid #ccc;
  color: #333333;
}

#suggestmenu em {
  text-align: center;
  padding: 3px 6px 3px 6px;
  display: block;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

#suggestmenu a, #suggestmenu a:visited {
  background: #fff;
  border-left: 1px solid #bbb;
  border-right: 1px solid #bbb;
  padding: 3px 6px 3px 6px;
  display: block;
  margin: 0px;
  text-decoration: none;
  color: #333;
  outline: none;
}

#suggestmenu a.first, #suggestmenu a.first:visited {
  border-top: 1px solid #ccc;
}

.spell_sep_bottom {
  border-bottom: 1px solid #ccc;
}

.spell_sep_top {
  border-top: 1px solid #ccc;
}

#suggestmenu a:hover {
  color: #000;
  background: #dbecf3;
}

#suggestmenu .foot {
  border-top: 1px solid #ddd;
  background: #fff;
}

#suggestmenu .foot a, #suggestmenu .foot a:visited {
  outline: none;
}

/* end spellcheck */
/* multirater */
.multiraterRatingInfo td {
  padding-right: 6px;
}

#languageDiv {
  display: block;
  position: relative;
  top: -10px;
  width: 80px;
  right: 0;
  height: 0;
  padding: 5px;
  margin-top: -15px;
}

#languageDiv #langOptionsImg {
  margin-bottom: -2px;
}

.languageDropdown {
  padding: 8px;
  position: absolute;
  z-index: 10000;
  background-color: white;
  opacity: 0.87;
  left: 0;
  top: 18px;
  text-align: left;
  white-space: nowrap;
  width: 75px;
  line-height: 18px;
}

.disabledColor {
  color: gray;
  opacity: 0.8;
}

.disabledButton {
  color: gray;
  opacity: 0.65;
  cursor: default;
}

.disabledButton:hover {
  color: gray;
  opacity: 0.65;
  cursor: default;
}

#tabs_container {
  margin: 0 0 1em 0;
}

#tabs_container .tab {
  display: none;
}

#tabs_container .active {
  display: block;
}

#manageTabsContainer {
  margin: 0 0 1em 0;
}

#manageTabsContainer .tab {
  border: 1px solid #333;
  padding: 1em;
  display: none;
}

#manageTabsContainer .active {
  display: block;
}

#tabs, #pageLayOutTabsUL, #cards {
  padding-left: 2px;
  margin-left: 0;
}

#pageLayOutTabsUL {
  margin-left: 4px;
}

#tabs li, #pageLayOutTabsUL li, #cards li {
  float: left;
  list-style: none;
  border: 1px solid #dddddd;
}

#tabs li.active, #pageLayOutTabsUL li.active {
  border-bottom: none;
}

#tabs a, #pageLayOutTabsUL a {
  color: #fff;
  display: block;
  height: 28px;
  line-height: 26px;
  text-decoration: none;
}

#tabs a span, #pageLayOutTabsUL a span {
  display: block;
  height: 28px;
  margin-right: 10px;
  padding-left: 10px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
}

#tabs a span img, #pageLayOutTabsUL a span img {
  vertical-align: middle;
  cursor: pointer;
}

#tabs a:hover, #pageLayOutTabsUL a:hover {
  display: block;
}

#tabs a:hover span, #pageLayOutTabsUL a:hover span {
  display: block;
  white-space: nowrap;
}

#tabs .active a:link, #pageLayOutTabsUL .active a:link {
  font-weight: bold;
  border-bottom: none;
  margin-top: -4px;
  padding-top: 5px;
  min-height: 32px;
}

.configurationTab {
  padding-top: 0px;
}

#tabs .active a:visited, #pageLayOutTabsUL .active a:visited {
  font-weight: bold;
  border-bottom: none;
}

#tabs .active a:hover, #pageLayOutTabsUL .active a:hover {
  font-weight: bold;
  border-bottom: none;
}

#tabs .active a span, #pageLayOutTabsUL .active a span {
  font-weight: bold;
  color: #000;
  border-bottom: none;
  white-space: nowrap;
}

#tabs .active a:hover span, #pageLayOutTabsUL .active a:hover span {
  font-weight: bold;
  border-bottom: none;
  white-space: nowrap;
}

/* -------------------------------- */
.pageLayoutTab {
  margin-right: 5px;
  width: 40px;
}

.pageLayoutTab a:link {
  color: #333333;
  display: block;
  height: 16px;
  line-height: 16px;
  text-decoration: none;
  border-bottom: solid 1px #333333;
}

.pageLayoutTab a:visited {
  color: #333333;
  display: block;
  height: 16px;
  line-height: 16px;
  text-decoration: none;
  border-bottom: solid 1px #333333;
}

.pageLayoutTab a span {
  display: block;
  font-size: 12px;
  height: 16px;
  border-bottom: solid 1px #333333;
  text-align: center;
}

.pageLayoutTab a:hover {
  display: block;
}

.pageLayoutTab a:hover span {
  display: block;
}

/* -------------------------------- */
#manage_tabs_button_no_tabs, #manage_tabs_button {
  width: 43px;
  height: 28px;
  display: block;
  position: relative; /* to hide the bottom border */
  top: 1px;
  margin-top: -10px;
}

#manage_tabs_button_no_tabs:hover {
  width: 43px;
  height: 28px;
  display: block;
  background-position: center top;
}

#manage_tabs_button_no_tabs a, #manage_tabs_button_no_tabs a:link, #manage_tabs_button a, #manage_tabs_button a:link {
  display: block;
  width: 43px;
  height: 28px;
}

#manage_tabs_button a, #manage_tabs_button a:link {
  width: 43px;
  height: 28px;
  display: block;
}

#manage_tabs_button {
  width: 43px;
  height: 28px;
  display: block;
  margin-top: 0;
  top: -2px;
}

#manage_tabs_button:hover {
  width: 43px;
  height: 28px;
  display: block;
}

#tabConfigContainer div {
  display: none;
  height: auto;
  border: none;
}

#tabConfigContainer .active {
  display: block;
}

#tabs_add_button {
  width: 22px;
  height: 20px;
  background-image: url("../../img/UIv8/btn_add_default_small.png");
  display: block;
}

#tabs_add_button:hover {
  width: 22px;
  height: 20px;
  background-image: url("../../img/UIv8/btn_add_default_small.png");
  display: block;
}

#tabs_add_button:active {
  width: 22px;
  height: 20px;
  background-image: url("../../img/UIv8/btn_add_default_small.png");
  display: block;
}

.boldText {
  font-weight: bold;
}

.buttonText {
  /*font-weight: bold;*/
  font-size: 14px;
  padding-left: 2px;
  vertical-align: middle;
}

.defaultTabUpdateSpinner {
  display: none;
  vertical-align: middle;
}

.defaultTabUpdateSuccess {
  display: none;
}

.jobNotifySpinner {
  display: none;
  vertical-align: middle;
}

.jobNotifySuccess {
  display: none;
}

/* for profile pictures */
.photo {
  border: 2px solid #FFF;
  display: block;
  max-width: none;
}

.datagrid .photo {
  display: inline-block;
}

.previewPicture #profilePicture {
  display: inline-block;
}

.edit-photo {
  background: white;
  opacity: 0.8;
  position: absolute;
  margin-top: -22px;
  width: 85px;
  text-align: center;
  padding: 2px;
}

#profilePicture-message {
  background: #ffd;
  padding: 3px;
  display: none;
}

#uploadPhoto {
  padding: 10px;
}

#currentPhoto {
  padding: 10px;
  border-right: 2px dotted silver;
}

.editPhotoPanel {
  background: white;
  width: 800px;
  display: none;
}

.editPhotoPanel h3, .editPhotoPanel .h3 {
  font-size: 1.1em;
  font-weight: bold;
  white-space: nowrap;
}

.editPhotoPanel p {
  white-space: nowrap;
}

.editPhotoPanel td {
  vertical-align: top;
}

.editPhotoPanel span {
  display: block;
  margin-top: 10px;
}

.editPhotoPanel img {
  max-width: none;
}

#uploadProgressBar {
  text-align: center;
}

.profilePicturePreview {
  display: none;
  width: 400px !important;
  padding: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.profilePicturePreview img {
  margin-bottom: 10px;
}

/* jQuery UI Dialog customizations */
.ui-dialog-title {
  color: #333333;
}

.divField {
  padding: 4px;
  float: left;
}

.divLeftColumnTitle {
  text-align: right;
  width: 160px;
}

.fieldValue {
  font-weight: bold;
}

.divNewLine {
  clear: both;
}

.numberIconBox {
  border: 1px solid #505050;
  padding: 0 1px;
  float: left;
  height: 15px;
  min-width: 13px;
  vertical-align: middle;
  text-align: center;
  font-size: 8pt;
  font-weight: bold;
  color: white;
}

#noTabsMsgDiv {
  margin-left: auto;
  margin-right: auto;
  background-image: url("../../img/UIv8/tab_blank_background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  width: 100%;
  height: 390px;
}

.HeaderButtonCell .btn, .PortletHeader .btn, .buffButtonCell .btn, .btn-group btn {
  padding: 4px 8px;
  font-size: 14px;
}

.btn-group {
  font-size: 0;
  white-space: nowrap;
  position: relative;
  float: right;
  padding: 5px;
}

.btn-group > .text, .btn-group > ul > li > .text {
  font-size: 12px;
  padding: 0px 4px;
}

.btn-group > .btn {
  float: none;
  position: relative;
  font-size: 12px;
}

.btn-group > a {
  font-size: 12px;
}

.font12 {
  font-size: 12px;
}

.btn-group > .btn-mini,
.btn-group > .btn-small {
  font-size: 11px;
}

.btn-group > .btn-large {
  font-size: 15px;
}

.btn-group > .dropdown-menu a, .btn-group > .dropdown-menu li {
  font-size: 12px;
}

td.DTRC > div > .btn-group,
td.DTActionC > div > .btn-group,
td.DataTableOverLastRowActionCell > div > .btn-group,
td.DataTableOverActionCell > div > .btn-group {
  margin-top: 5px;
}

.noMarginTop, .noMarginTop > .btn-group {
  margin-top: 0px;
}

.HeaderSelectCell select, HeaderButtonCell select, .PortletHeader select, .select-group select {
  color: #333;
  width: auto;
  padding: 4px 10px;
  margin-bottom: 0;
}

#orgChartSearchKeyword {
  margin-top: 5px;
}

.available-trees h3, .available-trees .h3 {
  line-height: normal;
}

.available-trees ul {
  margin: 0;
}

.orgChart {
  padding-top: 10px;
}

#legend .title, #legend .filterTitle {
  text-align: left;
}

/* Tabs */
.tabs-top {
  width: auto;
  position: relative;
  top: 1px;
}

#subscribeSection {
  border-top: 1px dashed #ffffff;
  padding: 5px 5px 20px 5px;
  text-align: center;
}

#subscribeButton {
  background-color: #9FBA7B;
  text-align: center;
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  padding: 8px 8px 8px 8px;
  width: 130px;
  margin-left: auto;
  margin-right: auto;
  white-space: normal;
}

.fixInputAlignment {
  vertical-align: baseline;
  vertical-align: middle; /* IE 8 and below */
  *vertical-align: middle; /* IE 7 and below */
  _vertical-align: middle; /* IE 6 */
}

.mobile-icon {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -163px -1163px;
  width: 13px;
  height: 15px;
  display: inline-block;
}

.background-chart-pie {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -311px -997px;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}

.background-chart-bar {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -312px -1044px;
  width: 30px;
  height: 30px;
  display: inline-block;
  vertical-align: middle;
}

.background-chart-pie-small {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -311px -1085px;
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
}

.background-chart-bar-small {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -312px -1115px;
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
}

.infoIcon {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -160px -1191px;
  width: 19px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
}

.chartConfigClueTip {
  white-space: nowrap;
  text-align: left;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: normal;
  font-size: 12px;
}

.padding0 {
  padding: 0px;
}

.noBorder {
  border: none;
}

.display-field-column-cell {
  min-width: 100px;
  max-width: 100px;
  text-align: center;
  border: 0 !important;
  font-weight: normal;
}

.border0important {
  border: 0 !important;
}

.display-field-column-cell > a > span {
  font-size: 14px;
  font-weight: bold;
}

.headerStatusIcon {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -163px -1235px;
  width: 14px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
}

.hoverCandidateCount {
  font-weight: bold;
  font-size: 14px;
  cursor: default;
  color: #0087CC;
}

.greetingTable {
  margin-top: -4px;
  position: relative;
  left: -10px;
}

/*
 * jQuery UI Bootstrap
 * Portions copyright Addy Osmani, jQuery UI & Twitter Bootstrap
 * Released under MIT/GPL.
 */
/* 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;
  filter: Alpha(Opacity=0);
}

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

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

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

/*
 * jQuery UI CSS Framework 1.8.16
 *
 * 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/?ctl=themeroller
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

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

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

.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff url(jquery-ui/bootstrap/images/ui-bg_glass_75_ffffff_1x400.png) 50% 50% repeat-x;
  color: #404040;
}

/*.ui-widget-content a { color: #404040; }*/
.ui-widget-header {
  font-weight: bold;
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border: 0px solid #666;
}

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  /*
  border: 1px solid #d3d3d3; background: #e6e6e6 url(jquery-ui/bootstrap/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555;*/
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e6e6e6", GradientType=0);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
  overflow: visible;
}

.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 {
  background-position: 0 -15px;
  color: #333;
  text-decoration: none;
}

.ui-state-hover a, .ui-state-hover a:hover {
  color: #212121;
  text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  border: 1px solid #aaaaaa;
  font-weight: normal;
  color: #212121;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #212121;
  text-decoration: none;
}

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

/* Interaction Cues
----------------------------------*/
.ui-state-highlight p, .ui-state-error p, .ui-state-default p {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
  margin: 7px 15px;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  position: relative;
  margin-bottom: 18px;
  color: #404040;
  background-color: #eedc94;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
  background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
  background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
  background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
  background-image: -o-linear-gradient(top, #fceec1, #eedc94);
  background-image: linear-gradient(top, #fceec1, #eedc94);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fceec1", endColorstr="#eedc94", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #eedc94 #eedc94 #e4c652;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  position: relative;
  margin-bottom: 18px;
  color: #ffffff;
  border-width: 1px;
  border-style: solid;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ee5f5b", endColorstr="#c43c35", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #cd0a0a;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #cd0a0a;
}

.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;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
  background-image: none;
}

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

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

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

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

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

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

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

.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url(jquery-ui/bootstrap/images/ui-icons_f6cf3b_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-off {
  background-position: -96px -144px;
}

.ui-icon-radio-on {
  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 {
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  -khtml-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
}

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

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

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

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa url(jquery-ui/bootstrap/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
}

.ui-widget-shadow {
  margin: -8px 0 0 -8px;
  padding: 8px;
  background: #aaaaaa url(jquery-ui/bootstrap/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: Alpha(Opacity=30);
  -moz-border-radius: 8px;
  -khtml-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
} /*
* jQuery UI Resizable 1.8.16
*
* 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.8.16
*
* 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 black;
}

/*
 * jQuery UI Accordion 1.8.16
 *
 * 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
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion {
  width: 100%;
}

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

.ui-accordion .ui-accordion-li-fix {
  display: inline;
}

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

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

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

.ui-accordion .ui-accordion-header .ui-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;
  zoom: 1;
}

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

/*
 * jQuery UI Autocomplete 1.8.16
 *
 * 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 Menu 1.8.16
 *
 * Copyright 2010, 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;
  float: left;
}

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

.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  zoom: 1;
  float: left;
  clear: left;
  width: 100%;
}

.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: 0.2em 0.4em;
  line-height: 1.5;
  zoom: 1;
}

.ui-menu .ui-menu-item a.ui-state-hover,
.ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  background: #0064CD;
  color: #fff;
}

/*
 * jQuery UI Button 1.8.16
 *
 * 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 {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e6e6e6", GradientType=0);
  padding: 5px 14px 6px;
  margin: 0;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear background-image;
  -moz-transition: 0.1s linear background-image;
  -ms-transition: 0.1s linear background-image;
  -o-transition: 0.1s linear background-image;
  transition: 0.1s linear background-image;
  overflow: visible;
} /* the overflow property removes extra width in IE */
.ui-button-primary {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#049cdb", endColorstr="#0064cd", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-button-success {
  color: #ffffff;
  background-color: #57a957;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#62c462", endColorstr="#57a957", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #57a957 #57a957 #3d773d;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.ui-button-error {
  color: #ffffff;
  background-color: #c43c35;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(top, #ee5f5b, #c43c35);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ee5f5b", endColorstr="#c43c35", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #c43c35 #c43c35 #882a25;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.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;
      margin-right: -.3em;
      display: inline-block;
  position: relative;
  margin-right: .1em;
  text-decoration: none !important;
  cursor: pointer;
  text-align: center;
  zoom: 1;
  overflow: visible;
  */
} /* 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;
}

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: 0.4em;
  text-indent: -9999999px; /*tempfix*/
  display: none;
}

.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: .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 {
  top: 50%;
  margin-top: -3px;
  margin-bottom: 3px;
}

.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-state-active {
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#049cdb", endColorstr="#0064cd", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

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

/* workarounds */
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
} /* reset extra padding in Firefox */
/*
 * jQuery UI Dialog 1.8.16
 *
 * 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;
  z-index: 20001;
}

.ui-dialog .ui-dialog-titlebar { /*padding: .4em 1em;*/
  position: relative;
  padding: 5px 15px;
  border: 0px 0px 0px 1px solid;
  border-color: white;
  padding: 5px 15px;
  font-size: 18px;
  text-decoration: none;
  background: none;
  -moz-border-radius-bottomright: 0px;
  -webkit-border-bottom-right-radius: 0px;
  -khtml-border-bottom-right-radius: 0px;
  border-bottom-right-radius: 0px;
  -moz-border-radius-bottomleft: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -khtml-border-bottom-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom: 1px solid #ccc;
}

.ui-dialog .ui-dialog-title {
  float: left;
  /*margin: .1em 16px .1em 0; */
  color: #404040;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
  font-size: 20px;
  font-weight: bold;
  line-height: 13.5px;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=25);
  -khtml-opacity: 0.25;
  -moz-opacity: 0.25;
  opacity: 0.25;
}

.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;
  filter: alpha(opacity=90);
  -khtml-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
}

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

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0.5em 0 0 0;
  background-color: #f5f5f5;
  padding: 5px 15px 5px;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
  zoom: 1;
  margin-bottom: 0;
}

.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 Slider 1.8.16
 *
 * 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;
  /*this can be removed if ui-widget-header is blue*/
  color: #ffffff;
  background-color: #0064cd;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
  background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
  background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
  background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
  background-image: -o-linear-gradient(top, #049cdb, #0064cd);
  background-image: linear-gradient(top, #049cdb, #0064cd);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#049cdb", endColorstr="#0064cd", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #0064cd #0064cd #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.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 Datepicker 1.8.16
 *
 * 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;
  border: 0px;
  font-weight: bold;
  width: 100%;
  padding: 4px 0;
  background-color: #f5f5f5;
  color: #808080;
}

.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*/
}

.ui-datepicker th {
  font-weight: bold;
  color: gray;
}

.ui-datepicker-today a:hover {
  background-color: #808080;
  color: #ffffff;
}

.ui-datepicker-today a {
  background-color: #BFBFBF !important;
  color: black;
  cursor: pointer;
  padding: 0 4px;
  margin-bottom: 0px;
}

.ui-datepicker td a {
  margin-bottom: 0px;
  border: 0px;
}

.ui-datepicker td:hover {
  color: white;
}

.ui-datepicker td .ui-state-default {
  border: 0px;
  background: none;
  margin-bottom: 0px;
  padding: 5px;
  color: gray;
  text-align: center;
  filter: none;
}

.ui-datepicker td .ui-state-active {
  background: #BFBFBF;
  margin-bottom: 0px;
  font-size: normal;
  text-shadow: 0px;
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.ui-datepicker td .ui-state-default:hover {
  background: #0064cd;
  color: white;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/*
 * jQuery UI Progressbar 1.8.16
 *
 * 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%;
  /*this can be removed if ui-widget-header is blue*/
  color: #ffffff;
  background-color: #379EFF;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#6FB7FF), to(#379EFF));
  background-image: -moz-linear-gradient(top, #6FB7FF, #379EFF);
  background-image: -ms-linear-gradient(top, #6FB7FF, #379EFF);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6FB7FF), color-stop(100%, #379EFF));
  background-image: -webkit-linear-gradient(top, #6FB7FF, #379EFF);
  background-image: -o-linear-gradient(top, #6FB7FF, #379EFF);
  background-image: linear-gradient(top, #6FB7FF, #379EFF);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6FB7FF", endColorstr="#379EFF", GradientType=0);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  border-color: #379EFF #379EFF #003f81;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

/*** Input field styling from Bootstrap **/
/*input, textarea {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}
input:focus, textarea:focus {
  outline: 0;
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
}
input[type=file]:focus, input[type=checkbox]:focus, select:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 1px dotted #666;
}

input[type="text"],
input[type="password"],
.ui-autocomplete-input,
textarea,
.uneditable-input {
  display: inline-block;
  width: 210px;
  height: 18px;
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
  color: #808080;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}*/
/**Toolbar**/
.ui-toolbar {
  padding: 7px 14px;
  margin: 0 0 18px;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5));
  background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5));
  background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: -o-linear-gradient(top, #ffffff, #f5f5f5);
  background-image: linear-gradient(top, #ffffff, #f5f5f5);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#f5f5f5", GradientType=0);
  border: 1px solid #ddd;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}

/***Dialog fixes**/
.ui-dialog-buttonset .ui-button:nth-child(2) {
  cursor: pointer;
  display: inline-block;
  background-color: #e6e6e6;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#e6e6e6", GradientType=0);
  padding: 5px 14px 6px;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  color: #333;
  font-size: 13px;
  line-height: normal;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -webkit-transition: 0.1s linear all;
  -moz-transition: 0.1s linear all;
  -ms-transition: 0.1s linear all;
  -o-transition: 0.1s linear all;
  transition: 0.1s linear all;
  overflow: visible;
}

/*!
* Colorpicker for Bootstrap
*
* Copyright 2012 Stefan Petre
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
.colorpicker-saturation {
  width: 100px;
  height: 100px;
  background-image: url(img/saturation.png);
  cursor: crosshair;
  float: left;
}

.colorpicker-saturation i {
  display: block;
  height: 5px;
  width: 5px;
  border: 1px solid #000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  margin: -4px 0 0 -4px;
}

.colorpicker-saturation i b {
  display: block;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.colorpicker-hue, .colorpicker-alpha {
  width: 15px;
  height: 100px;
  float: left;
  cursor: row-resize;
  margin-left: 4px;
  margin-bottom: 4px;
}

.colorpicker-hue i, .colorpicker-alpha i {
  display: block;
  height: 1px;
  background: #000;
  border-top: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -1px;
}

.colorpicker-hue {
  background-image: url(img/hue.png);
}

.colorpicker-alpha {
  background-image: url(img/alpha.png);
  display: none;
}

.colorpicker {
  *zoom: 1;
  top: 0;
  left: 0;
  padding: 4px;
  min-width: 120px;
  margin-top: 1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.colorpicker:before, .colorpicker:after {
  display: table;
  content: "";
}

.colorpicker:after {
  clear: both;
}

.colorpicker:before {
  content: "";
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -7px;
  left: 6px;
}

.colorpicker:after {
  content: "";
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  position: absolute;
  top: -6px;
  left: 7px;
}

.colorpicker div {
  position: relative;
}

.colorpicker.alpha {
  min-width: 140px;
}

.colorpicker.alpha .colorpicker-alpha {
  display: block;
}

.colorpicker-color {
  height: 10px;
  margin-top: 5px;
  clear: both;
  background-image: url(img/alpha.png);
  background-position: 0 100%;
}

.colorpicker-color div {
  height: 10px;
}

.input-append.color .add-on i, .input-prepend.color .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

/* Styles that are specific to TBE, as well as override rules in bootstrap.css */
body.mainPage, body.ews, body.login {
  padding-top: 100px;
  background-color: #f0f0f0;
}

body.tab-layout, body.menubody, body.chromeless {
  padding-top: 0;
}

body.selector, body.chromeless {
  padding: 10px;
  background-color: #ffffff;
}

.selector #header, .selector .navbar, .selector #sidebar {
  display: none;
}

.selector .container-fluid > #content, .selector .container-sm > #content, .selector .container-md > #content, .selector .container-lg > #content, .selector .container-xl > #content, .selector .container-xxl > #content {
  margin-left: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Page Customizations */
body.actuatePortlet {
  margin: 0;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.paramDisplayName {
  font-style: normal;
  font-size: 12pt !important;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.login h3, .login .h3 {
  font-size: 18px;
  text-align: left;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.login .text {
  text-align: left;
}

.login .alert {
  padding-right: 8px;
  margin-bottom: 5px;
  min-height: 35px;
  width: 275px;
  color: #333333;
  background-color: #fff;
  border: 0;
}

.login .alert img {
  float: left;
  margin: 5px 10px 0 -5px;
}

.Administration .PortletContentWOPadding table td {
  padding: 10px;
}

.StatusMappingsOnBoarding .ui-progressbar {
  margin-top: -10px;
}

.RatingScaleView #ratingScale_InformationBox input, .RatingScaleView #ratingScale_InformationBox select,
.RatingScaleUpdate #ratingScale_InformationBox input, .RatingScaleUpdate #ratingScale_InformationBox select {
  width: auto;
  margin-bottom: 0;
  padding: 1px;
  cursor: pointer; /* override not-allowed */
  height: 18px;
  box-sizing: content-box;
}

.RatingScaleView #ratingScale_InformationBox select, .RatingScaleUpdate #ratingScale_InformationBox select {
  height: 21px;
  width: 110px;
}

.reporting .btn-group {
  float: right;
  margin-right: 20px;
}

.reporting .btn-group .btn {
  padding-top: 6px;
  vertical-align: middle;
}

.reporting .btn-group .btn img {
  padding-right: 2px;
  vertical-align: top;
}

#createScaleDiv {
  text-align: center;
}

#ratingScalesContainer_div {
  margin: 0 auto;
}

#ratingScalesContainer {
  background-color: #E1E1E1;
  padding: 10px;
  padding-bottom: 40px;
  margin-left: 60px;
}

#ratingSegmentContainer_td {
  text-align: center;
  height: 170px;
  vertical-align: top;
}

#ratingSegmentContainer {
  text-align: center;
  position: relative;
  margin: 0 auto;
}

.hidden {
  display: none;
}

/*Bug Fix: TBE-11544 : Fixes the alignment b/w labels on the left and the label rows on the right */
.ratingScaleDetailsBoxCellHeight {
  height: 24px;
}

.inputLabels_detailsBox_div {
  text-align: right;
  width: 130px;
  border: 0px;
}

.inputLabels_detailsBox_div_div {
  padding: 5px;
  border-bottom: 1px dotted #CCCCCC;
  height: 24px; /* This should be the same as .ratingScaleDetailsBoxCellHeight */
  padding-right: 10px;
  box-sizing: content-box;
}

.SubmitReferral .PortletContent > table > tbody > tr > td > img {
  height: 15px;
}

/* To fix alignment issue in IE8 */
.CalendarWeek .ResultsHeaderRight, .CalendarDay .ResultsHeaderRight, .CalendarMonth .ResultsHeaderRight {
  width: 220px;
  text-align: right;
}

select.timezone {
  width: auto;
}

.AssignUserPages select, .AssignUserViews select, .AssignRoleViews select, .AssignRolePages select,
.OrgChartEdit1 select {
  width: auto;
  min-width: 220px;
}

/* To handle viewed/unviewed for Candidates */
.onboarding-employees .RowBold td, .onboarding-employees .RowBold td b,
.offboarding-employees .RowBold td, .offboarding-employees .RowBold td b,
.RowNormal td, .RowNormal td b, .RowNormal td a {
  font-weight: normal;
}

.onboarding-employees .RowNormal td a,
.offboarding-employees .RowNormal td a {
  font-weight: bold;
}

.RowBold td, .RowBold td b, .RowBold td a {
  font-weight: bold;
}

.RowBold td div.btn-group a {
  font-weight: normal;
}

/* Zip Code Country and Radius fix */
#label_for_field_zipCode_radius, #label_for_field_searchRadiusZipCountryCode_select {
  display: inline-block;
}

#searchRadiusZipCountryCode_select, #zipCode_radius {
  width: auto;
  margin-top: 5px;
}

/* TBE-11567: Reason for leaving field is oversized */
.EmployeeEdit #reasonForLeaving_1 {
  width: auto;
}

.PluginEdit .text, .StatusEditActivity #displayDescLabel {
  width: auto;
}

.FieldAdd2 #limitSpinnerSpan, .FieldEdit #limitSpinnerSpan {
  vertical-align: top;
  display: inline-block;
  position: absolute;
  margin-top: -5px;
  margin-left: 3px;
}

.FieldAdd2 .ui-spinner, .FieldEdit .ui-spinner {
  position: absolute;
  margin-left: -2px;
}

.RequisitionEdit #tscCalInstantSchedulingScore {
  display: inline-block;
  height: auto;
}

input, textarea, select, .uneditable-input {
  color: #333333;
}

/* Get rid of outline when clicking on elements: http://css-tricks.com/removing-the-dotted-outline/ */
a:focus {
  outline: 0;
}

a.greyNoUnderline {
  color: gray;
  text-decoration: none;
}

/* Some printable headers (those created from WebHelper.getTRPrintablePageHeader) use divs instead of tables to set the logo and print/close links.
For those headers use the below style for the links.*/
a.greyNoUnderlineFloat {
  float: right;
  color: gray;
  text-decoration: none;
}

body.selector .SearchForm {
  margin-top: 0;
  line-height: 24px;
  padding: 0;
}

.login input[type=text], .login input[type=password] {
  height: 40px;
}

/* Override some Bootstrap defaults */
body, table th, table td, label, input, button, select, textarea,
input[type=text],
input[type=password],
input[type=datetime],
input[type=datetime-local],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color],
.uneditable-input {
  font-size: 12px;
}

select, textarea, input[type=text], input[type=password], input[type=datetime], input[type=datetime-local], input[type=date], input[type=month], input[type=time], input[type=week], input[type=number], input[type=email], input[type=url], input[type=search], input[type=tel], input[type=color], .uneditable-input {
  margin-bottom: 9px;
}

/* TBE-12503: Fix for gigantic eQuest buttons */
input[type=image] {
  width: auto;
}

table, form {
  margin-bottom: 0;
}

label {
  float: none;
  vertical-align: middle;
}

input[type=file] {
  height: 25px;
  padding-top: 1px;
  line-height: 20px;
}

textarea {
  width: auto;
}

table {
  empty-cells: show;
}

table th, table td {
  line-height: normal;
  padding: 0;
}

table.no-padding td {
  padding: 0;
}

table.no-padding td.text {
  padding: 0 5px;
}

table.no-spacing {
  border-collapse: collapse;
}

th input[type=checkbox] {
  margin-top: -5px;
}

/* End of overriding defaults */
#tabConfigContainer {
  margin-top: -1px;
}

#tabConfigContainer table table table td {
  vertical-align: middle;
}

#tabConfigContainer table table table {
  width: auto;
}

#tabConfigContainer table td table td {
  padding: 2px 5px 2px 5px;
}

#tabConfigContainer input[type=text] {
  color: #000000;
  margin-bottom: 2px;
  /*height: 16px;*/
}

#tabConfigContainer select {
  padding: 2px 4px 2px 4px;
  margin-bottom: 2px;
}

#tabConfigContainer table.move-controls {
  margin-top: 20px;
}

#tabConfigContainer table.move-controls td {
  padding: 0;
}

table .header:after {
  content: none;
}

#sidebar a, .datagrid a {
  /* http://www.quirksmode.org/css/tests/iewin_fontweight.html */
  font-weight: bold;
}

.text > input[type=checkbox] {
  margin-right: 5px;
}

/* Layouts */
#header {
  height: 50px;
  position: absolute;
  top: 0;
  width: 100%; /* MR: This causes horizontal scrollbar in IE7, still haven't figured out how to solve. */
  z-index: 1000;
  background-color: #fff;
}

#header div.logo {
  height: 50px;
  overflow: hidden;
}

#header img.logo {
  margin: 7px 0 0 10px;
}

#header .dashboard {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 10px;
  height: 32px;
}

#menu-help {
  margin-right: 10px;
}

#menu-help .dropdown-menu {
  min-width: 120px;
}

#menu-view {
  margin-right: 10px;
  margin-left: -10px;
}

#menu-view .dropdown-menu {
  min-width: 60px;
}

.navbar {
  top: 50px;
  position: absolute;
  z-index: 95;
  min-width: 1430px;
  background-color: #4884a6;
  padding: 0px;
}

.navbar .nav {
  margin-left: 41px;
}

.navbar div > ul > li {
  z-index: 950;
}

.navbar .open a {
  border-right-width: 0;
}

.navbar-inner {
  background-color: transparent;
  filter: none; /* Fixes background color from bootstrap in IE */
  background-image: none;
  box-shadow: none;
  min-height: 39px;
}

.navbar .dropdown-toggle:after {
  content: none;
}

.navbar .nav > li > a {
  color: #ffffff;
  text-shadow: none;
  padding-top: 10px;
}

.navbar .nav .active {
  border: none;
  background-color: #ffffff;
}

.navbar .nav .active > a {
  border-top: 0;
  color: #333;
  margin-top: -1px;
  padding-bottom: 12px;
}

.navbar .nav li.dropdown.active > .dropdown-toggle, .navbar .nav > li.active:first-child {
  background-color: #f0f0f0;
  font-weight: bold;
}

.navbar .nav li.dropdown.active > .dropdown-toggle:hover, .ews .navbar .nav li.dropdown.active > a:hover {
  color: #333;
  background-color: #f0f0f0;
}

.nav .active .active {
  /* for submenus: TBE-10733 */
  font-weight: bold;
  color: #333;
}

.dropdown-menu {
  box-shadow: none;
  max-width: none; /* Fixes TBE-11913: French Locale menu item too long */
}

.navbar .dropdown-menu:before, .navbar .dropdown-menu:after {
  content: none; /* Hides up arrow in drop down menu */
}

.navbar div > ul .dropdown-menu, .nav .dropdown-menu {
  top: 39px;
  border-top: none;
}
#toplinkcontainer .navbar div > ul .dropdown-menu, #toplinkcontainer .nav .dropdown-menu {
  top: 30px;
}

.nav-tabs .dropdown-menu {
  top: 26px;
}

.navbar .nav li.dropdown:last-child .dropdown-menu {
  z-index: -1;
  top: 37px;
}

.nav .dropdown-menu {
  margin-left: -1px;
  z-index: 9999;
  padding: 0;
}

.nav .dropdown-top {
  display: none;
}

.navbar div > ul .active .dropdown-toggle, .navbar div > ul .active .dropdown-menu,
.navbar .nav > li.dropdown.active:first-child .dropdown-toggle,
.ews .navbar div > ul .active > a {
  background-color: #f0f0f0;
  border-top: 0;
}

.navbar div > ul .active .dropdown-menu {
  margin-left: -1px;
}

.navbar div > ul .dropdown-menu li a, .nav .dropdown-menu li a {
  color: #333333;
}

.navbar div > ul .dropdown-menu li a, .nav .dropdown-menu li a {
  text-shadow: none;
}

.navbar div > ul .dropdown-menu li a:hover, .nav .dropdown-menu li a:hover, .dropmenudiv a:hover {
  background-image: none;
  color: #333333;
  filter: none; /* Fixes background color from bootstrap in IE */
}

#tx_help_section {
  width: 35px;
}

#mobile_setup_link {
  float: left;
  position: absolute;
  padding-top: 7px;
  left: -25px;
  top: 10px;
}

#mobile_instructions_bg {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_bkgrd.png") no-repeat scroll 0 0 transparent;
  height: 540px;
  width: 800px;
}

#mobile_instructions_step1 {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_step1.png") no-repeat scroll 0 0 transparent;
  height: 65px;
  width: 195px;
  position: absolute;
  right: 12px;
  top: 205px;
  cursor: pointer;
  background-size: contain;
}

#mobile_instructions_step2 {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_step2.png") no-repeat scroll 0 0 transparent;
  height: 64px;
  width: 195px;
  position: absolute;
  right: 12px;
  top: 270px;
  cursor: pointer;
  background-size: contain;
}

#mobile_instructions_email {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_email.png") no-repeat scroll 0 0 transparent;
  height: 40px;
  width: 195px;
  position: absolute;
  right: 12px;
  top: 335px;
  cursor: pointer;
  background-size: contain;
}

#mobile_instructions_app_store {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_appstore.png") no-repeat scroll 0 0 transparent;
  height: 31px;
  width: 104px;
  position: absolute;
  top: 480px;
  left: 20px;
  cursor: pointer;
}

#mobile_instructions_iphone_bg {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_iPhone_bkgrd.png") no-repeat scroll 0 0 transparent;
  height: 480px;
  width: 320px;
  background-size: contain;
}

#mobile_instructions_iphone_step1 {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_step1.png") no-repeat scroll 0 0 transparent;
  height: 35px;
  width: 108px;
  position: absolute;
  right: 19px;
  top: 192px;
  cursor: pointer;
  background-size: contain;
}

#mobile_instructions_iphone_step2 {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_step2.png") no-repeat scroll 0 0 transparent;
  height: 35px;
  width: 108px;
  position: absolute;
  right: 19px;
  top: 238px;
  cursor: pointer;
  background-size: contain;
}

#mobile_instructions_iphone_email {
  background: url("../../img/UIv8/mobile/MobileSplashScreen_email.png") no-repeat scroll 0 0 transparent;
  height: 23px;
  width: 108px;
  position: absolute;
  right: 19px;
  top: 284px;
  cursor: pointer;
  background-size: contain;
}

.msg_general_notification {
  background: url("../../img/UIv8/icon_general_notification.png") no-repeat scroll 0 0 transparent;
  float: left;
  height: 20px;
  left: 0;
  top: 0;
  width: 24px;
}

/*  auto events notification message menu */
.msg_notification_ae_header {
  background-position: 26.297% 76.934%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .msg_notification_ae_header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.msg_notification_ae_header_inactive {
  background-position: 26.316% 75.271%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: default;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .msg_notification_ae_header_inactive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/*  notification message menu */
.msg_notification_header {
  background-position: 25.955% 80.505%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .msg_notification_header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.msg_notification_header_inactive {
  background-position: 25.974% 78.845%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: default;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .msg_notification_header_inactive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/*  ews notification menu */
.ews_notification_header {
  background-position: 25.881% 83.96%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ews_notification_header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.ews_notification_header_inactive {
  background-position: 25.881% 82.37%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: default;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ews_notification_header_inactive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/*  Bookmark link menu */
.bookmark_section_bg_div_disable {
  background-position: 80.464% 87.916%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: default;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bookmark_section_bg_div_disable {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.bookmark_section_bg_div_compress {
  background-position: 78.455% 92.499%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bookmark_section_bg_div_compress {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/*  Bookmark link menu */
.bookmark_remove {
  background: url("../../img/UIv8/remove.png") no-repeat white;
  float: left;
  height: 21px;
  left: 0;
  top: 0;
  width: 17px;
  margin-top: 3px;
}

.removeBookmark {
  display: none;
}

.bookMarkpadding {
  padding: 5px;
}

.bookmark_handle {
  background-position: 41.2% 73.3%;
  background-repeat: no-repeat;
  width: 11px;
  height: 36px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  position: absolute;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bookmark_handle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.user_talent_center_section_header {
  background-position: 26.1% 70.1%;
  background-repeat: no-repeat;
  width: 28px;
  height: 28px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .user_talent_center_section_header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/*  crm notification menu */
.crm_notification_header {
  background-position: 26.244% 73.483%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .crm_notification_header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.crm_notification_header_inactive {
  background-position: 26.244% 71.936%;
  background-repeat: no-repeat;
  width: 24px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  cursor: default;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .crm_notification_header_inactive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.msg_notification_comments, .msg_notification_ae_comments, .msg_notification_ews_comments, .msg_notification_crm_comments {
  height: 13px;
  margin: 0;
  position: relative;
  top: -6px;
  width: 13px;
  left: 8px;
  background-color: #da4f49;
  padding: 1px 1px 1px 1px;
  color: white;
  font-weight: bold;
}

#notification_section, #notification_ae_section, #notification_ews_section, #notification_crm_section, #bookmark_section, #user_talent_center_section {
  padding-top: 7px;
  padding-bottom: 7px;
  float: left;
  padding-left: 3px;
  padding-right: 8px;
  height: 16px;
}

#notification_section_corner {
  height: 31px;
  float: left;
  padding-left: 7px;
}

#notification_dropdown, #notification_ae_dropdown, #notification_ews_dropdown, #notification_crm_dropdown {
  display: none;
  position: absolute;
  z-index: 2000;
  left: 0;
  font-size: 11px;
}

#notification_dropdown ul, #notification_ae_dropdown ul, #notification_ews_dropdown ul, #notification_crm_dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

#notification_dropdown ul li, #notification_ae_dropdown ul li, #notification_ews_dropdown ul li, #notification_crm_dropdown ul li {
  padding: 5px 5px 5px 5px;
  height: 20px;
  box-sizing: content-box;
}

#msg_notification_bottomline, #msg_notification_ae_bottomline, #msg_notification_ews_bottomline, #msg_notification_crm_bottomline {
  border-bottom: 1px solid #CCC;
}

#msg_notification_topline, #msg_notification_ae_topline, #msg_notification_ews_topline, #msg_notification_crm_topline {
  border-top: 1px solid #CCC;
}

.notificationSectionTitle {
  padding-top: 4px;
  padding-bottom: 5px;
  font-size: 13px;
  font-weight: bold;
  color: #0000ff;
}

.notificationSectionTd {
  padding-top: 6px;
  padding-bottom: 10px;
  border-bottom: 2px;
  border-bottom-color: #808080;
  border-bottom-style: solid;
  padding-right: 0;
}

#toplinkcontainer {
  height: 30px;
  margin-right: 10px;
  white-space: nowrap;
  display: inline;
}

#toplinkcontainer .nav {
  font-size: 12px; /*font-size: .9em;*/
  font-weight: 400;
  margin-top: 5px;
  float: left;
}

#toplinkcontainer .nav > li > a {
  color: #333333;
  margin-top: -10px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: transparent;
}

#toplinkcontainer div.nav {
  margin-right: 5px;
  margin-left: 5px;
  margin-top: 6px;
}

#toplinkcontainer div.nav > a {
  color: #333333;
}

#toplinkcontainer .dropdown-toggle:after {
  border-top-color: black;
}

#toplinkcontainer #logout_section {
  float: left;
}

li.separator {
  border-top: 1px dotted black;
}

#searchboxContainer {
  background-color: #FFFFFF;
  padding-bottom: 10px;
}

.container-fluid > #sidebar, .container-sm > #sidebar, .container-md > #sidebar, .container-lg > #sidebar, .container-xl > #sidebar, .container-xxl > #sidebar {
  border-left: 0 !important;
  position: absolute;
  width: 220px;
  top: 0;
  left: 0;
  margin-top: 100px;
}

.container-fluid > #sidebar input, .container-sm > #sidebar input, .container-md > #sidebar input, .container-lg > #sidebar input, .container-xl > #sidebar input, .container-xxl > #sidebar input {
  margin-left: 10px;
  border-style: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}

.container-fluid > #sidebar .span3, .container-sm > #sidebar .span3, .container-md > #sidebar .span3, .container-lg > #sidebar .span3, .container-xl > #sidebar .span3, .container-xxl > #sidebar .span3 {
  width: 150px;
  border-style: none;
}

.container-fluid > #sidebar h4, .container-sm > #sidebar h4, .container-md > #sidebar h4, .container-lg > #sidebar h4, .container-xl > #sidebar h4, .container-xxl > #sidebar h4, .container-fluid > #sidebar .h4, .container-sm > #sidebar .h4, .container-md > #sidebar .h4, .container-lg > #sidebar .h4, .container-xl > #sidebar .h4, .container-xxl > #sidebar .h4 {
  padding-left: 10px;
  font-size: 14px;
  line-height: 36px;
  font-weight: 300;
  background-color: #4884a6;
  color: #FFFFFF;
}

.container-fluid > #sidebar h4 button, .container-sm > #sidebar h4 button, .container-md > #sidebar h4 button, .container-lg > #sidebar h4 button, .container-xl > #sidebar h4 button, .container-xxl > #sidebar h4 button, .container-fluid > #sidebar .h4 button, .container-sm > #sidebar .h4 button, .container-md > #sidebar .h4 button, .container-lg > #sidebar .h4 button, .container-xl > #sidebar .h4 button, .container-xxl > #sidebar .h4 button {
  font-size: 7px;
  padding: 2px 2px 1px 1px;
  vertical-align: middle;
}

#sidebar #minimize_panel {
  float: right;
  margin-right: 4px;
  margin-top: 9px;
  padding: 0 5px 2px;
  line-height: normal;
  filter: none;
  padding-right: 10px;
  cursor: pointer;
}

#sidebar .leftArr {
  background: url(../../img/UIv9/ats-icons-sprite.png) no-repeat 3.783% 88.705%;
  width: 9px;
  height: 14px;
}

/* Shown when panel is hidden */
#sidebar #panelTab {
  background-position: 3.15% 77.25%;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  background-color: #4884a6;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #sidebar #panelTab {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

#sidebar #searchBox .search, #sidebar #searchBoxFirstLastName .search,
#quickSearch #searchBox .search, #quickSearch #searchBoxFirstLastName .search {
  background-position: 5.3% 76.99%;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  filter: none; /* Fixes missing background icon in IE */
  position: absolute;
  right: 10px;
  top: 48px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #sidebar #searchBox .search, #sidebar #searchBoxFirstLastName .search,
  #quickSearch #searchBox .search, #quickSearch #searchBoxFirstLastName .search {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

#sidebar #searchBoxFirstLastName .search, #quickSearch #searchBoxFirstLastName .search {
  top: 3px;
  right: -4px;
}

#sidebar .advancedlinkContainer {
  font-size: 10px;
  font-weight: bold;
  margin: 5px 0px 14px 14px;
  text-align: left;
  width: 150px;
  color: blue;
}

hr.lgRuler {
  margin: 0px;
  border-top: 2px solid #ddd;
  opacity: 1;
}

#sidebar #searchBoxFirstLastName, #quickSearch #searchBoxFirstLastName {
  position: relative;
  width: 207px;
  margin: 10px 0 0 0;
}

#sidebar .fLNBoxConnection, #quickSearch .fLNBoxConnection {
  background: transparent url(../../img/UIv8/fakesearchConnectionBck2.gif) no-repeat scroll left top;
  height: 27px;
  width: 17px;
  position: absolute;
  top: 16px;
  right: 26px;
}

#sidebar .fLNBoxMagnifier, #quickSearch .fLNBoxMagnifier {
  position: absolute;
  right: 0;
  top: 14px;
  width: 25px;
}

#leftpanelContainer {
  padding-bottom: 10px;
}

#leftpanelContainer #recentItems {
  padding-bottom: 20px;
  margin-top: 5px;
  background-color: #FFFFFF;
}

#recentItems .configure {
  width: 20px;
  height: 21px;
  position: absolute;
  right: 0;
  margin-top: -36px;
  margin-right: 12px;
  cursor: pointer;
}

.btn-group > .dropdown-menu {
  min-width: 100px;
}

.btn-group.open > ul.dropdown-menu {
  float: right;
}

.btn-group:before,
.btn-group:after {
  display: inline;
}

.btn-group > .dropdown-menu a {
  padding: 0 8px;
  cursor: pointer;
}

.configure-buttons, .configure-dummy {
  width: 20px;
  height: 19px;
  margin-left: 4px;
  margin-right: 8px;
  margin-top: 4px;
  display: inline-block;
  vertical-align: middle;
  /*float: left;*/
  zoom: 1;
  *display: inline;
}

.configure-buttons {
  cursor: pointer;
  margin-bottom: 4px;
}

div.btn-group > input.btn {
  height: 28px;
}

.btn-group > b {
  position: relative;
  float: left;
  margin-left: -1px;
  padding: 1px 8px 2px 2px;
}

.btn-group > .dropdown-menu > li > b {
  padding: 0 5px;
  white-space: nowrap;
}

.btn-group > input[disabled],
.btn-group > input[readonly] {
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.result-header-button-bar {
  position: relative;
  display: inline;
  float: left;
}

#btnDynamicContent .divider {
  *width: 100%;
  height: 1px;
  margin: 8px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}

ul.dropdown-menu > li > input {
  margin: 0;
  border: none;
  background-color: transparent;
  clear: both;
  color: #333333;
  display: block;
  font-weight: normal;
  line-height: 18px;
  height: 18px;
  padding: 0 8px;
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.dropdown-menu li > input:hover,
.dropdown-menu .active > input,
.dropdown-menu .active > input:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #0088cc;
}

.dropdown-menu-inactive-link {
  padding: 0 8px;
  color: #999;
  cursor: pointer;
}

.btn-menu-inactive-link {
  color: #999;
}

.btn-menu-always-inactive-link {
  color: #999 !important;
}

.select-bar {
  margin-left: 0;
  background-color: #F5F5F5;
  background-image: -moz-linear-gradient(center top, #FFFFFF, #E6E6E6);
  background-repeat: repeat-x;
}

.select-bar:hover {
  background-color: #e6e6e6;
  color: #333333;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.select-bar > option {
  background-color: white;
}

#recentItemsConfigContent label, #buttonsConfig label {
  margin: 2px 0;
}

#recentItemsConfigContent input[type=checkbox], #buttonsConfig input[type=checkbox] {
  margin-right: 5px;
}

#recentItemsConfig li, #buttonsConfig li {
  list-style: none;
}

#leftpanelContainer #recentItems ul {
  list-style: none;
  margin: 0px;
}

#leftpanelContainer #recentItems li {
  background-color: #fff;
  padding-top: 10px;
}

#searchBoxFirstLastName > .containFLNBox:after {
  content: "";
  display: block;
  height: 2px;
  width: 72%;
  margin: 0px 0px 5px 14px;
  background: #ddd;
}

#searchboxContainer #searchBox .contain {
  padding-top: 10px;
}

#searchboxContainer #searchBox .contain:after {
  content: "";
  display: block;
  height: 2px;
  width: 68.5%;
  margin: -6px 0px 0px 14px;
  background: #ddd;
}

/*#leftpanelContainer #recentItems li:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    margin: 10px 0px 0px 0px;
    background: #ddd;
}*/
#leftpanelContainer #recentItems li:hover,
.docpreview-personinfo:hover {
  cursor: pointer;
}

#leftpanelContainer #recentItems li div > span {
  height: 35px;
  width: 36px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 13px;
}

#recentItems .details {
  width: 145px;
  position: relative;
  left: 45px;
  margin-top: -40px;
  height: 40px;
}

#leftpanelContainer #recentItems li .details > span {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 7px;
  white-space: nowrap;
  /*overflow: hidden;*/
}

#leftpanelContainer #recentItems li .details .title {
  color: #666;
  padding-top: 0;
}

#leftpanelContainer #recentItems li div > span img {
  vertical-align: middle;
}

#leftpanelContainer #subscribeSection {
  text-align: center;
  padding: 0px 0px 20px 0px;
  margin-top: 5px;
  background-color: #FFFFFF;
}

#leftpanelContainer #subscribeSection #subscribeButton {
  margin-top: 30px;
}

.container-fluid > #content, .container-sm > #content, .container-md > #content, .container-lg > #content, .container-xl > #content, .container-xxl > #content {
  margin-left: 230px;
}

h1, .h1 {
  font-size: 18px;
  font-weight: 300;
  margin: 10px 0;
}

.tab-layout h1, .tab-layout .h1 {
  margin: 0;
  font-size: 18px;
}

.tab-layout {
  overflow-y: auto;
}

.browser-upgrade {
  margin-top: 10px;
}

.modern-browsers li {
  display: inline;
  margin-left: 10px;
}

h1 span, .h1 span {
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px;
  width: 41px;
}

h1 .custom, .h1 .custom {
  float: left;
  margin-top: -10px;
}

h1 .heading-nav, .h1 .heading-nav {
  font-weight: normal;
  font-size: 11px;
  color: #000000;
  text-decoration: underline;
}

h1 .heading-nav span, .h1 .heading-nav span {
  margin-right: 5px;
  margin-bottom: 5px;
}

h1 .back-to-list, .h1 .back-to-list {
  background-position: 11.1% 74.202%;
  background-repeat: no-repeat;
  width: 28px;
  height: 24px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  margin-left: 10px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .back-to-list, .h1 .back-to-list {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

h1 .previous, .h1 .previous {
  background-position: 11.1% 76.651%;
  background-repeat: no-repeat;
  width: 28px;
  height: 24px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  margin-left: 20px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .previous, .h1 .previous {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

h1 .next, .h1 .next {
  background-position: 11.727% 79.393%;
  background-repeat: no-repeat;
  width: 28px;
  height: 24px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  margin-left: 5px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .next, .h1 .next {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/* Administration icons */
a .customize-recruit {
  background-position: 36.871% 77.52%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .customize-recruit {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

a .customize-perform {
  background-position: 36.852% 82.279%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .customize-perform {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

a .organization-setup {
  background-position: 36.875% 91.706%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .organization-setup {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

a .backup-service {
  background-position: 36.915% 95.59%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .backup-service {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

h1 .links, .h1 .links {
  vertical-align: middle;
  font-size: 12px;
  width: auto;
  margin: 0 0 0 10px;
}

.SearchBox {
  padding: 4px;
}

.emailStyle {
  vertical-align: baseline;
  margin-left: 8px;
}

.SearchForm {
  padding: 8px 0 0 0;
}

.SearchForm input {
  margin-bottom: 5px;
}

.SearchBoxHr {
  margin: 0 0 8px;
}

/* common width: 40px, height: 34px */
a .customize-recruit {
  width: 35px;
  height: 33px;
  display: block;
}

a .customize-perform {
  width: 36px;
  height: 29px;
  display: block;
}

a .organization-setup {
  width: 35px;
  height: 34px;
  display: block;
}

a .backup-service {
  width: 38px;
  height: 29px;
  display: block;
}

a .customize-onboarding {
  background-position: 37.027% 86.85%;
  background-repeat: no-repeat;
  width: 36px;
  height: 30px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .customize-onboarding {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

a .customize-learn {
  background-position: 41.584% 91.749%;
  background-repeat: no-repeat;
  width: 36px;
  height: 30px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  a .customize-learn {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/* My View icon in top menu bar */
.navbar .nav > li:first-child > a, .navbar .nav > li:first-child > a:hover {
  text-indent: -2000px;
  width: 38px;
}

.nav-tabs {
  border-bottom: 0;
  position: relative;
  top: 1px;
  margin-bottom: 1px;
}

.nav-tabs > li > a, .ui-tabs .ui-tabs-nav li a {
  margin-right: -1px;
  padding-bottom: 4px;
  padding-top: 4px;
  border: 0;
  border-radius: 0;
}

.nav-tabs > .active, .ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  margin-top: -4px;
}

.nav-tabs > .active > a, .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
  margin-top: 0;
  padding-top: 8px;
  padding-bottom: 5px;
  border: 0;
}

.nav-tabs .configure, .widgets .configure {
  width: 12px;
  height: 18px;
  display: block;
  margin-bottom: -1px;
}

.nav-tabs-sortable {
  list-style: none;
}

.nav-tabs-sortable li {
  cursor: move;
  padding: 5px;
  border: 1px solid silver;
  margin-bottom: 3px;
  width: 300px;
}

.nav-tabs-sortable li .label {
  float: right;
}

.datagrid, .DatagridTable {
  /* to squish up against tabs */
  margin-top: 0px;
}

table.association {
  margin-top: -5px;
}

td.association {
  padding-top: 0;
}

a.association {
  padding: 0 5px; /* add padding b/w link and brackets [ link ] */
}

.selector .datagrid, .selector .DatagridTable {
  margin-top: 0;
}

.ResultsHeader.right {
  padding-top: 5px;
  padding-right: 5px;
}

.PortletContent > div.InformationBox {
  margin: 10px 10px 18px 10px;
}

.PortletContent > div.InformationBox.custom-roles {
  margin-left: 40px !important;
}

.PortletContent .ajax-loader {
  color: green;
}

.InformationHeader h3, .InformationHeader .h3 {
  line-height: normal;
}

.cluetip-inner .InformationBox {
  border: 0;
}

/* Stretches table header and footer to fit width of table - https://engineering.tbetaleo.com/jira/browse/TBE-12302 */
div.ResultsBox {
  display: table;
  width: 100%;
}

.ActionLinkHeadBottom {
  padding-bottom: 10px;
  padding-left: 11px;
}

.btn-micro {
  font-size: 6px;
  line-height: 11px;
  padding: 1px 3px;
}

.btn-micro .caret {
  margin-left: 0;
  margin-top: 4px;
}

.ActionLinkHeadBottom, .ActionLinkHeadBottom th {
  color: black;
}

.ActionLinkHeadBottom .button-group {
  margin-top: 9px;
}

.ActionLinkHeadBottom .pagination-group {
  margin-top: 13px;
}

/* Don't round corners when displaying in a cluetip */
#cluetip .InformationHeader.open {
  border-radius: 0;
}

.FoldableInformationHeader.open + table, .PortletHeader.open + table {
  padding-bottom: 3px; /* to prevent rounded corner bleeding */
}

/* To fix extra padding that looks like it appears in last row (caused by above rule) */
.FoldableInformationHeader.open + table .PortletContentWOPadding tr:last-child td,
.PortletHeader.open + table .PortletContentWOPadding tr:last-child td {
  padding-bottom: 3px;
}

.InformationHeader table tr:first-child td:first-child, .InformationHeader table table td,
.FoldableInformationHeader table table td, .InformationHeader h3, .InformationHeader .h3, .PortletHeader td,
.FoldableInformationHeader .header,
div.InformationHeader {
  font-weight: bold;
  font-size: 14px;
  color: #333333;
}

.ActionHeaderLink, .PortletHeader .text, .FoldableInformationHeader .header a {
  font-size: 12px;
  margin-left: 4px;
}

.text-action-mini {
  font-size: 11px;
}

li > .text-action-mini {
  padding-left: 4px;
  font-size: 12px;
}

.PortletHeader img {
  vertical-align: middle;
}

.InformationHeader .add-version, .InformationHeader .remove-version {
  float: right;
  margin-top: -20px;
  font-weight: bold;
  white-space: nowrap;
}

.InformationContent input[type=radio] {
  margin-right: 5px !important;
  vertical-align: middle;
}

.InformationContent table table td {
  vertical-align: middle;
}

.InformationContent input, .InformationContent textarea, .InformationContent select,
.InformationContent .uneditable-input, .PortletHeader select, .PortletHeader input {
  margin-bottom: 0;
}

.PortletBox, #tabs_container {
  background-color: #fff;
}

#reviewAgeSpinner + .ui-spinner {
  left: -2px;
  top: 5px;
}

#manage_tabs_button_no_tabs {
  margin-top: 10px;
}

#tabs_container {
  padding: 15px 10px 0;
}

#manage_tabs_button_no_tabs, #manage_tabs_button {
  background-color: #4884a6;
}

#tabs .active, #pageLayOutTabsUL .active, .edit-tabs {
  background: #fff;
  border: 1px solid #ddd;
}

.PortletBox .ResultsHeader, td.ResultsBox .ResultsHeader {
  padding-top: 8px;
  background-color: #ffffff;
}

form[name=theForm] .PortletBox .ResultsHeader {
  background-color: #fff;
}

.PortletBox .ResultsHeader, .PortletBox .ResultsFooter {
  padding-left: 5px;
}

.PortletBox .ResultsFooter {
  padding-bottom: 5px;
}

.ResultsHeaderLeft table, .ResultsHeaderRight table {
  background-image: none;
  background-color: transparent;
}

.ActionLinkHeadBottom, .ResultsFooter {
  min-height: 44px;
  overflow: auto;
}

.ResultsHeader {
  /* The combination of padding and min-height = 44px */
  padding-top: 2px;
  min-height: 42px;
  overflow: visible;
}

.ResultsHeader, .ActionLinkHeadBottom, .PortletBox .ResultsHeader {
  vertical-align: middle;
}

.datagrid thead th, .DataTableHead th {
  padding: 5px;
}

.datagrid th img, .DataTableHead th img {
  vertical-align: middle;
  padding-bottom: 3px;
}

.datagrid thead a, .DataTableHead th a {
  color: #333333;
}

.datagrid td, .DatagridTable td, #emptyTasksTextSpan, .selector .ResultsBox td, .DataTableOddRow td, .DataTableEvenRow td {
  padding: 5px 5px;
  vertical-align: middle;
}

.datagrid tbody td tbody, .DatagridTable tbody td tbody {
  background-color: transparent;
}

/* Remove top border from nested tables */
.datagrid td > table td, .datagrid .DataTableRowCell > table td,
.DatagridTable td > table td, .DatagridTable .DataTableRowCell > table td {
  border-top: none;
}

.administration.WebPageEdit #content input, .administration.WebPageEdit #content select {
  vertical-align: middle;
  margin-bottom: 0;
}

.administration.WebPageEdit .InformationBox > table td {
  vertical-align: middle;
}

.administration.WebPageEdit .DatagridTable tr.spacer td {
  padding: 3px;
}

.administration.WebPageEdit .DatagridTable .DTActionC {
  vertical-align: top;
  padding-top: 12px;
}

.administration.Customize .PortletContentWOPadding > table td,
.administration.CustomizePerformanceManagement .PortletContentWOPadding > table td,
.administration.CustomizeOnBoarding .PortletContentWOPadding > table td {
  padding: 3px 10px;
}

#emptyTasksTextSpan {
  display: block;
}

.DTActionC, .DataTableOverActionCell, .DataTableOverLastRowActionCell {
  white-space: nowrap;
}

.InformationContent td {
  padding: 5px;
}

.InformationContent fieldset, .InformationContent .control-group {
  padding: 4px;
  margin-bottom: 0;
}

.InformationContent fieldset label, .InformationContent .control-group .control-label {
  display: inline-block;
  padding-right: 5px;
}

.InformationContent p {
  padding: 5px;
}

#content .tabs .active > a {
  color: #333333;
  font-weight: bold;
}

.portlet-toggle {
  cursor: pointer;
  height: 18px;
  width: 18px;
  display: inline-block;
  vertical-align: middle;
}

.portlet-toggle {
  background-position: 5.852% 74.5%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .portlet-toggle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.portlet-toggle:hover {
  background-position: 8.727% 74.5%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .portlet-toggle:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.portlet-toggle.open {
  background-position: 5.601% 72.35%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .portlet-toggle.open {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.portlet-toggle.open:hover {
  background-position: 8.452% 72.35%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .portlet-toggle.open:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.simple-toggle {
  cursor: pointer;
  width: 9px;
  height: 4px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 2px;
}

.simple-toggle.open {
  background-position: 5.787% 85.597%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .simple-toggle.open {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.simple-toggle.closed {
  height: 8px;
  background-position: 5.787% 85.597%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  /* IE-only DX filter */
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  /* Safari/Chrome function */
  -webkit-transform: rotate(270deg);
  /* Firefox function */
  -moz-transform: rotate(270deg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .simple-toggle.closed {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

/* Table Header Actions */
.button-group, .select-group {
  float: left;
  padding: 0px 4px;
}

.button-group .select-group {
  padding: 0 0 0 4px;
  display: inline;
  float: none;
}

.select-group select {
  margin-bottom: 0;
}

.pagination-group {
  padding: 5px 4px 0 4px;
  float: right;
}

/* Table icons */
table .sort-indicator {
  width: 24px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2px 3px;
}

table .sort-indicator.desc {
  background-position: 5.77% 83.419%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  table .sort-indicator.desc {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

table .sort-indicator.desc:hover {
  background-position: 8.629% 83.419%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  table .sort-indicator.desc:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

table .sort-indicator.asc {
  background-position: 5.787% 85.597%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  table .sort-indicator.asc {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

table .sort-indicator.asc:hover {
  background-position: 8.629% 85.597%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  table .sort-indicator.asc:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 0 0 2px;
  cursor: pointer;
}

.pagination:hover {
  text-decoration: none;
}

.pagination.first.disabled {
  background-position: 5.551% 92.977%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.first.disabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.first {
  background-position: 8.488% 92.977%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.first {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.last.disabled {
  background-position: 5.551% 95.134%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.last.disabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.last {
  background-position: 8.488% 95.134%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.last {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.back.disabled {
  background-position: 5.801% 88.699%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.back.disabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.back {
  background-position: 8.609% 88.68%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.back {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.next.disabled {
  background-position: 5.801% 90.873%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.next.disabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pagination.next {
  background-position: 8.658% 90.873%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .pagination.next {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.action-arrow {
  background-position: 5.787% 81.31%;
  background-repeat: no-repeat;
  width: 18px;
  height: 10px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .action-arrow {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.checkmark {
  background-position: 11.733% 72.112%;
  background-repeat: no-repeat;
  width: 13px;
  height: 11px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .checkmark {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.cogwheel {
  background-position: 8.3% 77.054%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cogwheel {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.pointer-arrow {
  background: url(../../img/UIv8/green-pointer.png) no-repeat;
  width: 22px;
  height: 13px;
  vertical-align: middle;
  display: inline-block;
}

.arrows {
  width: 22px;
  padding: 5px;
}

.restriction {
  padding: 3px 20px;
  height: 20px;
  display: inline-block;
}

.green-circle {
  vertical-align: middle;
  height: 34px;
  width: 35px;
  color: white;
  text-align: center;
  line-height: 30px;
}

/* Move Arrow Icons */
img.arrow {
  height: 21px;
  width: 22px;
  display: block;
  margin-bottom: 5px; /*TBE-11234*/
  margin-left: auto; /*TBE-11234*/
  margin-right: auto; /*TBE-11234*/
  max-width: 22px; /*TBE-11527 - override max-width: 100% */
}

#footer {
  margin-top: 20px;
  text-align: right;
}

.login #footer {
  bottom: 0;
  position: absolute;
  width: 100%;
  background-color: #fff;
  min-height: 50px;
  text-align: right;
}

.CalendarHeader .nowrapRegular {
  text-align: center;
  font-size: 10px;
  font-weight: bold;
}

.CalendarHeader td {
  padding: 3px 0 2px 0;
}

.CalendarMonth .DatagridTable tr td {
  border-top: 0;
}

.CalendarMonth .DatagridTable tr td table td {
  border-top: 0;
}

.CalendarMonth .DatagridTable .day, .CalendarMonth .DatagridTable .first, .CalendarMonth .DatagridTable .last,
.CalendarMonth .DatagridTable .empty {
  border-style: solid;
  border-width: 0 1px 1px 0;
  padding: 5px 10px 20px 5px;
  vertical-align: top;
}

.CalendarMonth .DatagridTable .first {
  border-width: 0 1px 1px 0;
}

.CalendarMonth .DatagridTable .empty {
  border-bottom-width: 1px;
  background-color: #EEEEEE;
}

.calendar {
  height: 23px;
  width: 23px;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  margin-right: 10px;
}

.commonBorder .calendar {
  margin-right: 0;
}

.calendar.selected {
  border-bottom: 2px solid #666666 !important;
}

/* Talent Card */
#talentCard h3, #talentCard .h3, #cluetip .mainHeaderTd {
  border-style: solid;
  border-width: 1px 1px 0 1px;
}

#cluetip .mainHeaderTd > div {
  padding-left: 10px !important;
}

#cluetip .workHistory {
  border-style: solid;
  border-width: 0 1px 1px 1px;
  margin-left: 6px;
  width: 688px;
}

/* Org Chart */
.OrgChart .slidetabsmenu {
  float: none;
}

.OrgChart .slidetabsmenu ul {
  position: absolute;
  right: 20px;
  margin-top: -6px;
}

.orgChart .header .picture .photo {
  border: 2px solid #fff;
}

.orgChart .focus {
  cursor: default !important;
}

.available-trees ul {
  border-style: solid;
  border-width: 0 1px 1px 1px;
  max-height: 375px;
  overflow: auto;
}

/* Tabs
----------------------------------*/
.ui-tabs {
  padding: 0.2em;
  border: 0px;
}

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

.ui-tabs-panel {
  display: block;
  border: 0;
  background: none;
}

.ui-tabs-hide {
  display: none !important;
}

.tab-layout table.edit-tabs {
  border: 1px solid #999999;
  border-collapse: separate;
  margin-top: -1px;
}

#owners_dialog_boxes_div table, #approvers_dialog_boxes_div table {
  width: auto;
}

#owners_dialog_boxes_div table td, #approvers_dialog_boxes_div table td {
  vertical-align: middle;
  padding: 0 5px;
}

/* Dialog
----------------------------------*/
.ui-dialog {
  padding: 0;
}

.ui-dialog .ui-dialog-titlebar {
  border: 0;
  padding: 0 5px;
  font-size: 14px;
}

/* get rid of iframe borders */
.ui-dialog iframe {
  border: 0;
}

/* Progress bar */
.ui-progressbar {
  height: 25px;
  margin-bottom: -15px;
  line-height: 20px;
}

/* Date Picker */
.ui-datepicker-trigger {
  margin-left: 3px;
  vertical-align: middle;
}

.ui-datepicker {
  width: inherit;
}

/* Fix alignment for encrypted date fields */
.dateField .ui-datepicker-trigger {
  margin-left: -3px;
}

/* CSS Theme Picker */
.css-theme {
  display: inline-block;
  height: 25px;
  width: 25px;
  cursor: pointer;
}

.css-theme.selected {
  border: 1px solid black !important;
  margin-bottom: -1px;
}

.css-theme.blue {
  background: #B4D5EC;
}

.css-theme.blue-green {
  background: #9BCCDE;
}

.css-theme.green {
  background: #C3EEB7;
}

.css-theme.gray {
  background: #D4D4D4;
}

.css-theme.gray-blue {
  background: #607799;
}

.css-theme.orange {
  background: #F1D69F;
}

.css-theme.pink {
  background: #E9CCE9;
}

.css-theme.red {
  background: #E09C9C;
}

.css-theme.yellow {
  background: #F7EFA8;
}

.css-theme.custom {
  background: white;
  width: 50px;
  height: 20px;
  text-align: center;
  padding-top: 5px;
  border: 1px solid #eee;
  position: relative;
  top: -7px;
}

#css-customizer {
  display: none;
  padding: 10px;
}

.ews-body {
  background: white;
  width: 426px;
  height: 280px;
  margin: 10px auto;
  border: 1px solid #CCC;
}

.ews-body input {
  width: 60px;
  margin-bottom: 0;
  margin-left: 10px;
  padding-bottom: 2px;
}

.ews-body button {
  margin-left: 5px;
  margin-top: -1px;
  padding: 4px 4px 0;
}

.ews-header {
  height: 26px;
  padding: 9px 5px 5px;
}

.ews-navbar {
  min-width: 426px !important;
  top: 79px;
  text-align: left;
  z-index: 0;
}

.ews-navbar div > ul > li {
  padding-bottom: 3px;
}

.ews-content {
  width: 90%;
  margin: 60px auto 0;
}

.ews-content .InformationHeader {
  font-weight: bold;
  padding-left: 4px;
}

.ews-content .colors {
  margin-top: 10px;
}

.ews .css-theme {
  border: 1px solid silver;
}

.ews img {
  max-width: none;
}

.ews .employee-info > table .nowrapFormLabel {
  padding-right: 10px;
}

/* Validation errors */
form .error {
  border-color: #EE5F5B;
  color: #B94A48;
}

.charts-congfig-error,
.pref-lang-validation-error {
  border-color: #EE5F5B;
  color: #B94A48;
  font-size: 15px;
  padding: 0 5px;
}

.charts-congfig-error-field {
  border: 2px solid #EE5F5B !important;
}

form .alert {
  margin-bottom: 0;
}

form .help-inline {
  color: #B94A48;
  font-weight: bold;
  margin-bottom: 0;
}

.fit, select {
  width: auto;
}

.required {
  color: #d70101;
  font-weight: bold;
}

.ui-accordion .ui-accordion-content-active {
  margin-top: -5px;
}

/* Begin of Reports UI Graphic Checkbox and Radio buttons */
span.checkboxUnchecked {
  background: url("../../img/UIv8/btn_checkbox.png") no-repeat left top;
  cursor: pointer;
  padding: 6px 4px 0 6px;
  width: 150px;
  float: left;
  margin: 6px;
  height: 28px;
  vertical-align: middle;
  font-size: 16px;
  border-radius: 6px;
}

.checkboxChecked {
  background: url("../../img/UIv8/btn_checkbox_checked.png") no-repeat left top;
  padding: 6px 4px 0 6px;
  cursor: pointer;
  width: 150px;
  float: left;
  margin: 6px;
  height: 28px;
  font-size: 16px;
  border-radius: 6px;
}

span.radioButtonFalse {
  background: url("../../img/UIv8/btn_radioButtonFalse.png") no-repeat scroll right top;
  cursor: pointer;
  float: left;
  font-size: 16px;
  height: 32px;
  margin: 6px;
  padding: 6px 4px 0 6px;
  text-align: left;
  vertical-align: middle;
  width: 160px;
}

.radioButtonTrue {
  background: url("../../img/UIv8/btn_radioButtonTrue.png") no-repeat scroll left top;
  cursor: pointer;
  float: left;
  font-size: 16px;
  height: 32px;
  margin: 6px;
  padding: 6px 4px 0 6px;
  text-align: left;
  width: 160px;
}

/* End of Reports UI Graphic Checkbox buttons */
/* Begin Reports service heading customization */
.serviceHeading {
  height: 30px;
}

.serviceHeading td {
  font-size: 16px;
  padding: 6px;
  font-weight: bold;
}

.serviceHeading td.serviceType {
  text-align: right;
}

/* EWS Styles */
.ews .navbar .nav, .ews #content {
  margin-left: 0;
}

.ews #content {
  margin-top: 10px;
}

.ews #header h1, .ews #header .h1 {
  margin-left: 10px;
}

.ews #logout_section {
  position: absolute;
  height: 30px;
  right: 21px;
  top: 10px;
}

.ews #__id_txt_description, .ews #__id_txt_measurement {
  width: 300px;
  height: 100px;
}

.pubbox {
  color: #333;
  margin: 0 auto;
  padding: 20px 30px;
  position: relative;
  text-align: center;
  width: 350px;
  border-style: solid;
  border-width: 1px;
}

.pubbox label {
  /* text-align: left;*/
  float: left;
}

/*.pubbox input[type="text"], .pubbox input[type="password"] {
    width: 290px;
    }*/
.pubbox .btn {
  height: 40px;
  width: 300px;
  margin-top: 20px;
}

.pubbox label {
  color: #666666;
}

.pubfooter {
  color: #666666;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.login .pubbox {
  padding: 25px;
}
.login .pubbox div.logo {
  margin-bottom: 25px;
}
.login .pubbox h3, .login .pubbox .h3 {
  line-height: 18px;
}

/* customizations for click-thru screens */
.click-thru .container {
  padding: 0;
  width: auto;
}

.click-thru h1, .click-thru .h1 {
  text-align: center;
  margin: 0 0 10px 0;
}

.click-thru h2, .click-thru .h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.click-thru h3, .click-thru .h3 {
  font-size: 20px;
  margin: 5px 0;
}

.click-thru hr {
  margin: 12px 0;
}

.click-thru .pubbox {
  width: 400px;
  text-align: left;
  margin-bottom: 100px;
}

.multi-rater .pubbox {
  width: 500px;
}

.click-thru .pubbox .comment-mgr {
  padding: 10px 0;
}

.click-thru .pubbox table td {
  padding: 2px;
  line-height: 14px;
}

.click-thru .pubbox table {
  margin-bottom: 10px;
}

.click-thru .pubbox .activityRow {
  margin-bottom: 0;
}

.click-thru .pubbox .activityRow td {
  padding: 5px;
}

.click-thru .pubbox textarea {
  width: 100%;
}

.click-thru .pubbox fieldset label {
  display: inline-block;
  text-align: right;
}

.click-thru .pubbox p:last-child {
  margin-bottom: 0;
}

.click-thru .competency, .click-thru .goal {
  margin-left: 20px;
  border-bottom: 1px dotted silver;
  margin-bottom: 10px;
}

.click-thru .competency:last-child, .click-thru .goal:last-child {
  border-bottom: 0;
  margin-bottom: 15px;
}

.click-thru .decline {
  float: right;
  margin-top: -10px;
}

/* Smartphones (portrait and landscape) ----------- */
/* MR: Changed from 480 to 854 for Android http://stackoverflow.com/questions/6786701/droid-2-not-detected-by-css-media-query */
@media only screen and (min-device-width: 320px) and (max-device-width: 854px) {
  body.mainPage.click-thru {
    padding: 0;
  }
  .multi-rater .pubbox {
    width: auto;
  }
  .click-thru .pubbox {
    width: auto;
    border-radius: 0;
    border: 0;
    padding: 10px 20px;
    margin-bottom: 0;
  }
  .click-thru .pubbox textarea {
    width: 90%;
  }
  .width160 {
    width: 100px;
    min-width: 100px;
  }
  .width210 {
    width: 210px;
    min-width: 210px;
  }
  .click-thru .btn {
    width: 190px;
    white-space: pre-wrap;
    margin-bottom: 10px;
  }
  .click-thru .competency, .click-thru .goal {
    margin-left: 5px;
  }
  .click-thru .decline {
    float: none;
    margin-top: 0;
  }
}
/* iPad (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  body.mainPage.click-thru {
    padding-top: 50px;
  }
}
/* Spinner specific style fixes */
.ui-controlgroup-vertical .ui-spinner-input {
  /* Support: IE8 only, Android < 4.4 only */
  width: 75%;
  width: calc(100% - 2.4em);
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
  border-top-style: solid;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  margin-right: 1.5em;
}

.ui-spinner-button {
  width: 1.6em;
  height: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  cursor: default;
  display: block;
  overflow: hidden;
  right: 0;
}

/* more specificity required here to override default borders */
.ui-spinner a.ui-spinner-button {
  border-top-style: none;
  border-bottom-style: none;
  border-right-style: none;
}

.ui-spinner-up {
  top: 0;
}

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

.ieOnlyMask {
  overflow: hidden\0 /IE89;
  _overflow: hidden;
  *overflow: hidden;
}

/*
!* TBE-11444: Fix height of dropdowns in CKEditor *!
.cke_skin_v2 .cke_rcombo .cke_text {
    height: 14px !important;
}

!*TBE-15226: height issue for CKEditor input *!
_dialog_ui_input_text input[type="text"] {
    height: auto;
    line-height: 14px;
    margin-bottom: 0px;
    box-sizing: border-box;
}
*/
/*TBE-11350,11318,11613 : Setting select box sizes to auto so that it shows the box with the correctly computed width instead of the default 210px*/
#reqSelectedStatusOnCandCount, #reqCandHigherThenScore, #lastUpdateNumDays, #excludeOlderThanMonths {
  width: auto;
}

/*TBE-11318 : These are in the RatingScaleUpdate page. Let them have a minimum width so that they align properly*/
#displayToolId, #ratingToolId {
  min-width: 110px;
  width: auto;
}

/*TBE-11630 : Adding here so as to minimize impact of the fix. Can be fixed in CWebHelper.getStatusSelect() too with more testing*/
.candidates #status {
  min-width: 220px;
  width: auto;
}

#devPanelDiv {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: 32000;
  width: 1000px;
  padding: 5px 0 0 5px;
  border-style: solid;
  border-width: 0 1px 1px 0;
}

#devPanelDiv select {
  height: auto;
}

#devPanelDiv .btn, #showDevPanelButton .btn {
  padding: 2px 5px;
}

#showDevPanelButton {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px;
  visibility: hidden;
  z-index: 32000;
}

/*TBE-11386 : Add a -5px margin to lift the table up so that it aligns with the label*/
#employeeTable {
  margin-top: -5px;
}

.reportsListTable {
  width: 100%;
}

.reportsListTable tbody {
  border: 0px solid #ccc;
}

.reportsListTable tr td {
  height: 26px;
}

/* TBE-11543 :  Fixed this so as to remove paddings and widen the borders to fully fill the table. If it is desired for all accordions we could remove #reportContent_td */
#reportContent_td .ui-accordion .ui-accordion-content {
  padding: 0px;
}

.pointer-cursor {
  cursor: pointer !important;
}

.reviewTemplateIcon {
  height: 20px;
  width: 24px;
}

.refreshIcon {
  background-position: 11.713% 81.381%;
  background-repeat: no-repeat;
  width: 12px;
  height: 11px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .refreshIcon {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

span.refreshIcon {
  display: inline-block;
}

img.fieldDateOnHover {
  display: none;
}

.DataTableOddRow:hover img.fieldDateOnHover,
.DataTableEvenRow:hover img.fieldDateOnHover {
  display: inline-block;
}

.arrowTipLeft {
  float: left;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid;
  /* border-right color needs to be set manually in element using this class */
}

.arrowBody {
  float: left;
  height: 16px;
  padding: 0 11px 0 4px;
  font-size: 10px;
  font-weight: bold;
  color: #ffffff;
  /* background-color needs to be set manually in element using this class */
}

#langDiv {
  float: right;
  margin-top: -35px;
}

#langDiv ul.dropdown-menu {
  border-top: 1px solid #608FAF;
  top: auto;
}

#langDiv > ul {
  margin-bottom: 0;
}

#langDiv a.selected-lang {
  font-weight: bold;
}

td.ListViewInAccordionCell {
  height: 20px;
  padding: 5px;
}

td.ListViewInAccordionCellBorder {
  border-bottom: 1px solid #AAADAD;
}

.ListViewInAccordionHeader {
  text-align: left;
  height: 32px;
  padding: 5px;
}

/* Fix for https://engineering.tbetaleo.com/jira/browse/TBE-12865 in IE8 */
.transparent50 .multiraterProgressbar {
  margin-bottom: -7px;
}

div.cal-date-range-width {
  width: 120px;
  display: inline-block;
}

.smallText > div.cal-date-range-width {
  width: 88px;
  display: inline-block;
  padding-top: 20px;
}

.publish-refresh-header {
  background-position: 36.875% 91.706%;
  background-repeat: no-repeat;
  height: 34px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  padding-left: 45px;
  line-height: 34px;
  font-size: 18px;
  display: inline-block;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .publish-refresh-header {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.publish-refresh-body {
  margin: 0 0 5px 40px;
  padding: 4px;
}

.dependent-orgs > div {
  padding-left: 60px;
  display: inline-block;
}

.dependent-orgs-name {
  font-weight: bold;
}

.dependent-orgs-code {
  /*nothing for now*/
}

.centered {
  margin-left: auto;
  margin-right: auto;
}

.noTitleDialog .ui-dialog-titlebar {
  border: 0 none;
  display: none;
  font-size: 14px;
  padding: 0 5px;
}

.bold {
  font-weight: bold;
}

/* PDF Viewer */
#pdf-viewer {
  margin: 0 auto;
  min-width: 600px;
  min-height: 100%;
}

.pdf-pagination {
  float: right;
}

.pdf-pagination .pagination {
  width: auto;
}

#pdf-viewer .ajax-loader {
  text-align: center;
  margin-top: 20px;
}

#pdf-viewer .pdf-page {
  margin: 0 auto;
  border: 1px solid black;
  z-index: 1;
  background-size: contain;
  height: 1325px;
  min-width: 384px;
}

#pdf-viewer .fields {
  z-index: 100;
  position: absolute;
}

#pdf-viewer .fields input[type=text], #pdf-viewer .fields input[type=password],
#pdf-viewer .fields input[type=checkbox], #pdf-viewer .fields textarea {
  padding: 0;
  position: absolute;
  margin-top: -2px;
  cursor: pointer;
}

#pdf-viewer .fields input.textbox {
  padding-left: 3px;
  color: black;
}

#pdf-viewer .fields textarea.textbox {
  padding: 5px;
  color: black;
}

#pdf-viewer .fields input.checkbox {
  min-height: 0;
}

#pdf-viewer .fields input[type=checkbox] {
  margin-left: 2px;
  margin-top: 0;
}

#pdf-viewer .required, #esign-dialog .required {
  border-color: red;
  font-weight: normal;
}

#esign-dialog textarea {
  width: 90%;
}

#esign-dialog .comments-employee {
  padding: 5px 5px 5px 10px;
  color: blue;
  margin-bottom: 10px;
}

#pdf-viewer .field-dialog > form > div {
  margin-bottom: 20px;
}

.field-dialog {
  display: none;
  padding: 10px 20px;
}

.field-dialog > form > div > span {
  margin-right: 5px;
  vertical-align: bottom;
}

.field-dialog select, .field-dialog input[type=text] {
  margin-top: 0;
  margin-bottom: 0;
}

.field-dialog .advanced {
  float: right;
  margin-top: -30px;
}

#advanced-settings {
  border-top: 1px dotted silver;
  margin-top: 10px;
  padding-top: 10px;
}

#advanced-settings .controls {
  margin-left: 30px;
}

#advanced-settings input[type=text] {
  width: 35px;
}

#pdf-viewer #thumbnails {
  margin-top: 2px;
}

#pdf-viewer #thumbnails .thumb a {
  min-height: 205px;
  min-width: 160px;
}

#pdf-viewer #thumbnails .thumb img {
  border: 1px solid black;
  width: 150px; /* causes issues in IE8 */
  height: 194px;
}

#pdf-viewer #thumbnails .thumb .pageNumber {
  margin-top: -20px;
  margin-left: 5px;
}

#pdf-viewer #thumbnails .nav-tabs > li > a {
  background-color: #ffffff;
  border: none;
}

#pdf-viewer #thumbnails .tabs-right > .nav-tabs > li > a {
  margin-left: 0;
}

#pdf-viewer #thumbnails .nav-tabs > .active {
  margin-top: 0;
}

/* indicators for thumbnails with required fields and fields */
#pdf-viewer .arrow {
  position: absolute;
  right: -5px;
  margin-top: -200px;
}

/* End PDF Viewer */
/* Used for high lighting "on behalf of" messages in Performance Review,Goals,Offers etc */
.onBehalfOfFont {
  display: inline;
}

/* Dashboard Styles */
.dashboard .span12 {
  margin-top: 20px;
}

.ModernUI > .container-fluid, .ModernUI > .container-sm, .ModernUI > .container-md, .ModernUI > .container-lg, .ModernUI > .container-xl, .ModernUI > .container-xxl {
  background-color: #f0f0f0;
}

.ModernUI > .container-fluid, .ModernUI > .container-sm, .ModernUI > .container-md, .ModernUI > .container-lg, .ModernUI > .container-xl, .ModernUI > .container-xxl {
  margin-top: -10px;
}

.ModernUI .container-fluid > #sidebar h4, .ModernUI .container-sm > #sidebar h4, .ModernUI .container-md > #sidebar h4, .ModernUI .container-lg > #sidebar h4, .ModernUI .container-xl > #sidebar h4, .ModernUI .container-xxl > #sidebar h4, .ModernUI .container-fluid > #sidebar .h4, .ModernUI .container-sm > #sidebar .h4, .ModernUI .container-md > #sidebar .h4, .ModernUI .container-lg > #sidebar .h4, .ModernUI .container-xl > #sidebar .h4, .ModernUI .container-xxl > #sidebar .h4 {
  color: white;
}

.dashboard .container-widgets {
  padding: 0 20px 0 0;
  min-width: 700px;
}

.dashboard .widgets {
  height: 100%;
  min-width: 500px;
}

.dashboard .widgets > li {
  height: auto;
  margin-bottom: 10px;
  text-align: center;
}

.dashboard .widgets .ui-sortable {
  white-space: nowrap;
}

.dashboard #summary-bar .ui-sortable-helper {
  border: 1px solid silver !important;
}

.dashboard .carousel .widget {
  margin-left: 10px;
}

.dashboard .widget {
  width: 500px;
  height: 320px;
  display: inline-block;
  border: 2px solid #e5e4dd;
  margin-top: 10px;
}

.dashboard .widgets .configure {
  float: left;
  width: 20px;
  height: 20px;
  padding: 0;
}

.dashboard #summary-bar.empty, .dashboard #chart-bar.empty, .dashboard #ojet-bar.empty {
  background-color: #eee;
}

.dashboard .widget-bars-loading {
  margin-top: 75px;
  font-size: 24px;
  text-align: center;
  padding: 10px 0;
  color: black;
}

.dashboard .widgets-empty {
  margin-top: 75px;
  font-size: 20px;
  text-align: center;
  padding: 10px 0;
  color: silver;
}

.dashboard .clock {
  min-height: 130px;
  background: black;
  padding-top: 10px;
  border: 3px solid #e5e4dd;
}

.dashboard .clock, .dashboard .reports, .dashboard #task-bar,
.dashboard #summary-bar, .ModernUI .container-fluid > #sidebar, .ModernUI .container-sm > #sidebar, .ModernUI .container-md > #sidebar, .ModernUI .container-lg > #sidebar, .ModernUI .container-xl > #sidebar, .ModernUI .container-xxl > #sidebar {
  margin-bottom: 15px;
}

.ModernUI .container-fluid > #sidebar, .ModernUI .container-sm > #sidebar, .ModernUI .container-md > #sidebar, .ModernUI .container-lg > #sidebar, .ModernUI .container-xl > #sidebar, .ModernUI .container-xxl > #sidebar {
  border: 0;
  margin-top: 117px;
}

.dashboard #task-bar, .dashboard #summary-bar, .dashboard #chart-bar, .dashboard .reports, .dashboard #ojet-bar {
  background-color: #FFFFFE;
}

.dashboard .heading {
  font-family: "Roboto", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  color: #fff;
  position: relative;
}

.dashboard .heading:before, .dashboard .heading:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 0;
}

.dashboard .heading:after {
  right: 10px;
  left: auto;
  -webkit-transform: skew(8deg) rotate(3deg);
  -moz-transform: skew(8deg) rotate(3deg);
  -ms-transform: skew(8deg) rotate(3deg);
  -o-transform: skew(8deg) rotate(3deg);
  transform: skew(8deg) rotate(3deg);
}

.dashboard .heading:hover, .modal.ui-draggable .modal-header {
  cursor: move;
}

.ModernUI .modal-header, .ModernUI .modal-header span, .ModernUI .modal-header .close,
.docpreview-title, .docpreview-title .close {
  color: #fff;
}

.dashboard .heading .handle {
  background-position: 47.275% 71.453%;
  background-repeat: no-repeat;
  width: 68px;
  height: 12px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: block;
  position: absolute;
  right: 15px;
  margin-top: -18px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .dashboard .heading .handle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.dashboard .summary-item .handle {
  background-position: 41.2% 72.7%;
  background-repeat: no-repeat;
  width: 11px;
  height: 46px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  position: absolute;
  margin-left: 12px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .dashboard .summary-item .handle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.dashboard .show-more {
  text-align: center;
  border-top: 1px solid silver;
  background: white;
  color: #666;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0;
}

.dashboard .show-more:hover {
  color: #fff;
  cursor: pointer;
}

.dashboard .show-more .caret {
  margin-top: 7px;
}

.dashboard .show-more .caret-up {
  margin-top: 3px;
}

.caret-up {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid transparent;
  border-bottom: 4px solid black;
}

.ModernUI .modal.draggable {
  width: 800px !important;
  position: fixed !important;
  margin-left: -400px;
}

.dashboard #summary-bar {
  max-height: 150px;
  min-height: 242px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.dashboard .summary-items {
  background-color: white;
  /* responsive grid */
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

.dashboard .summary-item {
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  /* put the border on the inside of the box */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Roboto", Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-size: 14px;
  color: #666;
  height: 50px;
  /* responsive grid */
  position: relative;
  float: left;
  overflow: hidden;
  width: 25%;
}

.dashboard .summary-item.odd {
  background-color: #f3f3f3;
}

.dashboard .summary-item.odd .summary-value {
  background-color: #ededeb;
}

.dashboard .summary-item.odd .summary-title:after {
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f3f3f3 20px); /* FF3.6+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f3f3f3 20px); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f3f3f3 20px); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #f3f3f3 20px); /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #f3f3f3 20px); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#f3f3f3", GradientType=1); /* IE6-9 */
}

@media screen and (max-width: 1400px) {
  .dashboard .summary-item {
    width: 33.3333333333%; /* Fallback */
    width: -webkit-calc(100% / 3);
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 1000px) {
  .dashboard .summary-item {
    width: 50%; /* Fallback */
    width: -webkit-calc(100% / 2);
    width: 50%;
  }
}
.dashboard .summary-title {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  margin-left: 30px;
  overflow: hidden;
}

.dashboard .summary-title:after {
  display: block;
  position: absolute;
  right: 66px;
  top: 5px;
  bottom: 5px;
  width: 30px;
  background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 20px); /* FF3.6+ */
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 20px); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 20px); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 20px); /* IE10+ */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 20px); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffffff", endColorstr="#ffffff", GradientType=1); /* IE6-9 */
  content: "";
}

.dashboard .summary-value {
  font-size: 32px;
  line-height: 18px;
  color: #3399ff;
  font-family: "Roboto", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  float: right;
  padding: 16px 5px 10px;
  width: 66px;
  text-align: center;
  height: 50px;
  border-left: 1px solid #D1D1D0;
  border-bottom: 1px solid #D1D1D0;
  box-sizing: border-box;
  background-color: #fefefe;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.dashboard #task-bar {
  background: #eee url("../../img/UIv9/tasks-background.png") repeat-x;
  min-height: 221px;
  max-height: 180px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.dashboard .task-items {
  /* responsive grid */
  padding: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 4px;
}

.dashboard .task-item {
  margin-top: 5px;
  margin-left: 10px;
  padding-top: 40px;
  font-family: "Roboto", Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-size: 14px;
  /* responsive grid */
  position: relative;
  float: left;
  overflow: hidden;
  width: 25%; /* Fallback */
  width: -webkit-calc(100% / 4);
  width: 25%;
}

.dashboard .task-item.sticky-note {
  background-position: 45.028% 85.91%;
  background-repeat: no-repeat;
  width: 165px;
  height: 131px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .dashboard .task-item.sticky-note {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.dashboard .task-title {
  width: 85%;
  margin: 0 auto;
  white-space: normal;
  text-align: center;
  overflow: hidden;
  height: 55px;
}

.dashboard .task-value {
  width: 100%;
  text-align: center;
  font-family: "Roboto", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #003366;
  font-size: 42px;
  margin-top: 15px;
}

.dashboard .task-item.hidden {
  display: none;
}

.dashboard .reports {
  margin-top: 10px;
  height: 63.333333%;
  color: #666;
  font-family: "Roboto", Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif", "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
  font-size: 13px;
  max-height: 750px;
  position: relative;
  overflow: hidden;
}

.dashboard .reports .heading {
  font-size: 14px;
  margin-bottom: 5px;
  cursor: default;
}

.dashboard .report-item {
  padding: 5px 20px;
  border-bottom: 1px solid silver;
}

.dashboard .report-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dashboard .report-title {
  color: #3399ff;
  font-weight: bold;
}

.dashboard .reports-empty {
  padding: 10px 5px 10px 10px;
}

span.switchBarButtonActive {
  padding: 5px 40px;
  border-radius: 0px;
  border-width: 2px;
  border-style: solid;
  font-weight: bold;
  margin-right: 3px;
}

span.switchBarButtonInactive {
  padding: 5px 40px;
  border-radius: 0px;
  margin-right: 3px;
}

/* Remove the following 3 rules after upgrading to Bootstrap 2.3 */
.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
  height: 15px;
}

.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  vertical-align: middle;
}

/* TBE-14213: Fix random left/right alignment in IE10. This seems to be happening because
   'left' or 'right' CSS classes are added to the slide. Doesn't happen in other browsers. */
.carousel-inner .chart.left, .carousel-inner .chart.right {
  text-align: center;
}

/* center carousel indicators */
.carousel-indicators.middle {
  left: 0;
  right: 0;
  top: auto;
  bottom: 15px;
  text-align: center;
}

.carousel-indicators.middle li {
  float: none;
  display: inline-block;
}

.carousel-indicators .active {
  background-color: #fff;
}

/* End of Bootstrap 2.3 rules */
.dashboard .carousel-indicators {
  bottom: -20px;
  top: inherit;
}

.dashboard .carousel-indicators .active {
  background-color: black;
}

.carousel-control.left, .carousel-control.right {
  text-align: center;
}

.dashboard .carousel-indicators li {
  background-color: gray;
}

.dashboard #chart-bar, .dashboard #ojet-bar {
  margin-bottom: 15px;
}

.dashboard .chart-title {
  margin-top: 5px;
  font-weight: bold;
  position: absolute;
  width: 500px;
  background-color: white;
}

/*
  Allow angular.js to be loaded in body, hiding cloaked elements until
  templates compile.  The !important is important given that there may be
  other selectors that are more specific or come later and might alter display.
 */
[ng\:cloak], [ng-cloak], .ng-cloak {
  display: none !important;
}

.dashboard .events, .carousel-control {
  cursor: pointer;
}

/* Make Bootstrap's modal background match jQuery UI's */
.modal-backdrop, .modal-backdrop.fade.in {
  background: #aaaaaa url(jquery-ui/bootstrap/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;
  opacity: 0.3;
  filter: alpha(opacity=30);
}

#dialog-frame {
  min-width: 560px;
  max-width: 75%;
}

/* TBE-14294: Add position: relative to .modal-body so absolutely-positioned widgets work properly */
#dialog-frame .modal-body {
  position: relative;
}

.dashboard .twoup .widget, .dashboard .twoup .chart-title {
  width: 45%;
  min-width: 463px;
  max-width: 500px;
}

.MyView .switch {
  float: right;
  margin-top: 15px;
  margin-right: 5px;
}

.switch.disabled {
  color: #999;
  cursor: pointer;
}

a.disabled, a.disabled:hover {
  color: #999;
  cursor: not-allowed;
  text-decoration: none;
}

.ModernUI .switch {
  display: block;
  text-align: center;
  margin-top: 5px;
  color: #333333;
}

.ModernUI .span12 .switch {
  position: absolute;
  right: 50px;
  margin-top: -22px;
}

.widgets-counter {
  height: 12px;
  margin: 0;
  position: relative;
  top: 19px;
  width: 12px;
  left: 17px;
  background-color: white;
  padding: 1px 1px 1px 1px;
  color: black;
  font-weight: bold;
  border: 1px solid black;
}

.imageChartType, .removeChart {
  margin-top: -3px;
}

/* Sidebar for Dashboard */
.ModernUI #sidebar .configure {
  width: 20px;
  height: 20px;
}

.ModernUI #sidebar #searchBox .search {
  top: 46px;
}

/* iPad fixes for Dashboard */
@media screen and (max-device-width: 1024px) {
  .dashboard .show-more {
    padding: 10px 0;
  }
}
/* End of Dashboard */
/* Social Sourcing iFrame */
iframe#SSrc {
  width: 980px;
  height: 1200px;
  overflow: hidden;
}

/* Social Sourcing loading div */
div#ssloading {
  width: 980px;
  height: 1200px;
  display: table-cell;
  text-align: center;
}

div#ssloadingInside {
  width: 980px;
  height: 350px;
  display: table-cell;
}

/* Document preview Modal styling */
.docpreview-title {
  padding: 0;
  padding-top: 12px;
}

.docpreview-title h4, .docpreview-title .h4 {
  text-align: center;
  padding-bottom: 11px;
  padding-left: 15px;
  padding-right: 15px;
}

.docpreview-title .close {
  padding-right: 15px;
  background-color: inherit;
  color: #fff;
  border: 0px !important;
  opacity: inherit;
}

.docpreview-title .close:hover {
  border: 0px;
  box-shadow: none;
}

.docpreview-header {
  padding-left: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  height: 45px;
}

.docpreview-header span {
  color: #525054;
  font-size: 12pt;
}

.docpreview-body {
  padding: 0;
}

.docpreview-spinner {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
  margin-top: 280px;
}

.modal-resizable {
  width: 100%;
  overflow: auto;
  max-height: 100% !important;
}

#docpreview-resizable-content {
  padding: 0;
  overflow: hidden;
  max-width: 100%;
  max-height: 100% !important;
}

.docpreview-frame {
  max-width: 80% !important;
  z-index: 1250;
}

.docpreview-modal-backdrop {
  z-index: 1249;
}

.docpreview-status-change-modal-backdrop {
  z-index: 2999;
}

.docpreview-personinfo {
  background-color: white;
  border: 2px solid silver;
  margin-bottom: 3px;
  padding: 3px 5px 5px;
  width: 200px;
  float: left;
  position: relative;
  height: 35px;
}

.docpreview-personinfo .details {
  height: 40px;
  position: relative;
  padding-left: 7px;
}

.docpreview-personinfo .details > a {
  display: block;
  height: 17px;
  overflow: hidden;
  padding-top: 2px;
  padding-bottom: 5px;
  white-space: nowrap;
  float: left;
  font-size: 10pt;
  text-overflow: ellipsis;
  width: 190px;
}

.docpreview-personinfo .details a:hover {
  text-decoration: none;
}

.docPreviewHeaderTable {
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 0px;
  text-align: center;
  word-wrap: break-word;
  table-layout: fixed;
  margin: 0 auto;
}

.docPreviewHeaderTable td {
  font-weight: normal !important;
  word-wrap: break-word;
  color: #525054;
  font-size: 12pt;
}

.docpreview-menu {
  margin-bottom: 3px;
  padding: 3px 5px 5px;
  width: 200px;
  float: right;
  position: relative;
  height: 35px;
}

.docpreview-menu-cand {
  background-color: white;
  border: 2px solid silver;
}

.docpreview-info {
  margin-bottom: 3px;
  padding: 3px 5px 5px;
  width: 200px;
  float: left;
  position: relative;
  height: 35px;
}

.docpreview-personinfo .details .moreInfo {
  bottom: 5px;
  font-size: 9pt;
  font-weight: normal;
  position: relative;
  text-overflow: ellipsis;
  width: 160px;
}

.docpreview-header .flagIcon {
  width: 18px;
  height: 16px;
  display: block;
  position: absolute;
  left: 200px;
  top: 74px;
  cursor: pointer;
}

.docpreview-header .flagDisabled {
  background-position: 11.619% 90.765%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .docpreview-header .flagDisabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.docpreview-header .flagEnabled {
  background-position: 11.619% 92.885%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .docpreview-header .flagEnabled {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.ui-dialog-no-close .ui-dialog-titlebar-close {
  display: none;
}

.previewGlassSection {
  width: 60px;
}

.previewGlass {
  background-position: 22.27% 86.826%;
  background-repeat: no-repeat;
  width: 21px;
  height: 18px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .previewGlass {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

table.datagrid tr td span.previewGlass, table.DatagridTable tr td span.previewGlass {
  display: none;
}

table.datagrid tr:hover td span.previewGlass, table.DatagridTable tr:hover td span.previewGlass {
  display: inline-block;
}

#docpreview-status-change-modal {
  position: fixed;
  z-index: 3000;
  background: white;
  top: 300px;
  left: 500px;
  width: 800px;
  padding: 10px;
  margin: -250px 0 0 -280px;
}

ul#report-tabs li.dropdown a.dropdown-toggle {
  white-space: nowrap;
  display: inline-block;
}

div.ResultsBox div.report-list-item div.reportFlaggedDiv:hover {
  background-color: #DFF4FF;
}

.ReportsHeader {
  padding-left: 43px;
}

.scroll-right-arrow {
  background-position: 25.849% 87.88%;
  background-repeat: no-repeat;
  width: 15px;
  height: 23px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  border: 0px;
  vertical-align: middle;
  text-align: center;
  margin-top: -3px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .scroll-right-arrow {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.scroll-left-arrow {
  background-position: 25.849% 89.877%;
  background-repeat: no-repeat;
  width: 15px;
  height: 23px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  border: 0px;
  vertical-align: middle;
  text-align: center;
  margin-top: -3px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .scroll-left-arrow {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.cursor-readonly {
  cursor: default !important;
}

#scrollLeft, #scrollRight {
  width: 15px;
  border: 0px;
  padding: 0px 5px 0px 0px;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.scheduledActive {
  background-position: 25.772% 86.197%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 0px;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .scheduledActive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.scheduledNotActive {
  background-position: 25.772% 85.178%;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 0px;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .scheduledNotActive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.interviewCellFree {
  background-color: white;
  border: 1px solid white;
  line-height: 12px;
  padding: 0px !important;
}

.interviewRoomCellFree {
  background-color: white;
  border: 1px solid lightgray;
  border-top: 1px solid lightgray !important;
  line-height: 12px;
  padding: 0px !important;
}

.interviewCellBusy {
  background-color: lawngreen;
  border: 1px solid darkgreen !important;
  line-height: 12px;
  padding: 0px !important;
}

.interviewRoomHover {
  border: 1px solid white;
  padding: 1px 2px;
  white-space: nowrap;
}

td.report-engine-information-box {
  background-color: #FDFCEB;
}

td.report-engine-information-box > table,
div.InformationContent,
.DataTableOddRow,
#emptyTasksTextSpan {
  background-color: inherit;
}

.reportingConvertInactive {
  background-position: 22.403% 92.569%;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 0px;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .reportingConvertInactive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.reportingConvertActive {
  background-position: 22.403% 93.759%;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 0px;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .reportingConvertActive {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.reportingExpressionInvalid {
  background-position: 25.768% 93.05%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  margin-left: 0px;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .reportingExpressionInvalid {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.crm-modal-message-dialog-table {
  padding-top: 24px;
  padding-left: 38px;
  padding-right: 38px;
}

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

.info-margin-right {
  margin-right: 50px;
  display: table;
}

section#bookmark-bar-section {
  width: 99%;
  margin: auto;
}

div#setting-icon {
  padding-left: 5px;
  padding-right: 3px;
  float: right;
  position: relative;
  bottom: 3px;
}

div#bookmark-links {
  margin-left: 20px;
  padding-right: 5px;
  text-align: right;
  overflow: hidden;
}

.bookmark-links-text {
  display: inline-block;
  padding: 6px 10px 6px 10px;
}

.bookmark-bar {
  display: none;
}

.bookmark-show-always {
  display: block;
}

.show-bookmark {
  display: none;
}

/* override button styles */
input[type=button], button, .btn {
  background-color: #f5f7fa;
  border: 1px solid #dddddd !important;
  background-color: #ffffff;
  color: #418fd8;
}

.btn {
  box-shadow: none;
  transition: none;
  background-image: none;
  border-radius: 0;
  color: #418fd8;
}

.btn-primary {
  background-color: #3373af !important;
}

.btn-danger {
  background-color: #da4f49 !important;
}

.btn:hover {
  color: #418fd8;
  transition: none;
}

.btn-primary, .btn-danger, .btn-success, .btn-primary:hover, .btn-danger:hover, .btn-success:hover {
  color: #fff !important;
}

.select-bar, .btn-group > .btn:first-child, .btn-group > .btn:last-child, .btn-group > .dropdown-toggle {
  border-radius: 0;
  border: 0;
}

.btn-group .btn:not(.btn-mini) {
  margin-right: 5px;
}

.action-btn {
  padding: 0px 5px 5px 4px !important;
}

button {
  white-space: nowrap;
  display: inline-block;
  padding: 4px 10px 4px;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  box-shadow: none;
  transition: none;
  background-image: none;
  border: none;
  border-radius: 0;
  color: #418fd8;
}

button:hover {
  background-color: #eee;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ui-dialog, .ui-widget-header, .nav-tabs > li > a, .nav-tabs .dropdown-menu, .dropdown-menu, .alert,
.available-trees h3,
.available-trees .h3, .orgChart .header, .orgChart div.card, .modal {
  border-radius: 0 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}

.datagrid thead tr th {
  border-bottom: 1px solid #dddddd;
}

.nav-tabs .dropdown-toggle .caret {
  border-bottom-color: #fff;
  border-top-color: #fff;
}

.nav-tabs li.dropdown.open .caret {
  border-bottom-color: #333;
  border-top-color: #333;
}

#toplinkcontainer .nav > li.open > a {
  color: #333333;
}

.dropdown .caret {
  border-top: 4px solid #333333;
}

textarea, input, .uneditable-input {
  border-radius: 0 !important;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
}

div#reportTabs {
  background: #f0f0f0;
}

div#reportTabs .ResultsBox {
  background: #ffffff;
}

.ResultsBox, .PortletBox, .InformationBox, #tabs_container, #searchboxContainer, #recentItems {
  border: 1px solid #dddddd;
}

td.formFieldNormal div.btn-group {
  padding-top: 0;
}

.ui-dialog .ui-dialog-buttonpane button {
  background-image: none;
  text-shadow: none;
  box-shadow: none;
}

.ui-dialog .ui-dialog-buttonpane button.btn-primary {
  color: #fff;
}

#sidebar .btn.search {
  border: 0 !important;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background-image: none;
  background-color: #fff;
}

.pubbox a.btn {
  height: 20px;
  padding: 10px;
}

@media screen and (max-height: 700px) {
  #leftpanelContainer #recentItems ul {
    overflow-y: auto;
    height: 240px;
  }
}
.datagrid thead tr th:first-child, .datagrid tbody tr td:first-child {
  padding-left: 17px;
}

div#divButtonsBarTop {
  padding-left: 0px;
}

.ActionLinkHeadBottom .btn-group, .ResultsHeader .btn-group {
  padding-top: 0px;
  padding-left: 0px;
}

.PortletBox table.PortletContent {
  border-collapse: separate;
}

.ui-tabs-selected a {
  background-color: #fff !important;
}

.ui-tabs .nav-tabs li {
  opacity: 1;
}

.ui-tabs-active a:not(.configure) {
  background-color: #fff !important;
  color: #000 !important;
}

li.ui-tab:focus {
  outline: none;
}

[aria-describedby=displayAutoEventNotificationDetails] + .ui-widget-overlay {
  z-index: 20001 !important;
}

.cluetip-inner hr {
  margin: 5px 0;
}

.downtime .btn {
  vertical-align: top;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

.navbar .nav > li > a:hover {
  text-decoration: none;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.container-widgets-modal .arrows {
  width: 30px;
}

.dashboard .container-widgets .row {
  padding-bottom: 5px;
}

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

.recentItem.list-group-item, #recentItems .list-group-item {
  border-right: 0;
  padding-left: 0;
}

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

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

.btn:hover {
  color: #418fd8;
  transition: none;
  background-color: #e6e6e6;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.container-widgets-modal .arrows {
  width: 30px;
}

.dashboard .container-widgets .row {
  padding-bottom: 5px;
}

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

.recentItem.list-group-item {
  border-right: 0;
  padding-left: 0;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.ResultsBox .ResultsHeader {
  heigt: 55px;
}

.ResultsBox .ResultsHeader .btn-group {
  float: left;
}

.ResultsBox .ActionLinkHeadBottom .btn-group {
  float: left;
}

.ck.ck-editor {
  width: 1000px !important;
}

.ck-editor__editable_inline:not(.ck-comment__input *) {
  height: 400px;
  overflow-y: auto;
}

.login input[type=text], .login input[type=password] {
  height: 40px;
}

.navbar {
  padding: 0px;
}

#toplinkcontainer .navbar div > ul .dropdown-menu, #toplinkcontainer .nav .dropdown-menu {
  top: 30px;
}

.container-fluid > #sidebar input, .container-sm > #sidebar input, .container-md > #sidebar input, .container-lg > #sidebar input, .container-xl > #sidebar input, .container-xxl > #sidebar input {
  outline: none;
}

#recentItems .configure {
  margin-top: -36px;
}

#sidebar #minimize_panel {
  padding-right: 10px;
  cursor: pointer;
}

#sidebar .advancedlinkContainer {
  margin: 5px 0px 14px 14px;
}

hr.lgRuler {
  opacity: 1;
}

#leftpanelContainer #recentItems li .details > span {
  height: auto;
  overflow: hidden;
}

.container-fluid > #sidebar input, .container-sm > #sidebar input, .container-md > #sidebar input, .container-lg > #sidebar input, .container-xl > #sidebar input, .container-xxl > #sidebar input {
  outline: none;
}

#sidebar #minimize_panel {
  padding-right: 10px;
  cursor: pointer;
}

#sidebar .advancedlinkContainer {
  margin: 5px 0px 14px 14px;
}

#recentItems .configure {
  margin-top: -36px;
}

.navbar .nav > li:first-child > a, .navbar .nav > li:first-child > a:hover {
  width: 38px;
}

.pubbox {
  width: 350px;
}

.pubbox label {
  text-align: initial;
  float: left;
}

.dashboard .summary-value {
  line-height: 18px;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

.navbar .nav > li > a:hover {
  text-decoration: none;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.container-widgets-modal .arrows {
  width: 30px;
}

.dashboard .container-widgets .row {
  padding-bottom: 5px;
}

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

.recentItem.list-group-item, #recentItems .list-group-item {
  border-right: 0;
  padding-left: 0;
}

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

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

.btn:hover {
  color: #418fd8;
  transition: none;
  background-color: #e6e6e6;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.container-widgets-modal .arrows {
  width: 30px;
}

.dashboard .container-widgets .row {
  padding-bottom: 5px;
}

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

.recentItem.list-group-item {
  border-right: 0;
  padding-left: 0;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.ResultsHeader, .ActionLinkHeadBottom {
  box-sizing: content-box;
}

.ResultsBox .ResultsHeader .btn-group {
  float: left;
}

.ResultsBox .ActionLinkHeadBottom .btn-group {
  float: left;
}

.ActionLinkHeadBottom .btn-group {
  margin-top: 9px;
}

.dropdown-item {
  font-size: 12px;
}
.dropdown-item li a {
  padding: 3px 15px;
  line-height: 18px;
}

.nav-item.dropdown {
  display: flex;
}

.dropdown-menu .active > a {
  background-color: #0088cc;
}

.navbar .nav > li > a:hover {
  text-decoration: none;
}

#toplinkcontainer div.nav > a {
  text-decoration: none;
}
#toplinkcontainer div.nav > a:hover {
  text-decoration: underline;
}

.container-widgets-modal .arrows {
  width: 30px;
}

.dashboard .container-widgets .row {
  padding-bottom: 5px;
}

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

.recentItem.list-group-item, #recentItems .list-group-item {
  border-right: 0;
  padding-left: 0;
}

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

.btn-check:focus + .btn, .btn:focus {
  box-shadow: none;
}

.btn:hover {
  color: #418fd8;
  transition: none;
  background-color: #e6e6e6;
}

select, select.form-control, .form-select, .form-select.form-control, textarea, textarea.form-control, input[type=text], input[type=text].form-control, input[type=password], input[type=password].form-control, input[type=datetime], input[type=datetime].form-control, input[type=datetime-local], input[type=datetime-local].form-control, input[type=date], input[type=date].form-control, input[type=month], input[type=month].form-control, input[type=time], input[type=time].form-control, input[type=week], input[type=week].form-control, input[type=number], input[type=number].form-control, input[type=email], input[type=email].form-control, input[type=url], input[type=url].form-control, input[type=search], input[type=search].form-control, input[type=tel], input[type=tel].form-control, input[type=color], input[type=color].form-control, .uneditable-input, .uneditable-input.form-control {
  display: inline-block;
  padding: 4px;
  font-size: 13px;
  line-height: 18px;
  color: #555555;
}

input.form-control, textarea.form-control {
  width: 220px;
}

textarea:focus, .form-control:focus, .form-select:focus, input[type=text]:focus, input[type=password]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=date]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus, input[type=number]:focus, input[type=email]:focus, input[type=url]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=color]:focus, .uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0px 8px rgba(82, 168, 236, 0.6);
}

.btn {
  font-size: 13px;
  padding: 4px 10px 4px;
  vertical-align: bottom;
  line-height: 18px;
}

select, select.form-select {
  height: 28px;
  font-size: 12px;
  border-radius: 0;
  padding: 4px 30px 4px 5px;
  border-radius: 0;
}

.fit:not(.pickList.form-select), select:not(.pickList.form-select), .form-select:not(.pickList.form-select) {
  width: auto;
}

.minWidth220.form-select {
  min-width: 220px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

textarea, textarea.form-control {
  width: auto;
}

.radio, .checkbox {
  min-height: 18px;
  padding-left: 18px;
}

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

label {
  display: block;
  margin-bottom: 5px;
}

.form-select[multiple] {
  height: auto;
}

.pubbox input[type=text], .pubbox input[type=password] {
  width: 100%;
}

.alert {
  padding: 8px 35px 8px 14px;
}

.alert-danger, .alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

pre {
  display: block;
  padding: 8.5px;
  margin: 0 0 9px;
  font-size: 12.025px;
  line-height: 18px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.nav-tabs .nav-link {
  background: #4884a6;
  margin-right: 1px;
}
.nav-tabs .nav-link:hover {
  text-decoration: none;
}

.nav-tabs .nav-item.dropdown {
  display: inline-block;
}
.nav-tabs > li {
  margin-bottom: -1px;
}
.nav-tabs > .active > a, .nav-tabs .ui-tabs .ui-tabs-nav li.ui-tabs-selected a {
  padding-bottom: 6px;
}

.btn-group--block {
  display: block;
}

.ActionLinkHeadBottom .select-group {
  margin-top: 0;
}

.btn-micro.btn {
  font-size: 6px;
  line-height: 11px;
  padding: 1px 3px;
}

.dashboard .task-value {
  line-height: 11px;
}

.dashboard .task-item.sticky-note {
  box-sizing: content-box;
}

h1, .h1, h2, .h2 {
  line-height: 36px;
}

h3, .h3 {
  line-height: 27px;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.ui-tabs .ui-helper-clearfix.ui-tabs-nav > li {
  float: left;
  border-width: 0;
}

.table tbody tr:hover td, .table tbody tr:hover th {
  background-color: #f5f5f5;
}

input[type=file] {
  min-width: 300px;
}

.navbar-nav {
  flex-wrap: nowrap;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 0;
  font-family: inherit;
  font-weight: bold;
  color: inherit;
  text-rendering: optimizelegibility;
}

h1 small, .h1 small, h1 .small, .h1 .small, h2 small, .h2 small, h2 .small, .h2 .small, h3 small, .h3 small, h3 .small, .h3 .small, h4 small, .h4 small, h4 .small, .h4 .small, h5 small, .h5 small, h5 .small, .h5 .small, h6 small, .h6 small, h6 .small, .h6 .small {
  font-weight: normal;
}

h1 small, .h1 small, h1 .small, .h1 .small {
  font-size: 18px;
}

h2, .h2 {
  font-size: 24px;
  line-height: 36px;
}

h2 small, .h2 small, h2 .small, .h2 .small {
  font-size: 18px;
}

h3, .h3 {
  font-size: 18px;
  line-height: 27px;
}

h3 small, .h3 small, h3 .small, .h3 .small {
  font-size: 14px;
}

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

h4, .h4 {
  font-size: 14px;
}

h4 small, .h4 small, h4 .small, .h4 .small {
  font-size: 12px;
}

h5, .h5 {
  font-size: 12px;
}

h6, .h6 {
  font-size: 11px;
  text-transform: uppercase;
}

h1, .h1 {
  font-size: 18px;
  font-weight: 300;
  margin: 10px 0;
}

h3, .h3 {
  font-weight: normal;
  font-size: 12px;
}

.btn-close--pull-right {
  float: right;
}

input[type=file] {
  height: 25px;
  padding-bottom: 5px;
  padding-top: 0px;
  line-height: normal;
  font-size: 12px;
}

.nav > li > a:hover {
  text-decoration: none;
}

.ActionLinkHeadBottom .button-group, .ActionLinkHeadBottom .select-group {
  margin-top: 9px;
}

.carousel {
  position: relative;
  margin-bottom: 18px;
  line-height: 1;
}

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

.carousel .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -ms-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  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%;
}

.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: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  box-sizing: content-box;
}

.carousel-control.right {
  right: 15px;
  left: auto;
}

.carousel-control:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 10px 15px 5px;
  background: #333333;
  background: rgba(0, 0, 0, 0.75);
}

.carousel-caption h4, .carousel-caption .h4, .carousel-caption p {
  color: #ffffff;
}

.modal-dialog {
  max-width: 100%;
}

.btn:hover {
  text-decoration: none;
}

.modal-header.docpreview-title {
  flex-wrap: wrap;
  display: block;
}

.modal-header.docpreview-title h4, .modal-header.docpreview-title .h4 {
  order: -1;
}

.modal-header.docpreview-title .close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  text-shadow: 0 1px 0 #ffffff;
  filter: alpha(opacity=20);
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.docpreview-header {
  box-sizing: content-box;
}

.docpreview-header * {
  box-sizing: content-box;
}

.docpreview-frame {
  margin: -250px 0 0 -280px;
}

#manage_tabs_button {
  top: -1px;
}

#tabs .active a:link, #pageLayOutTabsUL .active a:link {
  min-height: 33px;
}

#recentItems .configure {
  margin-top: -30px;
}

.ActionLinkHeadBottom .select-group .btn-group, .ActionLinkHeadBottom .btn-group .btn-group {
  margin-top: 0;
}

li {
  line-height: 18px;
}

.nav-tabs > li > a, .ui-tabs .ui-tabs-nav li a {
  line-height: 18px;
}

.nav-tabs .configure, .widgets .configure {
  width: 12px;
  height: 18px;
  display: block;
  margin-bottom: -1px;
  box-sizing: content-box;
  padding-right: 12px;
  padding-left: 12px;
  border: 1px solid transparent;
}

.numberInput.form-control, .numberInput {
  width: 50px;
}

.form-control[type=file] {
  line-height: 18px;
  padding-bottom: 0;
}

#languageDiv {
  right: 10px;
}
#languageDiv #langOptionsDiv {
  width: 100px;
}

div#configure-widgets-js #available-widgets-js, #assigned-widgets-js {
  width: 275px !important;
  overflow: auto;
}

li#chart-bar #chart-container svg {
  top: auto !important;
}

select.form-select:not(.pickList.form-select) {
  width: 300px;
}

.ui-dialog .ui-dialog-titlebar-close.ui-button-icon-only {
  font-size: 0;
  margin-right: 5px;
}

.ui-dialog .ui-dialog-titlebar-close.ui-button-icon-only span {
  display: none;
}

select.form-select:not(.pickList.form-select) {
  width: auto;
}

.daysFldNameClass.form-control {
  width: 30px;
  box-sizing: content-box;
}

.color_swatch {
  box-sizing: content-box;
}

.radio.inline, .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.close:not(.btn-close) {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  order: 2;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}
.close:not(.btn-close):hover {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

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

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.container-fluid > #sidebar #searchBox .col-3, .container-sm > #sidebar #searchBox .col-3, .container-md > #sidebar #searchBox .col-3, .container-lg > #sidebar #searchBox .col-3, .container-xl > #sidebar #searchBox .col-3, .container-xxl > #sidebar #searchBox .col-3 {
  width: 170px;
  border-style: none;
}

.ModernUI .modal-header, .ModernUI .modal-header span, .ModernUI .modal-header .close,
.docpreview-title, .docpreview-title .close {
  color: #fff;
}

.docpreview-title .close:not(.btn-close) {
  padding-right: 15px;
  background-color: inherit;
  color: #fff;
  border: 0px !important;
  opacity: inherit;
}

.docpreview-title .close:not(.btn-close):hover {
  border: 0px;
  box-shadow: none;
}

.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
}

.pdf-pagination .pagination {
  height: 36px;
  box-sizing: content-box;
}

.pdf-pagination .pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pdf-pagination .pagination li {
  display: inline;
}

.pdf-pagination .pagination a {
  float: left;
  padding: 0 14px;
  line-height: 34px;
  text-decoration: none;
  border: 1px solid #ddd;
  border-left-width: 0;
}
.pdf-pagination .pagination a, .pdf-pagination .pagination a:not([href]):not([class]) {
  color: #0087cc;
}

.pdf-pagination .pagination a:hover, .pdf-pagination .pagination .active a {
  background-color: #f5f5f5;
}

.pdf-pagination .pagination .active a {
  cursor: default;
}
.pdf-pagination .pagination .active a, .pdf-pagination .pagination .active a:not([href]):not([class]) {
  color: #999999;
}

.pdf-pagination .pagination .disabled span, .pdf-pagination .pagination .disabled a, .pdf-pagination .pagination .disabled a:hover {
  color: #999999;
  cursor: default;
  background-color: transparent;
}

.pdf-pagination .pagination .disabled a:not([href]):not([class]), .pdf-pagination .pagination .disabled a:not([href]):not([class]):hover {
  color: #999999;
}

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

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

.pdf-pagination .pagination-centered {
  text-align: center;
}

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

.control-group {
  margin-bottom: 9px;
}

.radio.inline + .radio.inline, .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}

.tabs-right {
  display: flex;
}
.tabs-right .nav-tabs {
  flex-direction: column;
  order: 2;
  margin-left: 20px;
}
.tabs-right .nav-tabs li.thumb a {
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: content-box;
  margin-bottom: 3px;
  display: block;
}
.tabs-right .nav-tabs li.thumb a.active {
  background: white;
}

.btn.active, .btn:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9 ;
  background-image: none;
  outline: 0;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

iframe {
  border: revert;
}

.pdf-page textarea, .pdf-page input[type=text], .pdf-page input[type=password], .pdf-page input[type=datetime],
.pdf-page input[type=datetime-local], .pdf-page input[type=date], .pdf-page input[type=month], .pdf-page input[type=time],
.pdf-page input[type=week], .pdf-page input[type=number], .pdf-page input[type=email],
.pdf-page input[type=url], .pdf-page input[type=search], .pdf-page input[type=tel], .pdf-page input[type=color], .pdf-page .uneditable-input {
  border: 1px solid #ccc;
}

#pdf-viewer .nav-tabs > .active > a, #pdf-viewer .nav-tabs > .active > a:hover {
  color: #333333;
}

.pdf-pagination ul {
  padding-left: 0;
}

#docpreview-status-change-modal {
  background: transparent;
}

select[multiple], select[size] {
  height: auto;
}

.select.form-select:not(.pickList.form-select) {
  width: 300px;
  height: 202px;
}

.form-control--auto-width.form-control {
  width: auto;
}

.control-label--float-left {
  float: left;
}

.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 {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

/***
Spectrum Colorpicker v1.7.1
https://github.com/bgrins/spectrum
Author: Brian Grinstead
License: MIT
***/
.sp-container {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  *display: inline;
  *zoom: 1;
  /* https://github.com/bgrins/spectrum/issues/40 */
  z-index: 9999994;
  overflow: hidden;
}

.sp-container.sp-flat {
  position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.sp-container,
.sp-container * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.sp-top {
  position: relative;
  width: 100%;
  display: inline-block;
}

.sp-top-inner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-color {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 20%;
}

.sp-hue {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 100%;
}

.sp-clear-enabled .sp-hue {
  top: 33px;
  height: 77.5%;
}

.sp-fill {
  padding-top: 80%;
}

.sp-sat, .sp-val {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sp-alpha-enabled .sp-top {
  margin-bottom: 18px;
}

.sp-alpha-enabled .sp-alpha {
  display: block;
}

.sp-alpha-handle {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 6px;
  left: 50%;
  cursor: pointer;
  border: 1px solid black;
  background: white;
  opacity: 0.8;
}

.sp-alpha {
  display: none;
  position: absolute;
  bottom: -14px;
  right: 0;
  left: 0;
  height: 8px;
}

.sp-alpha-inner {
  border: solid 1px #333;
}

.sp-clear {
  display: none;
}

.sp-clear.sp-clear-display {
  background-position: center;
}

.sp-clear-enabled .sp-clear {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 84%;
  height: 28px;
}

/* Don't allow text selection */
.sp-container, .sp-replacer, .sp-preview, .sp-dragger, .sp-slider, .sp-alpha, .sp-clear, .sp-alpha-handle, .sp-container.sp-dragging .sp-input, .sp-container button {
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
}

.sp-container.sp-input-disabled .sp-input-container {
  display: none;
}

.sp-container.sp-buttons-disabled .sp-button-container {
  display: none;
}

.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
  display: none;
}

.sp-palette-only .sp-picker-container {
  display: none;
}

.sp-palette-disabled .sp-palette-container {
  display: none;
}

.sp-initial-disabled .sp-initial {
  display: none;
}

/* Gradients for hue, saturation and value instead of images.  Not pretty... but it works */
.sp-sat {
  background-image: -webkit-gradient(linear, 0 0, 100% 0, from(#FFF), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(left, #FFF, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(left, #fff, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr=#FFFFFFFF, endColorstr=#00CC9A81)";
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr="#FFFFFFFF", endColorstr="#00CC9A81");
}

.sp-val {
  background-image: -webkit-gradient(linear, 0 100%, 0 0, from(#000000), to(rgba(204, 154, 129, 0)));
  background-image: -webkit-linear-gradient(bottom, #000000, rgba(204, 154, 129, 0));
  background-image: -moz-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -o-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: -ms-linear-gradient(bottom, #000, rgba(204, 154, 129, 0));
  background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#00CC9A81, endColorstr=#FF000000)";
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00CC9A81", endColorstr="#FF000000");
}

.sp-hue {
  background: -moz-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -ms-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -o-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ff0000), color-stop(0.17, #ffff00), color-stop(0.33, #00ff00), color-stop(0.5, #00ffff), color-stop(0.67, #0000ff), color-stop(0.83, #ff00ff), to(#ff0000));
  background: -webkit-linear-gradient(top, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
  background: linear-gradient(to bottom, #ff0000 0%, #ffff00 17%, #00ff00 33%, #00ffff 50%, #0000ff 67%, #ff00ff 83%, #ff0000 100%);
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.sp-1 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000", endColorstr="#ffff00");
}

.sp-2 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffff00", endColorstr="#00ff00");
}

.sp-3 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ff00", endColorstr="#00ffff");
}

.sp-4 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffff", endColorstr="#0000ff");
}

.sp-5 {
  height: 16%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0000ff", endColorstr="#ff00ff");
}

.sp-6 {
  height: 17%;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff00ff", endColorstr="#ff0000");
}

.sp-hidden {
  display: none !important;
}

/* Clearfix hack */
.sp-cf:before, .sp-cf:after {
  content: "";
  display: table;
}

.sp-cf:after {
  clear: both;
}

.sp-cf {
  *zoom: 1;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-device-width: 480px) {
  .sp-color {
    right: 40%;
  }
  .sp-hue {
    left: 63%;
  }
  .sp-fill {
    padding-top: 60%;
  }
}
.sp-dragger {
  border-radius: 5px;
  height: 5px;
  width: 5px;
  border: 1px solid #fff;
  background: #000;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
}

.sp-slider {
  position: absolute;
  top: 0;
  cursor: pointer;
  height: 3px;
  left: -1px;
  right: -1px;
  border: 1px solid #000;
  background: white;
  opacity: 0.8;
}

/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths).
See http://bgrins.github.io/spectrum/themes/ for instructions.
*/
.sp-container {
  border-radius: 0;
  background-color: #ECECEC;
  border: solid 1px #f0c49B;
  padding: 0;
}

.sp-container, .sp-container button, .sp-container input, .sp-color, .sp-hue, .sp-clear {
  font: normal 12px "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-top {
  margin-bottom: 3px;
}

.sp-color, .sp-hue, .sp-clear {
  border: solid 1px #666;
}

/* Input */
.sp-input-container {
  float: right;
  width: 100px;
  margin-bottom: 4px;
}

.sp-initial-disabled .sp-input-container {
  width: 100%;
}

.sp-input {
  font-size: 12px !important;
  border: 1px inset;
  padding: 4px 5px;
  margin: 0;
  width: 100%;
  background: transparent;
  border-radius: 3px;
  color: #222;
  min-height: 20px;
}

.sp-input:focus {
  border: 1px solid orange;
}

.sp-input.sp-validation-error {
  border: 1px solid red;
  background: #fdd;
}

.sp-picker-container, .sp-palette-container {
  float: left;
  position: relative;
  padding: 10px;
  padding-bottom: 300px;
  margin-bottom: -290px;
}

.sp-picker-container {
  width: 172px;
  border-left: solid 1px #fff;
}

/* Palettes */
.sp-palette-container {
  border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
  border: 0;
}

.sp-palette .sp-thumb-el {
  display: block;
  position: relative;
  float: left;
  width: 24px;
  height: 15px;
  margin: 3px;
  cursor: pointer;
  border: solid 2px transparent;
}

.sp-palette .sp-thumb-el:hover, .sp-palette .sp-thumb-el.sp-thumb-active {
  border-color: orange;
}

.sp-thumb-el {
  position: relative;
}

/* Initial */
.sp-initial {
  float: left;
  border: solid 1px #333;
}

.sp-initial span {
  width: 30px;
  height: 25px;
  border: none;
  display: block;
  float: left;
  margin: 0;
}

.sp-initial .sp-clear-display {
  background-position: center;
}

/* Buttons */
.sp-palette-button-container,
.sp-button-container {
  float: right;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  padding: 4px;
  display: inline-block;
  *zoom: 1;
  *display: inline;
  border: solid 1px #91765d;
  background: #eee;
  color: #333;
  vertical-align: middle;
}

.sp-replacer:hover, .sp-replacer.sp-active {
  border-color: #F0C49B;
  color: #111;
}

.sp-replacer.sp-disabled {
  cursor: default;
  border-color: silver;
  color: silver;
}

.sp-dd {
  padding: 2px 0;
  height: 16px;
  line-height: 16px;
  float: left;
  font-size: 10px;
}

.sp-preview {
  position: relative;
  width: 25px;
  height: 20px;
  border: solid 1px #222;
  margin-right: 5px;
  float: left;
  z-index: 0;
}

.sp-palette {
  *width: 220px;
  max-width: 220px;
}

.sp-palette .sp-thumb-el {
  width: 16px;
  height: 16px;
  margin: 2px 1px;
  border: solid 1px #d0d0d0;
}

.sp-container {
  padding-bottom: 0;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */
.sp-container button {
  background-color: #eeeeee;
  background-image: -webkit-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
  background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
  background-image: linear-gradient(to bottom, #eeeeee, #cccccc);
  border: 1px solid #ccc;
  border-bottom: 1px solid #bbb;
  border-radius: 3px;
  color: #333;
  font-size: 14px;
  line-height: 1;
  padding: 5px 4px;
  text-align: center;
  text-shadow: 0 1px 0 #eee;
  vertical-align: middle;
}

.sp-container button:hover {
  background-color: #dddddd;
  background-image: -webkit-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -moz-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -ms-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: -o-linear-gradient(top, #dddddd, #bbbbbb);
  background-image: linear-gradient(to bottom, #dddddd, #bbbbbb);
  border: 1px solid #bbb;
  border-bottom: 1px solid #999;
  cursor: pointer;
  text-shadow: 0 1px 0 #ddd;
}

.sp-container button:active {
  border: 1px solid #aaa;
  border-bottom: 1px solid #888;
  -webkit-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -moz-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -ms-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  -o-box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
  box-shadow: inset 0 0 5px 2px #aaaaaa, 0 1px 0 0 #eeeeee;
}

.sp-cancel {
  font-size: 13px;
  color: #d93f3f !important;
  margin: 0;
  padding: 2px;
  margin-right: 5px;
  vertical-align: middle;
  text-decoration: none;
}

.sp-cancel:hover {
  color: #d93f3f !important;
  text-decoration: underline;
}

.sp-palette span:hover, .sp-palette span.sp-thumb-active {
  border-color: #000;
}

.sp-preview, .sp-alpha, .sp-thumb-el {
  position: relative;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.sp-preview-inner, .sp-alpha-inner, .sp-thumb-inner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sp-palette .sp-thumb-inner {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(data:image/gif;base64,R0lGODlhFAAUAPcAAAAAAJmZmZ2dnZ6enqKioqOjo6SkpKWlpaampqenp6ioqKmpqaqqqqurq/Hx8fLy8vT09PX19ff39/j4+Pn5+fr6+vv7+wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAP8ALAAAAAAUABQAAAihAP9FoPCvoMGDBy08+EdhQAIJCCMybCDAAYUEARBAlFiQQoMABQhKUJBxY0SPICEYHBnggEmDKAuoPMjS5cGYMxHW3IiT478JJA8M/CjTZ0GgLRekNGpwAsYABHIypcAgQMsITDtWJYBR6NSqMico9cqR6tKfY7GeBCuVwlipDNmefAtTrkSzB1RaIAoXodsABiZAEFB06gIBWC1mLVgBa0AAOw==);
}

.color_swatch {
  float: left;
  border: 1px solid #CCC;
  width: 18px;
  height: 18px;
  margin: -15px 10px -15px -15px;
  padding: 10px;
  display: table-cell;
}

.empty_color_swatch {
  float: left;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  margin: -15px 10px -15px -15px;
  padding: 10px;
  display: table-cell;
}

.color_swatch .color_sample {
  width: 34px;
  height: 34px;
  margin: -8px;
}

.color_value {
  display: block;
  height: 20px;
  min-width: 179px;
  margin: -10px -10px -10px 40px;
  padding: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  display: table-cell;
}

.cat_name {
  display: block;
  height: 20px;
  width: 400px;
  padding: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  display: table-cell;
}

.sp-replacer {
  min-width: 42px;
}

* {
  margin: 0;
  padding: 0;
}

.themeFontSelect {
  position: relative;
  padding: 3px;
  height: 28px;
  line-height: 28px;
  cursor: pointer;
  margin: 3px;
  width: 200px;
  background-image: -webkit-linear-gradient(top, #f9f9f9, #f0f0f0);
  background-image: -moz-linear-gradient(top, #f9f9f9, #f0f0f0);
  background-image: -o-linear-gradient(top, #f9f9f9, #f0f0f0);
  background-image: -ms-linear-gradient(top, #f9f9f9, #f0f0f0);
  background-image: linear-gradient(top, #f9f9f9, #f0f0f0);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, StartColorStr="$from", EndColorStr="$to");
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  border: 1px solid #91765d;
  background-clip: padding-box;
}

.themeFontSelect span {
  overflow: hidden;
  margin-left: 5px;
}

.themeFontSelect .arrow-down {
  position: absolute;
  right: 10px;
  top: 14px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #AAA;
}

.fontSelectUl {
  list-style: none;
  width: 185px;
  background: #f9f9f9;
  position: absolute;
  left: 0;
  top: 35px;
  border: 1px solid #cecece;
  height: auto;
  max-height: 195px;
  overflow-x: hidden;
}

.fontSelectUl li {
  height: 24px;
  line-height: 24px;
  overflow: hidden;
  cursor: pointer;
  padding: 0 10px;
  font-size: 14px;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
}

.fontSelectUl li:last-child {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  border-bottom: 1px solid #EEEEEE;
}

.fontSelectUl li:hover {
  background: #DDD;
}

.dropdown-menu li.item_selected > a {
  color: #fff;
  text-decoration: none;
  background-color: #00a3e8;
}

.dropdown-menu li > a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0088cc;
}

/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */
.jcrop-holder {
  text-align: left;
}

/* fixes responsive design issue: https://github.com/tapmodo/Jcrop/pull/22 */
.jcrop-holder img {
  max-width: none;
}

.jcrop-vline, .jcrop-hline {
  font-size: 0px;
  position: absolute;
  background: white url("Jcrop.gif") top left repeat;
}

.jcrop-vline {
  height: 100%;
  width: 1px !important;
}

.jcrop-hline {
  width: 100%;
  height: 1px !important;
}

.jcrop-vline.right {
  right: 0px;
}

.jcrop-hline.bottom {
  bottom: 0px;
}

.jcrop-handle {
  font-size: 1px;
  width: 7px !important;
  height: 7px !important;
  border: 1px #eee solid;
  background-color: #333;
}

.jcrop-tracker {
  width: 100%;
  height: 100%;
}

.custom .jcrop-vline,
.custom .jcrop-hline {
  background: yellow;
}

.custom .jcrop-handle {
  border-color: black;
  background-color: #C7BB00;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.orgChart {
  background-color: #fff; /*#ffffe8;*/
  font-size: 1em;
  border: 1px solid #A0BDD1;
  min-width: 800px;
}

.orgChart ul {
  list-style: none;
  margin: 4px;
  padding: 0;
  font-size: 0.8em;
  text-align: left;
}

.orgChart table {
  width: 100%;
}

.orgChart > table {
  margin: 50px auto;
}

.orgChart tr.lines td.line {
  width: 1px;
  height: 20px;
}

.orgChart tr.lines td.top {
  border-top: 2px solid #666;
}

.orgChart tr.lines td.left {
  border-right: 1px solid #666;
}

.orgChart tr.lines td.right {
  border-left: 1px solid #666;
}

.orgChart td {
  text-align: center;
  vertical-align: top;
  padding: 0 2px;
}

.orgChart div.card, #legend .direct, #legend .indirect {
  border: 2px solid #A0BDD1;
  display: inline-block;
  width: 150px;
  height: 160px;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  overflow: hidden;
  box-shadow: 2px 2px 4px #bbb;
  -moz-box-shadow: 2px 2px 4px #bbb;
  -webkit-box-shadow: 2px 2px 4px #bbb;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  position: relative;
}

.orgChart div.card {
  cursor: pointer;
}

.orgChart .indirect, #legend .indirect {
  border: 2px dashed #A0BDD1 !important;
  box-shadow: none !important;
}

#emptyOrgChart {
  background: url("../../../../img/UIv8/org_chart_blank_background.png") center no-repeat;
  border: 1px solid #999999;
  height: 460px;
}

#legend {
  position: absolute;
  right: 60px;
  display: none;
}

#legend .title, #legend .filterTitle {
  font-size: 1.1em;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  width: 100%;
  color: #666;
  margin: 5px 0;
}

#legend .filterTitle {
  padding-bottom: 0;
}

#legend .direct, #legend .indirect, #legend .filterText {
  display: block;
  height: auto;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

#legend .direct, #legend .indirect {
  height: 20px;
}

#legend .filterText {
  padding-top: 0;
  width: 260px;
}

.orgChart .controls {
  position: absolute;
  top: 0;
  right: 15px;
  width: 30px;
  height: 100px;
}

.orgChart .controls button {
  float: left;
  z-index: 96;
  width: 26px;
  height: 40px;
  margin: 3px 0 0 8px;
  border: 0;
  font-size: 9px;
  text-align: center;
  padding-top: 13px;
}

.orgChart .controls .subsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_default.png") center no-repeat;
}

.orgChart .controls .subsBtn:hover {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_hover.png") center no-repeat;
}

.orgChart .controls .subsBtn:active {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_down.png") center no-repeat;
}

.orgChart .controls .reportsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_default.png") center no-repeat;
}

.orgChart .controls .reportsBtn:hover {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_hover.png") center no-repeat;
}

.orgChart .controls .reportsBtn:active {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_down.png") center no-repeat;
}

.orgChart .controls .numSubordinates {
  font-weight: bold;
  text-align: center;
  font-size: 9px;
  margin-top: 60px;
  width: 40px;
}

.orgChart .focus {
  border: 2px solid #A0BDD1 !important;
  cursor: default !important;
}

.orgChart .focus .controls .subsBtn, .orgChart .focus .controls .subsBtn:hover,
.orgChart .focus .controls .subsBtn:active {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_down.png") center no-repeat;
}

.orgChart .focus .controls .reportsBtn, .orgChart .focus .controls .reportsBtn:hover,
.orgChart .focus .controls .reportsBtn:active {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_down.png") center no-repeat;
}

.orgChart .node {
  -webkit-perspective: 1000;
  position: relative !important;
}

.orgChart .face {
  -webkit-backface-visibility: hidden;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.orgChart .card_front {
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.orgChart .card_back {
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

/**
 * Fallback for browsers without 3d css transforms
 */
.no-csstransforms3d .orgChart .card_back {
  display: none;
}

.no-csstransforms3d .orgChart .flipped .card_back {
  display: block;
}

.no-csstransforms3d .orgChart .flipped .card_front {
  display: none;
}

/* Colors to make things look like talent card */
.orgChart .header {
  background-color: #D1F4FF;
  height: 95px;
  padding: 5px 0 0 5px;
  text-align: left;
  vertical-align: top;
  width: 145px;
  border-bottom: 1px solid #A0BDD1;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.orgChart .card_back {
  padding: 7px 5px;
}

.orgChart .header .picture {
  padding: 3px;
}

.orgChart .header .picture .photo {
  display: inline-block;
  border: 2px solid #88ABC2;
}

.orgChart .info {
  padding: 5px 0 0 8px;
  text-align: left;
}

.orgChart .info div {
  margin-bottom: 2px;
}

.orgChart .info .name {
  font-weight: bold;
  /* For ellipsis to work */
  width: 140px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
}

.orgChart .info .name a {
  font-size: 13px;
  text-decoration: none;
}

.orgChart .info .title {
  color: #999;
}

.orgChart .manager-placeholder .picture {
  text-align: center;
  width: 134px;
}

.orgChart .manager-placeholder, .orgChart .no-subs {
  cursor: default !important;
}

.orgChart .manager-placeholder .controls .subsBtn {
  background: none;
}

.orgChart .manager-placeholder .controls .subsBtn:hover {
  background: none;
}

.orgChart .manager-placeholder .controls .subsBtn:active {
  background: none;
}

.orgChart .info-placeholder {
  background: url("../../../../img/UIv8/icon_org_chart_tile_info_denied.png") center no-repeat;
  width: 136px;
  height: 50px;
}

/* IE requires specifying .header and .info */
.orgChart .inactive, .orgChart .inactive .header, .orgChart .inactive .info {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}

/* Stacking nodes with CSS */
.available-trees {
  width: 250px;
  position: absolute;
  z-index: 90;
  margin: 10px 0 0 10px;
}

.available-trees-scrolled {
  width: 275px;
}

.available-trees h3, .available-trees .h3 {
  font-weight: bold;
  border-radius: 7px 7px 0 0;
  -moz-border-radius: 7px 7px 0 0;
  font-size: 14px;
  padding: 5px 5px 5px 10px;
}

.available-trees ul {
  border: 1px solid #A0BDD1;
  border-top: none;
  border-top: 0;
  padding-left: 0;
  list-style-type: none;
}

.available-trees ul li {
  height: 55px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.available-trees ul li:hover {
  cursor: pointer;
  border-top: 1px solid silver;
  border-bottom: 1px solid silver;
}

.available-trees ul li:first-child {
  border-top: none !important;
}

.available-trees ul li:last-child {
  border-bottom: none !important;
}

.available-trees .name {
  display: block;
  margin-top: 10px;
  width: 160px;
  font-weight: bold;
}

.available-trees .name a {
  text-decoration: none;
  font-weight: bold;
}

.available-trees .title {
  text-decoration: none;
  display: block;
  color: silver;
  width: 165px;
}

.available-trees .subsBtn, .available-trees .reportsBtn {
  float: right;
  z-index: 96;
  width: 26px;
  height: 50px;
  margin: 3px 0 0 5px;
  border: 0;
  font-size: 9px;
  padding-top: 13px;
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_default.png") center no-repeat;
}

.available-trees li:hover .subsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_hover.png") center no-repeat;
}

.available-trees li.active .subsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_down.png") center no-repeat;
}

.available-trees .reportsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_default.png") center no-repeat;
  right: 10px;
}

.available-trees li:hover .reportsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_hover.png") center no-repeat;
}

.available-trees li.active .reportsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_reports_down.png") center no-repeat;
}

.available-trees li.active .subsBtn {
  background: url("../../../../img/UIv8/icon_org_chart_tile_direct_subs_down.png") center no-repeat;
}

/* Layouts */
a {
  color: #0087cc;
}

a:hover {
  color: #0087cc;
}

.navbar div > ul > li {
  background-color: #4884a6;
  border-top: 0;
}

.bookmark-bar {
  border: 1px solid #DDDDDD;
  background-color: #9bccde;
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  overflow: auto;
  z-index: 99;
  padding-top: 5px;
  padding-bottom: 3px;
  display: table;
}

.show-bookmark {
  border: 1px solid #ddd;
  background-color: #9bccde;
  background: url("../../img/UIv9/ats-bookmark-sprite.png") no-repeat -1110px -1023px #9bccde;
  position: fixed;
  margin-bottom: 15px;
  bottom: 0px;
  right: 0px;
  height: 22px;
  width: 40px;
  overflow: auto;
  z-index: 99;
  padding-top: 5px;
  padding-bottom: 3px;
  display: table;
}

.navbar .nav li.dropdown:last-child .dropdown-menu {
  border-top: 1px solid #4884a6;
}

.navbar div > ul .dropdown-menu,
.nav .dropdown-menu,
.nav > .open.active > a:hover,
.navbar div > ul .active .dropdown-menu,
.nav-tabs .open .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle,
#notification_ae_dropdown,
#notification_dropdown,
#notification_ews_dropdown,
#notification_crm_dropdown {
  background-color: #ffffff;
}

.navbar div > ul .dropdown-menu li a:hover,
.nav .dropdown-menu li a:hover,
.dropmenudiv a:hover,
#notification_ae_dropdown li:hover,
#notification_dropdown li:hover,
#notification_ews_dropdown li:hover,
#notification_crm_dropdown li:hover,
.nav .active .active,
.nav-tabs .dropdown-menu .active > a,
.nav-tabs .dropdown-menu > a:hover {
  background-color: #9bccde;
}

#leftpanelContainer #recentItems li:hover,
.docpreview-personinfo:hover {
  background-color: #eff5f9;
}

.navbar div > ul .menu-dropdown li a:hover,
.nav .menu-dropdown li a:hover,
.navbar div > ul .dropdown-menu li a:hover,
.nav .dropdown-menu li a:hover,
.dropmenudiv a:hover {
  background-color: #9bccde;
}

h1 .learnintegration, .h1 .learnintegration {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -873px -116px;
}

h1 .documentsrepository, .h1 .documentsrepository {
  background: url("../../img/UIv9/ats-icons-sprite.png") no-repeat -873px -116px;
}

#support_section .nav a:hover,
.nav > li.dropdown.open .dropdown-toggle,
.nav > li.dropdown.open .dropdown-toggle:hover,
.navbar .nav > li.dropdown.open .dropdown-toggle,
.navbar .nav > li.dropdown.open .dropdown-toggle:hover,
.navbar .nav > li.dropdown.open:first-child .dropdown-toggle:hover,
.navbar .nav > li.dropdown.open:first-child .dropdown-toggle {
  background-color: #f0f0f0;
  color: #333333;
}

.nav-tabs > li > a,
.ui-tabs > .ui-tabs-nav > li > a,
span.switchBarButtonInactive {
  background-color: #4884a6;
  font-weight: normal;
  color: #ffffff;
  border: 1px solid #ddd;
}

.nav-tabs .dropdown-menu {
  background-color: #ffffff;
}

.nav-tabs .dropdown-menu li a {
  color: #333333;
}

.nav-tabs .dropdown-menu li a:hover {
  background-color: #9bccde;
  color: #333333;
}

.nav-tabs > li > a:hover,
.nav-tabs li.dropdown.open.active > a:hover {
  background-color: #ffffff;
  color: #333333;
  border-bottom: none;
}

.nav-tabs > li.dropdown.open .dropdown-toggle,
.nav-tabs > li.dropdown.open .dropdown-toggle:hover,
.nav-tabs li.dropdown.open.active > a:hover {
  background-color: #9bccde;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover,
.ui-tabs > .ui-tabs-nav > li.ui-tabs-selected > a,
.ui-tabs > .ui-tabs-nav > li.ui-tabs-selected > a:hover {
  border: 1px solid #ddd;
  background-color: #ffffff;
  color: #333333;
  font-weight: bold;
  border-bottom: none;
}

.nav-tabs .dropdown-menu .active > a {
  background-color: #9bccde;
  font-weight: bold;
}

.widgets .configure,
.ModernUI #sidebar .configure {
  background-position: 43.237% 75.072%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .widgets .configure,
  .ModernUI #sidebar .configure {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.mainPage .ResultsBox > div.ResultsHeader {
  background-color: #ffffff;
  padding-left: 12px;
  padding-top: 13px;
}

.FoldableInformationHeader,
.PortletHeader,
.InformationHeader {
  background-color: #9bccde;
}

/* tr and th in the rule below are for IE9 compatibility */
.datagrid thead,
.DatagridTable .DataTableHead,
.datagrid thead tr,
.DataTableHead th,
.DataTableHead.FoldableInformationHeader {
  background-color: #ffffff;
}

.ActionLinkHeadBottom th,
.ActionLinkHeadBottom {
  background-color: #ffffff;
}

.PortletHeader + table {
  background-color: #ffffff;
}

.datagrid tbody,
.DatagridTable tbody,
.InformationBox > table,
div.InformationContent,
.DataTableOddRow,
#emptyTasksTextSpan {
  background-color: #ffffff;
}

.ListViewInAccordionTable {
  background-color: #eff5f9;
}

tr.DataTableOddRow {
  background-color: #fafafa;
}

tr.DataTableEvenRow {
  background-color: #ffffff;
}

tr.DataTableOddRow:hover,
tr.DataTableEvenRow:hover {
  background-color: #eff5f9;
}

.sideBySideTableRankingTD {
  border-right: 1px solid #4884a6;
}

.CalendarMonth .DatagridTable .day,
.CalendarMonth .DatagridTable .first,
.CalendarMonth .DatagridTable .last,
.CalendarMonth .DatagridTable .empty {
  border-color: #4884a6;
}

.content .tabs .active > a {
  background-color: #cbe6a5;
  border-color: #4884a6 #4884a6 transparent;
}

/* Calendar Theme Colors */
.CalendarHeader {
  background-color: #b3d8e5;
}

.CalendarHeader .nowrapRegular {
  color: #666666;
}

/* Talent Card Colors */
.cluetip-talentCard .cluetip-outer {
  border: 1px solid #cccccc;
}

#talentCard .header {
  background-color: #ddd;
}

#talentCard .header .picture #profilePicture {
  border: none;
}

.tabs-bottom #cards a,
.tabs-bottom #cards .filler {
  border-top: 1px solid #999999;
  background-color: #eff5f9 !important;
}

.tabs-bottom #cards a,
.tabs-bottom #manage_tabs_button,
.cluetip-talentCard #manage_tabs_button_no_tabs {
  border-right: 1px solid #999999;
}

#talentCard h3, #talentCard .h3,
#cluetip .mainHeaderTd {
  border-color: #999999;
  background-color: #cbe6a5;
}

#talentCard .data,
#cluetip .workHistory {
  border-color: #999999;
}

#cluetip .workHistory thead tr {
  background-color: #cbe6a5;
  background-image: -moz-linear-gradient(top, #cbe6a5, #ffffff);
  background-image: -webkit-linear-gradient(top, #cbe6a5, #ffffff);
  background-image: linear-gradient(to bottom, #cbe6a5, #ffffff);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$contentColor", endColorstr="#ffffff");
}

#cluetip .workHistory tbody {
  background-color: #ffffff;
}

/* Org Chart Theme Colors */
.orgChart {
  border: 0;
}

.orgChart div.card,
#legend .direct,
#legend .indirect {
  border: 1px solid #ddd;
  box-shadow: none;
  height: 170px;
}

.orgChart .indirect,
#legend .indirect {
  border: 2px dashed #999999 !important;
}

.orgChart .header {
  background-color: #ddd;
  border-bottom: 1px solid #ddd;
}

.orgChart .focus {
  border: 2px solid #0087cc !important;
}
.orgChart .focus .controls .reportsBtn:focus, .orgChart .focus .controls .subsBtn:focus {
  outline: 0;
}

.orgChart .info-placeholder {
  height: 60px;
}

.available-trees h3, .available-trees .h3 {
  background-color: #ddd;
}

.available-trees ul {
  border-color: #ddd;
}

.available-trees ul li:hover {
  background-color: #eff5f9;
}

.ui-widget-header {
  background-color: #9bccde !important;
}

.ui-dialog {
  border: 1px solid #999999;
}

#tabs a,
#pageLayOutTabsUL a,
.pageLayoutTab a span {
  background-color: #4884a6;
}

#manage_tabs_button_no_tabs a {
  background-position: 64.3% 37.522%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #manage_tabs_button_no_tabs a {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

#manage_tabs_button a {
  background-position: 64.3% 37.522%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #manage_tabs_button a {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.slidetabsmenu a {
  border-color: #4884a6;
  background-color: #cbe6a5;
}

.dropmenudiv,
.pubbox {
  border-color: #ddd;
  background-color: #fff;
}

.click-thru h2, .click-thru .h2 {
  border-bottom: 1px solid #4884a6;
}

span.radioButtonFalse,
span.checkboxUnchecked {
  background-color: #eff5f9;
}

.radioButtonTrue,
.checkboxChecked {
  background-color: #9bccde;
}

#devPanelDiv {
  border-color: #4884a6;
  background-color: #eff5f9;
}

.modalWarningDialog {
  background-color: #eff5f9 !important;
}

img.modalWarningDialog {
  max-width: none !important;
}

.dashboard .heading,
.ModernUI .modal-header,
.ModernUI .container-fluid > #sidebar h4,
.ModernUI .container-sm > #sidebar h4,
.ModernUI .container-md > #sidebar h4,
.ModernUI .container-lg > #sidebar h4,
.ModernUI .container-xl > #sidebar h4,
.ModernUI .container-xxl > #sidebar h4,
.ModernUI .container-fluid > #sidebar .h4,
.ModernUI .container-sm > #sidebar .h4,
.ModernUI .container-md > #sidebar .h4,
.ModernUI .container-lg > #sidebar .h4,
.ModernUI .container-xl > #sidebar .h4,
.ModernUI .container-xxl > #sidebar .h4,
.docpreview-title {
  background-color: #4884a6;
}

.dashboard .show-more:hover {
  background: #4884a6;
}

.reqcandquickview {
  padding: 5px;
}

.nav-tabs {
  background-color: #f0f0f0 !important;
}

.bookmark_section_bg_div_disable {
  background: url("../../img/UIv9/ats-bookmark-sprite.png") no-repeat -1113px -1182px;
  float: left;
  height: 25px;
  left: 0;
  top: 0;
  width: 24px;
  cursor: default;
}

.bookmark_section_bg_div_compress {
  background: url("../../img/UIv9/ats-bookmark-sprite.png") no-repeat -1121px -1277px;
  float: left;
  height: 25px;
  left: 0;
  top: 0;
  width: 24px;
}

.bookmark_section_bg_div {
  background-position: 80.472% 87.916%;
  background-repeat: no-repeat;
  width: 25px;
  height: 24px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  float: left;
  left: 0;
  top: 0;
  cursor: pointer;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bookmark_section_bg_div {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

progress[value] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  height: 5px;
  width: 100%;
}

progress::-webkit-progress-bar {
  background-color: #d3d3d3;
}

progress::-moz-progress-bar {
  background-color: #4884a6;
}

progress::-webkit-progress-value {
  background-color: #4884a6;
}

progress::-ms-fill {
  background-color: #4884a6;
}

.orgChart {
  padding-bottom: 10px;
}

.orgChart .focus .controls .reportsBtn,
.orgChart .focus .controls .reportsBtn:active,
.orgChart .controls .reportsBtn,
.orgChart .focus .controls .subsBtn,
.orgChart .focus .controls .subsBtn:active,
.orgChart .controls .subsBtn {
  background-color: #FFFFFF;
}

.available-trees li.active .subsBtn,
.available-trees li.active .reportsBtn,
.orgChart .controls .subsBtn:hover,
.orgChart .focus .controls .subsBtn:hover,
.orgChart .controls .reportsBtn:hover,
.orgChart .focus .controls .reportsBtn:hover {
  background-color: #eff5f9;
}

.orgChart .manager-placeholder .controls .subsBtn {
  background: none;
}

.orgChart .controls button {
  width: 31px;
  height: 42px;
  margin: 0px 0px 6px 6px;
  font-size: 10px;
  padding-top: 23px;
  color: #000;
}

.available-trees .subsBtn, .available-trees .reportsBtn {
  width: 31px;
  height: 42px;
  font-size: 10px;
  padding-top: 23px;
  color: #000;
}

.available-trees {
  width: 262px;
}

#talentCard .header .subsBtn {
  background-color: #fff;
  width: 31px;
  height: 42px;
  font-size: 10px;
  padding-top: 23px;
  color: #000;
}

.numberIconBox {
  border-style: none;
  padding: 3px;
}

.orgChart .header .picture .photo {
  border-style: none;
}

.orgChart table {
  border-collapse: initial;
}

#setting-icon {
  background-position: 70.288% 74.004%;
  background-repeat: no-repeat;
  width: 26px;
  height: 30px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #setting-icon {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

#leftpanelContainer #recentItems .requ {
  background-position: 22.649% 8.762%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .requ {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .reqtm {
  background-position: 22.649% 8.762%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .reqtm {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .acct {
  background-position: 32.421% 9.141%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .acct {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .custm {
  background-position: 32.421% 9.141%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .custm {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .cand {
  background-position: 41.284% 8.603%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .cand {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .rqcnd {
  background-position: 95.476% 8.888%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .rqcnd {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .empl {
  background-position: 27.611% 8.795%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .empl {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .ctct {
  background-position: 36.604% 8.511%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .ctct {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .post {
  background-position: 4.305% 8.698%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .post {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .prfl {
  background-position: 4.305% 8.698%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .prfl {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .perf {
  background-position: 41.284% 8.603%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .perf {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .actp {
  background-position: 54.501% 8.866%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .actp {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .work {
  background-position: 58.6% 8.548%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .work {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .pmrv {
  background-position: 45.726% 8.909%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .pmrv {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .pmrvt {
  background-position: 45.726% 8.909%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .pmrvt {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .cycl {
  background-position: 50% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .cycl {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .plan {
  background-position: 50% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .plan {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .irpt {
  background-position: 68.671% 8.634%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .irpt {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .irpi {
  background-position: 68.671% 8.634%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .irpi {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .rvcyc {
  background-position: 82.474% 8.832%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .rvcyc {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .servr {
  background-position: 82.474% 8.832%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .servr {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .leadCss {
  background-position: 18.335% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .leadCss {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
#leftpanelContainer #recentItems .crse {
  background-position: 99.782% 45.171%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #leftpanelContainer #recentItems .crse {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.reviewTemplateInitial {
  background-position: 39.679% 44.448%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .reviewTemplateInitial {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

h1 .myview, .h1 .myview {
  background-position: 14.023% 8.686%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .myview, .h1 .myview {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .pipeline, .h1 .pipeline {
  background-position: 18.335% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .pipeline, .h1 .pipeline {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .lead, .h1 .lead {
  background-position: 18.335% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .lead, .h1 .lead {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .order, .h1 .order {
  background-position: 18.335% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .order, .h1 .order {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .requisitions, .h1 .requisitions {
  background-position: 22.649% 8.762%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .requisitions, .h1 .requisitions {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .candidates, .h1 .candidates {
  background-position: 41.284% 8.603%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .candidates, .h1 .candidates {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .requisitioncandidates, .h1 .requisitioncandidates {
  background-position: 95.476% 8.888%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .requisitioncandidates, .h1 .requisitioncandidates {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .accounts, .h1 .accounts {
  background-position: 32.421% 9.141%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .accounts, .h1 .accounts {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .customer, .h1 .customer {
  background-position: 32.421% 9.141%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .customer, .h1 .customer {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .contacts, .h1 .contacts {
  background-position: 36.604% 8.511%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .contacts, .h1 .contacts {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .employees, .h1 .employees {
  background-position: 27.611% 8.795%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .employees, .h1 .employees {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .goals, .h1 .goals {
  background-position: 91.46% 8.709%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .goals, .h1 .goals {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .learnintegration, .h1 .learnintegration {
  background-position: 63.579% 8.867%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .learnintegration, .h1 .learnintegration {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .documentsrepository, .h1 .documentsrepository {
  background-position: 63.579% 8.867%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .documentsrepository, .h1 .documentsrepository {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .perform, .h1 .perform {
  background-position: 45.726% 8.909%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .perform, .h1 .perform {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .competency, .h1 .competency {
  background-position: 9.343% 8.755%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .competency, .h1 .competency {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .compensation, .h1 .compensation {
  background-position: 50% 8.745%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .compensation, .h1 .compensation {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .onboarding, .h1 .onboarding {
  background-position: 54.501% 8.866%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .onboarding, .h1 .onboarding {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .users, .h1 .users {
  background-position: 58.6% 8.548%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .users, .h1 .users {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .administration, .h1 .administration {
  background-position: 63.579% 8.867%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .administration, .h1 .administration {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .reports, .h1 .reports {
  background-position: 68.671% 8.634%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  margin-bottom: 0;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .reports, .h1 .reports {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .tbe_apps, .h1 .tbe_apps {
  background-position: 73.61% 8.683%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .tbe_apps, .h1 .tbe_apps {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .support, .h1 .support {
  background-position: 73.61% 8.683%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .support, .h1 .support {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .positions, .h1 .positions {
  background-position: 4.305% 8.698%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .positions, .h1 .positions {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .profiles, .h1 .profiles {
  background-position: 4.305% 8.698%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .profiles, .h1 .profiles {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .server, .h1 .server {
  background-position: 82.474% 8.832%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .server, .h1 .server {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .reviewcycle, .h1 .reviewcycle {
  background-position: 82.474% 8.832%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .reviewcycle, .h1 .reviewcycle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
h1 .course, .h1 .course {
  background-position: 99.782% 45.171%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  h1 .course, .h1 .course {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.widgets-per-listview-background {
  background-position: 68.671% 8.634%;
  background-repeat: no-repeat;
  width: 36px;
  height: 36px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .widgets-per-listview-background {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.ews .navbar .nav > li:first-child .dropdown-toggle {
  background-position: 11.58% 37.545%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .ews .navbar .nav > li:first-child .dropdown-toggle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.navbar .nav > li.dropdown:first-child .dropdown-toggle {
  background-position: 11.58% 37.545%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .navbar .nav > li.dropdown:first-child .dropdown-toggle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.navbar .nav > li.dropdown.active:first-child .dropdown-toggle {
  background-position: 11.58% 44.319%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .navbar .nav > li.dropdown.active:first-child .dropdown-toggle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.navbar .nav > li.dropdown.open:first-child .dropdown-toggle {
  background-position: 11.58% 44.319%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .navbar .nav > li.dropdown.open:first-child .dropdown-toggle {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.navbar .nav > li.dropdown.open:first-child .dropdown-toggle:hover {
  background-position: 11.58% 44.319%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .navbar .nav > li.dropdown.open:first-child .dropdown-toggle:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.nav-tabs .configure {
  background-position: 70.6% 92.7%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .nav-tabs .configure {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.nav-tabs .configure:hover {
  background-position: 70.6% 74.15%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .nav-tabs .configure:hover {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-day {
  background-position: 55.502% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-day {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-week {
  background-position: 58.031% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-week {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-month {
  background-position: 60.546% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-month {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-contact {
  background-position: 63.068% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-contact {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-group {
  background-position: 65.573% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-group {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.calendar-list {
  background-position: 68.112% 74.146%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .calendar-list {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.cluetip-talentCard .tabs-bottom #cards .Position_Information {
  background-position: 4.799% 44.41%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cluetip-talentCard .tabs-bottom #cards .Position_Information {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.cluetip-talentCard .tabs-bottom #cards .Contact_Information {
  background-position: 31.914% 44.244%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cluetip-talentCard .tabs-bottom #cards .Contact_Information {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.cluetip-talentCard .tabs-bottom #cards .Performance {
  background-position: 39.679% 44.448%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cluetip-talentCard .tabs-bottom #cards .Performance {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}
.cluetip-talentCard .tabs-bottom #cards .Work_History {
  background-position: 70.709% 44.51%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .cluetip-talentCard .tabs-bottom #cards .Work_History {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

#recentItems .configure {
  background-position: 64.029% 37.572%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  #recentItems .configure {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.bookmark-setting {
  background-position: 70.288% 74.004%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bookmark-setting {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.configure-buttons {
  background-position: 70.288% 74.004%;
  background-repeat: no-repeat;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .configure-buttons {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

div.add-to-ical {
  background-position: 74.113% 73.958%;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  div.add-to-ical {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}

.export.csv {
  background-position: 76.353% 74.123%;
  background-repeat: no-repeat;
  width: 24px;
  height: 26px;
  background-image: url(../../img/UIv9/ats-icons-sprite.png);
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .export.csv {
    background-image: url(../../img/UIv9/ats-icons-sprite@2x.png);
    background-size: 1410px 1404px;
  }
}