@charset "UTF-8";
@CHARSET "ISO-8859-1";
/* Variablen für Grundlegende Farben etc */
:root {
  --maincolor: #2159a2;
  --colorWhite: #FFF;
  --colorBlack: #000;
  --colorWhiteGrey: #d9d9d9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  padding-top: 30px;
  height: 100%;
}

footer {
  position: absolute;
  width: 100%;
  height: 100px;
  margin-top: 10px;
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: #185d99;
  border: 1px solid #ccc;
  background-color: #fafafa;
}

.fas.fa-user.float-left {
  color: #fff;
  font-size: 18px;
  padding-top: 0;
}

select:disabled {
  background-color: #ebebe4;
}

footer .blackFooter, footer time {
  color: #000;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  animation: spin 2s linear infinite;
  position: absolute;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  width: 90%;
}

.modal-header h3 {
  display: inline;
}

.btn-modal {
  cursor: pointer;
}

/* Flaggen */
.flag {
  height: 20px;
  width: 30px;
  margin: 8px;
}

.flag-de_DE {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBoZWlnaHQ9IjYwMCIgdmlld0JveD0iMCAwIDUgMyI+DQo8cGF0aCBkPSJtMCwwaDV2M2gtNXoiLz4NCjxwYXRoIGZpbGw9IiNkMDAiIGQ9Im0wLDFoNXYyaC01eiIvPg0KPHBhdGggZmlsbD0iI2ZmY2UwMCIgZD0ibTAsMmg1djFoLTV6Ii8+DQo8L3N2Zz4NCg==") no-repeat left top;
  background-size: 30px 20px;
}

.flag-en_EN {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNjAgMzAiIGhlaWdodD0iNjAwIj4NCjxkZWZzPg0KPGNsaXBQYXRoIGlkPSJ0Ij4NCjxwYXRoIGQ9Im0zMCwxNWgzMHYxNXp2MTVoLTMwemgtMzB2LTE1enYtMTVoMzB6Ii8+DQo8L2NsaXBQYXRoPg0KPC9kZWZzPg0KPHBhdGggZmlsbD0iIzAwMjQ3ZCIgZD0ibTAsMHYzMGg2MHYtMzB6Ii8+DQo8cGF0aCBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iNiIgZD0ibTAsMGw2MCwzMG0wLTMwbC02MCwzMCIvPg0KPHBhdGggc3Ryb2tlPSIjY2YxNDJiIiBzdHJva2Utd2lkdGg9IjQiIGQ9Im0wLDBsNjAsMzBtMC0zMGwtNjAsMzAiIGNsaXAtcGF0aD0idXJsKCN0KSIvPg0KPHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjEwIiBkPSJtMzAsMHYzMG0tMzAtMTVoNjAiLz4NCjxwYXRoIHN0cm9rZT0iI2NmMTQyYiIgc3Ryb2tlLXdpZHRoPSI2IiBkPSJtMzAsMHYzMG0tMzAtMTVoNjAiLz4NCjwvc3ZnPg0K") no-repeat left top;
  background-size: 30px 20px;
}

.flag-fr_FR {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA5MDAgNjAwIj4NCjxwYXRoIGZpbGw9IiNlZDI5MzkiIGQ9Im0wLDBoOTAwdjYwMGgtOTAweiIvPg0KPHBhdGggZmlsbD0iI2ZmZiIgZD0ibTAsMGg2MDB2NjAwaC02MDB6Ii8+DQo8cGF0aCBmaWxsPSIjMDAyMzk1IiBkPSJtMCwwaDMwMHY2MDBoLTMwMHoiLz4NCjwvc3ZnPg0K") no-repeat left top;
  background-size: 30px 20px;
}

/* Tooltip */
.tooltip-inner {
  white-space: pre;
  max-width: none;
}

.tooltip.left .tooltip-arrow-blue {
  border-left-color: var(--maincolor);
}

.tooltip.right .tooltip-arrow-blue {
  border-right-color: var(--maincolor);
}

.tooltip.top .tooltip-arrow-blue {
  border-top-color: var(--maincolor);
}

.tooltip.bottom .tooltip-arrow-blue {
  border-bottom-color: var(--maincolor);
}

.toolTipForm {
  text-align: left;
}

.tooltip.left .toolTipForm {
  text-align: right;
}

.tableFixed {
  table-layout: fixed;
}

.toggle-check {
  cursor: pointer;
}

.center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.disabled {
  background: #dddddd;
}

.page {
  margin: 0 auto;
  position: relative;
  min-height: 100%;
}

.participationFullscreen, .downloadDocuments, #printDiv {
  width: 38%;
  height: 43px;
  float: left;
}

.downloadDocuments, #printDiv {
  padding-top: 9px;
}

.downloadDocuments {
  width: 40%;
}

.contractNoticeHeader {
  padding-bottom: 20px;
}

.businessUnitLabel {
  min-width: 200px;
  width: 25%;
  padding-bottom: 20px;
  float: left;
}

#printDiv {
  width: 18%;
}

.largeFieldSet {
  width: 100%;
}

.btn {
  height: 35px;
  text-align: center;
  background-color: var(--maincolor);
  color: #fff;
}

.changefloat li {
  margin-right: 15px;
}

.btn:active {
  transform: translateY(3px);
}

.head-nav .btn {
  transform: none;
}

