/* Fonts */
.font-regular {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.font-bold {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
/* Font Colors */
/* Base Colors */
/* Shades of Gray */
/* Hightlight */
/* Error */
/* Info */
/* Success */
/* Language Specific */
/* Shadow Functions */
.shadow-default {
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.shadow-off {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.shadow-language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.shadow-control {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.shadow-control:focus {
  -moz-box-shadow: 0 0 8px #9C9E9F;
  -webkit-box-shadow: 0 0 8px #9C9E9F;
  box-shadow: 0 0 8px #9C9E9F;
}
.shadow-control.validation-error:focus {
  -moz-box-shadow: 0 0 8px #ff8282;
  -webkit-box-shadow: 0 0 8px #ff8282;
  box-shadow: 0 0 8px #ff8282;
}
.shadow-control.language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.shadow-control.language-specific:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
}
.shadow-control.language-specific.validation-error:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
}
/* --- CK Editor Modifications -------------------------- */
body.cke_editable {
  padding: 10px;
}
/* --- Allgemein --------------------------------------------------------  */
/* Listen */
ul {
  padding-left: 15px;
}
/* Links */
a {
  color: #E46D00;
  text-decoration: none;
}
a:hover,
a:focus {
  outline: none;
  outline-offset: 0;
  border-bottom: 1px solid #3C3C3C;
  color: #3C3C3C;
  text-decoration: none;
}
/* Pre */
pre {
  overflow: hidden;
  padding: 0.1em 0.5em 0.3em 0.7em;
  width: 100%;
  height: 100%;
  border-bottom: 11px solid #CCCCCC;
}
pre *,
pre *:before,
pre *:after {
  margin: 0px;
  padding: 0px;
  line-height: normal;
}
pre:hover {
  position: relative;
  z-index: 99;
  overflow: auto;
  height: auto;
  border-bottom: 1px solid #CCCCCC;
}
/* Span */
span.break-word {
  overflow-wrap: break-word;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}
/* --- Forms --------------------------------------------------------  */
/* Form General */
.form-horizontal .control-label {
  padding-top: 3px;
  padding-bottom: 4px;
  vertical-align: top;
  text-align: left;
  text-transform: uppercase;
  font-weight: normal;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.form-horizontal label {
  vertical-align: top;
}
.form-horizontal .form-control-static {
  display: inline-block;
  padding-top: 3px;
}
.form-horizontal .form-group {
  margin-bottom: 8px;
  margin-left: 0;
  position: relative;
}
.form-horizontal .form-inline .form-group {
  margin-right: 0;
  margin-bottom: 0;
}
/* Form Column */
.form.form-horizontal .form-group .col-left,
.form.form-horizontal .form-group .col-right,
.form.form-horizontal .form-group .col-full {
  padding-right: 15px;
  padding-left: 0;
}
/* Main-Container */
.col-md-8 .form.form-horizontal .form-group .col-left {
  width: 20%;
}
.col-md-8 .form.form-horizontal .form-group .col-right {
  width: 80%;
}
/* Additional Info*/
.col-md-6 .form.form-horizontal .form-group .col-left {
  width: 33.333%;
}
.col-md-6 .form.form-horizontal .form-group .col-right {
  width: 66.666%;
}
/* Sidebar Right */
.col-md-4 .form.form-horizontal .form-group .col-left,
.col-md-5 .form.form-horizontal .form-group .col-left {
  width: 33.333%;
}
.col-md-4 .form.form-horizontal .form-group .col-right,
.col-md-5 .form.form-horizontal .form-group .col-right {
  width: 66.666%;
}
@media (min-width: 480px) {
  .form.form-horizontal.split-3-7 .form-group .col-left {
    width: 29%;
  }
  .form.form-horizontal.split-3-7 .form-group .col-right {
    width: 71%;
  }
}
/* Form Inline */
.form-inline a,
.form-inline input,
.form-inline .dropdown-list,
.form-inline .control-label {
  margin-right: 5px;
}
/* Form Submit */
.form-horizontal .form-submit {
  margin-bottom: 8px;
  height: 23px;
  text-align: left;
}
.form-horizontal .form-submit .btn {
  vertical-align: top;
}
/* Form - Controls */
.form-control {
  padding: 2px 10px 4px 10px;
  height: 24px;
  color: #3C3C3C;
  font-size: 14px;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  border-color: #CCCCCC;
}
.form-control:focus {
  -moz-box-shadow: 0 0 8px #9C9E9F;
  -webkit-box-shadow: 0 0 8px #9C9E9F;
  box-shadow: 0 0 8px #9C9E9F;
}
.form-control.validation-error:focus {
  -moz-box-shadow: 0 0 8px #ff8282;
  -webkit-box-shadow: 0 0 8px #ff8282;
  box-shadow: 0 0 8px #ff8282;
}
.form-control.language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.form-control.language-specific:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
}
.form-control.language-specific.validation-error:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
}
.form-control:-moz-placeholder {
  color: #9C9E9F;
}
.form-control::-moz-placeholder {
  color: #9C9E9F;
}
.form-control:-ms-input-placeholder {
  color: #9C9E9F;
}
.form-control::-webkit-input-placeholder {
  color: #9C9E9F;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #D5D5D5;
  color: #FFFFFF;
}
.form-control:focus {
  border-color: #CCCCCC;
}
/* Form - Textarea */
textarea.form-control {
  max-width: 100%;
}
/* Form - CheckBox & Radionbuttons */
.form-horizontal .radio,
.form-horizontal .checkbox {
  padding-top: 0;
  padding-bottom: 2px;
  min-height: 23px;
}
.form-horizontal .checkbox input,
.form-horizontal .radio input {
  margin-top: 4px;
}
.form-inline .radio,
.form-inline .checkbox {
  margin-right: 5px;
  padding-top: 3px;
}
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-left: 0;
}
.checkbox-list label {
  font-weight: normal;
}
/* Form - Required */
.control-label.required:after {
  color: #ff3333;
  content: " *";
}
/* Search Textbox */
.input-group.input-search {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.input-group.input-search .form-control:first-child {
  padding-right: 25px;
}
.input-search .btn-search {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  display: block;
  margin-right: 0;
  width: 24px;
  height: 24px;
  text-align: right;
}
.input-search .btn-search:hover,
.input-search .btn-search:focus {
  border-bottom: none;
}
.input-search .icon.icon-base-search {
  margin-right: 7px;
  color: #3C3C3C;
  font-size: 14px;
  vertical-align: top;
  line-height: 23px;
  z-index: 3;
}
.input-search > .icon.icon-base-search {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
/* File Upload */
.fileupload .filename {
  display: inline-block;
  overflow: hidden;
  margin: 3px 15px 3px 0;
  width: 100%;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
/* Dropdown List */
.dropdown-list > select.form-control {
  padding-top: 1px;
  padding-left: 7px;
}
/* Default */
.dropdown-list:after {
  background: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3C3C3C;
  content: " ";
  position: absolute;
  top: 10px;
  right: 8px;
}
.dropdown-list > select {
  font-weight: normal;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.dropdown-list > select > option {
  padding: 5px 13px 5px 13px;
  background-color: #FFFFFF;
  color: #3C3C3C;
}
.dropdown-list > select > option[disabled] {
  color: #D5D5D5;
}
/* Filter */
.ddl-filter.dropdown-list > select > option {
  padding: 5px 13px 5px 13px;
  background-color: #FFFFFF;
  color: #3C3C3C;
  text-transform: none;
}
.ddl-filter.dropdown-list > select > option[disabled] {
  color: #D5D5D5;
}
/* DateTime Picker */
.datepicker-wrapper {
  margin-top: 6px;
  margin-left: -1px;
}
.datepicker {
  color: #3C3C3C;
  font-size: 12px;
}
i.datepicker,
i.datereset {
  margin-top: 5px;
}
.datepicker i.glyphicon {
  margin: 0 3px 4px 3px;
}
.datepicker-dropdown:before {
  position: absolute;
  top: -7px;
  left: 6px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #CCCCCC;
  border-left: 7px solid transparent;
  content: '';
}
.datepicker-dropdown:after {
  position: absolute;
  top: -6px;
  left: 7px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #FFFFFF;
  border-left: 6px solid transparent;
  content: '';
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: #FFFFFF;
}
.datepicker table tr td.day:hover {
  background: #FF8D00;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #9C9E9F;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #9C9E9F;
  cursor: default;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  border-color: none;
  background-color: #FF8D00;
  background-image: none;
  text-shadow: none;
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled.disabled:hover,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active[disabled]:hover,
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled[disabled]:hover {
  background-color: #FF8D00;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled.active:hover {
  background-color: #FF8D00;
}
.datepicker table tr td span:hover {
  background: #CCCCCC;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background-color: #CCCCCC;
  color: #3C3C3C;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  border-color: none;
  background-color: #FF8D00;
  background-image: none;
  text-shadow: none;
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.active.disabled:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled.disabled:hover,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active[disabled]:hover,
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled[disabled]:hover {
  background-color: #FF8D00;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled.active:hover {
  background-color: #FF8D00;
}
.datepicker table tr td span.old {
  color: #3C3C3C;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr:first-child th:hover {
  background: #CCCCCC;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr:first-child th,
.datepicker .dow {
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-weight: normal;
}
/* Tooltip */
i.tooltip {
  background-image: none;
  position: absolute;
  top: 2px;
  left: -20px;
  z-index: 1;
  display: block;
  width: 16px;
  height: 16px;
  font-size: 16px;
  color: #575757;
}
/* --- Buttons ------------------------------------------------------  */
.btn,
.btn:hover,
.btn:focus {
  padding: 3px 12px 5px 12px;
  height: 23px;
  border: none;
  text-transform: uppercase;
  -webkit-text-shadow: none;
  text-shadow: none;
  font-size: 12px;
  line-height: 15px;
}
.btn.btn-default,
.btn.btn-default:focus,
.open .dropdown-toggle.btn-default {
  background-color: #575757;
  color: #FFFFFF;
}
.btn.btn-default:hover {
  background-color: #3C3C3C;
  color: #FFFFFF;
}
.btn.btn-primary,
.btn.btn-primary:focus {
  background-color: #E46D00;
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  background-color: #FF8D00;
  color: #FFFFFF;
}
/* Button Disabled */
.btn.btn-default.disabled,
.btn.btn-default.disabled:focus,
.btn.btn-default.disabled:hover,
.btn.btn-default[disabled],
.btn.btn-default[disabled]:focus,
.btn.btn-default[disabled]:hover,
.btn.btn-primary.disabled,
.btn.btn-primary.disabled:focus,
.btn.btn-primary.disabled:hover,
.btn.btn-primary[disabled],
.btn.btn-primary[disabled]:focus,
.btn.btn-primary[disabled]:hover {
  background-color: #9C9E9F;
}
.btn-group,
.btn-group-vertical {
  vertical-align: top;
}
/* Button Icon */
.btn {
  position: relative;
  vertical-align: baseline;
}
.btn i {
  margin-right: 6px;
  margin-bottom: 2px;
  vertical-align: middle;
}
.btn .icon {
  font-size: 12px;
  line-height: 15px;
  color: #3C3C3C;
  vertical-align: top;
}
.btn.btn-primary .icon {
  color: #FFFFFF;
}
.btn.btn-default .icon {
  color: #FFFFFF;
}
/* Button Right */
.form-inline .btn.btn-right {
  float: right;
  margin-right: 15px;
}
a.btn-inline i {
  margin: 0;
  text-decoration: none;
  font-size: 14px;
  color: #3C3C3C;
}
a.btn-inline:hover,
a.btn-inline:focus {
  border: none;
  text-decoration: none;
}
/* DropDown - Button */
.open .dropdown-toggle.btn-default {
  height: 25px;
  border-bottom: 1px solid #727272;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle span.caret {
  margin-left: 3px;
}
.btn-group .dropdown-menu {
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  min-width: 50px;
  border: none;
  -moz-border-radius: 0px 4px 4px 4px;
  -webkit-border-radius: 0px 4px 4px 4px;
  border-radius: 0px 4px 4px 4px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-group .dropdown-menu.pull-right {
  right: 5px;
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.btn-group.overlap .dropdown-menu.pull-right {
  right: 5px;
  -moz-border-radius: 4px 0px 4px 4px;
  -webkit-border-radius: 4px 0px 4px 4px;
  border-radius: 4px 0px 4px 4px;
}
.btn-group .dropdown-menu > li {
  text-align: left;
}
.btn-group .dropdown-menu > li > a {
  display: block;
  margin-right: 0;
  padding: 5px 12px;
  border-bottom: solid 1px #727272;
  background-color: #575757;
  color: #FFFFFF;
  text-transform: uppercase;
  -webkit-text-shadow: none;
  text-shadow: none;
  font-weight: normal;
  font-size: 10px;
  cursor: pointer;
}
.btn-group .dropdown-menu > li > a:hover,
.btn-group .dropdown-menu > li > a:focus {
  background-color: #3C3C3C;
}
.btn-group .dropdown-menu > li:last-child > a,
.btn-group .dropdown-menu > li:last-child > a:hover,
.btn-group .dropdown-menu > li:last-child > a:focus {
  border-bottom: none;
}
/* --- Validation ---------------------------------------------------  */
/* Form Focus */
.form-control.validation-error,
.panel-body .form-control.validation-error,
.login .panel-body .form-control.validation-error {
  border-color: #ff3333;
}
/* Error Pop Up */
.validation-ErrorMessagePopup {
  position: absolute !important;
  padding: 2px 8px 4px 8px;
  width: auto !important;
  border: 1px solid #B50000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #B50000;
  color: #FFFFFF !important;
  font-weight: normal;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 16px;
}
.validation-ErrorMessagePopup,
.validation-ErrorMessagePopup a:link,
.validation-ErrorMessagePopup a:visited,
.validation-ErrorMessagePopup a:active,
.validation-ErrorMessagePopup a:hover {
  color: #FFFFFF !important;
  font-weight: normal;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 16px;
}
.validation-ErrorMessagePopup div {
  margin: 0;
}
.validation-ErrorMessagePopup:after,
.validation-ErrorMessagePopup:before {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: ridge;
  border-color: transparent;
  border-right-style: solid;
  content: ' ';
}
.validation-ErrorMessagePopup:after {
  left: -10px;
  margin-top: -5px;
  border-width: 5px;
  border-right-color: #B50000;
}
.validation-ErrorMessagePopup:before {
  left: -12px;
  margin-top: -6px;
  border-width: 6px;
  border-right-color: #B50000;
}
/* Keine DES Error Icons */
.DESVALRequiredFieldMarker {
  display: none;
}
.DESVALErrorText {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: none !important;
  margin-left: -9px;
  padding: 3px 8px;
  border: 1px solid #B50000;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #B50000;
  font-weight: normal;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 16px;
}
.DESVALErrorText.show-error {
  display: block !important;
}
.DESVALErrorText,
.DESVALErrorText a:link,
.DESVALErrorText a:visited,
.DESVALErrorText a:active,
.DESVALErrorText a:hover {
  color: #FFFFFF;
  white-space: nowrap;
  font-weight: normal;
  font-size: 12px;
  font-family: Arial, sans-serif;
  line-height: 16px;
}
.DESVALErrorText:after,
.DESVALErrorText:before {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: ridge;
  border-color: transparent;
  border-right-style: solid;
  content: ' ';
}
.DESVALErrorText:after {
  left: -10px;
  margin-top: -5px;
  border-width: 5px;
  border-right-color: #B50000;
}
.DESVALErrorText:before {
  left: -12px;
  margin-top: -6px;
  border-width: 6px;
  border-right-color: #B50000;
}
.DESVALErrorText.position-top {
  top: -32px;
}
.DESVALErrorText.position-top:after,
.DESVALErrorText.position-top:before {
  left: 50%;
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.DESVALErrorText.position-top:after {
  /*ErrorSpan Offset + under the message*/
  top: 27px;
  margin-left: -5px;
}
.DESVALErrorText.position-top:before {
  top: 29px;
  margin-left: -6px;
}
/* --- GridView ------------------------------------------------------  */
.gridview {
  min-width: 1024px;
  width: 100%;
  table-layout: fixed;
}
.modal .gridview {
  min-width: 893px;
}
.row .col-md-5 .gridview {
  min-width: 859px;
}
.row .col-md-8 .gridview {
  min-width: 859px;
}
@media (min-width: 992px) {
  .row .col-md-5 .gridview {
    min-width: 321px;
  }
  .row .col-md-8 .gridview {
    min-width: 551px;
  }
}
.gridview .gridview-header th {
  background-color: #575757;
  color: #FFFFFF;
  font-weight: normal;
}
.gridview .gridview-header th > span,
.gridview .gridview-header th a,
.gridview .gridview-header th > a > div {
  position: relative;
  display: block;
  padding: 5px 15px 5px 15px;
  color: #FFFFFF;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.gridview .gridview-header th a.sorted-column {
  padding-right: 34px;
}
.gridview .gridview-header th a.sorted-column,
.gridview .gridview-header th a:hover,
.gridview .gridview-header th a:focus {
  background-color: #3C3C3C;
}
.gridview .gridview-header th div.sort-info {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  padding: 0 6px 0 0;
}
.gridview .gridview-header th div.sort-info .sort-direction,
.gridview .gridview-header th div.sort-info .sort-order {
  color: #FFFFFF;
  vertical-align: top;
}
.gridview .gridview-header th div.sort-info .sort-direction {
  font-size: 22px;
  line-height: 28px;
}
.gridview > thead > tr.gridview-header > th,
.gridview > tbody > tr.gridview-header > th,
.gridview > tfoot > tr.gridview-header > th {
  padding: 0;
}
.gridview td a {
  border-bottom: none;
}
.gridview .gridview-row {
  background-color: #EDEDED;
}
.gridview .gridview-alternating-row {
  background-color: #FFFFFF;
}
.gridview .gridview-row.language-missing .language-specific,
.gridview .gridview-alternating-row.language-missing .language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.gridview .gridview-row:hover,
.gridview .gridview-alternating-row:hover,
.gridview .gridview-row:hover .language-specific,
.gridview .gridview-alternating-row:hover .language-specific {
  background-color: #FFDC80;
}
/* Grid Select Classes */
.gridview .gridview-row.selected,
.gridview .gridview-alternating-row.selected,
.gridview .gridview-row.selected .language-specific,
.gridview .gridview-alternating-row.selected .language-specific {
  background-color: #FF8D00;
}
.gridview .gridview-row.selected .language-link,
.gridview .gridview-alternating-row.selected .language-link,
.gridview .gridview-row.selected .language-specific .language-link,
.gridview .gridview-alternating-row.selected .language-specific .language-link,
.gridview .gridview-row.selected .language-link-nottranslated,
.gridview .gridview-alternating-row.selected .language-link-nottranslated,
.gridview .gridview-row.selected .language-specific .language-link-nottranslated,
.gridview .gridview-alternating-row.selected .language-specific .language-link-nottranslated {
  color: #FFFFFF;
}
.gridview .gridview-row.selected .language-link-disabled,
.gridview .gridview-alternating-row.selected .language-link-disabled,
.gridview .gridview-row.selected .language-specific .language-link-disabled,
.gridview .gridview-alternating-row.selected .language-specific .language-link-disabled,
.gridview .gridview-row.selected:hover .language-link-disabled,
.gridview .gridview-alternating-row.selected:hover .language-link-disabled,
.gridview .gridview-row.selected:hover .language-specific .language-link-disabled,
.gridview .gridview-alternating-row.selected:hover .language-specific .language-link-disabled {
  color: #575757;
}
.gridview .gridview-row.selected:hover .language-link-disabled:hover,
.gridview .gridview-alternating-row.selected:hover .language-link-disabled:hover,
.gridview .gridview-row.selected:hover .language-specific .language-link-disabled:hover,
.gridview .gridview-alternating-row.selected:hover .language-specific .language-link-disabled:hover {
  color: #FFFFFF;
}
.gridview > thead > tr > th,
.gridview > tbody > tr > th,
.gridview > tfoot > tr > th,
.gridview > thead > tr > td,
.gridview > tbody > tr > td,
.gridview > tfoot > tr > td {
  border-right: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  vertical-align: top;
  font-size: 14px;
}
.gridview th > span:first-child,
.gridview th > label:first-child,
.gridview th > a:first-child,
.gridview td > span:first-child,
.gridview td > label:first-child,
.gridview td > a:first-child {
  padding-left: 14px;
}
.gridview th > span,
.gridview th > label,
.gridview th > a,
.gridview td > span,
.gridview td > label,
.gridview td > a {
  padding: 5px 2px 5px 2px;
}
.gridview th a:hover,
.gridview th a:focus,
.gridview td a:hover,
.gridview td a:focus {
  border-bottom: none;
}
.gridview th > span,
.gridview th > label,
.gridview th > a {
  display: block;
}
.gridview td > span,
.gridview td > label,
.gridview td > a {
  display: inline-block;
}
.gridview th > span:last-child,
.gridview th > label:last-child,
.gridview th > a:last-child,
.gridview td > span:last-child,
.gridview td > label:last-child,
.gridview td > a:last-child {
  padding-right: 14px;
}
.gridview > thead > tr > th,
.gridview > tbody > tr > th,
.gridview > tfoot > tr > th {
  padding-top: 5px;
  padding-bottom: 5px;
  text-transform: uppercase;
  white-space: nowrap;
}
.gridview > thead > tr > th:first-child,
.gridview > tbody > tr > th:first-child,
.gridview > tfoot > tr > th:first-child,
.gridview > thead > tr > td:first-child,
.gridview > tbody > tr > td:first-child,
.gridview > tfoot > tr > td:first-child {
  border-left: none;
}
.gridview > thead > tr > th:last-child,
.gridview > tbody > tr > th:last-child,
.gridview > tfoot > tr > th:last-child,
.gridview > thead > tr > td:last-child,
.gridview > tbody > tr > td:last-child,
.gridview > tfoot > tr > td:last-child {
  border-right: none;
}
.gridview > tbody > tr > td > input:first-child {
  margin-right: 15px;
}
/* GridView - Pager */
.gridview-pager .pager-size {
  padding-left: 0;
  text-align: left;
}
.gridview-pager .pager-size a,
.gridview-pager .pager-size span {
  margin-right: 5px;
}
.gridview-pager .pager-summary {
  text-align: center;
}
.gridview-pager .pager-nav {
  padding-right: 0;
  text-align: right;
}
.gridview-pager .pager-nav a,
.gridview-pager .pager-nav span {
  margin-left: 5px;
}
.gridview-pager .pager-size span,
.gridview-pager .pager-summary span {
  display: inline-block;
  margin-right: 0;
  padding: 25px 0 25px 0;
  vertical-align: top;
}
.gridview-pager .pager-size span {
  padding-right: 10px;
  padding-left: 5px;
}
.pagination {
  margin-right: 3px;
}
.pagination li > a.btn.btn-default,
.pagination li > a.btn.btn-default:hover {
  margin-left: 3px;
  padding: 3px 8px;
  height: 24px;
  border: solid 1px #CCCCCC;
  -webkit-text-shadow: none;
  text-shadow: none;
  font-size: 12px;
  line-height: 15px;
}
.pagination li > a.btn.btn-default i,
.pagination li > a.btn.btn-default:hover i {
  font-size: 8px;
  color: #3C3C3C;
}
.pagination li > a.btn.btn-default {
  background-color: transparent;
  color: #3C3C3C;
}
.pagination li > a.btn.btn-default:hover,
.pagination li > a.btn.btn-default:focus {
  border-color: #9C9E9F;
  background-color: transparent;
  color: #3C3C3C;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.pagination li > a.btn.btn-default.disabled,
.pagination li > a.btn.btn-default.disabled:focus,
.pagination li > a.btn.btn-default.disabled:hover {
  border-color: #CCCCCC;
  background-color: #9C9E9F;
  color: #FFFFFF;
}
.pagination li > a.btn.btn-default.disabled i,
.pagination li > a.btn.btn-default.disabled:focus i,
.pagination li > a.btn.btn-default.disabled:hover i {
  color: #FFFFFF;
}
.pagination li > a.btn.btn-default i {
  display: inline-block;
  margin-right: 0;
  margin-top: 0;
}
.gridview-pager .row div {
  border-top: 1px solid #CCCCCC;
}
.gridview-pager .row span {
  padding-top: 15px;
  padding-bottom: 0px;
}
.gridview-pager .row .pagination {
  margin-top: 14px;
  margin-bottom: 0;
}
.pagination > li > a {
  float: none;
}
.gridview .gridview-pager td {
  padding: 15px 14px 0px;
}
/* GridView - Empty */
.gridview .gridview-empty td {
  padding: 6px 6px 6px 14px;
  background-color: #CCCCCC;
  text-transform: uppercase;
}
/* GridViewMenu */
.gridviewmenu {
  padding: 0;
}
.gridviewmenu.navbar-toggle {
  display: none !important;
}
.gridviewmenu .navbar-nav > li > a {
  padding: 6px 14px;
  background-color: #575757;
  line-height: 1.42857;
}
.gridviewmenu .navbar-nav > li > a:hover,
.gridviewmenu .navbar-nav > li > a:focus {
  background-color: #3C3C3C;
}
.gridviewmenu .navbar-nav > li > a > .caret {
  display: none;
}
.gridviewmenu .navbar-nav > li > a > i {
  margin-top: -2px;
  margin-right: 10px;
  vertical-align: middle;
}
/* GridViewMenu - DropDown */
.gridviewmenu .navbar-nav .dropdown-menu {
  right: 0;
  left: auto;
  overflow: hidden;
  padding: 0;
  min-width: 80px;
  border: none;
  -moz-border-radius: 0px 0px 4px 4px;
  -webkit-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
  background-color: #575757;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.gridviewmenu.overlap .navbar-nav .dropdown-menu {
  -moz-border-radius: 4px 0px 4px 4px;
  -webkit-border-radius: 4px 0px 4px 4px;
  border-radius: 4px 0px 4px 4px;
}
.gridviewmenu .navbar-nav > li.open > a:focus {
  background-color: #575757;
}
.gridviewmenu .navbar-nav > li.open > a:hover {
  background-color: #3C3C3C;
}
.gridviewmenu .dropdown-menu > li > a {
  display: block;
  border-bottom: 1px solid #727272;
  color: #FFFFFF;
  font-size: 10px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.gridviewmenu .dropdown-menu > li > a:hover,
.gridviewmenu .dropdown-menu > li > a:focus {
  border-bottom: 1px solid #727272;
  background-color: #3C3C3C;
}
.gridviewmenu .dropdown-menu > li:first-child > a {
  border-top: 1px solid #727272;
}
.gridviewmenu .dropdown-menu > li:last-child > a,
.gridviewmenu .dropdown-menu > li:last-child > a:hover,
.gridviewmenu .dropdown-menu > li:last-child > a:focus {
  border-bottom: none;
}
/* GridView Icons */
.gridview td a i.icon {
  font-size: 14px;
  width: 14px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  margin-top: -3px;
}
.gridview td a i.icon.icon-base-connect {
  margin-top: -5px;
  width: 16px;
}
/* Erweiterungen für DataTable */
.dataTable-wrapper .gridview th span {
  cursor: pointer;
}
.gridview th.datatable-sort-asc span,
.gridview th.datatable-sort-desc span {
  background-color: #3C3C3C;
}
.gridview th.datatable-sort-asc span:after,
.gridview th.datatable-sort-desc span:after {
  position: absolute;
  top: -1px;
  right: 5px;
}
.gridview th.datatable-sort-asc span:after {
  content: "▴";
  font-size: 22px;
}
.gridview th.datatable-sort-desc span:after {
  content: "▾";
  font-size: 22px;
}
.dataTable-wrapper .gridview td span {
  display: block;
  overflow: hidden;
  width: inherit;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dataTable-wrapper .gridview td span a:hover {
  border-bottom: 1px solid #3C3C3C;
}
.dataTable-wrapper .gridview {
  table-layout: fixed;
}
.dataTable-wrapper .gridview td.dt-right {
  text-align: right;
}
.dataTable-wrapper {
  position: relative;
  padding-bottom: 39px;
}
.dataTable-wrapper .pager-summary {
  position: absolute;
  bottom: 3px;
  left: 0;
  font-size: 14px;
}
.dataTable-wrapper .pager-nav {
  position: absolute;
  right: 2px;
  bottom: 0;
}
.dataTable-wrapper .pager-nav ul {
  margin: 0;
}
/* --- Icons ------------------------------------------------------  */
.icon {
  color: #3C3C3C;
}
.icon-base-online {
  color: #1C9F23;
}
.icon-status-error {
  color: #ff3333;
}
.icon-status-info {
  color: #FDB427;
}
.icon-status-warning {
  color: #FDB427;
}
.drag-icon {
  cursor: move;
}
/* --- Container ------------------------------------------------------  */
/* Panel */
.panel {
  position: relative;
  margin-bottom: 20px;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #FFFFFF;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.panel i {
  vertical-align: middle;
}
.panel-heading {
  padding: 0;
  -webkit-border-top-left-radius: 0;
  border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  border-top-right-radius: 0;
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.panel-default > .panel-heading {
  border-bottom: none;
  color: #FFFFFF;
}
.panel-heading .panel-title {
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.panel-heading .panel-title i {
  margin-right: 10px;
}
.panel-heading .panel-title a,
.panel-heading .panel-title span {
  position: relative;
  display: block;
  padding: 5px 15px;
  width: 100%;
  background-color: #3C3C3C;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.panel-heading .panel-title > a.collapsed,
.panel-heading .panel-title > a.collapsed:focus {
  background-color: #575757;
}
.panel-heading .panel-title > a.collapsed:hover,
.panel-heading .panel-title > a:hover,
.panel-heading .panel-title > a:focus {
  border-bottom: none;
  background-color: #3C3C3C;
  color: #FFFFFF;
}
.panel-heading .panel-title .accordion-toggle {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FFFFFF;
  content: " ";
  position: absolute;
  top: 12px;
  right: 0;
}
.panel-heading .panel-title .collapsed .accordion-toggle {
  border-left: 6px solid #FFFFFF;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-right: none;
  top: 8px;
  right: 2px;
}
.panel-body {
  border: none;
  background-color: #EDEDED;
}
.panel-body .form-control {
  border-color: #EDEDED;
}
.panel-body .gridview {
  margin-bottom: 15px;
}
.login .panel-body .form-control {
  border-color: #CCCCCC;
}
.structure .panel-body {
  position: relative;
  overflow: hidden;
}
/* Panel - Language Selection */
.panel-body .language-selection {
  position: absolute;
  top: 0;
  right: 10px;
}
.panel-body .language-selection ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: outside none none;
}
.panel-body .language-selection ul:after {
  clear: both;
}
.panel-body .language-selection ul li {
  position: relative;
  display: block;
  float: left;
}
.panel-body .language-selection ul li a {
  position: relative;
  display: block;
  padding: 5px;
  width: 100%;
  color: #9C9E9F;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.panel-body .language-selection ul li.active a:after {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #EDEDED;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.panel-body .language-selection ul li.active a,
.panel-body .language-selection ul li a:hover,
.panel-body .language-selection ul li a:focus {
  border-bottom: none;
  color: #FFFFFF;
}
/* Panel Group */
.panel-group .panel {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.panel-group .panel + .panel {
  margin-top: 0;
}
/* Panel Audit / FileInfo */
.panel-audit .form-group,
.panel-fileinfo .form-group {
  margin-bottom: 0;
}
.panel-audit .form-group:last-child,
.panel-fileinfo .form-group:last-child {
  margin-bottom: 8px;
}
/* Inner Panel */
.panel-body .panel-body {
  padding-right: 0;
  padding-left: 0;
  border: 1px solid transparent;
  border-top: none;
}
.panel-body .panel-heading .panel-title a,
.panel-body .panel-heading .panel-title span {
  padding-left: 0;
  border-bottom: 1px solid #9C9E9F;
  background-color: #EDEDED;
  color: #3C3C3C;
}
.panel-body .panel-heading .panel-title > a.collapsed:hover,
.panel-body .panel-heading .panel-title > a:hover,
.panel-body .panel-heading .panel-title > a:focus {
  border-bottom: 1px solid #9C9E9F;
  background-color: #EDEDED;
  color: #3C3C3C;
}
.panel-body .panel-heading .panel-title .accordion-toggle {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3C3C3C;
  content: " ";
  position: absolute;
}
.panel-body .panel-heading .panel-title .collapsed .accordion-toggle {
  border-left: 6px solid #3C3C3C;
  border-bottom: 6px solid transparent;
  border-top: 6px solid transparent;
  border-right: none;
}
/* Modal Dialog */
.modal.fade {
  /* Disable Modal "Slide" Animation */
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}
.modal-open .modal {
  overflow: visible;
}
.modal-header {
  padding: 5px 14px;
  min-height: 16.428571429px;
  border: none;
  background-color: #3C3C3C;
}
.modal-title {
  margin: 0;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.428571429;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.modal-content {
  position: relative;
  padding: 10px;
  outline: none;
  border: 1px solid #9C9E9F;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #FFFFFF;
  -moz-background-clip: padding-box;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #3C3C3C;
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.modal-body {
  padding: 14px 14px 0 14px;
  border: 1px solid #9C9E9F;
  border-top-width: 0;
  border-bottom-width: 0;
}
.modal-body:after {
  content: " ";
  display: table;
}
.modal-footer {
  margin-top: 0;
  padding: 14px 5px 5px 5px;
  border: 1px solid #9C9E9F;
  border-top: none;
  text-align: right;
}
.modal-footer .form .form-submit {
  text-align: center;
}
/* Tabs */
.content-nav-tabs {
  margin-bottom: 15px;
  border-bottom: 1px solid #9C9E9F;
}
.content-nav-tabs .nav-tabs {
  border: none;
}
.content-nav-tabs .nav-tabs > li > a,
.content-nav-tabs .nav-tabs > li > a:hover,
.content-nav-tabs .nav-tabs > li > a:focus {
  padding-bottom: 12px;
  border: none;
  background-color: transparent;
  color: #9C9E9F;
  text-transform: uppercase;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.content-nav-tabs .nav-tabs > li > a:hover {
  color: #3C3C3C;
}
.content-nav-tabs .nav-tabs > li.active > a,
.content-nav-tabs .nav-tabs > li.active > a:hover,
.content-nav-tabs .nav-tabs > li.active > a:focus {
  color: #3C3C3C;
}
.content-nav-tabs .nav-tabs > li.active > a:after,
.content-nav-tabs .nav-tabs > li.active > a:hover:after,
.content-nav-tabs .nav-tabs > li.active > a:focus:after,
.content-nav-tabs .nav-tabs > li.active > a:before,
.content-nav-tabs .nav-tabs > li.active > a:hover:before,
.content-nav-tabs .nav-tabs > li.active > a:focus:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.content-nav-tabs .nav-tabs > li.active > a:after,
.content-nav-tabs .nav-tabs > li.active > a:hover:after,
.content-nav-tabs .nav-tabs > li.active > a:focus:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #EDEDED;
  z-index: 2;
}
.content-nav-tabs .nav-tabs > li.active > a:before,
.content-nav-tabs .nav-tabs > li.active > a:hover:before,
.content-nav-tabs .nav-tabs > li.active > a:focus:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #9C9E9F;
  z-index: 1;
}
/* --- Add / Remove Control ------------------------------------------------------  */
.form-add-remove .col-xs-2 > div {
  margin-right: auto;
  margin-left: auto;
  width: 36px;
}
.form-add-remove .col-right label {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.form-add-remove select.form-control {
  min-height: 250px;
}
.form-add-remove.short-boxes select.form-control {
  min-height: 160px;
}
.form-add-remove .btn.btn-default {
  margin-bottom: 6px;
  width: 36px;
  height: 22px;
}
.form-add-remove .btn i {
  margin-right: 0;
  margin-left: 0;
}
/* --- Chose Control ------------------------------------------------------  */
.chosen-container ul.chosen-choices {
  background-image: none;
  background-color: #FFFFFF;
  border-color: #CCCCCC;
  padding: 0 5px;
  height: 24px !important;
}
.chosen-container ul.chosen-choices li.search-choice {
  background-image: none;
  background-repeat: no-repeat;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #dcdcdc;
  border-color: #dcdcdc;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 1px 20px 2px 5px;
  margin: 2px 5px 2px 0;
}
.chosen-container ul.chosen-choices li.search-choice span {
  font-size: 12px;
  color: #3C3C3C;
  font-weight: normal;
}
.chosen-container ul.chosen-choices li.search-choice .search-choice-close {
  background: none;
}
.chosen-container ul.chosen-choices li.search-choice .search-choice-close:before {
  color: #3C3C3C;
  font-size: 9px;
}
.chosen-container ul.chosen-choices li.search-choice .search-choice-close:hover,
.chosen-container ul.chosen-choices li.search-choice .search-choice-close:focus {
  border-bottom: none;
}
.chosen-container ul.chosen-choices li.search-field input[type="text"] {
  font-size: 12px;
  margin: 0;
  height: auto;
  padding-left: 5px;
}
.chosen-container ul.chosen-choices:after {
  background: none;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #3C3C3C;
  content: " ";
  position: absolute;
  top: 10px;
  right: 6px;
}
.chosen-container .chosen-drop .chosen-results li {
  font-size: 14px;
  line-height: 17px;
  padding: 5px 13px 5px 13px;
  background-color: #FFFFFF;
  color: #3C3C3C;
}
.chosen-container .chosen-drop .chosen-results li.result-selected {
  color: #D5D5D5;
}
.chosen-container .chosen-drop .chosen-results li.highlighted {
  color: #FFFFFF;
  background-color: #3399ff;
  background-image: none;
}
.panel-body .chosen-container ul.chosen-choices {
  border-color: #EDEDED;
}
/* --- CK Editor ---------------------------------------------------------------------  */
body .cke {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #EDEDED;
}
body .cke a {
  margin-right: 0;
}
body .cke_top {
  padding: 8px 8px 0 8px;
  background: #3C3C3C;
  text-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke_dialog_footer {
  padding: 0 0 5px 0;
  outline: none;
  background: #FFFFFF;
  text-align: center;
  text-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke_bottom,
body .cke_dialog_title {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: #3C3C3C;
  color: #FFFFFF;
  text-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke_bottom {
  padding: 7px 8px 3px 8px;
}
body .cke_dialog_title {
  margin: 0;
  padding: 5px 14px 7px;
  height: 18px;
  border-bottom: none;
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.42857;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
body .cke_toolgroup {
  overflow: hidden;
  border-width: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #FFFFFF;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke_toolbar {
  margin-bottom: 3px;
}
body .cke_toolgroup a,
body .cke_toolgroup a span {
  cursor: pointer;
}
body a.cke_combo_button {
  margin-right: 6px;
  border-width: 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #FFFFFF;
  cursor: pointer;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_combo_button span.cke_combo_text {
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: none;
  cursor: pointer;
}
body .cke_combo_arrow,
body .cke_button_arrow {
  border-top: 6px solid #3C3C3C;
  border-right: 3px solid #FFFFFF;
  border-left: 3px solid #FFFFFF;
}
body .cke_combo_off a.cke_combo_button:hover,
body .cke_combo_off a.cke_combo_button:focus,
body .cke_combo_off a.cke_combo_button:active {
  border-width: 0;
  background: #EDEDED;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke_combo_on a.cke_combo_button,
body .cke_combo_on a.cke_combo_button:hover,
body .cke_combo_on a.cke_combo_button:focus,
body .cke_combo_on a.cke_combo_button:active {
  border-width: 0;
  background: #CCCCCC;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_button_off:hover,
body a.cke_button_off:focus,
body a.cke_button_off:active,
body a.cke_button_disabled:hover,
body a.cke_button_disabled:focus,
body a.cke_button_disabled:active {
  background: #EDEDED;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_button_on {
  background: #CCCCCC;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_button_on:hover,
body a.cke_button_on:focus,
body a.cke_button_on:active {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_path_item {
  margin-right: 0;
  padding-right: 6px;
  padding-left: 6px;
  color: #FFFFFF;
  text-shadow: none;
  cursor: pointer;
}
body a.cke_path_item:hover,
body a.cke_path_item:focus {
  border-bottom: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #CCCCCC;
  text-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body .cke .cke_button__removeformat_icon {
  background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKhJREFUeNqUkg0RgCAMRqGBEYxgBCMYwQhGMIIRiEIEIhiBBjg8puNH3Hb3ed5x7znZVAhB9QK1QuLLCZmqcyaM8aVEAjclUphKhqaAAWNcJRDAdzIBgQ1T9HZAYWY37rkDqKWEfyQPjIIdYpnjzGAUbOlw/RBMaWwVTO/AtCR/cDkFlByQOXXm6dJ0BeR/T7Jtew+O0fdD69jqoOQVP6ZGyfYVsZcAAwAFwKJvpzDAuwAAAABJRU5ErkJggg==') no-repeat 0 0 !important;
}
/* CK Editor - Dialog */
body .cke_dialog_tabs {
  margin-left: 1px;
  height: 32px;
}
body .cke_dialog_contents {
  margin-top: 38px;
  margin-right: 10px;
  margin-left: 10px;
  border-top: 1px solid #CCCCCC;
}
body .cke_dialog_contents_body {
  padding: 9px 0;
}
body .cke_dialog {
  background-color: #FFFFFF;
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
body .cke_dialog > tbody > tr > td {
  padding: 10px;
}
body .cke_dialog .cke_dialog_close_button {
  display: none;
}
body .cke_dialog_body {
  border: 1px solid #9C9E9F;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background: #FFFFFF;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_dialog_tab,
body a.cke_dialog_tab:focus,
body a.cke_dialog_tab_selected,
body a.cke_dialog_tab_selected:focus {
  padding: 4px 8px 14px 8px;
  border: none;
  background: transparent;
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
body a.cke_dialog_tab {
  color: #9C9E9F;
}
body a.cke_dialog_tab:hover {
  background: transparent;
  color: #3C3C3C;
}
body a.cke_dialog_tab_selected,
body a.cke_dialog_tab_selected:hover {
  border-bottom-color: #FFFFFF;
  color: #3C3C3C;
  position: relative;
}
body a.cke_dialog_tab_selected:after,
body a.cke_dialog_tab_selected:hover:after,
body a.cke_dialog_tab_selected:before,
body a.cke_dialog_tab_selected:hover:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
body a.cke_dialog_tab_selected:after,
body a.cke_dialog_tab_selected:hover:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
  z-index: 2;
}
body a.cke_dialog_tab_selected:before,
body a.cke_dialog_tab_selected:hover:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #9C9E9F;
  z-index: 1;
}
body a.cke_dialog_ui_button,
body a.cke_dialog_ui_button:active,
body a.cke_dialog_ui_button:focus {
  /* nur weil CK Editor Scheisse ist! */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  display: inline-block;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 3px 12px 5px 12px;
  height: 23px;
  border: none;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #575757;
  background-image: none;
  color: #FFFFFF !important;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-text-shadow: none;
  text-shadow: none;
  white-space: nowrap;
  font-weight: normal;
  line-height: 14px;
  cursor: pointer;
  font-size: 14px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
body a.cke_dialog_ui_button:hover,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button:hover {
  background: #3C3C3C;
}
body a.cke_dialog_ui_button span,
body a.cke_dialog_ui_button span:focus,
body a.cke_dialog_ui_button span:active,
body a.cke_dialog_ui_button span:hover,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button span,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button span:focus,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button span:active,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button span:hover {
  padding: 0;
  color: #FFFFFF;
  text-shadow: none;
  font-size: 12px;
  line-height: 15px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
body .cke_dialog_footer_buttons a.cke_dialog_ui_button.cke_dialog_ui_button_ok,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button.cke_dialog_ui_button_ok:active,
body .cke_dialog_footer_buttons a.cke_dialog_ui_button.cke_dialog_ui_button_ok:focus {
  background: #E46D00;
}
body .cke_dialog_footer_buttons a.cke_dialog_ui_button.cke_dialog_ui_button_ok:hover {
  background: #FF8D00;
}
body input.cke_dialog_ui_input_text,
body input.cke_dialog_ui_input_text:hover,
body input.cke_dialog_ui_input_password,
body input.cke_dialog_ui_input_password:hover,
body textarea.cke_dialog_ui_input_textarea,
body textarea.cke_dialog_ui_input_textarea:hover,
body select.cke_dialog_ui_input_select,
body select.cke_dialog_ui_input_select:hover {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 3px 10px;
  width: 100%;
  height: 24px;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #FFFFFF;
  background-image: none;
  color: #3C3C3C;
  font-size: 10px;
  line-height: 1.42857;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #CCCCCC;
}
body input.cke_dialog_ui_input_text:focus,
body input.cke_dialog_ui_input_text:hover:focus,
body input.cke_dialog_ui_input_password:focus,
body input.cke_dialog_ui_input_password:hover:focus,
body textarea.cke_dialog_ui_input_textarea:focus,
body textarea.cke_dialog_ui_input_textarea:hover:focus,
body select.cke_dialog_ui_input_select:focus,
body select.cke_dialog_ui_input_select:hover:focus {
  -moz-box-shadow: 0 0 8px #9C9E9F;
  -webkit-box-shadow: 0 0 8px #9C9E9F;
  box-shadow: 0 0 8px #9C9E9F;
}
body input.cke_dialog_ui_input_text.validation-error:focus,
body input.cke_dialog_ui_input_text:hover.validation-error:focus,
body input.cke_dialog_ui_input_password.validation-error:focus,
body input.cke_dialog_ui_input_password:hover.validation-error:focus,
body textarea.cke_dialog_ui_input_textarea.validation-error:focus,
body textarea.cke_dialog_ui_input_textarea:hover.validation-error:focus,
body select.cke_dialog_ui_input_select.validation-error:focus,
body select.cke_dialog_ui_input_select:hover.validation-error:focus {
  -moz-box-shadow: 0 0 8px #ff8282;
  -webkit-box-shadow: 0 0 8px #ff8282;
  box-shadow: 0 0 8px #ff8282;
}
body input.cke_dialog_ui_input_text.language-specific,
body input.cke_dialog_ui_input_text:hover.language-specific,
body input.cke_dialog_ui_input_password.language-specific,
body input.cke_dialog_ui_input_password:hover.language-specific,
body textarea.cke_dialog_ui_input_textarea.language-specific,
body textarea.cke_dialog_ui_input_textarea:hover.language-specific,
body select.cke_dialog_ui_input_select.language-specific,
body select.cke_dialog_ui_input_select:hover.language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
body input.cke_dialog_ui_input_text.language-specific:focus,
body input.cke_dialog_ui_input_text:hover.language-specific:focus,
body input.cke_dialog_ui_input_password.language-specific:focus,
body input.cke_dialog_ui_input_password:hover.language-specific:focus,
body textarea.cke_dialog_ui_input_textarea.language-specific:focus,
body textarea.cke_dialog_ui_input_textarea:hover.language-specific:focus,
body select.cke_dialog_ui_input_select.language-specific:focus,
body select.cke_dialog_ui_input_select:hover.language-specific:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
}
body input.cke_dialog_ui_input_text.language-specific.validation-error:focus,
body input.cke_dialog_ui_input_text:hover.language-specific.validation-error:focus,
body input.cke_dialog_ui_input_password.language-specific.validation-error:focus,
body input.cke_dialog_ui_input_password:hover.language-specific.validation-error:focus,
body textarea.cke_dialog_ui_input_textarea.language-specific.validation-error:focus,
body textarea.cke_dialog_ui_input_textarea:hover.language-specific.validation-error:focus,
body select.cke_dialog_ui_input_select.language-specific.validation-error:focus,
body select.cke_dialog_ui_input_select:hover.language-specific.validation-error:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
}
body input.cke_dialog_ui_input_text:focus,
body input.cke_dialog_ui_input_password:focus,
body textarea.cke_dialog_ui_input_textarea:focus,
body select.cke_dialog_ui_input_select:focus {
  border-color: #CCCCCC;
  outline: 0 none;
}
body .cke_dialog .ImagePreviewBox {
  border: 1px solid #CCCCCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
body .cke_dialog .cke_resizer {
  display: none;
}
body .cke_dialog_tabs .cke_dialog_ui_input_select {
  margin-right: 8px;
}
body .cke_dialog_body label {
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
body .cke_dialog strong {
  text-transform: uppercase;
  font-size: 12px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
body .cke_source {
  padding: 10px;
  background-color: #FFFFFF;
  color: #3C3C3C;
}
body .cke_dialog .notfound {
  color: #ff3333 !important;
}
/* --- Text Preview Control ---------------------------------------------------------------------  */
.text-preview {
  width: 100%;
  height: 200px;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* --- Tooltip ----------------------------------------------  */
.tooltip {
  font-size: 14px;
  line-height: 1.42857;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -o-hyphens: auto;
  hyphens: auto;
}
.tooltip.in {
  opacity: 1;
}
.tooltip .tooltip-arrow {
  border: none;
  position: static;
}
.tooltip .tooltip-arrow:after,
.tooltip .tooltip-arrow:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
}
.tooltip.top .tooltip-arrow {
  margin: 0;
}
.tooltip.top .tooltip-arrow:after,
.tooltip.top .tooltip-arrow:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.tooltip.top .tooltip-arrow:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #FFFFFF;
  z-index: 2;
  bottom: -2px;
}
.tooltip.top .tooltip-arrow:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #727272;
  z-index: 1;
  bottom: -3px;
}
.tooltip.right .tooltip-arrow {
  margin: 0;
}
.tooltip.right .tooltip-arrow:after,
.tooltip.right .tooltip-arrow:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.tooltip.right .tooltip-arrow:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 8px solid #FFFFFF;
  z-index: 2;
  left: -2px;
}
.tooltip.right .tooltip-arrow:before {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 9px solid #727272;
  z-index: 1;
  left: -3px;
}
.tooltip.bottom .tooltip-arrow {
  margin: 0;
}
.tooltip.bottom .tooltip-arrow:after,
.tooltip.bottom .tooltip-arrow:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.tooltip.bottom .tooltip-arrow:after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #FFFFFF;
  z-index: 2;
  top: -2px;
}
.tooltip.bottom .tooltip-arrow:before {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #727272;
  z-index: 1;
  top: -3px;
}
.tooltip.left .tooltip-arrow {
  margin: 0;
}
.tooltip.left .tooltip-arrow:after,
.tooltip.left .tooltip-arrow:before {
  width: 0;
  height: 0;
  content: " ";
  position: absolute;
  top: 50%;
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.tooltip.left .tooltip-arrow:after {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #FFFFFF;
  z-index: 2;
  right: -2px;
}
.tooltip.left .tooltip-arrow:before {
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 9px solid #727272;
  z-index: 1;
  right: -3px;
}
.tooltip .tooltip-inner {
  padding: 12px 15px;
  max-width: 250px;
  border: 1px solid #9C9E9F;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background-color: #FFFFFF;
  color: #3C3C3C;
  text-align: left;
  text-decoration: none;
}
/* --- List Container ----------------------------------------------  */
.list-container {
  margin-right: -6px;
}
.list-container .list-item {
  float: left;
  width: 120px;
}
.list-container .list-item > div {
  position: relative;
  margin-right: 6px;
  margin-bottom: 15px;
  background-color: #FFFFFF;
}
.list-container .list-item > div .visibility {
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 2;
}
.list-container .list-item > div .visibility > a {
  font-size: 24px;
  line-height: 24px;
}
.list-container .list-item > div .visibility > a .icon-base-visible {
  color: #1C9F23;
}
.list-container .list-item > div .visibility > a .icon-base-hidden {
  color: #CCCCCC;
}
.list-container .list-item > div .visibility > a:hover,
.list-container .list-item > div .visibility > a:focus {
  border-bottom: none;
}
.list-container .list-item > div .options {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: none;
  padding: 1px 1px 3px 3px;
  background-color: #EDEDED;
}
.list-container .list-item > div .options > input,
.list-container .list-item > div .options > a {
  padding: 2px;
  cursor: pointer;
  font-size: 14px;
  color: #3C3C3C;
}
.list-container .list-item > div .options > input:hover,
.list-container .list-item > div .options > a:hover,
.list-container .list-item > div .options > input:focus,
.list-container .list-item > div .options > a:focus {
  border-bottom: none;
}
.list-container .list-item > div .options > input:last-child,
.list-container .list-item > div .options > a:last-child {
  padding-right: 5px;
}
.list-container .list-item > div .content {
  position: relative;
  z-index: 1;
  height: 120px;
}
.list-container .list-item > div .content .content-image:after {
  color: #dcdcdc;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.list-container .list-item > div .title {
  align-items: center;
  display: flex;
  padding: 10px 10px;
  height: 52px;
  background-color: #dcdcdc;
  color: #3C3C3C;
}
.list-container .list-item > div .title > div {
  width: 100%;
  text-align: center;
  line-height: 13px;
}
.list-container .list-item > div .title > div > span {
  text-transform: uppercase;
  font-size: 14px;
}
.list-container .list-item.add > div {
  cursor: pointer;
}
.list-container .list-item.add > div .title {
  border-top: 1px dashed #CCCCCC;
  background-color: #FFFFFF;
  color: #CCCCCC;
}
.list-container .list-item.add.disabled > div {
  background-color: #D5D5D5;
  color: #FFFFFF;
}
.list-container .list-item.add.disabled > div .title {
  border-top-color: #FFFFFF;
  background-color: #D5D5D5;
  color: #FFFFFF;
}
.list-container .list-item.add.disabled > div .content .content-image:after {
  color: #FFFFFF;
}
.list-container .list-item:hover > div {
  border-color: #CCCCCC;
}
.list-container .list-item:hover > div .visibility > a .icon-base-visible {
  color: #1C9F23;
}
.list-container .list-item:hover > div .visibility > a .icon-base-hidden {
  color: #9C9E9F;
}
.list-container .list-item:hover > div .options {
  display: block;
}
.list-container .list-item:hover > div .content .content-image:after {
  color: #9C9E9F;
}
.list-container .list-item:hover > div .title {
  background-color: #FFDC80;
}
.list-container .list-item:hover.add > div .title {
  border-top-color: #9C9E9F;
  background-color: #FFDC80;
  color: #3C3C3C;
}
.list-container .list-item:hover.add.disabled > div .title {
  border-top-color: #FFFFFF;
  background-color: #D5D5D5;
  color: #FFFFFF;
}
/* Container in Structure */
.col-md-5 .list-container .list-item {
  width: 16.666%;
}
@media (min-width: 992px) {
  .col-md-5 .list-container .list-item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .col-md-5 .list-container .list-item {
    width: 33.333%;
  }
}
@media (min-width: 1600px) {
  .col-md-5 .list-container .list-item {
    width: 25%;
  }
}
/* --- js Tree ----------------------------------------------  */
.jstree.jstree-default ul li {
  position: relative;
}
.jstree.jstree-default ul li a:hover,
.jstree.jstree-default ul li a:focus,
.jstree.jstree-default ul li a:active,
.jstree.jstree-default ul li a:visited {
  border-bottom: none;
}
.jstree.jstree-default ul li .jstree-anchor {
  display: block;
  overflow: hidden;
  margin-right: 10px;
  padding: 0;
  padding-left: 29px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.jstree.jstree-default ul li .jstree-anchor > .jstree-themeicon {
  position: absolute;
  left: 0;
  font-size: 16px;
  color: #3C3C3C;
}
.jstree.jstree-default ul li > div {
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}
.jstree.jstree-default ul li > div.jstree-wholerow-hovered {
  background: none;
  background-color: #FFDC80;
}
.jstree.jstree-default ul li > div.jstree-wholerow-clicked {
  background: none;
  background-color: #FF8D00;
}
.jstree.jstree-default ul li > .jstree-add,
.jstree.jstree-default ul li > .jstree-delete {
  position: absolute;
  top: 0;
  left: auto !important;
  display: none;
  width: 24px;
  height: 24px;
  background-position: center center;
}
.jstree.jstree-default ul li > .jstree-add {
  right: 26px;
  font-size: 14px;
  background-image: none;
  cursor: pointer;
}
.jstree.jstree-default ul li > .jstree-delete {
  right: 5px;
  font-size: 14px;
  background-image: none;
  cursor: pointer;
}
.jstree.jstree-default ul li > div.jstree-wholerow-hovered ~ .jstree-add,
.jstree.jstree-default ul li > div.jstree-wholerow-hovered ~ .jstree-delete {
  display: inline-block;
}
.jstree.jstree-default ul li > div.jstree-wholerow-hovered ~ .jstree-anchor {
  margin-right: 52px;
}
.jstree.jstree-default ul .jstree-node {
  margin-left: 0;
}
.jstree.jstree-default ul .jstree-node > .jstree-icon {
  position: absolute;
  left: 0;
}
.jstree.jstree-default ul .jstree-node > .jstree-anchor {
  margin-left: 20px;
}
.jstree.jstree-default ul .jstree-node .jstree-node > .jstree-icon {
  left: 24px;
}
.jstree.jstree-default ul .jstree-node .jstree-node > .jstree-anchor {
  margin-left: 44px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node > .jstree-icon {
  left: 48px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node > .jstree-anchor {
  margin-left: 68px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-icon {
  left: 72px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-anchor {
  margin-left: 92px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-icon {
  left: 96px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-anchor {
  margin-left: 116px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-icon {
  left: 120px;
}
.jstree.jstree-default ul .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node .jstree-node > .jstree-anchor {
  margin-left: 140px;
}
.jstree.jstree-default > .jstree-striped {
  width: 100%;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAwCAIAAABfUYfWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkU1OUJCRTlEQjQ4RTExRTVCNDcyRDVEQkQ0ODZDOEU3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkU1OUJCRTlFQjQ4RTExRTVCNDcyRDVEQkQ0ODZDOEU3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RTU5QkJFOUJCNDhFMTFFNUI0NzJENURCRDQ4NkM4RTciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RTU5QkJFOUNCNDhFMTFFNUI0NzJENURCRDQ4NkM4RTciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7chLbkAAAAHElEQVR42mJ4+/YtEwMDA60ww////2lpPkCAAQBMBQYhZR0DsQAAAABJRU5ErkJggg==);
  background-repeat: repeat;
}
.jstree-default > .jstree-no-dots .jstree-closed > .jstree-ocl {
  background-image: none;
  font-size: 14px;
  top: 1px;
}
.jstree-default > .jstree-no-dots .jstree-open > .jstree-ocl {
  background-image: none;
  font-size: 14px;
  top: 1px;
}
/* Tree Drag n Drop */
#jstree-dnd.jstree-default {
  color: #3C3C3C;
  background-color: #dcdcdc;
  padding-left: 9px;
  padding-right: 15px;
}
#jstree-dnd.jstree-default .jstree-icon {
  background-image: none;
  font-size: 18px;
  width: 24px;
  height: 22px;
  margin-top: 2px;
}
#jstree-dnd.jstree-default .jstree-icon.jstree-ok:before {
  color: #1C9F23;
}
#jstree-dnd.jstree-default .jstree-icon.jstree-er:before {
  color: #ff3333;
}
#jstree-marker {
  color: #E46D00;
}
/* Boostrap 3.3.7 Fixes */
.form-control-static {
  padding-bottom: 0;
  min-height: 24px;
}
.radio label,
.checkbox label {
  min-height: 14px;
  /* Chrome and Edge Rendering Bug Fix */
}
.radio label > .aspNetDisabled,
.checkbox label > .aspNetDisabled {
  margin-left: 0.1px;
}
.radio input[type="radio"],
.radio-inline input[type="radio"] {
  margin-left: 0;
}