/*
* 
{
  box-sizing: border-box;
}

html 
{
  font: 14px/1.4 Sans-Serif;
}

form 
{
  width: 320px;
  float: left;
  margin: 20px;
  > div 
{
    position: relative;
    overflow: hidden;
  }
  input, textarea 
{
    width: 100%;
    border: 2px solid gray;

    background: none;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    padding: 8px 12px;
    outline: 0;
    &:valid 
{
      // Hides the label
      background: white;

    }
    &:focus 
{
      border-color: #f06d06;
    }
    &:focus + label 
{
      background: #f06d06;
      color: white;
      font-size: 70%;
      padding: 1px 6px;
      z-index: 2;
      text-transform: uppercase;
    }
  }
  label 
{
    transition: // not padding
      background 0.2s,
      color 0.2s,
      top 0.2s,
      bottom 0.2s,
      right 0.2s,
      left 0.2s;
    position: absolute;
    color: #999;
    padding: 7px 6px;
  }
  textarea 
{
    display: block;
    resize: vertical;
  }
}

form.go-bottom 
{
  input, textarea 
{
    padding: 12px 12px 12px 12px;

  }
  label 
{
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  input:focus, textarea:focus 
{
    padding: 4px 6px 20px 6px;

  }
  input:focus + label, textarea:focus + label 
{
    top: 100%;
    margin-top: -16px;
  }
}
form.go-right 
{
  label 
{
    top: 2px;
    right: 100%;
    width: 100%;
    margin-right: -100%;
    bottom: 2px;
  }
  input:focus + label, textarea:focus + label 
{
    right: 0;
    margin-right: 0;
    width: 40%;
    padding-top: 5px;
  }
} */

/*
#jobsList input
{color: transparent;
font-size: 12px;
height: 35px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
-moz-transition: 0.3s all ease;
-ms-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
}
*/

/*
#jobsList input[type="text"]
{color: rgba(47,130,194,.8);
}
*/
/* Placeholder */
/* #jobsList input[type="text"]:-moz-placeholder
{color: rgba(47,130,194,.6);
} 
#jobsList input[type="text"]:-ms-input-placeholder
{color: rgba(47,130,194,.6);
} 
#jobsList input[type="text"]::-webkit-input-placeholder
{color: rgba(47,130,194,.6);
} */
/* Label */

/* Submit */
/*
#jobsList input[type="submit"]{ 
background-color: #333;
background: -moz-linear-gradient(bottom, #333, #444);
background: -ms-linear-gradient(bottom, #333, #444);
background: -o-linear-gradient(bottom, #333, #444);
background: -webkit-linear-gradient(bottom, #333, #444);
background: linear-gradient(bottom, #333, #444);
border: 1px solid #222;
color: #fff;
cursor: pointer;
height: 35px;
width: 110px;
}
#jobsList input[type="submit"]:hover {
color: #ff6937;text-shadow: 0 0 1px rgba(255,255,255,.2);
} */
/*
label {
  	position: absolute;
  	top: 20px;
  	left: 60px;
	-moz-transition: 0.3s all linear;
	-ms-transition: 0.3s all linear;
	-o-transition: 0.3s all linear;
	-webkit-transition: 0.3s all linear;
	transition: 0.3s all linear;
	background: none;
	font-size: 16px;
	z-index: 1;
}

#jobsList input:focus + label {
  color: #06158c;
  top: -6px;
  font-size: 12px;
  background: none; // rgba(255,255,255,.1); // #F2F2F2;
}

#jobsList input
{
-moz-transition: 0.3s all ease;
-ms-transition: 0.3s all ease;
-o-transition: 0.3s all ease;
-webkit-transition: 0.3s all ease;
transition: 0.3s all ease;
z-index: 2;

}
*/
/*
@border: 1px solid #ddd;
@padding: 10px;
@label-font-size: 13px;

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 300px;
}

// Demo styles
form {
  legend {
    font-size: 2em;
    margin-bottom: 1em;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
}


// float label
.float-label {
  .control {
    float: left;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #ddd;
    padding-top: 10px + 13px;
    padding-bottom: 10px;
    
    // you proably want to replace these with your grid classes
    &.small {
      width: 30%;
      border-right: 1px solid #ddd;
    }
    
    &.medium {
      width: 70%;
      padding-left:10px;
    }
    
    &:last-child {
     border: 0;
    }
  }
  
  input, textarea {
    display: block;
    width: 100%;
    border: 0;
    outline: 0;
    resize: none;
    
    // inactive but shown label (exceptions: opacity and top)
    & + label {
      position: absolute;
      top: 10px;
      transition: top 0.7s ease, opacity 0.7s ease;
      opacity: 0;
      
      // Some nice styling
      font-size: 13px;
      font-weight: 600;
      color: #ccc;
    }
    
    // THE MAGIC
    // as soon as we start typing, the "required" attribute will
    // set the state to valid and our pseudo selector will match
    &:valid + label {
      opacity: 1;
      top: 3px;
    }
    
    // and we highlight the focused input label
    &:focus + label {
      color: #2c8efe;
    }
  }
}
*/