.btn:focus {
  background-color: var(--maincolor);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-secondary:focus {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-danger {
  background-color: #d9534f;
  color: #fff;
}

.btn-danger:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-danger:focus {
  background-color: #d9534f;
  color: #fff;
}

.searchButton {
  padding: 6px 20px;
}

.downloadIcon {
  padding: 0 10px;
  font-size: 1.3em;
  width: 40px;
}

a.zipFileContents {
  text-decoration: none;
}

i.fa-info {
  font-size: 1.5em;
  width: 33px;
  text-align: center;
  padding: 6px;
  border-radius: 37px;
}

.weblauncherInfo i.fa-info {
  font-size: 1em;
  width: 20px;
  text-align: center;
  padding: 3px;
  border-radius: 10px;
}

.aiwlWarn {
  border-radius: 6px 6px 0 0;
  padding: 8px;
  font-size: 12px;
}

#btnSearchSubmit, #searchSubmit {
  margin-top: 4px;
  margin-left: 10px;
}

.border {
  border: 1px solid #ccc;
  background-color: #fafafa;
  margin-bottom: 26px;
}

.placeholderDivFullscreen {
  width: 50%;
  float: left;
  height: 68px;
}

.noPaddingRight {
  padding-right: 0;
}

.content {
  width: 100%;
  padding: 25px;
  display: inline-block;
  margin-bottom: 225px;
}

.content_small {
  width: 70%;
  display: table;
  margin: auto auto 240px;
}

hr {
  border: 1px solid var(--colorWhiteGrey);
}

.navbar {
  border-radius: 0;
  border-width: 0 0 1px;
}

.container-fluid {
  width: 90%;
}

ul.navbar-nav {
  float: none;
  margin: auto;
  text-align: center;
}

.navbar-nav > li {
  float: none;
  display: inline-block;
}

ul.nav li.dropdown:hover ul.dropdown-menu {
  padding: 0;
  border-radius: 4px;
}

.dropdown-menu > li:last-child > a {
  border-radius: 0 0 4px 4px;
}

.dropdown-menu > li:first-child > a {
  border-radius: 4px 4px 0 0;
}

.dropdown-menu > li:not(:first-child):not(:last-child) > a {
  border-radius: 0 !important;
}

.space {
  margin-bottom: 25px;
}

.spaceTop {
  padding-top: 20px;
}

.head-nav {
  height: 50px;
}

.marginbetweenli {
  margin-left: 100px;
}

h2 small, h4 small {
  color: #5f5f5f;
  padding-left: 10px;
}

h2.smallGrey {
  font-size: 24px;
  color: #666;
}

.alert-success {
  color: #305e30;
}

.search, .main-page-search {
  width: 250px;
  height: 35px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f2f2f2;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  padding: 0 20px 0 40px;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

.main-search-wrapper {
  margin-top: 25px;
  margin-bottom: 50px;
}

#main-search-text {
  margin-bottom: 50px;
  font-size: 40px;
}

.main-page-search-form {
  width: 600px;
  margin: auto;
  box-shadow: 0 5px 0 var(--colorWhiteGrey), 0 -7px 0 var(--colorWhiteGrey), 0 -7px 0 var(--colorWhiteGrey), 0 7px 0 var(--colorWhiteGrey);
  border-radius: 5px;
  background: var(--colorWhiteGrey);
}

.main-page-search {
  height: 40px;
  width: 500px;
  vertical-align: middle;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border-color: var(--maincolor);
  background-color: #fff;
  transition: none;
}

.btn-mainSearch {
  height: 40px;
  margin-left: -5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-mainSearch:active {
  transform: none;
}

.search:focus {
  width: 450px;
  box-shadow: 0 0 15px 0 #b0e0ee;
  border-radius: 0;
}

.searchicon {
  height: 30px;
  float: right;
  padding-top: 3px;
  padding-right: 5px;
}

#accounticon {
  height: 20px;
  float: left;
}

.btnOpenSearch {
  height: 35px;
  width: 35px;
  border: none;
  background: none;
  display: none;
}

.btnAccount {
  height: 35px;
  width: 130px;
}

.showhidetext {
  display: block;
}

.search-field {
  display: block;
  width: 90%;
  float: left;
}

form#publicationSearch label {
  text-align: center;
}

form#publicationSearch > div {
  float: left;
  width: calc(100% / 5);
  padding: 0 4px;
}

form#publicationSearch > div input[type=text], form#publicationSearch > div select {
  width: 100%;
}

form#publicationSearch .releaseWrapperOneLine {
  clear: left;
  height: auto;
}

#secondSearchBar {
  margin: auto;
  width: 100%;
  display: none;
}

.icon-small {
  height: 18px;
  margin: 0;
  padding: 0;
}

.icon-medium {
  height: 22px;
  margin: 0;
  padding: 0;
}

.icon-select .selected-box {
  position: relative;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 35px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.selected-icon img {
  margin-top: 8px;
  margin-left: 10px;
}

.icon-select .selected-icon {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 35px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.icon-select .component-icon {
  position: absolute;
  bottom: 7px;
  right: 7px;
}

.icon-select .box {
  position: absolute;
  top: 35px;
  left: 0;
  margin: 0;
  padding: 0;
  width: 48px;
  border: 1px solid #eee;
  background-color: #eee;
  -webkit-border-radius: 0 0 3px 3px;
  -moz-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px;
  z-index: 10;
}

div .icon img {
  margin-left: 6px;
  margin-top: 8px;
}

.icon-select .icon {
  position: relative;
  padding: 0;
  height: 35px;
  background-color: var(--colorWhite);
  overflow: hidden;
  float: left;
}

.icon-select .icon:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.icon-select .icon:hover {
  border: 1px solid var(--colorBlack);
  background-color: var(--maincolor);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-primary {
  background: #fff;
  border: #2159a2 1px solid;
  color: #2159a2;
  transition: color 0.15s;
}

.btn-outline-primary:hover {
  background: #2159a2;
  color: #fff;
}

.cross-icon {
  text-align: center;
  position: relative;
}

.checkmark-icon {
  text-align: center;
  position: relative;
}

.checkmark-icon:before {
  border: solid;
  border-color: inherit;
  border-width: 0 4px 4px 0;
  position: absolute;
  content: "";
  height: 45px;
  width: 25px;
  transform: rotate(43deg);
  margin: auto;
  left: 0;
  right: 0;
  top: 15px;
}

.cross-icon:before {
  content: "⨉";
  font-size: 60px;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
}

.checkmark-icon:after,
.cross-icon:after {
  content: "";
  height: 85px;
  width: 85px;
  border: 4px solid;
  border-color: inherit;
  display: inline-block;
  border-radius: 100%;
}

.arrow-down {
  height: 60px;
  margin: 30px 0;
  position: relative;
}

.arrow-down:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  height: 100%;
  width: 4px;
  background: #949494;
}

.arrow-down:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  margin: auto;
  height: 40px;
  width: 40px;
  border: solid #949494;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

th.tabelleFirstLine a {
  color: #fff !important;
}

a, .pagination > li > a {
  color: #185d99;
}

.pagination a.current span {
  color: #fff;
}

#head {
  position: relative;
  display: block;
  height: 90px;
}

.blue-head:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  top: 40px;
  left: 0;
  background-color: #2159a2;
  z-index: -1;
}

.blue-head:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  left: 0;
  background-color: #ffdb78;
  z-index: -1;
}

#vp_logo {
  float: left;
  margin-left: 100px;
  width: 325px;
  height: 90px;
  background: url(../../_images/img/logo_vp.gif) no-repeat;
}

#ai_logo {
  float: right;
  margin-right: 100px;
  display: block;
  width: 95px;
  height: 90px;
  background: url(../../_images/img/logo_ai.gif) no-repeat;
}

.bc-logo {
  width: 16px;
  height: 16px;
  margin: 0 4px 0 32px;
  float: left;
  background: url(../../_images/img/ai_bietercockpit_small.png) no-repeat;
  background-size: cover;
}

