/* --------------------------------------------------------- */
/* globals
/* --------------------------------------------------------- */
*[onclick]:hover {
  cursor: pointer;
}

textarea[onclick]:hover,
input[type=text][onclick]:hover {
  cursor: text;
}

input[aria-invalid='true'] {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

/* --------------------------------------------------------- */
/* clear-fix with suffix as namespace
/* --------------------------------------------------------- */
.clearfix-classic {
  clear: both;
}

.clearfix-box::after {
  content: "";
  clear: both;
  display: table;
}

/* --------------------------------------------------------- */
/* padding
/* --------------------------------------------------------- */
.no-padding {
  padding: 0;
}

/* --------------------------------------------------------- */
/* float
/* --------------------------------------------------------- */
.no-float {
  float: none;
}

/* --------------------------------------------------------- */
/* panel helper
/* --------------------------------------------------------- */
.dog-ear-helper:after {
  content: "";
  width: 0;
  height: 0;
  line-height: 0;
  border-right: 50px solid #e0eaf0;
  border-top: 50px solid #fff;
  top: 0;
  left: 10px;
  position: absolute;
}
.table-hover tr:hover .dog-ear-helper:after {
  border-top: 50px solid #f5f5f5;
}

.Panel-shadow-favorit {
  box-shadow: 10px 10px 4px #6374a8;
}

.Panel-shadow-active {
  box-shadow: 10px 15px 15px #2e2b2b;
}

.Panel-shadow {
  box-shadow: 3px 3px 4px #888888;
}

/* --------------------------------------------------------- */
/* Hide the dom, if there is no content.
/* --------------------------------------------------------- */
.hide-on-empty:empty {
  display: none;
}

/* --------------------------------------------------------- */
/* Break works into multi-lines.
/* --------------------------------------------------------- */

/* noinspection CssInvalidPropertyValue */
.word-wrap-break {
  white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
  white-space: -webkit-pre-wrap; /* Chrome & Safari */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  white-space: pre-wrap; /* css-3 */
  white-space: normal;
  word-wrap: break-word; /* Internet Explorer 5.5+ */
  word-break: break-all;
  -webkit-hyphens: auto;
  -o-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  hyphenate-limit-chars: auto;
  hyphenate-limit-lines: 2;
}

/* --------------------------------------------------------- */
/* hover effect for e.g. HtmlTables
/* --------------------------------------------------------- */
.markedGrey {
  background-color: rgba(213, 213, 213, 0.28) !important;
}
.markedGrey:hover {
  background-color: rgba(213, 213, 213, 0.45) !important;
}

.markedYellow {
  background-color: rgba(255, 249, 54, 0.80) !important;
}
.markedYellow:hover {
  background-color: rgba(255, 249, 54, 0.90) !important;
}

.markedGreenLight {
  background-color: rgba(182, 238, 158, 0.15) !important;
}
.markedGreenLight:hover {
  background-color: rgba(182, 238, 158, 0.45) !important;
}

.markedRed {
  background-color: rgba(213, 213, 213, 0.28) !important;
}
.markedRed:hover {
  background-color: rgba(213, 213, 213, 0.45) !important;
}

/* --------------------------------------------------------- */
/* media queries into dom ($(window).width() not the same as media query)
/* --------------------------------------------------------- */
#media-width-detection-element {
  display: none;
  width: 0px;
}
@media (min-width: 768px) {
  #media-width-detection-element {
    width: 768px;
  }
}
@media (min-width: 992px) {
  #media-width-detection-element {
    width: 992px;
  }
}
@media (min-width: 1200px) {
  #media-width-detection-element {
    width: 1200px;
  }
}

