/* NAVBAR */
text#px {font-family: "Raleway", sans-serif;margin-left:10px;font-size: 30px;color: teal;}
text#headlineheader {
  float: right;
  color: black;
  font-weight: 300;font-size: 1.7em;
  margin-left: 10px;
}
nav.navbar.fixed-top.navbar-light.bg-light {
  z-index: 401;
  background: white;
  padding:1em 0em;
  border-bottom: 1px solid lightgray;
}

/* Suchleiste */
form#searchForm{max-width:700px;}
.input-group{ 
  -webkit-box-shadow: -3px 2px 5px 1px rgba(0,0,0,0.1);
  -moz-box-shadow: -3px 2px 5px 1px rgba(0,0,0,0.1);
  box-shadow: -3px 2px 5px 1px rgba(0,0,0,0.1);
  border-radius: .25em;border: 1px solid rgba(0,0,0,.125);
}
.form-control{
  border-color:teal;
  border: none;
  font-size: 1.2em;
  padding: 10px;
  color: gray;
}

.searchbtn {
  border: none;
  color: white;
  background-color: #17a2b8;
  font-size: 1.2em;
  width: 100px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.form-control:focus {
  border-color: teal;
  box-shadow: none;
  outline: none !important;
}

.fas.fa-backspace {
  padding-top: .5em;
  padding-right: 2em;
  color: lightgray;
  cursor: pointer;  
  background: white;
}

.fas.fa-backspace:hover {color:#495057}

/* Autocomplete Vorschläge */
.pac-container{font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";}
.pac-icon {display:none;}
.pac-item{padding:.5em 1em;}
.pac-container:after {
  background-image: none !important; /* "Powered by Google" nicht mehr anzeigen */
  height: 0px;
  padding: 0;
  margin: 0;
}

/* Breakpoint Navbar */
@media only screen and (max-device-width: 991px) {
  h1#berufOrt{font-size:2.0em;}
  .navbar-brand{display:none}
  nav.navbar.fixed-top.navbar-light.bg-light {padding: .7em .0em;}
  text#headlineheader{display:none}
}

/* Alle mobile Größen ohne "Suchen" Button, eigentliche braucht es den ja nicht */
@media only screen and (max-device-width: 550px) {
  button.searchbtn{display: none;}
  i.fas.fa-backspace{
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    padding-right:.5em;
    border-radius: .0em .25em .25em 0em;
    border: none;
  }
}
/* NAVBAR ENDE */