.bc-small-logo {
  width: 32px;
  height: 32px;
  float: left;
  background: url(../../_images/img/ai_bietercockpit.jpg) no-repeat;
  background-size: contain;
  font-weight: 900;
}

#showLanguage {
  border-radius: 4px;
}

#showLanguage:hover {
  cursor: pointer;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > ul > li > a:hover {
  color: #fff;
}

.navbar-default .navbar-nav > li > ul > li > a:hover .badge {
  background: #fff;
  color: var(--maincolor);
}

.navbar-default {
  background: #fff;
}

.navbar-default .container-fluid .navbar-nav > li > a:focus {
  background-color: var(--maincolor);
  color: #fff;
}

.navbar .dropdown .dropdown-toggle {
  padding-right: 20px;
  padding-left: 20px;
  color: #000;
}

.navbar .dropdown .navActive, .navbar .navbar-header .navActive {
  background: var(--maincolor);
  color: #fff;
}

label {
  display: block;
}

label.error {
  cursor: pointer;
}

.labelInlineBlock {
  display: inline-block;
  margin-bottom: 0;
}

.displayNone {
  display: none;
}

.breakable {
  word-break: break-all;
}

th {
  background-color: #2159a2;
  color: #fff;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--maincolor);
}

.badge {
  background-color: var(--maincolor);
}

.redStar, span .redStar {
  font-size: 22px;
  margin-top: 10px;
}

.affix {
  width: 100%;
  top: 0;
  z-index: 99;
}

.fontNormal {
  height: 35px;
  margin: 4px 4px;
  padding-top: 6px;
}

.newVerification .largeTextField {
  height: 100px;
  margin-top: 10px;
}

h1 {
  margin-top: 10px;
  margin-bottom: 10px;
}

#starttext {
  margin-top: 50px;
  font-size: 18px;
}

.starttext {
  margin-top: 50px;
  font-size: 18px;
}

.releaseWrapper {
  width: 25%;
  float: left;
}

#release {
  padding-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

#noMarginTop {
  margin-top: 0;
}

textarea {
  width: 85.5%;
  margin: 4px;
}

#pageApplicantStatements #description {
  border: none;
}

.content input[type=file] {
  border: none;
  padding-left: 0;
}

.noPaddingLeft {
  padding-left: 0;
}

#print {
  padding-left: 25px;
}

.verifications {
  min-height: 200px;
}

.inputAndStarAlwaysFullscreen {
  width: 100%;
  height: 43px;
}

.inputAndStarFullscreen {
  width: 50%;
  height: 43px;
  float: left;
}

.left {
  float: left;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.input_small {
  width: 65%;
  float: left;
}

.smalltext {
  width: 25%;
  float: left;
  height: 43px;
  padding-top: 12px;
  padding-left: 10px;
}

.filterCheckboxDiv {
  height: 35px;
  margin: 10px 4px 4px 15px;
}

.filter, .tenders {
  min-height: 300px;
}

.disabled {
  background-color: #EBEBE4;
}

.col-sm-4 {
  padding-left: 0;
}

.right {
  float: right;
  padding-right: 8%;
}

h4 {
  padding-top: 25px;
}

.col-sm-5, .col-sm-6 {
  padding-left: 0;
}

ul {
  padding-left: 15px;
}

.login, .registration {
  min-height: 350px;
}

#pageApplicantLoginDenied .inputDiv {
  padding-bottom: 10px;
}

.company, .worker {
  min-height: 475px;
}

.companyWrapper .inputDiv, .companyWrapper .inputText, .companyWrapper .dropdownselect {
  width: 100%;
}

.checkboxWrapper {
  width: 34%;
  float: left;
}

.checkboxWrapperDiv {
  height: 12px;
  width: 12px;
  border: 1px solid #3d3d3d;
}

.bd_status input[type=checkbox] {
  margin: -12px 0 0;
}

.checkboxWrapperLong {
  width: 100%;
  display: block;
}

.twoInputsBeside {
  width: 100%;
}

.inputDiv {
  width: 90%;
  float: left;
}

.inputText, .dropdownselect, .dateSelect {
  width: 95%;
  height: 35px;
  padding: 6px 10px;
  margin: 4px 4px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.inputTextSmall {
  width: 25%;
}

.inputTextHalf, .inputHalf {
  width: 50%;
}

.dateSelect {
  width: 93%;
}

.releaseWrapper .dateSelect {
  width: 70%;
}

.releaseWrapperOneLine {
  width: 100%;
  height: 43px;
}

.bv_dropdown {
  width: 50%;
  margin-left: 0;
}

.releaseWrapper input[type=radio] {
  width: 25px;
}

.filterHide .dropdownselect, .filterFix .dropdownselect, .filterHide .inputTextSmall, .filterFix .inputTextSmall {
  width: 23%;
}

.verificationDateWrapper {
  width: 70%;
  height: 43px;
  float: left;
}

.checkboxMarginTop {
  margin-top: 10px;
}

.checkboxPaddingLeft {
  padding-left: 10px;
}

.labelCheckbox {
  padding-left: 20px;
}

.buttonPanel {
  margin-top: 16px;
}

.stern {
  float: left;
  color: #cc0000;
}

.checkbox {
  width: 30px;
  margin-left: 10px;
}

input[type=checkbox] {
  float: left;
}

.btn-group {
  width: 100%;
}

.header {
  color: var(--maincolor);
}

.margintoright {
  margin-left: 20px;
}

.companyWrapper > .inputAndStar {
  width: 50%;
  float: left;
  padding-left: 5px;
  padding-right: 5px;
}

.inputChooseFile {
  margin: 4px;
}

.pHideNewVerification {
  padding-top: 25px;
}

.showNewVerification {
  margin-top: 25px;
  margin-bottom: 25px;
}

.linkArea:hover, tr.linkArea:hover, td.linkArea:hover {
  cursor: pointer;
}

a.btn-primary {
  color: #fff;
}

.alert ul {
  margin-top: 10px;
}

.table > tbody > tr > td.vcenter {
  vertical-align: middle;
}

a#logOff:hover, a#logOff:focus {
  background-color: var(--maincolor);
}

@media (min-width: 768px) {
  .modal-680 {
    width: 680px;
  }
}
.modal-dialog {
  overflow-y: initial !important;
}

.borderless .modal-header, .borderless .modal-footer {
  border: none;
}

.modal-body-list {
  list-style: none;
  height: 250px;
  overflow-y: auto;
}

.verticalMiddle {
  vertical-align: middle;
  vertical-align: -webkit-baseline-middle;
}

.filenameEllipsis {
  width: 70%;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-left: 5px;
}