/* --------------------------------------------------------- */
/* Landing Page Glyphen anpassen
/* --------------------------------------------------------- */
.landing-page-glyph-style  {
  font-size: 18px;
}
@media (min-width: 768px) {
  .landing-page-glyph-style {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .landing-page-glyph-style {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .landing-page-glyph-style {
    font-size: 50px;
  }
}
@media (min-width: 1400px) {
  .landing-page-glyph-style {
    font-size: 60px;
  }
}


/* --------------------------------------------------------- */
/* Add sticky styles for "stickyfill.min.js" + clearfix.
/* --------------------------------------------------------- */
.sticky {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: 0;
}
.sticky:before,
.sticky:after {
  content: '';
  display: table;
}

/* --------------------------------------------------------- */
/* Get better fonts (icons).
/* --------------------------------------------------------- */
[class^="vdmg-icon--"] {
  position: relative;
  top: 0;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------- */
/* A css-only loading spinner.
/* --------------------------------------------------------- */
.loading-spinner-general {
  z-index: 10;
  border: solid rgba(9, 62, 78, .2);
  border-top-color: #189dc8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinning 1s infinite linear;
  -moz-animation: spinning 1s infinite linear;
  -o-animation: spinning 1s infinite linear;
  animation: spinning 1s infinite linear;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-width: 5px;
}

.loading-spinner--base {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinning 1s infinite linear;
  -moz-animation: spinning 1s infinite linear;
  -o-animation: spinning 1s infinite linear;
  animation: spinning 1s infinite linear;
  content: " ";
  width: 20px;
  height: 20px;
  border-width: 5px;

  display: inline-block;
  vertical-align: middle;
}

.loading-spinner--default {
  border: solid rgba(9, 62, 78, .2);
  border-top-color: #189dc8;
}

.loading-spinner--primary {
  border: solid #fff;
  border-top-color: #aaa;
}

.btn_loading-spinner--base {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinning 1s infinite linear;
  -moz-animation: spinning 1s infinite linear;
  -o-animation: spinning 1s infinite linear;
  animation: spinning 1s infinite linear;
  content: " ";
  border-width: 5px;

  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
}

.btn_loading-spinner--hide {
  display: none;
}

.btn_loading-spinner--default {
  border: solid rgba(9, 62, 78, .2);
  border-top-color: #189dc8;
}

.btn_loading-spinner--primary {
  border: solid #fff;
  border-top-color: #aaa;
}

/* --------------------------------------------------------- */
/* Reset the "outline"-focus.
/* --------------------------------------------------------- */
a:not(.dropdown-toggle):focus, /* links, but no toggle items */
textarea:focus,
select:focus,
select option:focus,
button:focus,
.btn.focus,
.btn:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
.pretty input:focus ~ .state label:before, /* pretty checkbox / radio */
.btn-arrow-right-start:focus,
.btn-arrow-right-end:focus {
  border-color: rgba(51, 122, 183, 0.8);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  outline: 0 none;
}
a[tabindex="-1"]:focus { /* links, but no tabindex = -1 */
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0 none;
}

/* --------------------------------------------------------- */
/* Reset the "outline"-active.
/* --------------------------------------------------------- */
select:focus:active,
select option:focus:active,
.btn.active.focus,
.btn.active:focus,
.btn:active.focus,
.btn:active:focus,
.btn-arrow-right:focus, .btn-arrow-right:active,
.btn-arrow-right-start:active,
.btn-arrow-right-end:active {
  border-color: rgba(51, 122, 183, 0.8);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 122, 183, 0.6);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 122, 183, 0.6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 122, 183, 0.6);
  outline: 0 none;
}

/* --------------------------------------------------------- */
/* Add hover effect for the info-icons.
/* --------------------------------------------------------- */
.info-icon-wrapper [class*="vdmg-icon--"] {
  color: rgba(102, 102, 102, 0.21);
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
.info-icon-wrapper:hover [class*="vdmg-icon--"] {
  color: #666;
}

/* --------------------------------------------------------- */
/* Add hover effect for the edit-icons.
/* --------------------------------------------------------- */
.edit-icon-wrapper {
  top: -2px;
  left: -5px;
  font-size: 10px;
  display: inline-block;
}
.edit-icon-wrapper--image {
  display: block;
  width: 100%;
  height: 100%;
  text-align: right;
}
.edit-icon-wrapper--image span {
  display: none;
}
.edit-icon-wrapper--image:hover span {
  display: block;
}
.edit-icon-wrapper [class^="vdmg-icon--"] {
  color: rgba(102, 102, 102, 0.61);
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
.edit-icon-wrapper:hover [class^="vdmg-icon--"] {
  color: #333;
}

/* --------------------------------------------------------- */
/* Show button as non button.
/* --------------------------------------------------------- */
.btn-non-button,
.btn-non-button:hover,
.btn-non-button:focus,
.btn-non-button:active,
.btn-non-button.active,
.btn-non-button.focus {
  background: none;
  border: none;
  text-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* --------------------------------------------------------- */
/* Konfiguration-Search
/* --------------------------------------------------------- */
.globalMenuSearch--searchbox {
  position: relative;
  min-width: 50px;
  width: 0%;
  height: 50px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  -ms-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.globalMenuSearch--searchbox-open {
  width: 100%;
  overflow: initial;
}
.globalMenuSearch--searchbox .twitter-typeahead,
.globalMenuSearch--input {
  top: 0;
  right: 0;
  border: 0;
  outline: 0;
  width: 100%;
  margin: 0;
  padding: 0 40px 0 20px;
  box-shadow: none;
}
.globalMenuSearch--icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
}

/* --------------------------------------------------------- */
/* jquery ui | sortable - Set colors for ".ui-state-highlight".
/* --------------------------------------------------------- */
.ui-state-highlight {
  border-color: rgba(51, 122, 183, 0.8);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(51, 160, 221, 0.6);
  outline: 0 none;
  background: #337ab7;
  color: #363636;
}

/* --------------------------------------------------------- */
/* jquery | alert
/* --------------------------------------------------------- */
#popup_title {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
  margin: 10px;
}

#popup_content {
  background: 16px 16px no-repeat url(../../img/ui/jqueryAlertInfo.gif);
  padding: 1em 1.75em;
  margin: 0;
}
#popup_content.alert {
  background-image: url(../../img/ui/jqueryAlertImportant.gif);
}
#popup_content.prompt {
  background-image: url(../../img/ui/jqueryAlertHelp.gif);
}

#popup_message {
  padding-left: 48px;
}

#popup_panel {
  text-align: center;
  margin: 1em 0 0 1em;
}

#popup_prompt {
  margin: .5em 0;
}

/* --------------------------------------------------------- */
/* jquery | mark.js
/* --------------------------------------------------------- */
.mark, mark {
  padding: 0;
}

/* --------------------------------------------------------- */
/* Add style for the support-link.
/* --------------------------------------------------------- */
.support-link-wrapper {
  position: fixed;
  bottom: 75px;
  right: 0;
  z-index: 20000;
}

.support-link {
  display: block;
  height: 55px;
  padding: 0 10px;
  margin-right: -35px;
  font-size: 13px;
  font-weight: bold;
  line-height: 36px;
  text-decoration: none;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  border-top-right-radius: 5px;
  -webkit-transition: all .2s ease-in;
  -o-transition: all .2s ease-in;
  -moz-transition: all .2s ease-in;
  transition: all .2s ease-in;
}
.support-link:focus,
.support-link:hover {
  margin-right: -25px;
  text-decoration: none;
}