.has-float-label {
  display: block;
  position: relative;
}
.has-float-label label, .has-float-label > span {
  position: absolute;
  left: 60px;
  top: 0px;
  cursor: text;
  color: #06158c;
  font-size: 75%;
  z-index:0;
  opacity: 1;
  -webkit-transition: all .2s;
          transition: all .2s;
}
.has-float-label select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.has-float-label textarea {
  width: 100%;
}
.has-float-label input, .has-float-label select, .has-float-label textarea {
  font-size: inherit;
  padding-top: 1em;
  margin-bottom: 2px;
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}
.has-float-label input::-webkit-input-placeholder, .has-float-label select::-webkit-input-placeholder, .has-float-label textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: all .2s;
          transition: all .2s;
}
.has-float-label input::-moz-placeholder, .has-float-label select::-moz-placeholder, .has-float-label textarea::-moz-placeholder {
	opacity: 1;
	transition: all .2s;
}
.has-float-label input:-ms-input-placeholder, .has-float-label select:-ms-input-placeholder, .has-float-label textarea:-ms-input-placeholder {
	opacity: 1;
	transition: all .2s;
}
.has-float-label input::placeholder, .has-float-label select::placeholder, .has-float-label textarea::placeholder {
	opacity: 1;
	-webkit-transition: all .2s;
          transition: all .2s;
}
.has-float-label input:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-webkit-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder {
	opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label select:placeholder-shown:not(:focus)::-moz-placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::-moz-placeholder {
	opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label select:placeholder-shown:not(:focus):-ms-input-placeholder, .has-float-label textarea:placeholder-shown:not(:focus):-ms-input-placeholder {
	opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus)::placeholder, .has-float-label select:placeholder-shown:not(:focus)::placeholder, .has-float-label textarea:placeholder-shown:not(:focus)::placeholder {
	opacity: 0;
}
.has-float-label input:placeholder-shown:not(:focus) + *, .has-float-label select:placeholder-shown:not(:focus) + *, .has-float-label textarea:placeholder-shown:not(:focus) + * {
	font-size: 100%;
	opacity: 0.5;
	top: 19px;
	color: black;
}
.has-float-label input:focus, .has-float-label select:focus, .has-float-label textarea:focus {
	outline: none;
	border-color: rgba(0, 0, 0, 0.5);
}
.has-float-label select {
	padding-right: 1em;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23333' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.5em bottom 0.25em;
	background-size: 8px 10px;
}

#searchform .bootstrap-select .dropdown-toggle {
	width: 218px;
}

#searchform .multiselect .dropdown-toggle {
	width: 222px;
}

#searchform .multiselect-native-select .checkbox input[type="checkbox"], .checkbox input[type="radio"] {
	opacity: 1;
}

#searchform .multiselect-native-select .btn-default {
	width: 100%;
	z-index: 1;
	padding-left: 10px !important;
	border-radius: 0px;
	text-overflow: ellipsis;
}

#searchform .multiselect-native-select .btn-group {
	width: 100%;
}