.folderBox > div:not(:first-child) {
  border-top: 1px solid #ddd;
}

.folderBox > div {
  padding: 5px;
  position: relative;
  height: 40px;
}

.folderBox {
  border: 1px solid #ddd;
}

.fileSize {
  position: absolute;
  right: 45px;
  top: 10px;
}

.folderBox > div:not(.background-grey):nth-of-type(even) {
  background: #f9f9f9;
}

.folderBox > div:not(.background-grey):hover {
  background: #e8e8e8;
}

.documentCheckbox {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px 10px 12px;
  border-left: solid 1px #d9d9d9;
}

.fileDownload {
  text-align: right;
  padding-top: 15px;
}

.displayBlock {
  display: block;
}

/* Media Querys */
/*Hover ueber Dropdown zum aufklappen*/
@media (min-width: 900px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 2000px) {
  .companyWrapper > .inputAndStar {
    width: 100%;
  }
}
@media (max-width: 1450px) {
  .right {
    padding-right: 7%;
  }

  .content_small {
    width: 80%;
  }
}
@media (max-width: 1400px) {
  .searchResults .dropdownselect, .searchResults .inputTextSmall {
    width: 23%;
  }

  .releaseWrapper .dateSelect {
    width: 70%;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 6px;
  }
}
@media (max-width: 1250px) {
  .content_small {
    width: 90%;
  }

  .container-fluid {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .input_small {
    width: 50%;
  }

  .companyWrapper > .inputAndStar {
    width: 50%;
  }

  .companyWrapper .inputDiv {
    padding-left: 5px;
    padding-right: 5px;
  }

  .filterHide .dropdownselect, .filterFix .dropdownselect {
    font-size: 13px;
  }

  .inputTextSmall {
    width: 50%;
  }

  .spaceDivColLg {
    height: 30px;
  }
}
@media (max-width: 1100px) {
  input[type=radio]:after, input[type=radio]:checked:after {
    left: 4px;
  }

  .search:focus {
    width: 350px;
  }
}
@media (max-width: 1050px) {
  .navbar-header {
    float: right;
  }

  .navbar-collapse {
    padding: 0;
  }

  .navbar .dropdown .dropdown-toggle {
    padding: 10px;
  }
}
@media (max-width: 1000px) {
  .search:focus {
    width: 300px;
  }

  .download img {
    display: block;
    margin: auto;
  }

  .filterHide .dropdownselect, .filterFix .dropdownselect {
    width: 33%;
  }

  .twoLines {
    height: 160px;
  }

  .checkboxWrapper {
    width: 98%;
  }

  .releaseWrapper {
    width: 49%;
  }

  .searchResults .inputTextSmall, .searchResults .dropdownselect {
    width: 48%;
  }

  .content_small {
    width: 100%;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 8px;
  }

  form#publicationSearch > div {
    width: calc(100% / 3);
  }

  form#publicationSearch #btnSearchSubmit {
    float: left;
  }
}
@media (max-width: 991px) {
  .worker {
    min-height: 0;
  }

  .registration {
    min-height: 325px;
  }

  .spaceDivColMd {
    height: 50px;
  }
}
@media (max-width: 925px) {
  .navbar-nav > li > .openLeft {
    left: -25px;
  }
}
@media (max-width: 900px) {
  .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-header {
    float: none;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-collapse.collapse.in {
    width: 100%;
    display: block !important;
    clear: both;
  }

  .dropdown-menu.nav-pills > li > a, .nav-pills > li > a {
    border-radius: 0;
  }

  .navbar-nav > li {
    display: block;
  }

  .navbar-nav .open .dropdown-menu {
    text-align: center;
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    border: #ccc solid;
    border-width: 0 0 1px 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
@media (max-width: 875px) {
  .navbar-nav > li > .openLeft {
    left: -50px;
  }
}
@media (max-width: 850px) {
  .navbar-nav > li > .openLeft {
    left: -75px;
  }

  .container {
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    margin-top: -20px;
  }
}
@media (max-width: 825px) {
  .navbar {
    padding: 0;
  }

  .navbar .dropdown .dropdown-toggle {
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media (max-width: 800px) {
  .navbar-nav > li > .openLeft {
    left: -100px;
  }
}
@media (max-width: 767px) {
  .btnAccount, .toggleContrast {
    margin-right: 5px;
  }

  .navbar-right {
    float: right;
  }

  ul .dropdown-menu a {
    background-color: #fff;
  }

  h1 {
    font-size: 30px;
  }

  body {
    padding-top: 10px;
  }

  .content {
    margin-bottom: 200px;
  }

  .contentSpecial {
    min-height: 2500px;
  }

  .border {
    margin-right: 0;
    padding-bottom: 20px;
  }

  #pageApplicantLoginForm .border {
    margin-bottom: 160px;
  }

  #pageRegisterForm .border {
    margin-bottom: 200px;
  }

  #buttonLogin {
    margin-top: 115px;
  }

  #buttonReset {
    margin-top: 115px;
  }

  small {
    display: block;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a {
    color: #000;
  }

  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > .navActive {
    background-color: var(--maincolor);
    color: #fff;
  }

  .container-fluid > .navbar-header {
    margin-right: 0;
  }

  .b .inputDiv {
    width: 90%;
  }

  .hiddenForLoggedInUser, #print {
    display: block;
    padding-left: 0;
    padding-top: 10px;
  }

  .inputTextHalf {
    width: 100%;
  }

  .checkboxWrapperLong {
    height: 70px;
  }

  .participationFullscreen {
    width: 100%;
  }

  .contractNoticeHeader {
    height: 230px;
  }

  .downloadDocuments {
    width: 60%;
    font-size: 12px;
  }

  #printDiv {
    width: 39%;
    font-size: 12px;
  }

  .main-search-wrapper {
    margin-top: 30px;
    margin-bottom: 80px;
  }

  .main-page-search-form {
    width: 495px;
  }

  .main-page-search {
    width: 400px;
  }

  #main-search-text {
    font-size: 30px;
  }

  #starttext {
    font-size: 14px;
  }

  .jumpToAnchor {
    display: none;
  }

  .btnOpenSearch {
    display: block;
  }
}
@media (max-width: 725px) {
  .input_small {
    width: 85%;
  }

  .right {
    padding-right: 8%;
  }
}
@media (max-width: 700px) {
  .search:focus {
    width: 250px;
  }

  .inputTextSmall {
    width: 60%;
  }

  .inputAndStarFullscreen {
    width: 100%;
  }

  .placeholderDivFullscreen {
    width: 100%;
    height: 0;
  }

  .main-page-search-form {
    width: 400px;
  }

  .main-page-search {
    width: 300px;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 6px;
  }
}
@media (max-width: 640px) {
  #ai_logo {
    display: none;
  }
}
@media (max-width: 600px) {
  .companyWrapper > .inputAndStar {
    width: 100%;
  }

  .companyWrapper .inputDiv {
    padding: 0;
  }

  .searchResults .inputTextSmall, .searchResults .dropdownselect {
    width: 47%;
  }

  .checkboxMarginTop {
    margin-top: 20px;
  }

  .main-page-search, .btn-mainSearch {
    height: 35px;
    font-size: 12px;
  }

  .btn-mainSearch span {
    display: none;
  }

  .btn-mainSearch::after {
    content: "Suchen";
  }

  .main-page-search-form {
    width: 375px;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 4px;
  }
}
@media (max-width: 575px) {
  .right {
    padding-right: 7%;
  }
}
@media (max-width: 527px) {
  #ai_logo {
    display: block;
  }
}
@media (max-width: 500px) {
  .center {
    margin: 5px;
    padding: 5px;
  }

  .container-fluid {
    padding-left: 0;
  }

  .navbar {
    padding: 0;
  }

  .marginbetweenli {
    margin-left: 75px;
  }

  .content {
    padding: 10px 10px 20px;
  }

  .navbar-nav {
    padding-left: 15px;
  }

  .checkbox {
    width: 20%;
  }

  tr, p, li {
    font-size: 12px;
  }

  .filterHide .dropdownselect, .filterHide .inputTextSmall, .filterFix .dropdownselect, .filterFix .inputTextSmall {
    font-size: 12px;
    width: 45%;
  }

  .filterHide .dateSelect, .filterFix .dateSelect {
    font-size: 12px;
  }

  .fontNormal {
    padding-top: 10px;
  }

  .input_small {
    width: 90%;
  }

  h1, h2, h3 {
    font-size: 28px;
  }

  .nav-pills > li + li {
    margin-left: 0;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 2px;
  }
}
@media (max-width: 450px) {
  h1, h2, h3 {
    font-size: 24px;
  }

  .marginbetweenli {
    margin-left: 55px;
  }

  footer {
    font-size: 12px;
  }

  .bv_dropdown, .inputHalf {
    width: 100%;
  }

  .checkboxWrapperLong {
    height: 90px;
  }

  .main-page-search-form {
    width: 325px;
  }

  .main-page-search {
    width: 250px;
  }

  .showhidetext {
    display: none;
  }

  .btnAccount {
    width: 45px;
  }
}
@media (max-width: 430px) {
  .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: 4px;
  }
}
@media (max-width: 400px) {
  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 14px;
  }

  form#publicationSearch > div {
    width: 100%;
  }

  .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    font-size: 10px;
  }

  .btn {
    font-size: 11px;
  }

  .btnAccount {
    font-size: 14px;
  }

  .inputTextSmall {
    width: 100%;
  }

  .filterHide .dropdownselect, .filterHide .inputTextSmall, .releaseWrapper {
    width: 100%;
  }

  .twoLines {
    height: 190px;
  }

  .checkboxMarginTop {
    margin-top: 25px;
  }

  .main-page-search-form {
    width: 250px;
  }

  .main-page-search {
    width: 175px;
  }

  .toggle-off.btn, .toggle-on.btn {
    line-height: 25px;
  }

  .marginbetweenli {
    margin-left: 10px;
  }

  input[type=radio]:after, input[type=radio]:checked:after {
    left: 6px;
  }
}
@media (max-width: 350px) {
  .marginbetweenli {
    margin-left: 5px;
  }

  .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
    font-size: 8px;
  }

  .registration {
    min-height: 350px;
  }

  .checkboxWrapperLong {
    height: 120px;
  }
}
@media (max-width: 300px) {
  .marginbetweenli {
    margin-left: 5px;
  }

  #vp_image, #ai_logo {
    display: none;
  }

  .head-nav {
    height: 100px;
  }
}
@media print {
  .noPrint {
    display: none;
  }

  /*  Registration / Login drucken  */
  @page {
    size: 330mm 450mm;
  }
  .company table td,
.worker table td {
    font-size: 20px;
  }

  .company h3,
.worker h3 {
    font-size: 30px;
    text-decoration: underline;
  }

  .spaceDiv {
    height: 50px;
  }

  #head, .head-nav,
footer, #printDiv,
.participationFullscreen,
.stepwizard, .druckvorschau {
    display: none;
  }

  body {
    padding-top: 0;
  }

  #contentBorder {
    border: none;
  }
}
@CHARSET "ISO-8859-1";
.tabelleFirstLine {
  background-color: #2159a2;
  font-weight: normal;
  padding: 0 8px 0 2px;
  color: #fff;
}

