@charset "UTF-8";
html {
  width: 100%;
}

html, body {
  margin: 0;
  padding: 0;
}

.clear {
  clear: both;
}

.hidden {
  display: none !important;
}

.ptr {
  cursor: pointer;
}

.justify {
  text-align: justify;
}

.fg-red {
  color: #f00;
}

:root, :host {
  --main-color: $accedo-brand-color;
  --color: #222;
  --bg-color: #b5becf;
  --btn-color: #fff;
  --btn-bg-color: #9A0F1E;
  --btn-secondary-bg-color: #707070;
  --menu-color: #d21224;
  --font-size: 16px;
}

html {
  font-size: var(--font-size);
}

a:empty.show-href:before {
  content: attr(href);
}
a.no_href {
  cursor: pointer;
}
a.no_href:hover {
  text-decoration: underline;
}

input[type=text].clearable {
  padding-right: 18px !important;
  background-repeat: no-repeat;
  background-position: right 5px center;
}
input[type=text].clearable.x {
  background-image: url("/shared/img/icons/clear.gif");
}
input[type=text].clearable.onX {
  cursor: pointer;
}

.nobr {
  white-space: nowrap;
}

.vertical-center {
  display: table-cell;
  vertical-align: middle !important;
}

.vcenter {
  float: none;
  display: inline-block;
  vertical-align: middle;
}

.row.equal-height-cols {
  display: flex;
  flex-wrap: wrap;
}
.row.equal-height-cols > [class*=col-] {
  display: flex;
  flex-direction: column;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.eot?v=4.7.0");
  src: url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../../shared/vendor-static/font-awesome-4.7.0/fonts//fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* Seitenbaum */
div.pagetree_topicon {
  margin-top: 8px;
}
div.pagetree_topicon img {
  display: block;
}

div.pagetree_clearer {
  clear: both;
  font-size: 0px;
  line-height: 0px;
  width: 1px;
}

ul.pagetree {
  margin-top: -3px;
  list-style: none;
  width: 710px;
  padding-left: 0;
}
ul.pagetree, ul.pagetree ul {
  display: none;
}
ul.pagetree.pagetree_level_0, ul.pagetree.expanded, ul.pagetree ul.pagetree_level_0, ul.pagetree ul.expanded {
  display: block;
}
ul.pagetree li {
  border-bottom: 1px dashed #dddddd;
}
ul.pagetree li:hover {
  background-color: #efefef;
}
ul.pagetree li img {
  vertical-align: middle;
}
ul.pagetree li a.folding-toggle, ul.pagetree li a.active-toggle {
  display: inline-block;
  background-repeat: no-repeat;
  width: 16px;
  height: 23px;
}
ul.pagetree li a.active-toggle {
  background-position-y: 5px;
  margin-left: 3px;
  background-image: url("/backend/img/pagetree/visible.gif");
}
ul.pagetree li.inactive {
  opacity: 0.5;
}
ul.pagetree li.inactive a.active-toggle {
  background-image: url("/backend/img/pagetree/invisible.gif");
}
ul.pagetree li a.folding-toggle {
  background-position-y: 1px;
  background-image: url("/backend/img/pagetree/closed.png");
}
ul.pagetree li a.folding-toggle.last {
  background-image: url("/backend/img/pagetree/last_closed.png");
}
ul.pagetree li.expanded a.folding-toggle {
  background-image: url("/backend/img/pagetree/expanded.png");
}
ul.pagetree li.expanded a.folding-toggle.last {
  background-image: url("/backend/img/pagetree/last_expanded.png");
}
ul.pagetree li.marked-cut, ul.pagetree li.marked-copy {
  background-color: #ede0e6;
}
ul.pagetree li.marked-cut .paste-action, ul.pagetree li.marked-copy .paste-action {
  visibility: hidden;
}
ul.pagetree li.marked-copy .copy-action {
  visibility: hidden;
}
ul.pagetree li.marked-cut .cut-action {
  visibility: hidden;
}
ul.pagetree div.page_title {
  float: left;
  height: 23px;
  width: 495px;
}
ul.pagetree div.page_title * {
  vertical-align: middle;
}
ul.pagetree div.edit_icons {
  float: left;
  height: 23px;
  text-align: right;
  width: 210px;
}
ul.pagetree div.edit_icons a {
  vertical-align: middle;
  display: inline-block;
}
ul.pagetree div.edit_icons img {
  margin-left: 3px;
  margin-top: 3px;
}

table.page-metadata {
  width: unset;
}
table.page-metadata td:nth-child(2).checkbox input[type=checkbox].form-control, table.page-metadata td:nth-child(2) .form-check input[type=checkbox].form-control {
  display: inline-block;
  width: unset;
}
table.page-metadata td:nth-child(2) .form-check {
  display: flex;
  padding-left: 0;
}
table.page-metadata td:nth-child(2) #forward + div.extra-data, table.page-metadata td:nth-child(2) #visibility + div.extra-data {
  display: none;
  justify-content: right;
}
table.page-metadata td:nth-child(2) #forward + div.extra-data label, table.page-metadata td:nth-child(2) #visibility + div.extra-data label {
  margin-bottom: 0;
}
table.page-metadata td:nth-child(2) #forward:checked + div.extra-data, table.page-metadata td:nth-child(2) #visibility:checked + div.extra-data {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
table.page-metadata td:nth-child(2) #forward:checked + div.extra-data label, table.page-metadata td:nth-child(2) #visibility:checked + div.extra-data label {
  margin-left: 5px;
  margin-right: 5px;
}
table.page-metadata td:nth-child(2) select[name=templateDirectory]:empty {
  display: none !important;
}

.ui-button {
  padding: 0;
}