.multiselect-container>li.berufsgruppe label {
	font-size: 16px;
}

#searchform .multiselect-native-select .btn {
	margin-bottom: 0px !important;
	width: 217px;
}

#searchform .multiselect-native-select .btn-group .input-group-addon
{
	display: none;
}

#searchform .multiselect-native-select .btn-group .multiselect-clear-filter
{
	width: 50px;
}

#searchform .multiselect-native-select .btn .caret {
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -2px;
	vertical-align: middle;
}

#searchform .multiselect-item .caret-container .caret {
	position: absolute;
	right: 12px;
	margin-top: 10px;
	vertical-align: middle;
}

#searchform .multiselect-native-select .dropdown-menu>li>a:hover, 
#searchform .multiselect-native-select .dropdown-menu>li>a:focus, 
#searchform .multiselect-native-select .dropdown-menu>li>a:active {
text-decoration: none;
color: #262626;
background-color: #777;
}

#searchform .multiselect-native-select .dropdown-menu>.active>a, 
#searchform .multiselect-native-select .dropdown-menu>.active>a:hover, 
#searchform .multiselect-native-select .dropdown-menu>.active>a:focus {
text-decoration: none;
outline: 0;
color: #262626;
background-color: #777;
}

#searchform .multiselect-native-select .dropdown-menu>.berufsgruppe>a, 
#searchform .multiselect-native-select .dropdown-menu>.berufsgruppe>a:hover, 
#searchform .multiselect-native-select .dropdown-menu>.berufsgruppe>a:focus {
	background-color: #eceeef;
}

#searchform .multiselect-native-select .dropdown-menu>.berufsgruppe input {
	display:none;
}
#searchform .multiselect-native-select .dropdown-menu>.berufsgruppe .caret {
	display:none;
}

.suchkriterienmenu .btn-default {
    background-color: #ffffff;
    color: #222222;
}

.suchkriterienmenu .btn-default:hover {
    background-color: #969696;
    color: #fff;
}

.suchkriterienmenu .multiselect-clear-filter {
	display:none;
}

.suchkriterienmenu .multiselect-icon-box {
	min-width: 44px;
}

/*
#searchform .multiselect-native-select .dropdown-menu {
	max-width: 300px;
}
*/
#searchform .multiselect-native-select .dropdown-menu .caret {
	display:none;
}

.easy-autocomplete-container ul li {
	text-align: left;
	padding-left: 60px;
}

.header-job-search .suchkriterienmenu .form-control {
	padding-left: 0px;
	height: 44px;
	background-color: transparent;
}

.visibleOnPrint {
	display: none;
}

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

.fa-group:before, .fa-medall:before {
	/* fa-line-chart: soll hier verwendet werden */
	content:"\f201";
}

.fa-group:before, .fa-shift-left-old:before {
	/* fa-pie-chart soll hier verwendet werden */
	content: "\f200";
}

.fa-group:before, .fa-shift-right-old:before {
	/* fa-pie-chart soll hier verwendet werden */ 
	content: "\f200";
}

.fa-group:before, .fa-shift-left:before {
	content: "\f1fd";
}

.fa-group:before, .fa-shift-right:before {
	content: "\f1fd";
}

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

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

.fa-group:before, .fa-vcard:before {
	/* fa-vcard soll hier verwendet werden */
	content: "\F007";
}

.fa-group:before, .fa-vcard:after {
	content: '\f0c9';
	padding-right: 0.2em;
	padding-left: 0.1em;
}

.fa-group:before, .fa-vcard-bordered {
	padding: 0.3em 0.2em;
	display: inline-block;
	border: 1px solid #9ca3a9;
	border-radius: 3px;
}

.navbar .nav-menu>li:hover>a, .navbar .nav-menu li a:focus, .user-login a:hover {
	color: #06158c;
}

.nav-menu a:hover, .nav-menu a:focus, .nav-menu a.active {
	color: #3A3A3A;
	text-decoration: none;
}

.multiselect-container > li > a > label.checkbox, .multiselect-container > li > a > label.radio {
    margin: 0;
    padding-left: 60px;
}