th span img {
  vertical-align: bottom;
  border: 0;
}

.tableLeftSmall {
  width: 10%;
}

.tableNoBorder tr,
.tableNoBorder > tbody > tr > td {
  border: none;
}

.table-striped > tbody > .tableRow:hover,
.table-striped > tbody > .tableRow:focus,
.tableRow:hover,
.tableRow:focus,
.tableLeftHeaderBlock:hover,
.tableLeftHeaderBlock:focus,
.table-striped > tbody > .tableRowDirect:hover,
.table-striped > tbody > .tableRowDirect:focus {
  background-color: #e6e6e6;
}

.tableNoHover > tbody > .tableRow:hover,
.tableNoHover > tbody > .tableRow:focus {
  background-color: inherit;
}

.tabelleFirstLine #tableSortHeader a:hover,
.tabelleFirstLine #tableSortHeader a:active,
.tabelleFirstLine #tableSortHeader a:focus,
.tabelleFirstLine #tableSortHeader a:active {
  text-decoration: underline;
}

.tableActive {
  text-decoration: underline;
}

#tableDeleteVerification {
  vertical-align: middle;
  border: 1px solid #cccccc;
}

.tableDeleteVerification {
  vertical-align: middle;
  border: 1px solid #cccccc;
}

.tableContractNotice,
.tableContractPrint {
  table-layout: fixed;
  width: 100%;
}

.tableContractNotice > tbody {
  background-color: rgb(250, 250, 250);
}

.tableContractNotice td,
.tableContractPrint td {
  padding-right: 20px;
  vertical-align: top;
  text-align: left;
  padding-bottom: 20px;
}

.tableContractPrint td {
  padding-bottom: 10px;
}

.tableContractNotice .tableNoticeHead {
  border-bottom: 2px solid var(--colorWhiteGrey);
}

.tableContractNotice .tableNoticeHead td {
  font-size: 24px;
  padding: 20px 0;
}

tbody {
  text-align: left;
  background-color: white;
}

