@CHARSET "ISO-8859-1";

/* Variablen für Grundlegende Farben etc */

:root {
  --maincolor: #414950;
  --colorWhite: #FFF;
  --colorBlack: #000;
  --colorWhiteGrey: #d9d9d9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

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: 34%;
  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: 26%;
}

.largeFieldSet {
  width: 100%;
}

.btn {
  min-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: white;
  background-color: orange !important;
  /* border-color: #6c757d; */
}

.btn-secondary:hover {
  text-decoration: underline;
  color: #fff;
}

.btn-secondary:focus {
  background-color: #fc9803;
}

.btn-bc {
  color: #fff;
  background-color: rgb(236,112,7) !important;
}

.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 {
  padding-left: 200px;
  padding-right: 100px;

  min-height: 50px;
  margin-bottom: 20px;
}
.navbar-brand {
  padding:0 0 0 15px;
  margin:0;
  height: 82px;
}

.space {
  margin-bottom: 25px;
}

.spaceTop {
  padding-top: 20px;
}

.head-nav {

}

.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: -10px 10px 0px var(--colorWhiteGrey), -10px -10px 0px var(--colorWhiteGrey), 10px -10px 0px var(--colorWhiteGrey), 10px 10px 0px var(--colorWhiteGrey);
  border-radius: 5px;
  background: var(--colorWhiteGrey);
}

.main-page-search {
  height: 40px;
  width: 480px;
  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;
}

.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: 140px;
}

.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 .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: "\2A09";
  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: #000;
}
a:hover {
  color: #BE0F05;
  text-decoration: underline;
}

.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;
}

.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>ul>li>a:hover .badge {
  background: #fff;
  color: var(--maincolor);
}

.navbar-default {
  background: #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;
  background-color: #414950;
}

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 �ber 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;
  }

}

@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 {.container-fluid
    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;
  }
  .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;
  }
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #BE0F05;
  border-color: #122b40
}

.btn-primary:hover {
  color: #fff;
  background-color: #BE0F05;
  border-color: #204d74
}

.btn-primary.active,
.btn-primary:active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #BE0F05;
  border-color: #204d74
}

@media (max-width: 768px) {
  .navbar-nav {
    margin: 0;
    padding-left: 15px;
  }
}

@media (max-width: 533px) {
  .navbar-right {
    float: none !important;
  }
}

@media (max-width: 502px) {
  .btnAccount {
    width: 45px;
  }
  .showhidetext {
    display: none;
  }
  #ai_logo > img {
    padding-right: 10px;
  }
}