body {
  font-family: -apple-system, "Helvetica Neue", Arial, Helvetica, sans-serif;
  background: #ffffff;
  font-size: 11px;
  color: #000000;
  line-height: unset;
}
body .form-control {
  font-size: 11px;
}
body .btn {
  font-size: 14px;
}
body.invisible {
  visibility: hidden;
  overflow: hidden;
}
body.email .container-fluid {
  padding: 0;
}
body.email .container-fluid div.mce-statusbar {
  display: none !important;
}
body.email .container-fluid #attachments {
  width: 300px;
  float: left;
  padding: 0 0 0 10px;
}
body div.adminpage.locked {
  pointer-events: none;
  opacity: 0.5;
}
body div.adminpage.modpage {
  width: auto;
  padding-top: 1px;
}
body div.adminpage.modpage div.admincontent {
  float: none;
  width: auto;
}
body div.adminpage.modpage div.anfragencontent {
  width: 96%;
}
body div.adminpage.topzins table {
  width: unset;
}
body div.admincontent {
  margin-left: 20px;
  padding-bottom: 15px;
  margin-right: 20px;
}
body div.admincontent a.back {
  font-size: 12px;
  position: absolute;
  right: 20px;
  z-index: 10;
  background: #ACCED0;
  padding: 5px 10px;
  color: #FFFFFF;
}
body div.admincontent div.fileerror {
  font-weight: bold;
  background-color: #FFC0C0;
  background-image: url(../img/error.png);
  background-repeat: no-repeat;
  background-position: 5px calc(50% - 2px);
  display: flex;
  align-items: center;
  padding-left: 25px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
body div.admincontent form.wo-width input, body div.admincontent form.wo-width select {
  width: unset;
}
body div.admincontent h1 {
  border-bottom: 1px solid #EBEBEB;
}
body div.admincontent img.preview {
  max-height: 100px;
}
body .container-fluid div.admincontent {
  margin-left: 5px;
  margin-right: 5px;
}
body.nospace .container-fluid {
  padding-left: unset;
  padding-right: unset;
}
body.nospace .container-fluid div.admincontent {
  margin-left: unset;
  margin-right: unset;
}
body.listing #search {
  display: inline-block;
  width: unset;
  height: unset;
  font-size: 14px;
}
body.listing .dataTables_wrapper .fg-toolbar #recordlist_length {
  padding: 10px 10px 0;
  float: unset;
}
body.listing .dataTables_wrapper .fg-toolbar #recordlist_length label select {
  font-size: 12px;
}
body.listing .dataTables_wrapper .fg-toolbar .dataTables_filter input[type=text] {
  display: none;
}
body.listing .dataTables_wrapper table {
  width: 100%;
}
body.listing .dataTables_wrapper table th {
  white-space: nowrap;
}
body.listing .dataTables_wrapper table th .DataTables_sort_wrapper {
  cursor: pointer;
}
body.listing .dataTables_wrapper table th .DataTables_sort_wrapper .DataTables_sort_icon {
  display: inline-block;
  float: unset;
}
body.listing .dataTables_wrapper #recordlist_processing {
  z-index: 1;
}
body.listing table tr td {
  position: relative;
}
body.model.create-edit {
  /*
  				.tox-tinymce {
  					width: 100% !important;
  				}
  */
}
body.model.create-edit:not(.request):not(.user) table {
  display: inline-block;
  width: unset;
  border-spacing: 0;
  border-collapse: collapse;
}
body.model.create-edit:not(.request):not(.user) table tr td {
  vertical-align: middle;
}
body.model.create-edit:not(.request):not(.user) table tr td input {
  display: inline-block;
}
body.model.create-edit.faq table.form-group {
  width: 100%;
  display: table;
}
body.model.create-edit.faq table.form-group td.longAnswer {
  width: 100%;
}
body.model.create-edit.email-signature .admincontent .row {
  float: left;
}
body.model.create-edit.userProperty table textarea {
  width: 505px;
}
body.model label.info-icon:after {
  font-family: "FontAwesome";
  content: "\f05a";
}
body.mandator.listing .logo img.preview {
  max-width: 250px;
}
body.anfragencontent form[name=filterform] {
  padding-top: 2px;
}
body.anfragen_verteilung table#pipeline {
  border-top: 0;
  padding: 3px;
  margin-top: 75px;
  font-size: 10px;
}
body.anfragen_verteilung table#pipeline th {
  border-bottom: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  text-align: left;
  font-style: italic;
  padding: 5px 10px;
  background-color: #fff;
  color: #000;
}
body.anfragen_verteilung table#pipeline .rotate {
  height: 40px;
  white-space: nowrap;
}
body.anfragen_verteilung table#pipeline .rotate > div {
  -ms-transform: rotate(-90deg);
  /* IE 9 */
  -webkit-transform: rotate(-90deg);
  /* Chrome, Safari, Opera */
  transform: translate(0, 10px) rotate(-90deg);
  width: 10px;
}
body.berichte table tr td:first-child {
  width: 318px;
}
body.users form#user_import_start {
  margin: 0;
}
body.users form#user_import_start button {
  float: right;
}
body.appointment-planning .fancybox-inner {
  overflow: hidden !important;
}
body.appointment-planning #intermissionTimes .working-place {
  display: none;
}
body.appointment-planning.anfrage-planning #clerkAppointments {
  opacity: 1;
}
body.appointment-planning #clerkAppointments .bootstrap-calendar #wvlToggler {
  width: 100%;
  height: 20px;
  line-height: 10px;
  border-color: #343a40;
}
body.appointment-planning #clerkAppointments .bootstrap-calendar:not(.wvlHidden) #wvlToggler span.show {
  display: none;
}
body.appointment-planning #clerkAppointments .bootstrap-calendar.wvlHidden #wvlToggler span.hide {
  display: none;
}
body.appointment-planning #clerkAppointments .bootstrap-calendar.wvlHidden #collapseWvl {
  display: none;
}
body.appointment-planning #clerkAppointments .bootstrap-calendar .cal-week-box .home-office {
  border-color: red;
}
body.appointment-planning #clerkAppointments .cal-day-hour {
  font-size: 11px;
}
body.appointment-planning #clerkAppointments .cal-event-week {
  font-size: 11px;
}
body.appointment-planning #clerkAppointments .cal-week-box .cal-row-wvl {
  font-size: 11px;
}
body.appointment-planning #clerkAppointments .cal-week-box .cal-row-wvl .day-highlight {
  line-height: 15px;
}
body.appointment-planning form.timeTables .row, body.appointment-planning form.awayTables .row {
  justify-content: center;
}
body.appointment-planning form.timeTables .row > div, body.appointment-planning form.awayTables .row > div {
  padding-left: 15px;
  padding-right: 15px;
}
body.appointment-planning form.timeTables table, body.appointment-planning form.awayTables table {
  border: 0;
}
body.appointment-planning form.timeTables table tr, body.appointment-planning form.awayTables table tr {
  vertical-align: middle;
}
body.appointment-planning form.timeTables table thead td.remove, body.appointment-planning form.awayTables table thead td.remove {
  width: 0;
}
body.appointment-planning form.timeTables table tbody th, body.appointment-planning form.awayTables table tbody th {
  min-width: 233px;
  background-color: #9c4040;
  font-style: unset;
}
body.appointment-planning form.timeTables table tbody th label, body.appointment-planning form.awayTables table tbody th label {
  margin-bottom: 0;
}
body.appointment-planning form.timeTables table tbody th div.form-group, body.appointment-planning form.awayTables table tbody th div.form-group {
  display: inline-block;
  margin-bottom: 0;
}
body.appointment-planning form.timeTables table tbody th div.form-group select, body.appointment-planning form.awayTables table tbody th div.form-group select {
  height: 30px;
  min-width: 100px;
}
body.appointment-planning form.timeTables table tbody th div.form-group select.weekSelection, body.appointment-planning form.awayTables table tbody th div.form-group select.weekSelection {
  min-width: 160px;
}
body.appointment-planning form.timeTables table tbody td, body.appointment-planning form.awayTables table tbody td {
  vertical-align: middle;
}
body.appointment-planning form.timeTables table tbody td.remove, body.appointment-planning form.awayTables table tbody td.remove {
  cursor: pointer;
  border-top: 1px solid #CECECE;
  width: 20px;
}
body.appointment-planning form.timeTables table tbody td.remove:after, body.appointment-planning form.awayTables table tbody td.remove:after {
  content: "x";
}
body.appointment-planning form.timeTables table tfoot td.exception-adding, body.appointment-planning form.timeTables table tfoot td.record-adding, body.appointment-planning form.awayTables table tfoot td.exception-adding, body.appointment-planning form.awayTables table tfoot td.record-adding {
  text-align: center;
  border: 0;
}
body.appointment-planning form.timeTables thead td {
  border: 0;
}
body.appointment-planning form.awayTables table {
  display: inline-block;
  width: unset;
}
body.appointment-planning form.awayTables th.allDayCheck, body.appointment-planning form.awayTables td.allDayCheck {
  width: 85px;
  max-width: 85px;
}
body.appointment-planning form.awayTables th.von, body.appointment-planning form.awayTables td.von {
  min-width: 270px;
  max-width: 270px;
}
body.appointment-planning form.awayTables th.bis, body.appointment-planning form.awayTables td.bis {
  width: 150px;
  max-width: 150px;
}
body.appointment-planning form.awayTables thead td {
  border-top-width: 0;
  border-right-width: 0;
}
body.administration .row [class^=col-], body.baufi .row [class^=col-], body.grunderwerbsteuer .row [class^=col-], body.scoring-tables .row [class^=col-] {
  text-align: center;
}
body.administration table, body.baufi table, body.grunderwerbsteuer table, body.scoring-tables table {
  display: inline-block;
  width: unset;
  border-spacing: 0;
  border-collapse: collapse;
}
body.administration table tr td, body.baufi table tr td, body.grunderwerbsteuer table tr td, body.scoring-tables table tr td {
  vertical-align: middle;
}
body.administration table tr td input, body.baufi table tr td input, body.grunderwerbsteuer table tr td input, body.scoring-tables table tr td input {
  display: inline-block;
}
body.conversion table {
  display: inline-block;
  width: unset;
  border-spacing: 0;
  border-collapse: collapse;
}
body.conversion table tr td {
  vertical-align: middle;
}
body.conversion table tr td input {
  display: inline-block;
}
body.conversion label {
  margin: 0;
}
body.slug-view-history tr td.mortgageOpeningTotalPercentage {
  background-color: #145621;
  color: #fff;
}
body.slug-view-history tr td.mortgageSentOpeningPercentage {
  background-color: darkorange;
}
body.slug-view-history tr td.mortgageSentTotalPercentage {
  background-color: red;
  color: #fff;
}
body.administration .admincontent, body.appointment-planning .admincontent {
  font-size: 14px;
}
body.office-away-overview table, body.statistik table, body.appointment-planning form.timeTables table {
  width: unset;
}
body.office-away-overview .admincontent {
  font-size: 12px;
}
body.logbook.listing {
  padding: 10px;
}
body.request #newentry {
  padding-top: 15px;
}
body.request.pipeline .container-fluid .admincontent {
  box-sizing: content-box;
}
body.request.pipeline a.reload {
  margin: 2px 0 0 30px;
}
body.request.pipeline .DataTables_sort_wrapper .DataTables_sort_icon {
  margin-top: 0;
}
body.request.create-edit #information_bar {
  float: left;
  font-size: 14px;
  font-weight: bold;
  margin-top: 3px;
}
body.request.create-edit #information_bar h2 {
  float: left;
}
body.request.create-edit #information_bar #request_ids {
  display: table;
  float: left;
  margin: 5px 0 5px 20px;
  white-space: nowrap;
}
body.request.create-edit #information_bar #request_ids div {
  display: table-row;
}
body.request.create-edit #information_bar #request_ids div span {
  display: table-cell;
}
body.request.create-edit #information_bar #request_ids div span:first-child {
  text-align: right;
  padding-right: 5px;
}
body.request.create-edit #information_bar #request_ids div span:nth-child(2) {
  text-align: left;
}
body.request.create-edit #information_bar #request_names_label {
  float: left;
  margin: 5px 0 0 20px;
}
body.request.create-edit #information_bar #request_names {
  float: left;
  margin: 5px 0 0 20px;
}
body.request.create-edit #online-meeting {
  float: right;
  margin-top: 10px;
}
body.request.create-edit #autocomplete_vermittler {
  width: 250px;
}
body.request.create-edit table.fallarten tr td:first-child, body.request.create-edit table.falleigenschaften tr td:first-child, body.request.create-edit table.clientinfo tr td:first-child, body.request.create-edit table.partnerinfo tr td:first-child {
  width: 220px;
}
body.request.create-edit #priority_display {
  float: right;
}
body.request.create-edit .api-send {
  color: #C00;
}
body.request.create-edit .api-send img {
  position: relative;
  top: 2px;
  margin-right: 10px;
}
body.request.create-edit .invalid {
  margin-bottom: 7px;
  font-style: italic;
}
body.request.create-edit #status-bar .custom-checkbox span {
  float: left;
  padding-left: 30px;
  padding-top: 5px;
}
body.request.create-edit #status-bar .custom-checkbox.video span {
  padding-left: 40px;
}
body.request.create-edit #unterlagen table {
  border-collapse: separate;
}
body.request.create-edit #stammdaten div.row.table {
  width: 960px;
  padding: 0;
  border-color: #EBEBEC #EBEBEC #ACCED0;
  border-style: solid;
  border-width: 1px 1px 3px;
  margin-left: 0;
  margin-right: 0;
}
body.request.create-edit #stammdaten div.row.table div {
  padding-left: 0;
  padding-right: 0;
}
body.request.create-edit #stammdaten div.row.table div.table-cell {
  display: flex;
  background-color: #F5F5F6;
  border-bottom: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  vertical-align: top;
}
body.request.create-edit #stammdaten div.row.table div.table-cell div {
  padding: 5px 10px;
}
body.request.create-edit #stammdaten div.row.table div.table-cell div:first-child {
  border-right: 1px solid #CECECE;
}
body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(1), body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(2) {
  border-top: 1px solid #CECECE;
}
body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(1), body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(2), body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(4n+1), body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(4n+2) {
  background-color: #FFFFFF;
}
body.request.create-edit #stammdaten div.row.table div.table-cell:nth-child(2n+1) {
  border-left: 1px solid #CECECE;
}
body.request.create-edit #stammdaten div.row.table div.table-cell:last-child, body.request.create-edit #stammdaten div.row.table div.table-cell:nth-last-child(2):nth-child(2n+1) {
  border-bottom: none;
}
body.request.create-edit #linuxbox {
  width: 100%;
  min-height: 400px;
  border: 0 none;
}
body.request.create-edit .produktkarten button.book-all {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-top: -46px;
}

.nav-item {
  cursor: pointer;
}