.tableLeftHeader,
#tableSortHeader,
.tableLeftHeaderSmall {
  display: none;
}

.tableHeaderLeft {
  background-color: #D6DFF5;
}

@media (min-width: 992px) {
  #pageParticipantDetailsGuest > .content .col-md-6,
#pageParticipantDetails > .content .col-md-6 {
    width: auto;
  }
}
#pageParticipantDetailsGuest .tableQuarter,
#pageParticipantDetails .tableQuarter {
  width: auto;
}

#pageParticipantDetailsGuest .tableQuarter th,
#pageParticipantDetailsGuest .tableQuarter td:nth-child(2),
#pageParticipantDetails .tableQuarter td:nth-child(2),
#pageParticipantDetails .tableQuarter th {
  width: 33%;
  white-space: nowrap;
}

#pageParticipantDetailsGuest .tableQuarter img,
#pageParticipantDetails .tableQuarter img {
  margin-right: 22px;
}

.table-center * {
  text-align: center;
}

.tableFooter {
  width: 100%;
  display: -webkit-box;
  /* iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* Firefox 19- */
  display: -ms-flexbox;
  /* IE 10 */
  display: -webkit-flex;
  /* Chrome */
  display: flex;
  /* Opera 12.1, Firefox 20+ */
  /* iOS 6-, Safari 3.1-6 */
  -webkit-box-orient: horizontal;
  -webkit-box-pack: justify;
  /* Firefox 19- */
  -moz-flex-flow: row wrap;
  -moz-justify-content: space-between;
  /* Chrome */
  -webkit-flex-flow: row wrap;
  -webkit-justify-content: space-between;
  /* IE10 */
  -ms-flex-flow: row wrap;
  -ms-justify-content: space-between;
  /* Opera 12.1, Firefox 20+ */
  flex-flow: row wrap;
  justify-content: space-between;
}

/* Seitenzahlen fuer grosse Tabellen (Pagination) */
ul.pagination li.active a {
  color: #fff !important;
}

.tableRowDirect td {
  width: 50%;
}

tr {
  border: 1px solid #cccccc;
}

.tableFooterWrappingDiv {
  width: 30%;
}

.tableFooterText {
  padding-left: 5px;
  text-align: left;
}

.tableFooterPaginationDiv {
  width: 30%;
  text-align: center;
}

.tableBidderShort {
  display: none;
  float: left;
  white-space: nowrap;
}

.tableBidderLong {
  text-align: left;
}

.tableIcon,
.tableFree {
  width: 5%;
}

.tableDate {
  width: 40%;
}

.tableSubject {
  width: 50%;
}

.tableReadMessage > tbody {
  background-color: rgb(250, 250, 250);
}

.tableReadMessage .table {
  background-color: rgb(250, 250, 250);
}

.worker table td,
.company table td {
  word-break: break-word;
}

caption {
  display: none;
}

.tableBoldHeader th {
  /*font-weight: bold;*/
}

.table-hover > tbody > tr:hover {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background-color: #e6e6e6;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  cursor: pointer;
}

.clickable-row:hover td,
.clickable-row:focus td {
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  background-color: #e6e6e6;
}

.folder-border {
  border-top: 1px solid #ddd !important;
  padding: 0 0 2px 0 !important;
  height: initial !important;
}