/* --------------------------------------------------------- */
/* navbar: Center the menu entries.
/* --------------------------------------------------------- */
.navbar-center {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.navbar-brand > img {
  display: inline-block;
  max-height: 40px;
  border: 0;
}

.navbar-brand {
  line-height: 40px;
  padding: 5px;
}

.navbar .navbar-collapse {
  text-align: center;
}

/* --------------------------------------------------------- */
/* navbar: Shrink the menu entries.
/* --------------------------------------------------------- */
.navbar--system-menu {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* <-- use the GPU for the rendering */
  -webkit-transition: max-height 0.25s ease;
  -o-transition: max-height 0.25s ease;
  -moz-transition: max-height 0.25s ease;
  transition: max-height 0.25s ease;
  max-height: 500px;
}

.navbar--system-menu--shrink {
  max-height: 0;
  overflow-y: hidden;
}

/* --------------------------------------------------------- */
/* Bootstrap addon to show text element instead of an link in an dropdown menu.
/* --------------------------------------------------------- */
.nav-header {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

/* --------------------------------------------------------- */
/* ajaxedit: Add style for "ajaxedit".
/* --------------------------------------------------------- */
.ajaxedit-wrapper {
  background-color: #c6c6c6 !important;
  background-color: rgba(229, 229, 229, 0.48) !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5px;
  margin: 0;
  position: relative;
}

.ajaxedit-edit-wrapper {
  display: none;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.ajaxedit-wrapper:hover .ajaxedit-edit-wrapper {
  background-color: #c6c6c6 !important;
  background-color: rgba(198, 198, 198, 1.0) !important;
  display: inline !important;
  opacity: 1;
}
.ajaxedit-wrapper:hover {
  background-color: #c6c6c6 !important;
  background-color: rgba(198, 198, 198, 1.0) !important;
}

.ajaxedit-edit-wrapper-icon {
  width: 20px;
  display: inline;
  position: absolute;
}

.ajaxedit-wrapper:hover .ajaxedit-edit-wrapper-icon {
  background-color: #c6c6c6 !important;
  background-color: rgba(198, 198, 198, 1.0) !important;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  text-align: right;
}

/* --------------------------------------------------------- */
/* ajaxLoad: Add style for "ajaxLoad".
/* --------------------------------------------------------- */
#ajaxLoad {
  z-index: 10000;
  display: none;
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: auto;
  top: 100px;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  background: rgba(255, 255, 255, 0.25);
}

#ajaxLoad .loading-spinner-general {
  z-index: 10001;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  margin: 5% auto;
}

/* --------------------------------------------------------- */
/* cartSum
/* --------------------------------------------------------- */
#cartSum {
  margin-left: 10px;
  position: relative;
  display: inline-block;
  width: auto;
}

#cartSum a {
  color: #fff;
  font-weight: bold;
}

ul.dropdown-cart {
  min-width: 320px;
}

ul.dropdown-cart li .dropdown-cart-item {
  display: block;
  padding: 10px !important;
  border-bottom: 1px solid #e5e5e5;
}
ul.dropdown-cart li .dropdown-cart-item:hover {
  background-color: #e7e7e7;
}
ul.dropdown-cart li .dropdown-cart-item:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

ul.dropdown-cart li .dropdown-cart-item {
  float: left;
  padding: 0;
}

ul.dropdown-cart li .dropdown-cart-item-image {
  float: left;
  padding: 0 0 0 15px;
  height: auto;
}

ul.dropdown-cart li .dropdown-cart-item-sum {
  color: #333;
  padding: 0;
  margin-top: 7px;
  margin-bottom: 7px;
  display: inline;
  text-align: right;
}

ul.dropdown-cart li .dropdown-cart-item-name {
  padding: 0 0 5px;
  display: inline;
}

ul.dropdown-cart li .dropdown-cart-item-name a {
  text-decoration: none;
}

/* --------------------------------------------------------- */
/* produktDetailKategorie
/* --------------------------------------------------------- */
.produktDetailKategorie {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}

.produktDetailKategorie td {
  padding: 2px 5px;
}

.produktDetailKategorie .head {
  background-color: #3a5e8c;
  color: #fff;
}

.produktDetailKategorie .head td {
  height: 20px;
}

.produktDetailKategorie .icon {
  width: 20px;
}

/* --------------------------------------------------------- */
/* table: use custom striping classes instead of used with .table-striped
/* --------------------------------------------------------- */
.table-striped-manually>tbody>tr.striped-manually-odd {
  background-color: transparent;
}
.table-striped-manually>tbody>tr.striped-manually-even {
  background-color: #f9f9f9;
}

/* --------------------------------------------------------- */
/* table: fix hovering, when manually striped
/* --------------------------------------------------------- */
.table-hover>tbody>tr.striped-manually-odd:hover,
.table-hover>tbody>tr.striped-manually-even:hover {
  background-color: #f5f5f5;
}

/* --------------------------------------------------------- */
/* table: no-more-tables
/* --------------------------------------------------------- */
.sticky-tables.table-striped > thead > tr:nth-of-type(odd) > th,
.sticky-tables.table-striped > tbody > tr:nth-of-type(odd) > th {
  background-color: #f9f9f9; /* fallback */
  background-color: rgba(249, 249, 249, 0.6);
}

/* --------------------------------------------------------- */
/* table: table-default-th
/* --------------------------------------------------------- */
.table-default-th th {
  background-color: #f9f9f9; /* fallback */
  background-color: rgba(249, 249, 249, 0.6);
}