.modal {
  display: none;
}

.btn-old, a#parent-logbook {
  font-size: 12px;
  min-height: 22px;
  line-height: 22px;
  display: inline-block;
}

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

a[class^=fancybox]:empty:before {
  content: none;
}

a.btn-old:hover, a#parent-logbook:hover {
  color: #fff;
}

.btn-inverse {
  color: white;
  background-color: black;
  border-color: black;
}
.btn-inverse:hover {
  color: white;
  background-color: #333333;
  border-color: #333333;
}

table.form-group {
  margin-bottom: unset;
}
table.form-group td {
  vertical-align: middle;
  /*
  		select, input, textarea {
  			background-color: unset;
  		}
  */
}
table.form-group td, table.form-group td .form-control {
  font-size: 14px;
}
table.form-group td label {
  font-weight: bold;
  margin: 0;
}
table.form-group td input {
  min-width: 220px;
}

hr.light {
  border: 0 solid #aaa;
  border-top-width: 1px;
  height: 0;
}

a, .ui-widget-content a {
  color: var(--btn-bg-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  border: 0px;
}

th {
  color: #FFF;
  font-weight: bold;
  background-color: #000;
}

table.depotnav td {
  width: 200px;
  height: 30px;
  text-align: center;
  background-color: #eeeeee;
}

td.status3, td.handled1 {
  color: #008800;
}

td.status1, td.handled0 {
  color: #aa0000;
}

td.editja {
  background-color: #008800;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

td.editnein {
  background-color: #aa0000;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}

input.mcesubmit {
  width: 320px;
}

input[required], textarea[required], select[required], button[required] {
  border: 1px solid #d2d263;
}

.border-red {
  border: 1px solid red;
}

/*
submit {
	width: 80px;
	background-color: green;
}
*/
.clear {
  clear: both;
}

.table_header {
  color: #FFF;
  font-weight: bold;
}

.table_row {
  background-color: #FFF;
}

/*
.topzins_input, .topzins_textarea {
    width: 140px;
    margin: 5px;
}
.topzins_textarea {
    height: 150px;
}*/
.fa-10x {
  font-size: 10em;
}

.msg {
  padding: 10px;
  border: 1px solid #0A0;
  width: 500px;
  background-color: #EFEFEF;
  color: #0A0;
  font-weight: bold;
  margin-bottom: 15px;
}

.ok {
  color: #080;
}

.inactive {
  color: #800;
}

.clear {
  clear: both;
}

div.table {
  border: 10px solid #F5F5F6;
  padding: 10px;
  /*
  	table {
  		border-collapse: separate;
  	}
  	*/
}

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

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

.fg-black {
  color: black;
}

.fg-blue {
  color: blue;
}

.fg-red {
  color: red;
}

.even {
  background-color: #F5F5F6;
}

.odd {
  background-color: #FFFFFF;
}

table {
  width: 100%;
  font-size: 12px;
  border-color: #EBEBEC #EBEBEC #ACCED0;
  border-style: solid;
  border-width: 1px 1px 3px;
  text-align: left;
}
table.odd-even > tr:nth-child(even), table.odd-even > tbody > tr:nth-child(even) {
  background-color: #F5F5F6;
}
table.odd-even > tr:nth-child(odd), table.odd-even > tbody > tr:nth-child(odd) {
  background-color: #FFFFFF;
}
table.even-odd > tr:nth-child(even), table.even-odd > tbody > tr:nth-child(even) {
  background-color: #FFFFFF;
}
table.even-odd > tr:nth-child(odd), table.even-odd > tbody > tr:nth-child(odd) {
  background-color: #F5F5F6;
}
table, table.dataTable {
  border-collapse: collapse;
}
table tr.disabled, table.dataTable tr.disabled {
  opacity: 0.3;
}
table tr th, table.dataTable tr th {
  border-bottom: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  text-align: left;
  font-style: italic;
  padding: 5px 10px;
}
table tr th.grey, table.dataTable tr th.grey {
  color: black;
  background-color: #eeeeee;
}
table tr td, table.dataTable tr td {
  border-bottom: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  padding: 5px 10px;
  border-right: 1px solid #CECECE;
  vertical-align: top;
}
table tbody tr.client_exists, table tbody tr.gesperrt, table tbody tr.locked, table tbody tr.missing, table tbody tr.inactive, table.odd-even tbody tr.client_exists, table.odd-even tbody tr.gesperrt, table.odd-even tbody tr.locked, table.odd-even tbody tr.missing, table.odd-even tbody tr.inactive, table.even-odd tbody tr.client_exists, table.even-odd tbody tr.gesperrt, table.even-odd tbody tr.locked, table.even-odd tbody tr.missing, table.even-odd tbody tr.inactive {
  background-color: #FFC0C0;
}
table tbody tr.headline, table.odd-even tbody tr.headline, table.even-odd tbody tr.headline {
  background-color: #C0C0C0;
  font-weight: bold;
}
table tbody tr.inaktiv, table.odd-even tbody tr.inaktiv, table.even-odd tbody tr.inaktiv {
  background-color: #FFC;
}
table tbody tr.highlight_ergebnis, table.odd-even tbody tr.highlight_ergebnis, table.even-odd tbody tr.highlight_ergebnis {
  background-color: #9DCECE;
}
table tbody tr.ok, table.odd-even tbody tr.ok, table.even-odd tbody tr.ok {
  background-color: #C0FFC0;
}
table tbody tr.old, table.odd-even tbody tr.old, table.even-odd tbody tr.old {
  background-color: #F5A9A9;
}
table tbody tr.new, table tbody tr td.new, table.odd-even tbody tr.new, table.odd-even tbody tr td.new, table.even-odd tbody tr.new, table.even-odd tbody tr td.new {
  background-color: #FFC;
}
table tbody tr.archiv td, table.odd-even tbody tr.archiv td, table.even-odd tbody tr.archiv td {
  background-color: #EFEFEF;
}
table#pipeline tr td, table.dataTable tr td {
  vertical-align: middle;
}
table.no-border {
  border-width: 0;
}
table.no-border tr th, table.no-border tr td {
  border-width: 0;
}
table.center {
  margin-left: auto;
  margin-right: auto;
}
table.fallarten {
  border-top-color: #ACCED0;
  border-bottom-width: 2px;
}
table.fallarten tr.ep2-send td {
  text-align: center;
}
table tr.highlight {
  background-color: #b1b116 !important;
}

.plupload-container .upload-added {
  margin-bottom: 5px;
}
.plupload-container .upload-added b {
  color: red;
}

table.dataTable td.checkbox, table.form-group td.checkbox {
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 22px;
  text-align: left;
}
table.dataTable td.checkbox input, table.form-group td.checkbox input {
  height: 29px;
  width: unset;
  min-width: unset;
}

table#vitae tr td {
  padding: 0;
}
table#vitae tr th, table#vitae tr td input {
  padding-left: 5px;
  padding-right: 5px;
}
table#vitae tr th.year {
  width: 0;
}

div.modal-dialog {
  font-size: 14px;
}
div.modal-dialog div.modal-header {
  display: block;
  /*
  		align-items: baseline;
          flex-direction: row;
  		justify-content: space-between;
  */
}
div.modal-dialog div.modal-header .modal-title {
  margin-top: 0;
  display: inline-block;
}

h3.popover-header {
  margin-top: 0;
}

#events-modal .modal-content {
  box-shadow: 0 0 35px 10px #0d2122;
}
#events-modal .modal-content .modal-header {
  padding: 5px;
}
#events-modal .modal-content .modal-header button.close {
  padding: 0;
  margin: 0 0.5rem 0 0;
  outline: none;
}
#events-modal .modal-content div.appointment-dialog {
  text-align: center;
  padding: 0 8px 5px 8px;
}
#events-modal .modal-content div.appointment-dialog .card {
  width: 75%;
  border-color: black;
}
#events-modal .modal-content div.appointment-dialog .card label {
  margin-bottom: 0;
}
#events-modal .modal-content div.appointment-dialog div.appointment-datetime {
  padding: 3px;
  background-color: #fdf5e6;
  border-radius: 8px;
  margin-top: 12px;
  margin-bottom: 12px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options {
  background-color: #ffffff;
  border-radius: 5px;
  border: 1px solid black;
  margin-bottom: 10px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options h4 {
  margin-top: 5px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options .option {
  margin-bottom: 5px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options .option input[type=checkbox] {
  position: relative;
  top: 1px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options .option select {
  margin-bottom: 5px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options .option label {
  margin-bottom: 5px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
#events-modal .modal-content div.appointment-dialog div.appointment-options ul span {
  position: relative;
  top: 1px;
}

td#appointment-column {
  width: 280px;
}
td#appointment-column img {
  position: relative;
  top: 3px;
}
td#appointment-column div#appointment-actions ul {
  display: none;
  background-color: #ffffff;
  position: relative;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px 20px;
  list-style-type: none;
}
td#appointment-column div#appointment-actions:hover ul {
  z-index: 1;
  display: block !important;
}

#unterlagen .checkbox_date {
  position: relative;
  top: 2px;
}
#unterlagen .remove_row img {
  padding-top: 1px;
}
#unterlagen .fa-question-circle {
  font-size: 15px;
  padding-top: 3px;
  color: #afafaf;
}
#unterlagen table.needed-docs td:nth-child(1), #unterlagen table.needed-docs td:nth-child(4) {
  width: 51px;
  text-align: center;
}
#unterlagen table.needed-docs td:nth-child(3) {
  width: 121px;
}
#unterlagen table.additional-docs td:nth-child(1), #unterlagen table.additional-docs td:nth-child(3) {
  width: 51px;
  text-align: center;
}

div.systemMessages {
  background-color: #F5F5F6;
  padding: 10px 10px 5px;
  margin-bottom: 10px;
  margin-top: 10px;
}
div.systemMessages:empty {
  display: none;
}
div.systemMessages div.system-message {
  position: relative;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 5px;
  background-color: #FFFFC0;
  line-height: 22px;
  color: darkred;
  font-size: 14px;
}
div.systemMessages div.system-message.has-close-callback {
  cursor: pointer;
  padding-right: 30px;
}
div.systemMessages div.system-message.has-close-callback:after {
  color: #fff;
  content: " ⨂";
  position: absolute;
  right: 10px;
  background-color: #a97272;
  border-radius: 0.45em;
  height: 0.9em;
  line-height: 0.7em;
  top: 50%;
  transform: translateY(-50%);
}