@media (max-width: 1199px) {
  .tableHorizontalHeaderSmall {
    display: block;
  }

  .tableLeftHeaderSmall {
    display: none;
  }

  .tableFooterWrappingDiv {
    width: 25%;
  }

  .tableFooterPaginationDiv {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .tableFooterWrappingDiv,
.tableFooterPaginationDiv {
    width: 100%;
  }

  .tableFooterText {
    float: none;
  }

  .hiddenForLoggedInUser,
#print {
    display: block;
    padding-left: 0px;
    padding-top: 10px;
  }
}
@media (max-width: 725px) {
  .tableHorizontalHeader,
.tableHorizontalHeaderSmall {
    display: none;
  }

  .tableLeftHeader,
#tableSortHeader,
.tableLeftHeaderSmall {
    display: block;
  }

  .tableLeftHeader td:nth-child(2) {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .worker table td,
.company table td {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .tableBidderLong {
    display: none;
  }

  .tableBidderShort {
    display: block;
  }
}
@media (max-width: 450px) {
  table td {
    font-size: 12px;
  }
}
@media (max-width: 350px) {
  table td {
    font-size: 10px;
  }
}
.stepwizard-step p {
  margin-top: 10px;
  font-size: 13px;
}

.stepwizard-row {
  display: table-row;
}

.stepwizard {
  display: table;
  table-layout: fixed;
  position: relative;
  padding: 0;
  float: none;
}

.stepwizard .btn-circle {
  cursor: pointer;
}

.stepwizard-step button[disabled] {
  opacity: 1 !important;
  filter: alpha(opacity=100) !important;
}

.stepwizard-row:before {
  top: 4px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ccc;
  z-index: 0;
}

.stepDone:before,
.btn-currentStep:before {
  top: 4px;
  bottom: 0;
  position: absolute;
  left: calc(-50% + 18px);
  content: "";
  width: calc(100% - 36px);
  height: 2px;
  background-color: #2159a2;
  z-index: 0;
}

.stepOne:before {
  top: 4px;
  bottom: 0;
  position: absolute;
  content: "";
  left: 0;
  width: calc(50% - 18px);
  height: 2px;
  background-color: #2159a2;
  z-index: 0;
}

.stepOneContrast:before,
.btn-currentStepContrast:before {
  background-color: #000;
}

.stepwizard-step {
  display: table-cell;
  text-align: center;
  position: relative;
  width: 20%;
  z-index: 1;
}

.stepwizard-step .btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.stepDone:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #2159a2;
}

.stepwizard-step i {
  font-size: 130%;
  line-height: 1.428571429;
  margin-left: -1px;
}

.btn-circle {
  width: 44px;
  height: 44px;
  text-align: center;
  padding: 7px 0;
  font-size: 15px;
  line-height: 1.428571429;
  border-radius: 24px;
  margin-top: -16px;
  cursor: default;
}

.btn-circle:active {
  transform: none;
}

.stepDone {
  background: #fff;
  color: #2159a2;
  border: 1px solid #2159a2;
}

.btn[disabled] {
  opacity: 1;
}

.headlineStepsWrapper {
  width: 100%;
  height: 100px;
}

.headlineWrapped {
  width: 33%;
  float: left;
}

.stepwizard-step .btn-default {
  color: #333;
  background-color: #fff;
  border: 1px solid #8e8e8e;
}

.stepwizard-step .btn-default + p,
.stepwizard-step .btn-default {
  color: #8e8e8e;
}

.btn-currentStep + p,
.stepDone + p {
  font-weight: bold;
  color: #2159a2;
}

.stepwizard-step .btn-primary:active {
  background: #fff;
  color: #2159a2;
  border: 1px solid #2159a2;
}

.stepwizard-step .btn-currentStep:hover {
  background: #0505ad;
  color: white;
  border: 1px solid #2159a2;
}

.stepwizard-step .btn-currentStep:active {
  background: #2159a2;
  color: white;
  border: 1px solid #2159a2;
}

@media (max-width: 1200px) {
  .stepwizard {
    width: 83%;
  }

  .btn-circle {
    width: 30px;
    height: 30px;
    padding: 4px 0;
    font-size: 14px;
    border-radius: 15px;
    margin-top: -10px;
  }

  .stepwizard-step p {
    margin-top: 10px;
    font-size: 12px;
  }

  .stepDone:before,
.btn-currentStep:before {
    left: calc(-50% + 15px);
    width: calc(100% - 30px);
  }

  .stepOne:before {
    left: 0;
    width: calc(50% - 15px);
  }
}
@media (max-width: 767px) {
  .stepDone + p,
.stepwizard-step .btn-default + p,
.btn-currentStep + p {
    font-size: 10px;
  }
}
@media (max-width: 750px) {
  .stepwizard {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .stepwizard p {
    display: none;
  }
}
@media (max-width: 500px) {
  .stepwizard-row:before,
.stepDone:before,
.btn-currentStep:before {
    top: 24px;
  }

  .btn-circle {
    margin-top: 10px;
  }
}
.color-main {
  color: var(--maincolor);
}

.color-red {
  color: #dd0000;
}

.color-dark-red {
  color: #b50000;
}

.color-black, .color-black:hover, .color-black:active, .color-black:focus {
  color: #000;
}

.color-white {
  color: #fff;
}

.color-main-important {
  color: var(--maincolor) !important;
}

.color-black-important, .color-black-important:hover, .color-black-important:active, .color-black-important:focus {
  color: #000 !important;
}

.background-blue {
  background-color: var(--maincolor);
}

input.background-blue:checked:after {
  background-color: var(--maincolor);
}

.background-yellow {
  background-color: #ffdb78;
}

.background-dark-red {
  background-color: #b75f5d;
}

.background-grey {
  background-color: #d9d9d9;
}

.background-black {
  background-color: #000;
}

input.background-black:checked:after {
  background-color: #000;
}

.background-black-active:hover, .background-black-active:active, .background-black-active:focus {
  background-color: #000 !important;
}

.background-white {
  background-color: #fff;
}

.background-blue-important {
  background-color: var(--maincolor) !important;
}

.background-black-important {
  background-color: #000 !important;
}

.border-blue {
  border-color: var(--maincolor);
}

.border-dark-red {
  border-color: #b50000;
}

.border-green {
  border-color: #5a9e5a;
}

.border-black {
  border-color: #000;
}

.border-black-active:hover, .border-black-active:active, .border-black-active:focus {
  border-color: #000 !important;
}

.border-grey {
  border-color: #ccc;
}

.border-blue-important {
  border-color: var(--maincolor) !important;
}

.border-black-important {
  border-color: #000 !important;
}

.tooltip.left .tooltip-arrow-black {
  border-left-color: #000;
}

.tooltip.right .tooltip-arrow-black {
  border-right-color: #000;
}

.tooltip.top .tooltip-arrow-black {
  border-top-color: #000;
}

.tooltip.bottom .tooltip-arrow-black {
  border-bottom-color: #000;
}

body.contrast-link a, body.contrast-link a:hover, body.contrast-link a:active, body.contrast-link a:focus {
  color: #000;
  /*text-decoration: underline;*/
}

.black-head:before {
  background-color: #000;
}

.black-head:after {
  background-color: #696969;
}

.black-head #ai_logo {
  background-image: url(../../_images/img/logo_ai_black.png);
}

.black-head #vp_logo {
  background-image: url(../../_images/img/logo_vp_black.png);
}

.bc-logo.black-logo {
  background-image: url(../../_images/img/ai_bietercockpit_black.jpg);
}

.bc-small-logo.black-logo {
  background-image: url(../../_images/img/ai_bietercockpit_black.jpg);
}

.hover-blue:hover {
  background-color: var(--maincolor) !important;
  color: #fff !important;
}

.hover-black:hover, .hover-black:focus {
  background-color: #000 !important;
}

.navActive.hover-black {
  background-color: #000 !important;
}

li.toggleContrast .btn-primary {
  border-color: #000;
}

li.toggleContrast .btn-primary .toggle-on {
  background-color: #000;
  border-color: #000;
}

li.toggleContrast .btn-primary .toggle-handle {
  background-color: #fff;
  border-color: #000;
}

/* *****************************************************************************
* Schriften                                                                   *
*******************************************************************************/
/* gudea-regular - latin */
@font-face {
  font-family: "Gudea";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/gudea-v15-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/gudea-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/gudea-v15-latin-regular.woff2") format("woff2"), url("../fonts/gudea-v15-latin-regular.woff") format("woff"), url("../fonts/gudea-v15-latin-regular.ttf") format("truetype"), url("../fonts/gudea-v15-latin-regular.svg#Gudea") format("svg");
  /* Legacy iOS */
}
/* gudea-700 - latin */
@font-face {
  font-family: "Gudea";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/gudea-v15-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/gudea-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/gudea-v15-latin-700.woff2") format("woff2"), url("../fonts/gudea-v15-latin-700.woff") format("woff"), url("../fonts/gudea-v15-latin-700.ttf") format("truetype"), url("../fonts/gudea-v15-latin-700.svg#Gudea") format("svg");
  /* Legacy iOS */
}
/* eb-garamond-regular - latin */
@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/eb-garamond-v25-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/eb-garamond-v25-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/eb-garamond-v25-latin-regular.woff2") format("woff2"), url("../fonts/eb-garamond-v25-latin-regular.woff") format("woff"), url("../fonts/eb-garamond-v25-latin-regular.ttf") format("truetype"), url("../fonts/eb-garamond-v25-latin-regular.svg#EBGaramond") format("svg");
  /* Legacy iOS */
}
/* *****************************************************************************
* Grey Theme                                                                   *
*******************************************************************************/
/* ***** Blau zu grau ***** */
.tableHeaderLeft,
.btn,
.btn:hover,
.btn:focus,
.btn:active,
.btn-primary:focus,
.btn-primary.active,
.btn-primary:active,
.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover,
.open > .dropdown-toggle.btn-primary,
.btn-outline-primary:hover,
.blue-head:before,
.navbar .dropdown .navActive, .navbar .navbar-header .navActive,
th,
.tabelleFirstLine,
.stepDone:before,
.btn-currentStep:before,
.stepOne:before,
.tooltip.left .tooltip-arrow-blue,
.tooltip.right .tooltip-arrow-blue,
.tooltip.top .tooltip-arrow-blue,
.tooltip.bottom .tooltip-arrow-blue,
.icon-select .icon:hover,
.navbar-default .container-fluid .navbar-nav > li > a:focus,
.badge,
.background-blue,
input.background-blue:checked:after,
.navbar .dropdown .navActive, .navbar .navbar-header .navActive,
.stepwizard-step .btn-currentStep:active,
input[type=radio]:checked:after {
  background-color: #3E4149;
}