.item-block header h5 {
	font-size: 16px;
}

.after-filter-bottom .btn {
	max-width: 265px;
}

a.categoryboxlink , a.categoryboxlink:focus, a.categoryboxlink:hover {
	color: black;
}

.pagination a.paginationlink ,.pagination a.paginationlink:focus,.pagination a.paginationlink:hover {
	color: #06158c;
}

.erweiterteSuche a.categoryboxlink {
	text-decoration: none;
	color: #06158c;
}

@media (max-width: 767px) {
	.parallax .col-xs-12 h5 {
		font-size: 16px;
		margin-top: 0px;
	}

	.parallax .col-xs-12 h2 {
		font-size: 20px;
		margin-top: 0px;
	}
	
	body {
		font-size: 10px;
		line-height: 20px;
	}
}

.paginationjs .paginationjs-pages li>a {
color: #06158c;
}

.paginationjs .paginationjs-pages li.active>a {
background: #ffe32f;
color: #06158c;
}

.paginationjs .paginationjs-pages li {
border: 1px solid #dddddd;
}

.paginationjs .paginationjs-pages li:last-child {
border-right: 1px solid #dddddd;
}

.paginationjs {
	font-family: Oswald, sans-serif;
}

.no-padding-top .container .sortbox ul {
	margin-left: -40px;
}

.sortbox {
	color: #06158c;
}

.sortbox li>a {
	min-width: 30px;
	height: 28px;
	line-height: 28px;
	display: block;
	font-size: 14px;
	color: #06158c;
	text-decoration: none;
	text-align: center;
	padding: 0px 8px;
}

.sortbox li.active>a {
	background: #ffe32f;
	color: #06158c;
	height: 30px;
	line-height: 30px;
}

.sortbox li {
	float: left;
	border: 1px solid #dddddd;
	border-right: none;
	list-style: none;
}

.sortbox li.active {
	border: none;
}

.sortbox li:first-child, .sortbox li:first-child>a {
	border-radius: 3px 0 0 3px;
}

.sortbox li:last-child>a {
	border-radius: 0 3px 3px 0;
}

.sortbox li:last-child {
	border-right: 1px solid #dddddd;
	border-radius: 0 3px 3px 0;
}

.sortbox li>a:hover {
	background: #eeeeee;
}

.sortbox li.active>a:hover {
	background: #ffe32f;
}

#newUserJoblistText .btn-primary,
#newUserEmployeelistText .btn-primary {
	background-color: #06158c;
	border-color: #06158c;
}

#newUserJoblistText .btn-primary,
#newUserEmployeelistText .btn {
	color: #ffe32f;
}

a.dropdown-toggle, a.dropdown-toggle:focus, a.dropdown-toggle:hover {
color: #000;
text-decoration: none;
transition: color .3s linear;
outline: 0;
}

.nav-on-header .navbar .dropdown-menu a {
height: 54px;
line-height: 54px;
}

.nav-on-header .navbar .dropdown-menu a {
height: 50px;
line-height: 50px;
padding-top: 0;
padding-bottom: 0;
text-transform: uppercase;
font-size: 14px;
}

.nav-on-header .navbar .dropdown-menu {
left: initial;
right: 0;
}

.user-menu {
border: none;
top: 50px;
}

.user-menu .fa {
	padding-right: 15px;
}

#user-login-menu .btn {
padding: 5px 30px;
height: 46px;
margin-top: 5px;
}

.nav-menu a {
 letter-spacing: 0px;
}

.no-padding-top .container #detailview ul {
margin-left: 0px;
}

.button-container {
  border: 0px solid #ccc;
  border-radius: 6px;
  display: inline-block;
  margin: 4px 0px 0px 0px;
  padding: 0px;
  text-align: center;
  width: 100px;
}

.button-text {
  display: block;
  line-height: 0px;
  height: 0px;
  text-transform: none;
  position: relative;
  top: -18px;
}

.button-icon {
    vertical-align: middle;
    font-size: 26px;
    position: relative;
    top: -12px;
}