h1 {
  color: var(--btn-bg-color);
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: 2px 2px 0px #EFEFEF;
}

h2 {
  border-bottom: 1px solid #EBEBEB;
  color: var(--btn-bg-color);
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}

h3 {
  color: #3A6C78;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
}

h4 {
  color: #505564;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

a.padding {
  padding-left: 20px;
}

a.page_forward {
  background-repeat: no-repeat;
  background-image: url(../img/icon_forward.gif);
  background-position: 0 1px;
}

a.mc_page {
  background-repeat: no-repeat;
  background-image: url(../img/icon-user.gif);
  background-position: 0 1px;
}

div.filter select option {
  padding: 0 5px;
}

input.filter {
  color: #787878;
}

select.active,
input.active {
  color: #83A2A4;
}

img._free {
  display: none;
}

img.hilfe {
  position: relative;
  top: 2px;
}

table.checkliste td.head {
  color: #fff;
}

table.checkliste tr.head {
  color: #FFFFFF !important;
  background: #000000;
  border: 0;
  font-weight: bold;
}

a.statusbutton {
  display: block;
  padding: 2px 10px;
  background: #F0F0F0;
  float: left;
  margin-right: 10px;
  text-decoration: none;
}

a.statusbutton-handled {
  color: #FFFFFF;
  background-color: #800000;
}

a.statusbutton-nothandled {
  color: #FFFFFF;
  background-color: #008000;
}

td.rechts,
div.table table td.rechts {
  text-align: right;
}

ul.anfragentabs {
  list-style: none;
}

ul.anfragentabs li {
  float: left;
  margin: 0 5px 5px 0;
  background: #ACCED0;
  padding: 5px 15px;
}

ul.anfragentabs li.clear {
  clear: both;
}

ul.anfragentabs li a {
  color: #FFFFFF;
}

div.anfrage-schritt {
  display: none;
}

.btn-old, a#parent-logbook,
a.new,
button[type=submit].new,
.ui-widget-content a.new,
.ui-widget-content a.btn-old,
input.like_new_link,
input[type=submit].neuerVorgang {
  background: var(--btn-bg-color);
  padding: 5px 15px;
  color: #FFFFFF;
  cursor: pointer;
}

a.new,
input[type=submit].neuerVorgang {
  background-color: var(--btn-bg-color);
  color: #ffffff;
}
a.new:hover,
input[type=submit].neuerVorgang:hover {
  text-decoration: underline;
}

.btn-old, a#parent-logbook,
a.new,
button[type=submit].new,
input[type=submit].neuerVorgang {
  font-size: 12px;
  min-height: 22px;
  line-height: 22px;
  border: 1px solid #111111;
  border-radius: 3px;
}

.btn-old:hover, a#parent-logbook:hover,
button[type=submit].new:hover,
a.new:hover {
  opacity: 0.7;
  text-decoration: none;
}

a.btn-mandator, button.btn-mandator {
  padding: 5px 15px;
  color: #FFFFFF;
  cursor: pointer;
  margin-right: 3px;
  font-size: 12px;
  min-height: 22px;
  line-height: 22px;
  border: 1px solid #111111;
  border-radius: 3px;
}

a.new {
  display: block;
  float: left;
  margin-right: 3px;
}

input.like_new_link {
  border: 0;
  line-height: 24px;
  cursor: pointer;
}

div.pages {
  float: right;
  padding: 5px 0 0 0;
  text-align: right;
}

div.searchform {
  float: left;
  margin-left: 20px;
  margin-top: 5px;
}
div.searchform input.active {
  background: #FCFAEF none repeat scroll 0 0;
  border: 1px solid #ACCED0;
  color: #83A2A4;
  padding: 2px 5px;
}

select option {
  padding: 2px 5px;
}

div.archiveform {
  float: left;
  margin-left: 20px;
}

div.login {
  font-size: 13px;
  border: 5px solid #F2F3F4;
  margin: 100px auto 0 auto;
  width: 300px;
  padding: 10px;
}
div.login form {
  margin-bottom: 13px;
}
div.login div#mandator-info {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

div.login img.logo {
  display: block;
  margin: 15px auto;
  max-width: 75%;
}
div.login h3 {
  color: #ACCED0;
  text-align: center;
}
div.login div.field {
  width: 200px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}
div.login div.field label {
  display: inline-block;
  margin-top: 7px;
  margin-bottom: 3px;
}
div.login div.field input {
  display: block;
  height: 20px;
  width: 100%;
  border: 1px solid #C0C0C0;
}
div.login #qr-box {
  line-height: 1.25;
}
div.login #qr-box img {
  margin-top: 10px;
  margin-bottom: 10px;
}
div.login button {
  display: block;
  width: 100px;
  margin: 20px auto 0 auto;
  border: 1px solid #aaa;
  border-radius: 5px;
  height: 22px;
}
div.login p.system {
  text-align: center;
  font-weight: bold;
  color: #800000;
  margin: 20px 0;
}

div.excelexport {
  float: right;
  text-align: right;
  margin-top: 7px;
}

div.agent_search {
  float: left;
  margin-top: 0;
  margin-left: 5px;
}

div.agent_search input {
  margin-top: 3px;
  margin-bottom: 3px;
}

div.remark {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #C0C0C0;
  padding: 5px 10px;
}

div.anfragendetails-left {
  width: 48%;
  float: left;
}

#uebersicht a,
div.anfragendetails-left a {
  color: #000;
}

* html div.anfragendetails-left {
  width: 44%;
}

div.anfragendetails-right {
  width: 48%;
  float: right;
}

* html div.anfragendetails-right {
  width: 44%;
}

span.error {
  color: #C00;
}

span.ok {
  color: #0C0;
}

label span.form-error {
  color: #F00;
  position: relative;
}
label span.form-error:before {
  content: "⚠";
}
label span.form-error:empty {
  display: none;
}
label span.form-error span.form-error-detail {
  display: none;
}
label:hover span.form-error span.form-error-detail {
  position: absolute;
  left: 15px;
  top: -5px;
  display: inline-block;
  background-color: #F00;
  color: white;
  padding: 8px;
  border-radius: 5px;
  z-index: 1;
  min-width: 175px;
}

.custom-upload {
  display: inline-block;
}
.custom-upload button {
  padding: 5px 10px;
  border-radius: 5px;
}
.custom-upload button:hover {
  opacity: 0.8;
}

td.fileerror {
  font-weight: bold;
  background-color: #FFC0C0;
  background-image: url(../img/error.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  padding-left: 22px;
}

.formerror {
  padding: 2px;
  border: 1px solid red !important;
  background-color: #EFEFEF;
  color: #A00;
  font-weight: normal;
}

span#meeting-url {
  word-wrap: break-word;
  cursor: pointer;
}

label.formerror {
  height: 15px;
  margin-left: 20px;
}

.ac_results {
  padding: 0px;
  border: 1px solid black;
  background-color: white;
  overflow: hidden;
  z-index: 99999;
}

.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ac_results li {
  margin: 0px;
  padding: 2px 5px;
  cursor: default;
  display: block;
  /*
  if width will be 100% horizontal scrollbar will apear
  when scroll mode will be used
  */
  /*width: 100%;*/
  font: menu;
  font-size: 12px;
  /*
  it is very important, if line-height not setted or setted
  in relative units scroll will be broken in firefox
  */
  line-height: 16px;
  overflow: hidden;
}

.ac_odd {
  background-color: #eee;
}

.ac_over {
  background-color: #0A246A;
  color: white;
}

p.notice {
  padding: 5px 10px;
  background: #ACCED0;
  margin-bottom: 20px;
}

p.notice a {
  font-weight: bold;
}

input[type=text].input, input[type=text].datafield, input[type=text].databody {
  padding: 0 3px;
}

input.betrag {
  text-align: right;
}

div#save_waiter {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 142px;
  text-align: center;
  font-size: 11px;
  display: none;
  z-index: 1050;
  opacity: 0.9;
}
div#save_waiter:before {
  content: "Bitte warten ...";
  display: inline-block;
  padding: 44px 5px 5px;
  border: 1px solid #e0afaf;
  border-radius: 5px;
  width: 100%;
  background-color: #fff;
  background-image: url("../../shared/img/ajax-loader.gif");
  background-position: center 10px;
  background-repeat: no-repeat;
  box-shadow: 1px 2px 8px -1px rgba(0, 0, 0, 0.75);
}

input.input,
select.input {
  font-size: 12px;
  height: 22px;
  width: 250px;
  box-sizing: border-box;
  max-width: 100%;
}

select.reschedule {
  border: 2px solid #cc0000;
}

span.reschedule, option.reschedule {
  color: #cc0000;
  font-weight: bold;
}

form#newentry input.input,
form#newentry select.input {
  width: 285px;
}

div#fragment-valuation .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
div#fragment-valuation .container-fluid form#valuation input[type=checkbox] {
  position: relative;
  top: 1px;
}
div#fragment-valuation .container-fluid #valuation-result {
  width: 600px;
}
div#fragment-valuation .container-fluid #valuation-result .result-title {
  font-weight: bold;
}
div#fragment-valuation .container-fluid #valuation-result .result-title-main {
  font-size: 16px;
}
div#fragment-valuation .container-fluid #valuation-result .result-value {
  font-weight: bold;
  font-size: 20px;
  color: #d21224;
}
div#fragment-valuation .container-fluid #valuation-result .result-value-main, div#fragment-valuation .container-fluid #valuation-result .confidence {
  font-size: 26px;
}
div#fragment-valuation .container-fluid #valuation-pdf {
  font-size: 1em;
  color: #fff;
}

select.bundesland {
  width: 233px;
}

input.input:focus {
  background-color: #FFFFC0;
}

select, input {
  box-sizing: border-box;
}
select.tiny, select.short, select.midsize, select.medium, select.large, input.tiny, input.short, input.midsize, input.medium, input.large {
  height: 22px;
}
select.tiny, select.short, input.tiny, input.short {
  margin-right: 5px;
}
select.tiny, input.tiny {
  width: 45px;
}
select.short, input.short {
  width: 60px;
}
select.midsize, input.midsize {
  width: 100px;
}
select.medium, input.medium {
  width: 185px;
}
select.large, input.large {
  width: 450px;
}