/* --------------------------------------------------------- */
/* table: no-more-tables
/* --------------------------------------------------------- */
@media only screen and (max-width: 767px) {

  /* force table to not be like tables anymore */
  .no-more-tables .html-table--content,
  .no-more-tables .html-table--content table,
  .no-more-tables .html-table--content thead,
  .no-more-tables .html-table--content tbody,
  .no-more-tables .html-table--content tfoot,
  .no-more-tables .html-table--content th,
  .no-more-tables .html-table--content td,
  .no-more-tables .html-table--content tr {
    display: block;
  }

  /* force e.g. table in table.no-more-tables */
  .no-more-tables .html-table--content table.no-more-tables--non,
  .no-more-tables .html-table--content th.no-more-tables--non,
  .no-more-tables .html-table--content td.no-more-tables--non,
  .no-more-tables .html-table--content tr.no-more-tables--non {
    display: table;
  }

  /* modify the table header */
  .no-more-tables .html-table--content > th,
  .no-more-tables .html-table--content > tbody > tr > th,
  .no-more-tables .html-table--content > tfoot > tr > th,
  .no-more-tables .html-table--content > thead > tr > th {
    text-align: left !important;
    border-top: 0 !important;
    padding: 0 !important;
    display: none !important;
  }
  .no-more-tables .html-table--content > th.sortable ,
  .no-more-tables .html-table--content > tbody > tr > th.sortable ,
  .no-more-tables .html-table--content > tfoot > tr > th.sortable ,
  .no-more-tables .html-table--content > thead > tr > th.sortable {
    display: inline !important;
  }

  /* behave  like a "row" */
  .no-more-tables .html-table--content td {
    width: 100% !important;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative !important;
    padding-left: 50% !important;
    white-space: normal !important;
    text-align: left !important;
  }
  .no-more-tables .html-table--content td > span,
  .no-more-tables .html-table--content td > input,
  .no-more-tables .html-table--content td > ul,
  .no-more-tables .html-table--content td > div,
  .no-more-tables .html-table--content td > input,
  .no-more-tables .html-table--content td > a,
  .no-more-tables .html-table--content td > button {
    margin: 0 !important;
    text-align: left !important;
    background-position: left !important;
    float: none !important;
    clear: both !important;
    display: inline-block; /* not !important, so that we can still overwrite it */
  }
  .no-more-tables .html-table--content td ul {
    padding-left: 15px;
  }

  /* like a table header */
  .no-more-tables .html-table--content td:before {
    position: absolute;
    /* top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45% !important;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left !important;
    font-weight: bold;
  }

  /* show the helper value */
  .no-more-tables .html-table--content .html-table--initial-value-helper {
    display: inline !important;
  }

  /* label the data */
  .no-more-tables .html-table--content td:before {
    content: attr(data-title);
  }
  .no-more-tables .html-table--content td:empty {
    display: none;
  }
}

/* --------------------------------------------------------- */
/* table: Sync css for HtmlTable & HtmlFilter.
/* --------------------------------------------------------- */
.html-table--content {
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.html-table--header-tr {
  background-image: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background-image: -o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
  background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #f5f5f5),to(#e8e8e8));
  background-image: -moz-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background-image: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-repeat: repeat-x;
}

/* --------------------------------------------------------- */
/* table: Custom styles for bootstrap tables.
/* --------------------------------------------------------- */
.table-nonfluid {
  width: auto;
}

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

.table-box-shadow {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
}

.table-vert-align-middle > tbody > tr > td,
.table-vert-align-middle > tbody > tr > th,
.table-vert-align-middle > tfoot > tr > td,
.table-vert-align-middle > tfoot > tr > th,
.table-vert-align-middle > thead > tr > td,
.table-vert-align-middle > thead > tr > th {
  vertical-align: middle;
}

.table-no-border > tbody > tr > td,
.table-no-border > tbody > tr > th,
.table-no-border > tfoot > tr > td,
.table-no-border > tfoot > tr > th,
.table-no-border > thead > tr > td,
.table-no-border > thead > tr > th {
  border: 0;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 6px 5px 6px 5px;
}

.table-outsite-bordered {
  border: 1px solid #ddd;
}
.panel.panel-default .table-outsite-bordered {
  /* do not add extra border, if there is already boarder from the ".panel" */
  border: none;
}

tr.dummy {
  border-top: 2px solid #999;
}

tr.dummy ~ tr.dummy {
  border-top: none;
}

/* --------------------------------------------------------- */
/* table: Add non-hover effect for bootstrap "table-hover".
/* --------------------------------------------------------- */
.table-tr-hover-none:hover {
  background-color: transparent !important;
}

/* --------------------------------------------------------- */
/* table: Add borderless tables for bootstrap "table".
/* --------------------------------------------------------- */
.table-borderless td,
.table-borderless th {
  border: 0 !important;
}

/* --------------------------------------------------------- */
/* table: Add no-margin at bottom for bootstrap "table".
/* --------------------------------------------------------- */
.table-no-margin-bottom {
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------- */
/* table: Add vertical align middle for bootstrap "table".
/* --------------------------------------------------------- */
.table-vertical-align-middle > tbody > tr > td,
.table-vertical-align-middle > tbody > tr > th,
.table-vertical-align-middle > tfoot > tr > td,
.table-vertical-align-middle > tfoot > tr > th,
.table-vertical-align-middle > thead > tr > td,
.table-vertical-align-middle > thead > tr > th {
  vertical-align: middle;
}

/* --------------------------------------------------------- */
/* table: Add inner-bordered for bootstrap "table".
/* --------------------------------------------------------- */
.table-inner-bordered {
  border: none !important;
}

.table-inner-bordered > tbody > tr > td {
  padding: 30px 15px 30px 15px;
}

/* --------------------------------------------------------- */
/* select2: Ease-Animation for "select2" + multiple.
/* --------------------------------------------------------- */
.select2-selection--multiple {
  width: 100%;
  max-height: 32px;
  overflow-y: auto;
  -webkit-transition: max-height 0.15s ease-out;
  -moz-transition: max-height 0.15s ease-out;
  -o-transition: max-height 0.15s ease-out;
  transition: max-height 0.15s ease-out;
}
.select2-container--focus .select2-selection--multiple,
.select2-selection--multiple:hover,
.select2-selection--multiple:focus {
  max-height: 300px;
  -webkit-transition: max-height 0.25s ease-in;
  -moz-transition: max-height 0.25s ease-in;
  -o-transition: max-height 0.25s ease-in;
  transition: max-height 0.25s ease-in;
}

/* --------------------------------------------------------- */
/* select2: Add arrow for "select2" + multiple.
/* --------------------------------------------------------- */
.select2-selection--multiple:before {
  content: "";
  position: absolute;
  right: 4px;
  top: 15px;
  border-top: 5px solid #999;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

/* --------------------------------------------------------- */
/* select2: Add a loading-spinner for "select2".
/* --------------------------------------------------------- */
.select2-dropdown .loading-results:after {
  z-index: 10;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: solid rgba(9, 62, 78, .2);
  border-top-color: #189dc8;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinning 1s infinite linear;
  -moz-animation: spinning 1s infinite linear;
  -o-animation: spinning 1s infinite linear;
  animation: spinning 1s infinite linear;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border-width: 5px;
}

/* --------------------------------------------------------- */
/* select2: Add border for "select2" + multiple.
/* --------------------------------------------------------- */
.select2-selection--multiple[aria-expanded="true"]:before {
  border-top: none;
  border-bottom: 5px solid #999;
}

/* --------------------------------------------------------- */
/* select2: Add background-color for "select2".
/* --------------------------------------------------------- */
.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  color: #fff;
  background-color: #337ab7;
  white-space: nowrap;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  color: #fff;
  background-color: #3999dd;
  white-space: nowrap;
}

/* --------------------------------------------------------- */
/* select2: Fix for large select elements.
/* --------------------------------------------------------- */
span.select2.select2-container.select2-container--bootstrap {
  max-width: 100%;
}

/* --------------------------------------------------------- */
/* Add collapsed indicator for bootstrap.
/* --------------------------------------------------------- */
[data-toggle="collapse"]:not(.navbar-toggle):after {
  font-family: "Glyphicons Halflings";
  content: "\e114";
  float: right;
}
[data-toggle="collapse"]:not(.navbar-toggle).collapsed:after {
  content: "\e080";
}

/* --------------------------------------------------------- */
/* Add custom notify badge for the shopping-card in the main-menu. -> https://www.bootply.com/7teIvGLIzY
/* --------------------------------------------------------- */
.badge-notify--shopping-cart,
.badge-notify--lager-warenkorb {
  z-index: 10;
  position: absolute;
  top: -2px;
  left: 20px;
  padding: 4px;
  min-width: 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  font-weight: normal;
  -webkit-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -moz-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -o-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  transition: all .5s cubic-bezier(.455, .03, .515, .955);
}

.badge-notify--dashboard-count {
  z-index: 10;
  position: absolute;
  top: 5px;
  left: 24px;
  padding: 4px;
  min-width: 13px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  font-weight: normal;
  font-size: 5px;
  -webkit-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -moz-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -o-animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  animation: bounceIn .5s cubic-bezier(.455, .03, .515, .955) forwards;
  -webkit-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  -o-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  -moz-transition: all .5s cubic-bezier(.455, .03, .515, .955);
  transition: all .5s cubic-bezier(.455, .03, .515, .955);
  display: none;
}

/* --------------------------------------------------------- */
/* Add group + select for bootstrap "input-group-btn".
/* --------------------------------------------------------- */
.input-group-btn select {
  border-color: #ccc;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
  padding-bottom: 7px;
}

/* --------------------------------------------------------- */
/* Add ".warning" for tfoot
/* --------------------------------------------------------- */
.table > tfoot.warning {
  background-color: #fcf8e3;
}

/* --------------------------------------------------------- */
/* Set borders for input elements inside an bootstrap input-group manually -> Created to use with AjaxEdit-fields
/* --------------------------------------------------------- */
.input-group .form-control.input-group--force-left-border-round {
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}

.input-group .form-control.input-group--force-left-border-edge {
  -webkit-border-top-left-radius: 0px;
  -moz-border-radius-topleft: 0px;
  border-top-left-radius: 0px;
  -webkit-border-bottom-left-radius: 0px;
  -moz-border-radius-bottomleft: 0px;
  border-bottom-left-radius: 0px;
}

.input-group .form-control.input-group--force-right-border-round {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}

.panel-heading.panel-htmlfilter2-subheading {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topright: 0;
  border-top-right-radius: 0;
  border-top: 1px solid #ddd;
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap "modal".
/* --------------------------------------------------------- */

.modal-dialog {
  margin-top: 30px !important;
}

.modal-dialog a {
  word-break: break-word;
}

.modal-header {
  border-bottom: 1px solid #eee;
}

.modal-footer {
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-box-shadow: inset 0 1px 0 #fff;
  -moz-box-shadow: inset 0 1px 0 #fff;
  box-shadow: inset 0 1px 0 #fff;
}
.modal-footer:empty {
  background-color: transparent;
  border-top: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.modal-dialog-100 {
  max-width: 100%;
}

.modal-dialog-90 {
  max-width: 90%;
}

.modal-dialog-80 {
  max-width: 80%;
}

.modal-dialog-70 {
  max-width: 70%;
}

.modal-dialog-60 {
  max-width: 60%;
}

.modal-dialog-50 {
  max-width: 50%;
}

.modal-lg-extra {
  width: 95%;
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap li ".list-unstyled".
/* --------------------------------------------------------- */
.list-unstyled--hover-effect:hover {
  color: #fff;
  background-color: #337ab7;
}
.list-unstyled--hover-effect:hover a {
  color: #fff;
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap li ".list-vertical-centered".
/* --------------------------------------------------------- */
.list-vertical-centered {
  border-bottom: 1px solid #ccc;
  padding: 5px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* align-items: center; */
}

.list-vertical-centered .even {
  background-color: #ccc;
}

.list-vertical-centered button {
  float: right;
  margin: 0 2px;
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap "text"-align
/* --------------------------------------------------------- */
.text-xs-left {
  text-align: left;
}

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

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

.text-xs-justify {
  text-align: justify;
}

@media (min-width: 768px) {
  .text-sm-left {
    text-align: left;
  }

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

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

  .text-sm-justify {
    text-align: justify;
  }
}

@media (min-width: 992px) {
  .text-md-left {
    text-align: left;
  }

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

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

  .text-md-justify {
    text-align: justify;
  }
}

@media (min-width: 1200px) {
  .text-lg-left {
    text-align: left;
  }

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

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

  .text-lg-justify {
    text-align: justify;
  }
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap "padding"
/* --------------------------------------------------------- */

.padding-xs-top-0 {
  padding-top: 0;
}

.padding-xs-right-0 {
  padding-right: 0;
}

.padding-xs-bottom-0 {
  padding-bottom: 0;
}

.padding-xs-left-0 {
  padding-left: 0;
}

@media (min-width: 768px) {
  .padding-sm-top-0 {
    padding-top: 0;
  }

  .padding-sm-right-0 {
    padding-right: 0;
  }

  .padding-sm-bottom-0 {
    padding-bottom: 0;
  }

  .padding-sm-left-0 {
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .padding-md-top-0 {
    padding-top: 0;
  }

  .padding-md-right-0 {
    padding-right: 0;
  }

  .padding-md-bottom-0 {
    padding-bottom: 0;
  }

  .padding-md-left-0 {
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .padding-lg-top-0 {
    padding-top: 0;
  }

  .padding-lg-right-0 {
    padding-right: 0;
  }

  .padding-lg-bottom-0 {
    padding-bottom: 0;
  }

  .padding-lg-left-0 {
    padding-left: 0;
  }
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap buttons ".btn".
/* --------------------------------------------------------- */

.btn-link--no-padding {
  padding: 0;
}

.btn-link--no-border {
  border: none;
}

.btn--ok,
.btn--ok.active,
.btn--ok.btn-default.active {
  color: #fff;
}

.btn--ok.btn-default {
  color: #666;
}

.btn--ok,
.btn--ok.active {
  background-color: #3c763d;
  border-color: #3a763d;
}

.btn--ok:hover,
.btn--ok:focus,
.btn--ok.focus,
.btn--ok.active:hover,
.btn--ok.active:focus,
.btn--ok.active.focus {
  background-color: #3c763d;
  border-color: #356a35;
  color: #fff !important;
  background-position: 32px 32px;
}

.btn--alert,
.btn--alert.active,
.btn--alert.btn-default.active {
  color: #fff;
}

.btn--alert.btn-default {
  color: #666;
}

.btn--alert,
.btn--alert.active {
  background-color: #a94442;
  border-color: #923937;
}

.btn--alert:hover,
.btn--alert:focus,
.btn--alert.focus,
.btn--alert.active:hover,
.btn--alert.active:focus,
.btn--alert.active.focus {
  background-color: #a94442;
  border-color: #753634;
  color: #fff !important;
  background-position: 32px 32px;
}

.btn--neutral,
.btn--neutral.active,
.btn--neutral.btn-default.active {
  color: #fff;
}

.btn--neutral.btn-default {
  color: #666;
}

.btn--neutral,
.btn--neutral.active {
  background-color: #999;
  border-color: #7a7a7a;
}

.btn--neutral:hover,
.btn--neutral:focus,
.btn--neutral.focus,
.btn--neutral.active:hover,
.btn--neutral.active:focus,
.btn--neutral.active.focus {
  background-color: #999;
  border-color: #676767;
  color: #fff !important;
  background-position: 32px 32px;
}

/* --------------------------------------------------------- */
/* Menü für admins um sich als anderen Benutzer / Kunde  oder Lieferant anzumelden.
/* --------------------------------------------------------- */
#search_container_wrapper {
  z-index: 10000;
  width: 600px;
  margin-bottom: 15px;
}

.search_container_tablewrapper {
  max-height: 500px;
  overflow-x: hidden;
  overflow-y: auto;
}

.search_container_tablewrapper table {
  table-layout: fixed;
  width: 100%;
}
.search_container_tablewrapper table tr td.text-overflow,
.search_container_tablewrapper table tr th.text-overflow {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.search_container .search_container_title {
  width: 100%;
  font-weight: bold;
  text-decoration: none;
}

.search_container .search_container_show_all {
  text-align: center;
}

.search_container .search_container_show_all a {
  font-weight: bold;
  text-decoration: none;
}

.search_container {
  margin-top: 15px;
}

.search_filter_button.selected {
  background: #bbb !important;
}

/* --------------------------------------------------------- */
/* Custom styles for bootstrap navigation ".navbar".
/* --------------------------------------------------------- */
.navbar,
.navbar.navbar-default {
  background-color: #f0f0f0;
  color: #000;
}

.navbar {
  border-bottom: 1px solid #bbb;
}

/* --------------------------------------------------------- */
/* Add fixed bottom container.
/* --------------------------------------------------------- */
.container-bottom-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background: -webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background: -o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);
  background: -webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));
  background: linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);
  background: linear-gradient(to bottom,rgba(245, 245, 245, 0.88) 0,rgba(232, 232, 232, 0.88) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
  background-repeat: repeat-x;
  border-top: #aaa 1px solid;
  border-radius: 0;
  z-index: 10;
}

/* --------------------------------------------------------- */
/* Add special button classes -> used e.g. in the order process.
/* --------------------------------------------------------- */
.btn-arrow-right,
.btn-arrow-right-start,
.btn-arrow-right-end {
  outline: none !important;
  position: relative;
  padding-left: 24px;
  padding-right: 16px;
  margin-left: -5px;
}
.btn-arrow-right:before,
.btn-arrow-right:after,
.btn-arrow-right-start:after,
.btn-arrow-right-end:before { /* make two squares (before and after), looking similar to the button */
  content: "";
  position: absolute;
  top: 5px; /* move it down because of rounded corners */
  width: 22px; /* same as height */
  height: 22px; /* button_outer_height / sqrt(2) */
  border-left-color: transparent; /* hide left border */
  border-bottom-color: transparent; /* hide bottom border */
  border-top: #ccc solid 1px;
  border-right: #ccc solid 1px;
  border-radius: 0 4px 0 0; /* round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
  -webkit-border-radius: 0 4px 0 0;
  -moz-border-radius: 0 4px 0 0;
  transform: rotate(45deg); /* rotate right arrow squares 45 deg to point right */
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}
.btn-arrow-right:after,
.btn-arrow-right-start:after { /* align the "after" square to the right */
  right: -11px;
  z-index: 1;
  outline: 0;
  background: -webkit-linear-gradient(315deg, #fff 0, #e0e0e0 100%);
  background: -moz-linear-gradient(315deg, #fff 0, #e0e0e0 100%);
  background: -o-linear-gradient(315deg, #fff 0, #e0e0e0 100%);
  background: linear-gradient(135deg, #fff 0, #e0e0e0 100%);
}
.btn-arrow-right:hover:after,
.btn-arrow-right-start:hover:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #eee 0%, #e0e0e0 100%);
  background: -moz-linear-gradient(315deg, #eee 0%, #e0e0e0 100%);
  background: -o-linear-gradient(315deg, #eee 0%, #e0e0e0 100%);
  background: linear-gradient(135deg, #eee 0%, #e0e0e0 100%);
}
.btn-arrow-right:focus:after,
.btn-arrow-right-start:focus:after,
.btn-arrow-right:active:after,
.btn-arrow-right-start:active:after {
  background: #e0e0e0;
  border-color: #adadad;
}
.btn-arrow-right:active:focus:after,
.btn-arrow-right-start:active:focus:after,
.btn-arrow-right:active:hover:after,
.btn-arrow-right-start:active:hover:after {
  background: #d4d4d4;
  border-color: #8c8c8c;
}

.btn-primary.btn-arrow-right:after,
.btn-primary.btn-arrow-right-start:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #337ab7 0, #265a88 100%);
  background: -moz-linear-gradient(315deg, #337ab7 0, #265a88 100%);
  background: -o-linear-gradient(315deg, #337ab7 0, #265a88 100%);
  background: linear-gradient(135deg, #337ab7 0, #265a88 100%);
}
.btn-primary.btn-arrow-right:hover:after,
.btn-primary.btn-arrow-right-start:hover:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #136aa7 0, #265a88 100%);
  background: -moz-linear-gradient(315deg, #136aa7 0, #265a88 100%);
  background: -o-linear-gradient(315deg, #136aa7 0, #265a88 100%);
  background: linear-gradient(135deg, #136aa7 0, #265a88 100%);
}
.btn-primary.btn-arrow-right:focus:after,
.btn-primary.btn-arrow-right-start:focus:after,
.btn-primary.btn-arrow-right:active:after,
.btn-primary.btn-arrow-right-start:active:after {
  background: #265a88;
  border-color: #245580;
}
.btn-primary.btn-arrow-right:active:focus:after,
.btn-primary.btn-arrow-right-start:active:focus:after,
.btn-primary.btn-arrow-right:active:hover:after,
.btn-primary.btn-arrow-right-start:active:hover:after {
  background: #204d74;
  border-color: #122b40;
}

.btn-arrow-right:disabled,
.btn-arrow-right-start:disabled {
  opacity: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), to(#e0e0e0));
  background: -webkit-linear-gradient(bottom, #fff 0, #e0e0e0 100%);
  background: -moz-linear-gradient(bottom, #fff 0, #e0e0e0 100%);
  background: -o-linear-gradient(bottom, #fff 0, #e0e0e0 100%);
  background: linear-gradient(0deg, #fff 0, #e0e0e0 100%);
}

.btn-arrow-right:disabled,
.btn-arrow-right:disabled a,
.btn-arrow-right-start:disabled,
.btn-arrow-right-start:disabled a,
.btn-arrow-right-end a {
  color: #888;
}

.btn-arrow-right:disabled:after,
.btn-arrow-right-start:disabled:after,
.btn-arrow-right:disabled:before,
.btn-arrow-right-start:disabled:before {
  opacity: 1;
  background: -webkit-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: -moz-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: -o-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: linear-gradient(315deg, #fff 0, #e0e0e0 100%);
}

.btn-arrow-right:disabled:hover:after,
.btn-arrow-right-start:disabled:hover:after {
  opacity: 1;
  background: -webkit-linear-gradient(135deg, #e1e1e1 0, #e0e0e0 100%);
  background: -moz-linear-gradient(135deg, #e1e1e1 0, #e0e0e0 100%);
  background: -o-linear-gradient(135deg, #e1e1e1 0, #e0e0e0 100%);
  background: linear-gradient(315deg, #e1e1e1 0, #e0e0e0 100%);
}

.btn-arrow-right:before,
.btn-arrow-right:disabled:before,
.btn-arrow-right-end:before {
  left: -11px; /* align the "before" square to the left */
  background: initial; /* reset */
  background-color: white; /* hide arrow tails background */
}

.btn-success.btn-arrow-right:after,
.btn-success.btn-arrow-right-start:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #5cb85c 0, #419641 100%);
  background: -moz-linear-gradient(315deg, #5cb85c 0, #419641 100%);
  background: -o-linear-gradient(315deg, #5cb85c 0, #419641 100%);
  background: linear-gradient(135deg, #5cb85c 0, #419641 100%);
}
.btn-success.btn-arrow-right:hover:after,
.btn-success.btn-arrow-right-start:hover:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #419641 0, #419641 100%);
  background: -moz-linear-gradient(315deg, #419641 0, #419641 100%);
  background: -o-linear-gradient(315deg, #419641 0, #419641 100%);
  background: linear-gradient(135deg, #419641 0, #419641 100%);
}
.btn-success.btn-arrow-right:focus:after,
.btn-success.btn-arrow-right-start:focus:after,
.btn-success.btn-arrow-right:active:after,
.btn-success.btn-arrow-right-start:active:after {
  background: #419641;
  border-color: #398439;
}
.btn-success.btn-arrow-right:active:focus:after,
.btn-success.btn-arrow-right-start:active:focus:after,
.btn-success.btn-arrow-right:active:hover:after,
.btn-success.btn-arrow-right-start:active:hover:after {
  background: #398439;
  border-color: #255625;
}

.btn-arrow-right.btn-danger:after,
.btn-arrow-right-start.btn-danger:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #d9534f 0, #c12e2a 100%);
  background: -moz-linear-gradient(315deg, #d9534f 0, #c12e2a 100%);
  background: -o-linear-gradient(315deg, #d9534f 0, #c12e2a 100%);
  background: linear-gradient(135deg, #d9534f 0, #c12e2a 100%);
}
.btn-arrow-right.btn-danger:hover:after,
.btn-arrow-right-start.btn-danger:hover:after { /* align the "after" square to the right */
  background: -webkit-linear-gradient(315deg, #c9433f 0%, #c12e2a 100%);
  background: -moz-linear-gradient(315deg, #c9433f 0%, #c12e2a 100%);
  background: -o-linear-gradient(315deg, #c9433f 0%, #c12e2a 100%);
  background: linear-gradient(135deg, #c9433f 0%, #c12e2a 100%);
}
.btn-danger.btn-arrow-right:focus:after,
.btn-danger.btn-arrow-right-start:focus:after,
.btn-danger.btn-arrow-right:active:after,
.btn-danger.btn-arrow-right-start:active:after {
  background: #c12e2a;
  border-color: #e6700b;
}
.btn-danger.btn-arrow-right:active:focus:after,
.btn-danger.btn-arrow-right-start:active:focus:after,
.btn-danger.btn-arrow-right:active:hover:after,
.btn-danger.btn-arrow-right-start:active:hover:after {
  background: #ac2925;
  border-color: #761c19;
}

.btn-danger:disabled:after {
  background: -webkit-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: -moz-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: -o-linear-gradient(135deg, #fff 0, #e0e0e0 100%);
  background: linear-gradient(315deg, #fff 0, #e0e0e0 100%);
}

.btn-primary a {
  color: white;
  text-decoration: none;
}

.btn-default a {
  color: black;
  text-decoration: none;
}

.btn-danger a {
  color: white;
  text-decoration: none;
}

input[type=checkbox].form-control {
  width: auto;
  margin: auto;
}

/* --------------------------------------------------------- */
/* Add custom 5-equal col for the "bootstrap"-grid.
/* --------------------------------------------------------- */
.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-5ths {
  width: 20%;
  float: left;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    width: 20%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    width: 20%;
    float: left;
  }
}

/* --------------------------------------------------------- */
/* Extra media queries.
/* --------------------------------------------------------- */
@media (max-width: 767px) {
  .text-left-xs {
    text-align: left;
  }

  .btn-block-xs {
    display: block;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .text-left-sm {
    text-align: left;
  }

  .text-left-not-xs {
    text-align: left;
  }

  .btn-block-sm {
    display: block;
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .text-left-md {
    text-align: left;
  }

  .text-left-not-xs {
    text-align: left;
  }

  .btn-block-md {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .text-left-lg {
    text-align: left;
  }

  .text-left-not-xs {
    text-align: left;
  }

  .btn-block-lg {
    display: block;
    width: 100%;
  }
}

/* --------------------------------------------------------- */
/* Hide elements on screens for screenwidths smaller or larger than 1280px.
/* --------------------------------------------------------- */
@media (max-width: 1528px) {
  .visible-gt-1280 {
    display: none !important;
  }
}
@media (min-width: 1529px) {
  .hidden-lt-1280 {
    display: none !important;
  }
}

/* --------------------------------------------------------- */
/* Extra styles for the print layout.
/* --------------------------------------------------------- */
@media print {
  /* hide some stuff for the print */
  .hidden-for-print {
    display: none !important;
  }

  /* do not always break the page - not working in e.g. tables :/ */
  .page-break-after-avoid {
    page-break-after: avoid;
  }
  .page-break-before-avoid {
    page-break-before: avoid;
  }
  .page-break-inside-avoid {
    page-break-inside: avoid;
  }

  /* reset padding, margin */
  body,
  .container-fluid,
  .content_layer {
    padding: 0 !important;
    margin: 0 !important;
  }

  a[href]:after, /* remove href values from the print */
  .info-icon-wrapper .vdmg-icon--info-circle:before, /* remove hover effect (icon) from the print */
  [data-toggle="collapse"]:not(.navbar-toggle):after,
  [data-toggle="collapse"]:not(.navbar-toggle).collapsed:after {
    content: none !important;
  }

  /* display the full html-table */
  table.html-table--content {
    table-layout: auto !important;
    width: 100% !important;
    white-space: normal !important;
  }
}

/* --------------------------------------------------------- */
/* Buttons for the collapsed menu.
/* --------------------------------------------------------- */
.btn-group--mobile {
  float: right !important;
  margin-right: 5px;
}

.btn-group--mobile .btn {
  color: #777;
}

.btn-group--mobile .btn .badge {
  position: absolute;
}

/* --------------------------------------------------------- */
/* Show multi-line content for a htmltables tds which can be sorted.
/* --------------------------------------------------------- */
.table-sorter-helper .ui-sortable-handle {
  white-space: normal !important;
}

/* --------------------------------------------------------- */
/* Show cursor for a htmltables tds which can be sorted.
/* --------------------------------------------------------- */

/* noinspection CssInvalidPropertyValue */
.table-sorter-helper td.handle {
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

/* noinspection CssInvalidPropertyValue */
.table-sorter-helper tr.ui-sortable-helper td.handle,
.table-sorter-helper tr.sorting-row td.handle {
  cursor: move;
  /* fallback if grab cursor is unsupported */
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

/* --------------------------------------------------------- */
/* Show background image to show that a row can be sorted.
/* --------------------------------------------------------- */

.table-sorter-helper .table-tr-sorter-background {
  padding-left: 16px;
  background: url("../../img/drag_drop_border.png") no-repeat 0% 49%;
}

/* --------------------------------------------------------- */
/* Style for Groups inside HtmlFormExtended forms.
/* --------------------------------------------------------- */
a.html-form-extended-group-title {
  display: block;
  background-color: #f0f0f0;
  background-color: rgba(231,231,231,0.4);
  background-image: -webkit-linear-gradient(top,#fff 0,#eeeeee 100%);
  background-image: -o-linear-gradient(top,#fff 0,#eeeeee 100%);
  background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#eeeeee));
  background-image: -webkit-gradient(linear,left top, left bottom,color-stop(0, #fff),to(#eeeeee));
  background-image: -moz-linear-gradient(top,#fff 0,#eeeeee 100%);
  background-image: linear-gradient(to bottom,#fff 0,#eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#eeeeeeee', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-repeat: repeat-x;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
  padding: 10px;
  margin: 5px;
  margin-bottom: 0;
  text-decoration: none;
}
a.html-form-extended-group-title:hover,
a.html-form-extended-group-title:visited,
a.html-form-extended-group-title:link,
a.html-form-extended-group-title:active
{
  text-decoration: none;
}

/* --------------------------------------------------------- */
/* Style for showing the cost center
/* --------------------------------------------------------- */
.header_content_customer_wrapper {
  position: absolute;
  right: 25px;
  height: 25px;
  z-index: -1;
}
.header_content_customer {
  padding: 5px;
  margin: 0;
  border: 1px solid #bbb;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  background-image: -webkit-linear-gradient(top, #fff 0, #f8f8f8 100%);
  background-image: -o-linear-gradient(top, #fff 0, #f8f8f8 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
  background-image: linear-gradient(to bottom, #fff 0, #f8f8f8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff", endColorstr="#fff8f8f8", GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
  color: #333;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
}

/* --------------------------------------------------------- */
/* hide the eye in edge to reveal the password from an input password field
/* this eye will be shown if the user entered one or more characters
/* --------------------------------------------------------- */
input[type='password']::-ms-reveal {
  display: none;
}

/* --------------------------------------------------------- */
/* Size of the User-Dropdown-Button
/* --------------------------------------------------------- */
.navbar-nav>li>a.user-menu-btn {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 40px;
}

/* --------------------------------------------------------- */
/* style for the first list entry in user dropdown menu in top right corner
/* --------------------------------------------------------- */
.nav-header--user-profile {
  background-color: #eee;
  padding: 10px 20px;
  margin-bottom: 3px;
  min-width: 300px;
}

/* --------------------------------------------------------- */
/* Space for the navbar
/* --------------------------------------------------------- */
body {
  padding-top: 50px;
}

.global_menu_search_tt_menu {
  max-height: 600px;
}