.background-blue-important,
.hover-blue:hover {
  background-color: #3E4149 !important;
}

legend,
.stepwizard-step .btn-currentStep:active,
.stepwizard-step .btn-currentStep:hover,
input[type=radio]:checked:after,
.main-page-search,
.border-blue,
.stepDone:hover,
.stepDone,
.btn-primary,
.btn-primary:hover,
.stepwizard-step .btn-primary:active,
.btn-outline-primary {
  border-color: #3E4149;
}

.border-blue-important {
  border-color: #3E4149 !important;
}

.tableLeftHeaderBlock:hover a,
legend,
a,
a:hover,
.stepDone,
.stepwizard-step .btn-primary:active,
.btn-currentStep + p,
.stepDone + p,
.navbar-default .navbar-nav > li > ul > li > a:hover .badge,
h1, h2, h3, h4, h5, h6,
.header,
.color-main {
  color: #333333;
}

.color-main-important {
  color: #333333 !important;
}

.btn-outline-primary {
  color: #ffffff;
}

@media (max-width: 767px) {
  .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
.navbar-default .navbar-nav .open .dropdown-menu > li > .navActive {
    background-color: #3E4149;
  }
}
/* ***** Grau zu hellgrau ***** */
footer,
.border,
.tableContractNotice > tbody,
.tableReadMessage > tbody,
.tableReadMessage .table {
  background-color: #EAE9E3;
}

/* ***** Grau zu transparenz ***** */
.main-page-search-form {
  box-shadow: none;
  background: transparent;
}

.documentCheckbox,
.background-grey {
  background-color: #3E4149;
}

hr,
.tableContractNotice .tableNoticeHead {
  border-color: #3E4149;
}

/* ***** Sonstiges ***** */
.tableHeaderLeft a,
.background-grey {
  color: #fff;
}

.table-striped {
  background-color: white;
}

tbody {
  background-color: transparent;
}

.tableLeftHeaderBlock {
  background-color: white;
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
  color: #3E4149;
}

/* ***** Mobiler NavBar Button ***** */
.navbar-toggle {
  background-color: #3E4149;
  border-radius: 0px;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #3E4149;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #EAE9E3;
}

/* *****************************************************************************
* Land BW Styles                                                               *
*******************************************************************************/
/* ***** Reset ***** */
body {
  padding-top: 0px;
  font-family: "Gudea", sans-serif;
}

.border {
  border: none;
}

/* ***** General ***** */
body {
  font-family: "Gudea", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "EB Garamond", serif;
  font-weight: 400;
}

.clear {
  clear: both;
}

#singleTopic::after,
.mdash::after {
  content: "";
  display: block;
  height: 1px;
  background: #333333;
  width: 2em;
  margin-top: 8px;
}

.ai-padding-fix {
  position: relative;
  min-height: 1px;
  padding-right: 26px;
  padding-left: 26px;
}

.ai-fix-bc-btn {
  padding-left: 43px;
}

/* ***** Header ***** */
header {
  background: #3E4149;
  height: 50px;
  padding-top: 6px;
  margin-bottom: 59px;
}

.navbar-default {
  border: none;
}

.navbar {
  margin-bottom: 59px;
}

.logo-container {
  background-image: url(../../_images/img/logo.png);
  background-repeat: no-repeat;
  background-size: 59px 31px;
  background-position: 40px 5px;
  padding: 0;
  height: 60px;
  width: 330px;
}

.logo-container .logo-title,
.logo-container .logo-subtitle {
  padding-left: calc( 71px + 40px);
  color: #333333;
  font-family: "EB Garamond", serif;
}

.logo-container .logo-title {
  font-size: 32px;
  line-height: 40px;
}

.logo-container .logo-subtitle {
  font-size: 16px;
  line-height: 18px;
}

/* ***** Navi ***** */
ul.navbar-nav {
  float: none;
  margin: 0;
  text-align: right;
}

/* ***** Main ***** */
#main-frame {
  border-top: 8px solid #3E4149;
  border-bottom: 8px solid #3E4149;
}

.bg-light-grey {
  background-color: #EAE9E3;
}

/* ***** Footer ***** */
.page {
  margin: 0;
  padding-bottom: calc(76px + 68px + 6px);
}

.lion-banner {
  height: 75px;
  background: #3E4149;
}

footer {
  position: absolute;
  width: 100%;
  height: calc(76px + 68px + 6px);
  margin-top: 0px;
  text-align: left;
  align-items: left;
  display: inline;
  justify-content: normal;
  bottom: 0;
  left: 0;
  font-size: 14px;
  color: #185d99;
  border: none;
  background-color: #fff;
}

#bottom-menu {
  list-style-type: none;
  margin-top: 6px;
  height: 68px;
}

#bottom-menu > li {
  display: inline;
  padding-right: 24px;
}

#bottom-menu > li,
#bottom-menu > li > a {
  font-weight: bold;
  font-size: 14px;
}

/* ***** WL-Modal ***** */
#startBietercockpit {
  background: none;
}

a#startBietercockpit:hover {
  text-decoration: none;
}

.modal-wf {
  box-sizing: border-box;
  color: #666666;
  display: table;
  height: 100%;
  line-height: 24px;
  width: 100%;
  position: fixed;
  visibility: visible;
  z-index: 9999;
}

.modal-wf .modal-wrapper {
  box-sizing: border-box;
  color: #666666;
  display: table-cell;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  height: 100%;
  line-height: 24px;
  opacity: 1;
  position: relative;
  vertical-align: top;
  visibility: visible;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
}

.modal-wf .modal-wrapper .modal-content {
  box-sizing: border-box;
  color: #666666;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  margin: auto;
  margin-top: 30px !important;
  max-height: 1092.8px;
  overflow-y: auto;
  padding-bottom: 40px;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 40px;
  position: relative;
  visibility: visible;
  width: 600px;
}