input.input, input.tiny, input.short, input.midsize, input.medium, input.large {
  border: 1px solid #83A2A4;
}

#tabs input.short_date {
  width: 40px;
  margin: 0;
}

input.berechnete_summe,
input.berechnete_summe:focus {
  background: transparent;
  border-width: 0;
  font-weight: bold;
}

textarea {
  resize: both;
}

/*
textarea.small {
    width: 250px;
    height: 60px;
}
*/
.full-width {
  box-sizing: border-box;
  width: 100%;
}

textarea.full-width {
  height: 175px;
}

textarea.normal {
  width: 100%;
  border: 1px solid #83A2A4;
  font-size: 12px;
  height: 200px;
}

/*
textarea.large {
    width: 450px;
    border: 1px solid #83A2A4;
    font-size: 12px;
    height: 200px;
}*/
textarea.all_remarks {
  width: 530px;
  border: 1px solid #83A2A4;
  font-size: 12px;
  height: 200px;
}

textarea.remarkbox {
  width: 700px;
  border: 1px solid #83A2A4;
  font-size: 12px;
  height: 350px;
}

/*
textarea.big {
    width: 620px;
    border: 1px solid #83A2A4;
    font-size: 12px;
    height: 200px;
}

.pseudo_textarea_big {
    width: 620px;
    border: 1px solid #83A2A4;
    font-size: 12px;
    background-color: #EFEFEF;
}
.pseudo_textarea_big p {
    margin: 0;
    padding: 5px;
}
*/
textarea:focus {
  background-color: #FFFFC0;
}

input.faketext {
  outline: none;
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  height: 20px;
  width: 250px;
  padding-left: 0;
  caret-color: transparent;
}

textarea.faketext:focus {
  background-color: #FFF;
}

.label {
  font-weight: bold;
  margin: 2px 0 5px;
  color: #83A2A4;
}

textarea.postit {
  border: 1px solid #83A2A4;
  font-size: 12px;
  height: 40px;
  width: 250px;
}

option.inactive {
  background-color: #FFC0C0;
  color: #000;
}

option.active {
  background-color: #C0FFC0;
  color: #000;
}

option.banned {
  background-color: #FF0000;
  color: #FFF;
}

/* located in demo.css and creates a little calendar icon
 * instead of a text link for "Choose date"
 */
a.dp-choose-date {
  float: left;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 1px 3px;
  display: block;
  text-indent: -2000px;
  overflow: hidden;
  background: url(../img/calendar.png) no-repeat;
}

a.dp-choose-date.dp-disabled {
  background-position: 0 -20px;
  cursor: default;
}

/* makes the input field shorter once the date picker code
 * has run (to allow space for the calendar icon
 */
input.dp-applied {
  width: 80px;
  float: left;
}

.priority_3 {
  background-color: #FFC0C0;
}

td.priority_3 {
  background: url("../img/priority_3.gif") repeat-y right top;
}

.priority_2 {
  background-color: #FFFFC0;
}

td.priority_2 {
  background: url("../img/priority_2.gif") repeat-y right top;
}

.priority_1 {
  background-color: #C0FFC0;
}

td.priority_1 {
  background: url("../img/priority_1.gif") repeat-y right top;
}

.priority_0 {
  background-color: #FFF;
}

td.priority_0 {
  background: url("../img/priority_0.gif") repeat-y right top;
}

td.priority_3,
td.priority_2,
td.priority_1,
td.priority_0 {
  width: 5px;
}

div.priority_3,
div.priority_2,
div.priority_1,
div.priority_0 {
  height: 17px;
  width: 117px;
  border: 1px solid #000;
  display: inline-block;
  vertical-align: top;
  margin-top: 10px;
  margin-left: 10px;
}

table.noborders, table.noborders tr td {
  border: 0;
}

table#remarks {
  width: 95%;
  border-color: #000;
}
table#remarks tr td {
  padding: 0;
  border-color: #000;
}
table#remarks tr td h4 {
  color: #000;
  margin: 0;
  font-size: 14px;
  padding: 5px;
}
table#remarks tr td h4 img {
  vertical-align: middle;
  position: relative;
  top: -1px;
}
table#remarks tr td p {
  margin: 0;
  padding: 0px 5px 5px 25px;
}
table#remarks tr td.internal {
  background-color: #ABABAB;
}
table#remarks tr td.external {
  background-color: #EFEFEF;
}
table#remarks tr td.first, table#remarks tr td.outbound1 {
  background-color: #ff7575;
}
table#remarks tr td.outbound, table#remarks tr td.outbound_ne {
  background-color: #BBBBBB;
}
table#remarks tr td.inbound, table#remarks tr td.inbound_ne {
  background-color: #f88367;
}
table#remarks tr td.appointment, table#remarks tr td.status {
  background-color: #EFCDF8;
}
table#remarks tr td.submission-protocol {
  background-color: #ffffff;
}
table#remarks tr td.teams {
  background-color: #c3c3ff;
}
table#remarks tr td.reminder {
  background-color: #FFC8C8;
}
table#remarks tr td.appointment-reservation {
  background-color: #ffa64f;
}
table#remarks tr td.conclusion {
  background-color: #1FCB4A;
}
table#remarks tr td.mailinbox {
  background-color: #A6DEEE;
}
table#remarks tr td.mailsent {
  background-color: #67C7E2;
}
table#remarks tr td.memo {
  background-color: #CAFFD8;
}
table#remarks tr td.tvo {
  background-color: #c7d6ce;
}
table#remarks tr td.postit {
  background-color: #FFFFC0;
}
table#remarks tr td.ep2 {
  background-color: #FFF046;
}
table#remarks tr td.ehyp {
  background-color: #f3eb63;
}
table#remarks tr.filter {
  background-color: #FFF;
}
table#remarks tr.filter td {
  font-family: Verdana, Arial, sans-serif;
  padding: 10px 5px 15px 25px;
}
table#remarks tr.filter td b {
  margin-right: 5px;
}
table#remarks tr.filter td img {
  vertical-align: middle;
  position: relative;
  top: -1px;
}

#clientinfo a {
  color: black;
}

a.notes,
a.fileserver {
  font-weight: bold;
  text-decoration: none;
  padding-left: 17px;
  background-repeat: no-repeat;
  background-position: 0px 0px;
}

a.notes {
  background-image: url(../img/conditions.gif);
}

a.fileserver {
  padding-top: 1px;
  padding-bottom: 2px;
  background-image: url(../img/server.png);
}

a.edit {
  padding: 2px 0 2px 20px;
  background: url(../img/edit.gif) no-repeat;
}

a.list {
  padding: 2px 0 2px 20px;
  background: url(../img/list_numbers.png) no-repeat;
}

a.ratings {
  padding: 2px 0 2px 20px;
  background: url(../img/star.png) no-repeat;
}

a.pdf {
  padding: 2px 0 2px 20px;
  background: url(/backend/img/pdf.gif) no-repeat;
}

a.notes:hover {
  text-decoration: underline;
}

.actionbox {
  border: 1px solid #333;
  padding: 10px;
  height: 150px;
  width: 125px;
  float: left;
  margin-right: 20px;
  font-size: 12px;
  background-color: #EFEFEF;
}

a.produktkarte_neu, a.produktkarte_neu:link, a.produktkarte_neu:visited, a.produktkarte_neu:hover, a.produktkarte_neu:active, a.angebot_neu, a.angebot_neu:link, a.angebot_neu:visited, a.angebot_neu:hover, a.angebot_neu:active {
  color: #83A2A4;
  font-weight: bold;
  text-decoration: none;
  padding-left: 17px;
  background-image: url(../img/add.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  line-height: 30px;
}
a.produktkarte_neu:hover, a.angebot_neu:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

input:not([type=button]).new,
select.new {
  background-color: #ACCED0;
}

#action a {
  text-decoration: underline;
  color: #83A2A4;
}

a.reload {
  background: var(--btn-secondary-bg-color);
  padding: 5px 15px;
  color: var(--btn-color);
  display: block;
  float: left;
}

.ui-widget-header {
  background: linear-gradient(to bottom, var(--bg-color), #aaadb2);
  color: var(--color);
}

div.bankfilter {
  margin-top: 5px;
  width: 350px;
  position: absolute;
  right: 35px;
  z-index: 999;
  text-align: right;
  color: black;
}

#clerk-picture-section {
  display: inline-block;
}
#clerk-picture-section img {
  border: 1px solid black;
  max-width: 230px;
}

#weekly_working_current {
  position: relative;
  top: 2px;
}
#weekly_working_current + button {
  padding-top: 0;
  padding-bottom: 0;
}

#illness-data, #scoring-data {
  position: relative;
  display: inline-block;
}
#illness-data #illness-history, #illness-data #scoring-history, #scoring-data #illness-history, #scoring-data #scoring-history {
  display: none;
  position: absolute;
  top: 0px;
  padding: 10px;
  min-width: 300px;
  z-index: 1;
  background-color: white;
  box-shadow: 1px 2px 12px 4px rgba(0, 0, 0, 0.75);
  border-radius: 5px;
}
#illness-data #illness-history h3, #illness-data #scoring-history h3, #scoring-data #illness-history h3, #scoring-data #scoring-history h3 {
  margin-top: 0;
}

#illness-data:hover #illness-history {
  display: block;
}

#scoring-data:hover #scoring-history {
  display: block;
}

#requestlist_wrapper table {
  clear: both;
  font-size: 11px;
  table-layout: fixed;
}
#requestlist_wrapper table tr th {
  font-weight: bold;
  font-style: normal;
  padding-left: 1px;
}
#requestlist_wrapper table tr th span {
  float: left;
}
#requestlist_wrapper table tr td.request_type {
  white-space: nowrap;
}
#requestlist_wrapper table tr td.priority span.extra-icons {
  margin-right: 10px;
}
#requestlist_wrapper table tr td.priority span.extra-icons .star {
  padding-bottom: 2px;
}
#requestlist_wrapper table tr td.action i.fa {
  position: relative;
  top: -2px;
  font-size: 1.4em;
  margin-right: 2px;
}
#requestlist_wrapper table tr#filters td {
  padding: 5px 2px;
}
#requestlist_wrapper table tr#filters td select {
  box-sizing: border-box;
  max-width: 100%;
}

