html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  padding-top: 56px;
  background-color: rgb(246, 248, 250);
}
img {
  padding: 5px;
}
.banner {
  background: url(/static/img/landscape.webp) no-repeat center center ;
  background-size: cover;
  height: 350px;
  line-height: 350px;
  text-align: center;
  vertical-align: middle;
  line-height: normal;
  color: white;
}
/* Sticky footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  line-height: 60px; /* Vertically center the text there */
  background-color: #343a40;
}
.footer a {
  color: white;
}

.logo {
  max-width: 300px;
}


.input-inline {
  min-width: 0;
  width: 200px;
  display: block;
}


.btn-primary {
  background-color: #006FBA;
  color: white;
}
.btn-outline-primary {
  border-color: #006FBA;
  color: #006FBA;
}
.btn-secondary {
  background-color: #006FBA;
  color: white;
}
.btn-default {
  background-color: #006FBA;
  color: white;
}


/*
Make bootstrap-select work with bootstrap 4 see:
https://github.com/silviomoreto/bootstrap-select/issues/1135
*/
.dropdown-toggle.btn-default {
  color: #292b2c;
  background-color: #fff;
  border-color: #ccc;
}

.bootstrap-select.show>.dropdown-menu>.dropdown-menu {
  display: block;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden{
  display:none;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a{
  display: block;
  width: 100%;
  padding: 3px 1.5rem;
  clear: both;
  font-weight: 400;
  color: #292b2c;
  text-align: inherit;
  white-space: nowrap;
  background: 0 0;
  border: 0;
}

.dropdown-menu > li.active > a {
  color: #fff !important;
  background-color: #337ab7 !important;
}

.bootstrap-select .check-mark::after {
  content: "✓";
}

.bootstrap-select button {
  overflow: hidden;
  text-overflow: ellipsis;
}


/* Make filled out selects be the same size as empty selects */
.bootstrap-select.btn-group .dropdown-toggle .filter-option {
  display: inline !important;
}