#requestlist_wrapper table td.priority span.appointment-wvl, #requestlist_wrapper table td.priority span.extra-icons, body.anfragen_verteilung table td.priority span.appointment-wvl, body.anfragen_verteilung table td.priority span.extra-icons {
  display: inline-block;
}
#requestlist_wrapper table td.priority span.appointment-wvl.appointment-wvl, #requestlist_wrapper table td.priority span.extra-icons.appointment-wvl, body.anfragen_verteilung table td.priority span.appointment-wvl.appointment-wvl, body.anfragen_verteilung table td.priority span.extra-icons.appointment-wvl {
  white-space: nowrap;
  margin-right: 10px;
}
#requestlist_wrapper table td.priority span.appointment-wvl.extra-icons .star, #requestlist_wrapper table td.priority span.extra-icons.extra-icons .star, body.anfragen_verteilung table td.priority span.appointment-wvl.extra-icons .star, body.anfragen_verteilung table td.priority span.extra-icons.extra-icons .star {
  padding-bottom: 2px;
}
#requestlist_wrapper div.subcolumns, body.anfragen_verteilung div.subcolumns {
  float: left;
  width: 33%;
}

#requestlist_wrapper table td div.status, body.anfragen_verteilung table td div.status, #userlist_wrapper table td div.status {
  display: flex;
  align-items: center;
}
#requestlist_wrapper table td div.status-icons, body.anfragen_verteilung table td div.status-icons, #userlist_wrapper table td div.status-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
}
#requestlist_wrapper table td div.status-icons .postit_overview, body.anfragen_verteilung table td div.status-icons .postit_overview, #userlist_wrapper table td div.status-icons .postit_overview {
  width: 35px;
  height: 35px;
}

#userlist_wrapper {
  margin-top: 5px;
}

#requestlist_length,
#userlist_length {
  padding: 5px 10px;
}

#requestlist_paginate,
#requestlist_filter {
  padding: 10px 0 0;
}

.dataTables_paginate {
  padding-top: 2px;
}
.dataTables_paginate .fg-button {
  float: left;
}
.dataTables_paginate .fg-button .ui-icon {
  margin-top: 0;
}

#datatable {
  width: 100% !important;
}

.dataTables_info {
  padding: 5px 10px;
}

/*.postit_display {
    position: absolute;
    border: 1px solid #ACCED0;
    background-color: #FFF;
    padding: 10px;
}
*/
.postit_vermittler,
.postit_display {
  position: absolute;
  /*border: 1px solid #004494;*/
  background-color: #FFFFC0;
  padding: 10px;
  box-shadow: 1px 2px 6px #AAA;
  z-index: 1000;
}

textarea.dictionary {
  width: 400px;
  height: 150px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Leiste mit Buttons im Backend (über dem Hauptcontent) */
div.buttonbar {
  background-color: #ACCED0;
  height: 32px;
  margin: 6px 0;
  padding: 0;
}

div.buttonbar_left {
  height: 32px;
  float: left;
}

div.buttonbar_right {
  float: right;
  height: 32px;
  text-align: right;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Seiteninhalte */
div.content_area {
  border: 1px solid var(--btn-bg-color);
  width: 660px;
}

div.content_area_heading {
  background-color: var(--btn-bg-color);
  background-repeat: no-repeat;
  color: white;
  padding: 2px 3px;
}

div.content_element {
  border: 1px solid #ACCED0;
  width: 652px;
  margin: 3px;
}

div.content_hidden {
  border: 1px solid #cccccc;
}

div.content_element_heading {
  background-color: #ACCED0;
  background-repeat: no-repeat;
  float: left;
  height: 18px;
  padding: 2px 3px;
  width: 320px;
}

div.content_hidden div.content_element_heading {
  background-color: #e3e3e3;
  color: #aaaaaa;
}

div.content_element_heading img.heading_icon {
  vertical-align: middle;
  margin-right: 5px;
}

div.content_element_edit_icons {
  background-color: #ACCED0;
  float: left;
  height: 18px;
  padding: 2px 3px;
  text-align: right;
  width: 320px;
}

div.content_hidden div.content_element_edit_icons {
  background-color: #e3e3e3;
}

div.content_element_info {
  clear: both;
  padding: 8px 3px;
}

div.content_hidden div.content_element_info,
div.content_hidden div.content_element_info * {
  color: #aaaaaa;
}

div.content_element_footer {
  background-color: #f9f4f0;
  color: #d4beb0;
  font-family: arial, tahoma, verdana, helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  text-align: right;
}

div.content_hidden div.content_element_footer {
  background-color: #f0f0f0;
  color: #bbbbbb;
}

div.content_element_divider {
  height: 4px;
  font-size: 4px;
  line-height: 4px;
}

textarea.dictionary {
  width: 400px;
  height: 150px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Eingabeformulare */
table.inputform input.text {
  width: 380px;
}

table.inputform textarea {
  width: 380px;
}

p.form_error {
  background-color: #fff0f0;
  border: none;
  color: #aa0000;
  font-family: arial, verdana, tahoma, helvetica, sans-serif;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 5px;
  padding: 5px;
}

/*
 * jQuery UI Menu 1.8.11
 *
 * 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;
  margin: -1px;
}

div.bankhinweis-box {
  padding: 2px;
  border: 1px solid red;
  background-color: #f0fff0;
  margin-top: 23px;
  font-size: 12px;
  display: none;
}

.api-iframe {
  height: calc(100vh - 138px);
}
.api-iframe iframe {
  height: 100%;
  width: 100%;
  border-width: 0;
}

#abschluesse input, #abschluesse select {
  float: left;
}

#abschluesse input.checkbox {
  border: 2px solid blue;
  width: 20px;
}

#abschluesse label {
  width: 80px;
  margin-right: 2px;
  text-align: right;
  display: block;
  float: left;
}

#abschluesse label.right {
  width: auto;
  margin-left: 4px;
  text-align: left;
  display: block;
  float: left;
}

#abschluesse input.percent {
  margin-left: 12px;
}

#abschluesse ul {
  width: 860px;
  float: left;
}

#produkte_zusammenfassung {
  width: 220px;
}
#produkte_zusammenfassung div.spalte2 {
  margin-bottom: 12px;
}
#produkte_zusammenfassung #abschlussbriefe {
  max-width: 100%;
}

div.angebot-hinzu {
  color: blue;
  cursor: pointer;
  float: left;
  margin-right: 20px;
}

div.angebot-mailen {
  color: blue;
  cursor: pointer;
  float: left;
}

div.bankenadmin label {
  width: 200px;
  text-align: right;
  display: block;
  float: left;
  margin-right: 10px;
}

span.spanlink {
  color: black;
  text-decoration: underline;
  cursor: pointer;
}

/*div.angebote-formular {
	display:none;
}
*/
div.angebote-formular table {
  width: 98%;
}

div.angebote-formular div.error {
  border: 1px dotted red;
}

div.angebote-formular input.left {
  float: left;
}

div.angebotsliste table.angebotsliste {
  width: 1200px;
  background-color: white;
}
div.angebotsliste table.angebotsliste th {
  height: 30px;
  background-color: #fff;
  color: #666;
  font-weight: normal;
}
div.angebotsliste table.angebotsliste th.today, div.angebotsliste table.angebotsliste td.today {
  background: #FFFFC0;
  color: black;
}
div.angebotsliste table.angebotsliste th.past, div.angebotsliste table.angebotsliste td.past {
  background: #FFC0C0;
  color: black;
}
div.angebotsliste table.angebotsliste th.future, div.angebotsliste table.angebotsliste td.future {
  background: #C0FFC0;
  color: black;
}
div.angebotsliste table.angebotsliste th.unknown, div.angebotsliste table.angebotsliste td.unknown {
  background: green;
  color: white;
}
div.angebotsliste table.angebotsliste th.bank, div.angebotsliste table.angebotsliste th.product-type, div.angebotsliste table.angebotsliste td.bank, div.angebotsliste table.angebotsliste td.product-type {
  min-width: 150px;
  width: 0;
}
div.angebotsliste table.angebotsliste th.contract-type, div.angebotsliste table.angebotsliste td.contract-type {
  min-width: 170px;
  max-width: 170px;
  width: 170px;
}
div.angebotsliste table.angebotsliste th.loan, div.angebotsliste table.angebotsliste th.binding, div.angebotsliste table.angebotsliste th.rate, div.angebotsliste table.angebotsliste th.provision, div.angebotsliste table.angebotsliste td.loan, div.angebotsliste table.angebotsliste td.binding, div.angebotsliste table.angebotsliste td.rate, div.angebotsliste table.angebotsliste td.provision {
  text-align: right;
}
div.angebotsliste table.angebotsliste th.loan, div.angebotsliste table.angebotsliste th.rate, div.angebotsliste table.angebotsliste td.loan, div.angebotsliste table.angebotsliste td.rate {
  min-width: 130px;
  width: 0;
}
div.angebotsliste table.angebotsliste th.binding, div.angebotsliste table.angebotsliste td.binding {
  min-width: 80px;
  width: 0;
}
div.angebotsliste table.angebotsliste th.provision, div.angebotsliste table.angebotsliste td.provision {
  min-width: 60px;
  width: 0;
}
div.angebotsliste table.angebotsliste th.action, div.angebotsliste table.angebotsliste td.action {
  min-width: 95px;
  width: 95px;
}
div.angebotsliste table.angebotsliste thead tr:first-child th {
  padding-top: 7px;
  padding-bottom: 3px;
  height: 16px;
}
div.angebotsliste table.angebotsliste thead tr:first-child th:last-child {
  background-color: #efefef;
}
div.angebotsliste table.angebotsliste thead tr:first-child th:last-child div {
  float: right;
}
div.angebotsliste table.angebotsliste thead tr:first-child th:last-child div span.placeholder {
  display: inline-block;
  width: 20px;
  height: 20px;
}
div.angebotsliste table.angebotsliste a {
  text-decoration: underline;
}
div.angebotsliste table.angebotsliste a.pointer {
  cursor: pointer;
}
div.angebotsliste h4 {
  margin-bottom: 5px;
}

div.checkbox input[type=checkbox], div.checkbox label {
  vertical-align: middle;
}

#pruef_fehler {
  font-weight: bold;
  color: red;
}

#karten_id {
  display: none;
}

div.loading {
  background-image: url(../img/loadingAnimation.gif);
  background-repeat: no-repeat;
  background-position: 10px 30px;
  padding: 10px 10px 35px 10px;
  border: solid 2px #ACCED0;
}

.error {
  padding: 10px;
  border: 1px solid #A00;
  width: 500px;
  background-color: #EFEFEF;
  color: #A00;
  font-weight: bold;
  margin-bottom: 15px;
}

div.upload div.error {
  width: 80%;
}

ul.ui-autocomplete {
  z-index: 1000;
}

ul.ui-autocomplete li.ui-menu-item {
  font-size: 11px;
  width: 300px;
}

tr#firmenname_row {
  display: none;
}

.onlineanfrage a.action {
  color: #83A2A4;
}

span.dotted:not(:empty)::after {
  content: " · ";
}

.master-data#income table td.monthly {
  width: 250px;
}
.master-data#income table#revenues tr:not(:empty) {
  height: 33px;
}
.master-data#capital table tr.ueberfinanzierung {
  background-color: #CAFFD8;
}
.master-data#capital table tr.unterfinanzierung {
  background-color: #FFC8C8;
}
.master-data#capital table#credit tr:not(:empty) {
  height: 33px;
}
.master-data#capital .einsatz td:first-child {
  width: 250px;
}
.master-data#capital .einsatz td:last-child {
  width: 150px;
}
.master-data#estates .extra-row > td, .master-data#income .extra-row > td, .master-data#capital .extra-row > td {
  padding: 0;
}
.master-data#estates .extra-row table, .master-data#income .extra-row table, .master-data#capital .extra-row table {
  border-width: 0;
}
.master-data#estates .extra-row table.estate, .master-data#income .extra-row table.estate, .master-data#capital .extra-row table.estate {
  border-width: 1px;
}
.master-data#estates .extra-row table.estate tr.main td, .master-data#income .extra-row table.estate tr.main td, .master-data#capital .extra-row table.estate tr.main td {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
}
.master-data#estates .extra-row table.estate td:last-child, .master-data#income .extra-row table.estate td:last-child, .master-data#capital .extra-row table.estate td:last-child {
  border-right-width: 0;
}
.master-data#estates .extra-row table tr:first-child td, .master-data#income .extra-row table tr:first-child td, .master-data#capital .extra-row table tr:first-child td {
  border-top-width: 0;
}
.master-data#estates .extra-row table tr td, .master-data#income .extra-row table tr td, .master-data#capital .extra-row table tr td {
  border-bottom-width: 0;
}
.master-data#estates .extra-row table td.wert, .master-data#estates .extra-row table td.einsatz, .master-data#income .extra-row table td.wert, .master-data#income .extra-row table td.einsatz, .master-data#capital .extra-row table td.wert, .master-data#capital .extra-row table td.einsatz {
  width: 150px;
}

.red {
  background-color: #FFC0C0;
}

.yellow {
  background-color: #d3ff00;
}

.mitantragsteller {
  display: none;
}

.counter {
  color: #9A101F;
  font-weight: bold;
  font-size: 18px;
  padding: 0px 5px;
}

tr#beschaeftigt_bis,
input#anst_person_beschaeftigt_bis,
input#mitanst_person_beschaeftigt_bis {
  display: none;
}

.dropdown-menu {
  box-sizing: border-box;
}

div#icon_liveberatung, div#icon_superprio {
  width: 38px;
  height: 38px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: -5px -210px;
}
div#icon_liveberatung#icon_liveberatung, div#icon_superprio#icon_liveberatung {
  background-image: url(/img/video.png);
}
div#icon_liveberatung#icon_superprio, div#icon_superprio#icon_superprio {
  background-image: url(/img/star.png);
}

/* wrapper divs */
.custom-checkbox, .custom-radio {
  position: relative;
}

/* input, label positioning */
.custom-checkbox input,
.custom-radio input {
  position: absolute;
  left: 2px;
  top: 3px;
  margin: 0;
  z-index: 0;
}

.custom-checkbox label,
.custom-radio label {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 1.3em;
  line-height: 1;
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.custom-checkbox label {
  background: url(/img/star.png) no-repeat;
}
.custom-checkbox.video label {
  background: url(/img/video.png) no-repeat;
  width: 40px;
  height: 40px;
  background-position: -10px -14px;
}

.custom-radio label {
  background: url(/img/star.png) no-repeat;
}

.custom-checkbox label, .custom-radio label {
  background-position: -10px -14px;
}

.custom-checkbox label.hover,
.custom-checkbox label.focus,
.custom-radio label.hover,
.custom-radio label.focus {
  background-position: -8px -112px;
}

/*.custom-checkbox label.video.hover,
.custom-checkbox label.video.focus,
.custom-radio label.video.hover,
.custom-radio label.video.focus {
    background-position: 0;
}
*/
.custom-checkbox label.checked,
.custom-radio label.checked {
  background-position: -10px -214px;
}

.custom-checkbox label.checkedHover,
.custom-checkbox label.checkedFocus {
  background-position: -10px -314px;
}

.custom-checkbox label.focus,
.custom-radio label.focus {
  outline: 1px dotted #ccc;
}

.starred {
  margin-left: 25px;
}

table tr td h2 {
  font-size: 12px;
}

.ui-widget-content a.additional_documents,
.ui-widget-content a.additional_documents_active {
  display: block;
  border-bottom: 1px solid #EBEBEB;
  font-style: italic;
  font-size: 12px;
  font-weight: normal;
  margin: 10px 0;
  color: #808080;
}
.ui-widget-content a.additional_documents_active {
  color: var(--btn-bg-color);
  font-style: normal;
  font-weight: bold;
}
.ui-widget-content .ui-widget-header .ui-icon-closethick {
  background-position: -94px -126px;
}

a.sortlink {
  color: #000;
  text-decoration: none;
}

a.sortlink:hover {
  text-decoration: underline;
}

a#parent-logbook {
  padding: 2px 15px;
  position: relative;
  left: 10px;
  top: -2px;
  background: unset;
  color: #000000;
}
a#parent-logbook:hover {
  color: #888888;
}

a#deletefilter {
  background-color: #FFC;
  padding: 5px;
  font-weight: bold;
}

td#wunschberater {
  color: red;
}

li a.vermittler_aktiv {
  background: #C0FFC0;
  border-radius: 0 !important;
}

li a.vermittler_inaktiv {
  background: #FFFFC0;
  border-radius: 0 !important;
}

li a.vermittler_gesperrt {
  background: #FFC0C0;
  border-radius: 0 !important;
}

.rollenselector {
  height: 20px;
  border: 1px solid transparent;
  position: absolute;
  text-align: right;
  vertical-align: middle;
  cursor: pointer;
  width: 100%;
  z-index: 100;
}

.rollenselector .klickflaeche {
  display: block;
  float: left;
  position: relative;
  width: 100%;
  height: 20px;
  z-index: 101;
}

.rollenselector.showarrow {
  background: url(../img/arrow_down.png) no-repeat 100% 1px !important;
  border: 1px solid #CCCCCC;
  height: 20px;
}

.rollenselector .selectBox {
  border: 1px solid #CCCCCC;
  background: #fff;
  list-style-type: none;
  margin: 0;
  padding: 3px 20px 0 0;
  position: absolute;
  left: -1px;
  width: 166px;
  display: none;
  top: 20px;
  z-index: 10000;
}

.rollenselector {
  position: relative;
}

.rollenselector .toggler {
  overflow: visible;
}

.rollenselector .default {
  border: 0;
  width: 100%;
  padding: 3px;
  position: absolute;
  right: 16px;
  text-align: right;
}

.rollenselector ul.selectBox {
  padding-bottom: 5px;
}

.rollenselector .selectBox li {
  padding-right: 20px;
  margin-right: -20px;
}

.rollenselector .selectBox li:hover {
  background: #ddd;
}

div.gruppenkontakt img {
  float: left;
  display: block;
  margin: 0 5px 5px 0;
}

div.gruppenkontakt p {
  float: left;
  display: block;
  font-size: 12px;
  margin: 0 !important;
  padding: 0 0 5px 0 !important;
}

div.gruppenkontakt p a {
  /*font-size:12px;*/
}

div.pageoverview_statistics table {
  border-spacing: 0;
}
div.pageoverview_statistics table td {
  width: 180px;
}
div.pageoverview_statistics div {
  font-size: 10px;
  text-align: center;
}
div.pageoverview_statistics div span {
  float: left;
  margin-left: 12px;
}

#jahresziel {
  margin-top: 20px;
}

#statistik_tabs {
  padding: 0;
}
#statistik_tabs li.postit {
  background-color: #FFFFC0;
  background-image: none;
}
#statistik_tabs li.bonusstaffel {
  background-color: #BFD7FB;
  background-image: none;
}

#statistik_tabs,
table.pageoverview_requests {
  text-align: center;
}

td.rollenselect {
  width: 186px;
}

table#sortable {
  width: 480px;
}

div.linke_spalte,
div.rechte_spalte,
#statistik_tabs,
table.pageoverview,
table.pageoverview_misc,
table.pageoverview_logins,
table.pageoverview_requests,
div#box_bonusstaffel textarea,
div#box_postit textarea,
div.box-textarea textarea,
div#general_agreement textarea,
div#provisionsvereinbarung textarea,
div.box_letzter_antrag,
.fixed-col-width {
  width: 560px;
}

table.pageoverview td:first-child {
  width: 150px;
}

table.pageoverview_logins {
  top: 40px;
}

td.red_border {
  border: 2px solid red;
}

td.showDragHandle {
  background-image: url(../img/jquery.tablednd.draghandle.gif);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: move;
}

/*
select.group_status,
select.group_key_account {
    width: 130px;
}
*/
div.linke_spalte {
  margin-right: 20px;
  margin-bottom: 20px;
  float: left;
}

div.rechte_spalte {
  float: left;
}

.tableDnDDragged {
  background: #e6e6e6;
}

#kontakte_box td.add_contact {
  text-align: center;
}
#kontakte_box td.add_contact a#add_contact img {
  position: relative;
  top: 3px;
  margin-right: 5px;
  height: 16px;
}
#kontakte_box h4 {
  padding: 10px 0 0 10px;
  border-left: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  border-top: 1px solid #CECECE;
  margin-bottom: 0;
}

select.asText {
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  color: #222;
  /*This is the only way right now to hide dropdown arrow in FF.*/
  overflow: hidden;
  width: 120%;
}

div.box_letzter_antrag {
  margin-top: 10px;
}

div.box_jahresziel {
  margin: 40px 0 0 20px;
}

div#box_bonusstaffel textarea,
div#box_postit textarea,
div.box-textarea textarea,
div#general_agreement textarea,
div#provisionsvereinbarung textarea {
  height: 140px;
  margin-bottom: 10px;
}

div#provisionsvereinbarung textarea {
  width: 620px;
  height: 200px;
}

div.box-textarea textarea.faketext:focus,
div#box_bonusstaffel textarea.faketext:focus,
div#box_postit textarea.faketext:focus,
div#general_agreement textarea.faketext:focus,
div#provisionsvereinbarung textarea.faketext:focus {
  outline-color: transparent;
  outline-style: none;
  outline: 0;
  outline: none;
  background: #f8f8f8;
  /*border:1px;*/
  -moz-appearance: none;
}

div.box-textarea textarea.faketext,
div#box_bonusstaffel textarea.faketext,
div#box_postit textarea.faketext,
div#general_agreement textarea.faketext,
div#provisionsvereinbarung textarea.faketext {
  background: #f8f8f8;
  border: 1px solid #cecece;
}

div.box-textarea textarea.input,
div#box_bonusstaffel textarea.input,
div#box_postit textarea.input,
div#general_agreement textarea.input,
div#provisionsvereinbarung textarea.input {
  border: 1px solid #cecece;
}

span.css_right {
  float: left;
}

#userlist tr td.center {
  text-align: center;
}

#userlist tr td.right {
  text-align: right;
}

tr.groupheader td {
  background-color: #FFFFC0;
  font-weight: bold;
  color: #000;
}

.rechte_spalte .ui-tabs .ui-tabs-panel {
  padding: 0;
}

.rechte_spalte .ui-widget-header,
.rechte_spalte .ui-widget-content {
  border: 0;
}

.rechte_spalte .ui-widget-header {
  border-bottom: 1px solid #AAA;
}

#userlist tr.group td {
  background-color: #BFD7FB;
  border-right: 1px solid white;
}

.ui-widget-content a.copy,
a.copy {
  background-image: url(../img/copy.png);
  padding: 2px 0 2px 20px;
  background-repeat: no-repeat;
  font-weight: bold;
}

table#userlist th {
  background: #e6e6e6;
  font-weight: normal;
  color: #555555;
}

table#userlist td.ui-state-default {
  background-color: #FFF !important;
}

table#userlist td.ui-state-default span.DataTables_sort_icon {
  display: none;
}

tfoot {
  display: table-header-group;
  vertical-align: middle;
  border-color: inherit;
}

table.abschlusskarte td.spalte2 {
  padding: 5px 0 0 5px;
  border-right: none;
  width: 180px;
}
table.abschlusskarte td.spalte2.booking {
  padding-top: 0;
  vertical-align: middle;
}
table.abschlusskarte td.spalte3 {
  padding: 5px;
  border-left: none;
  width: 188px;
}
table.abschlusskarte td.spalte23 {
  padding: 5px 5px;
}
table.abschlusskarte div.left {
  float: left;
  width: 50px;
}
table.abschlusskarte span.label {
  margin-right: 4px;
  text-align: left;
  display: block;
  float: left;
  font-weight: normal;
  color: black;
  width: 60px;
}

div.helpvariables {
  float: right;
  border: 1px solid black;
  width: 220px;
}

#tabs .syncErrors {
  display: none;
}
#tabs a.syncErrors {
  background-color: red;
  color: yellow;
}
#tabs div.syncErrors ul {
  max-width: 880px;
}

#fragment-3 input[type=radio] {
  width: auto;
}

div.bewertungen tr.site,
div.bewertungen tr.bank {
  display: none;
}

#dialog-confirm {
  display: none;
}

#seo_url_error {
  border: 1px solid red;
  color: red;
  margin: 10px 0;
  font-weight: bold;
  display: none;
  padding: 5px;
  width: 50%;
}

input.count {
  text-align: center;
  background-color: #FFC;
  font-weight: bold;
  font-style: italic;
}

.drop-target {
  border: 2px dashed #999;
  text-align: center;
  color: #999;
  font-size: 10px;
  width: 280px;
  height: 60px;
  padding-top: 40px;
  line-height: 11px;
  cursor: pointer;
}
.drop-target.dragover {
  border: 20px dashed green;
  background: rgba(255, 255, 255, 0.4);
}

a.kopie {
  display: block;
  position: absolute;
  margin: 0 0 0 -34px;
  float: right;
  width: 20px;
  height: 20px;
}

#filelist {
  font-size: 10px;
}
#filelist div {
  word-wrap: break-word;
}

img.remove_from_queue {
  cursor: pointer;
}

td.email_to {
  position: relative;
}

select#template option:disabled {
  font-style: italic;
  color: #BCBCBC;
}

[readonly]:not(.faketext) {
  color: #BCBCBC;
  background-color: #e3e3e3;
}
[readonly]:not(.faketext)[type=checkbox], label + [readonly]:not(.faketext)[type=checkbox], [readonly]:not(.faketext)[type=checkbox] + label {
  opacity: 0.5;
}

div.preview {
  float: left;
  margin-right: 10px;
  width: 60px;
  height: 60px;
}

a.europace {
  background: url(../img/europace.png) no-repeat;
  padding-left: 28px;
  padding-bottom: 5px;
}

.ui-dialog .ui-dialog-titlebar-close {
  border: 1px solid transparent;
  margin-top: 0;
  transform: translateY(-50%);
}

div.tilgung div.ui-dialog-titlebar {
  display: none;
}

span.objekt_bundesland {
  margin-left: 23px;
}

span#europace_result {
  display: none;
}

form#form_save_bank div#logo {
  max-width: 100px;
  margin-bottom: 5px;
}

a#urlaub_speichern,
a#bearbeiter_aendern {
  background-color: var(--btn-bg-color);
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  margin-right: 10px;
  padding: 11px 10px 8px 10px;
  width: 190px;
  text-align: center;
}

a#urlaub_speichern {
  background-color: #6bab38;
}

/* Dateiübersicht: Webserver + Fileserver */
div#webserver,
div#fileserver {
  width: 802px;
  border: 1px solid silver;
  margin: 0.5em 0;
  box-sizing: border-box;
  padding: 0.5em;
}

div#fileserver {
  padding: 0;
}

div#webserver h3 {
  color: black;
  font-family: Helvetica, sans-serif;
  font-size: 21px;
  line-height: 1.4;
}

div#webserver #drop-target {
  width: auto;
  background-color: #f9f9f9;
  border: 3px dashed silver;
  border-radius: 0.5em;
  height: auto;
  color: #777777;
  cursor: pointer;
  font-size: 0.9em;
  padding: 1em 0.5em;
}

div#webserver div#foldercontent {
  font-size: 12px;
}

div#webserver div.icon {
  width: 24px;
  float: left;
  padding-left: 3px;
}
div#webserver div.filename {
  width: 523px;
  float: left;
}
div#webserver div.icon, div#webserver div.filename {
  display: inline-block;
}

div#webserver div.filesize {
  float: left;
  width: 70px;
  text-align: right;
  margin-right: 10px;
}

div#webserver div.filetime {
  float: left;
}

div#webserver div.delete {
  float: left;
  width: 20px;
  text-align: right;
}

div#webserver div.check {
  float: left;
  width: 20px;
}

div#webserver div.check input {
  position: relative;
  top: -1px;
}

div#webserver div.filerow {
  border-bottom: 1px solid #efefef;
  padding: 3px 0 6px 0;
}

div#webserver span.multidownload {
  background-color: ButtonFace;
  border: 1px solid ThreeDShadow;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  padding: 2px 4px;
}

div#webserver p.nofiles {
  margin-top: 20px;
  font-weight: bold;
}

div#webserver div.folder-row {
  height: 68px;
  font-size: 0.8em;
}

div#webserver img.delete_file {
  cursor: pointer;
}

body.annualTarget label {
  font-weight: bold;
}
body.annualTarget input {
  text-align: right;
}
body.user #fragment-anbindung .drop-target, body.group-edit #fragment-anbindung .drop-target {
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  width: 100px;
  height: 33px;
  padding-top: 10px;
}
body.directbank-overview {
  margin: 20px;
}
body.directbank-overview table th + th, body.directbank-overview table td + td {
  text-align: center;
}
body.directbank-overview table th + th input {
  position: relative;
  top: 2px;
}
body.directbank-overview table td + td {
  font-size: 33px;
  line-height: 11px;
}

div.pageoverview_statistics span a {
  color: var(--btn-bg-color);
}

/*
tr.inactive td {
	color: #000;
}
*/
table#bank_mappings th + th, table#bank_mappings td + td {
  text-align: center;
}

/*
input.input,
input.tiny,
input.short,
input.midsize,
input.medium,
input.large,
textarea.normal,
textarea.all_remarks,
textarea.remarkbox,
textarea.big,
.pseudo_textarea_big {
	border: 1px solid $default_button_bgcolor;
}

select.asText {
	border:0;
}

input.faketext {
	border: 1px solid transparent;
	background:transparent;
}
*/
a.produktkarte_neu:link,
a.angebot_neu:link,
.ui-widget-content a.additional_documents_active,
#action a {
  color: var(--btn-bg-color);
}

table tr.highlight_ergebnis {
  background-color: var(--btn-bg-color) !important;
}

table tr.highlight_ergebnis td input,
table tr.highlight_ergebnis td {
  color: #FFF;
}

#max-month-request {
  margin-left: 15px;
  margin-top: -4px;
}
#max-month-request button:hover {
  background-color: #dddddd;
}
#max-month-request button.active {
  background-color: #BBBBBB;
}

.request.pipeline tr.user-care td {
  background-color: #dfecff;
}

#vermittler_zahlen tr.odd td:first-child, #vermittler_zahlen tr.even td:first-child {
  width: 250px;
  text-align: right;
}

/*# sourceMappingURL=old-main.css.map */
