.displayNone {
  display: none;
}
.leaflet-control-geosearch {
  position: relative;
}
.leaflet-control-geosearch a {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border-bottom: none;
}
.leaflet-control-geosearch a.glass {
  background-image: url(/_p/_leaflet/geosearch.png);
  background-size: 100% 100%;
}
.leaflet-control-geosearch a.spinner {
  background-image: url(/_p/_leaflet/spinner.gif);
  background-position: 50% 50%;
}
.leaflet-control-geosearch a.alert {
  background-image: url(/_p/_leaflet/alert.png);
  background-size: 64% 64%;
}
.leaflet-control-geosearch a:hover {
  border-bottom: none;
}
.leaflet-control-geosearch form {
  position: absolute;
  top: 0;
  left: 22px;
  box-shadow: 0 1px 7px rgba(0, 0, 0, 0.65);
  -webkit-border-radius: 4px;
  border-radius: 0px 4px 4px 0px;
  z-index: -1;
  background: #FFF;
  height: 26px;
  padding: 0 6px 0 6px;
}
.leaflet-control-geosearch form input {
  width: 200px;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  margin-top: 5px;
}
.leaflet-control-geosearch .message {
  position: absolute;
  top: 26px;
  left: 0px;
  width: 226px;
  color: #FFF;
  background: #282828;
  padding: 4px 0 4px 8px;
}
ul.geosearchResultList {
  margin: 0;
  padding: 0 6px 0 0;
  width: 100%;
  list-style: none;
}
.geosearchResultList li {
  margin: 0 0 6px;
  cursor: pointer;
}
.geosearchResultList li:hover,
.geosearchResultList li:focus {
  color: #cdcdcd;
}
/* required styles */
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}
.leaflet-container {
  overflow: hidden;
  -ms-touch-action: none;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
  max-width: none !important;
}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
  max-width: 15000px !important;
}
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}
.leaflet-tile-loaded {
  visibility: inherit;
}
.leaflet-zoom-box {
  width: 0;
  height: 0;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}
.leaflet-tile-pane {
  z-index: 2;
}
.leaflet-objects-pane {
  z-index: 3;
}
.leaflet-overlay-pane {
  z-index: 4;
}
.leaflet-shadow-pane {
  z-index: 5;
}
.leaflet-marker-pane {
  z-index: 6;
}
.leaflet-popup-pane {
  z-index: 7;
}
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}
/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 7;
  pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
.leaflet-top {
  top: 0;
}
.leaflet-right {
  right: 0;
}
.leaflet-bottom {
  bottom: 0;
}
.leaflet-left {
  left: 0;
}
.leaflet-control {
  float: left;
  clear: both;
}
.leaflet-right .leaflet-control {
  float: right;
}
.leaflet-top .leaflet-control {
  margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
  margin-left: 10px;
}
@media (max-width: 992px) {
  .leaflet-left .leaflet-control {
    float: left;
    clear: none;
  }
}
.leaflet-right .leaflet-control {
  margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}
/* cursors */
.leaflet-clickable {
  cursor: pointer;
}
.leaflet-container {
  cursor: -webkit-grab;
  cursor: -moz-grab;
}
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
}
/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0;
}
.leaflet-container a {
  color: #546831;
}
.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}
/* general typography */
.leaflet-container {
  font-size: 14px;
  line-height: 20px;
}
/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 5px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-right: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 23px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  float: left;
}
.leaflet-bar a:hover {
  background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.leaflet-bar a:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-right: none;
}
.leaflet-bar.leaflet-control-geosearch a,
.leaflet-bar a:first-child:last-child {
  border-right: none;
}
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* zoom control */
.leaflet-control-zoom.leaflet-control,
.leaflet-control-geosearch.leaflet-control {
  margin-top: 17px;
  clear: none;
  float: left;
}
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font-weight: bold;
  font-size: 16px;
  text-indent: 1px;
}
.leaflet-control-zoom-out {
  font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
  font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 24px;
}
/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}
.leaflet-control-layers-toggle {
  background-image: url(/_p/_leaflet/layers.png);
  width: 36px;
  height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/_p/_leaflet/layers-2x.png);
  background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}
.leaflet-control-layers label {
  display: block;
}
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
  display: none;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}
.leaflet-control-attribution a {
  text-decoration: none;
}
.leaflet-control-attribution a:hover {
  text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}
/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
}
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 5px;
}
.leaflet-popup-content {
  margin: 10px 12px;
}
.leaflet-popup-tip-container {
  margin: 0 auto;
  width: 40px;
  height: 20px;
  position: relative;
  overflow: hidden;
}
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}
.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}
.marker-cluster {
  background-clip: padding-box;
  border-radius: 44px;
  width: 44px !important;
  height: 44px !important;
  background-color: #ffe700;
}
.marker-cluster div {
  width: 40px;
  height: 40px;
  margin-left: 2px;
  margin-top: 2px;
  text-align: center;
  border-radius: 20px;
  font-size: 12px;
  background-color: #f5a700;
  border: 6px solid #23a029;
}
.marker-cluster span {
  line-height: 26px;
  font-weight: bold;
  color: #333;
}
.marker-cluster.marker-cluster-medium {
  width: 66px !important;
  height: 66px !important;
}
.marker-cluster.marker-cluster-medium div {
  width: 60px;
  height: 60px;
  margin-left: 3px;
  margin-top: 3px;
  border-radius: 30px;
  font-size: 14px;
  border-width: 6px;
}
.marker-cluster.marker-cluster-medium span {
  line-height: 44px;
}
.marker-cluster.marker-cluster-large {
  width: 88px !important;
  height: 88px !important;
}
.marker-cluster.marker-cluster-large div {
  width: 80px;
  height: 80px;
  margin-left: 4px;
  margin-top: 4px;
  border-radius: 40px;
  font-size: 16px;
  border-width: 8px;
}
.marker-cluster.marker-cluster-large span {
  line-height: 64px;
}
.leaflet-cluster-anim .leaflet-marker-icon,
.leaflet-cluster-anim .leaflet-marker-shadow {
  -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
  -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
  -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}
/*
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}
/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}
.pika-single:after {
  clear: both;
}
.pika-single {
  *zoom: 1;
}
.pika-single.is-hidden {
  display: none;
}
.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
}
.pika-lendar {
  float: left;
  width: 218px;
  margin: 0;
}
.pika-title {
  position: relative;
  text-align: center;
}
.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}
.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}
.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0;
}
.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}
.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==');
  *left: 0;
}
.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=');
  *right: 0;
}
.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}
.pika-select {
  display: inline-block;
  *display: inline;
}
.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  margin: 0;
}
.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
}
.pika-table th {
  color: #fff;
  font-weight: bold;
}
.pika-table th abbr {
  text-decoration: none;
}
.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  background: #e9e9e9;
}
.pika-week {
  font-size: 11px;
  color: #999;
}
.is-today .pika-button {
  color: #546831;
  font-weight: bold;
}
.is-selected .pika-button {
  color: #fff;
  font-weight: bold;
  background: #546831;
}
.is-inrange .pika-button {
  background: #D5E9F7;
}
.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
}
.is-endrange .pika-button {
  color: #fff;
  background: #546831;
}
.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3;
}
.pika-button:hover {
  color: #fff;
  background: #546831;
}
/* styling for abbr */
.pika-table abbr {
  border-bottom: none;
}
#kartenanwendung #wrap {
  height: 100%;
  padding-bottom: 136px;
}
@media (max-width: 992px) {
  #kartenanwendung #wrap {
    padding-bottom: 65px;
  }
}
@media (max-width: 992px) {
  #kartenanwendung .navbar {
    height: 15px !important;
    min-height: 15px !important;
  }
}
@media (max-width: 992px) {
  #kartenanwendung .navbar-header {
    display: none;
  }
}
#kartenanwendung .fuss {
  height: auto;
  margin-top: -106px;
}
@media (max-width: 992px) {
  #kartenanwendung .fuss {
    height: 65px;
    margin-top: -65px;
    overflow: hidden;
    font-size: 12px;
  }
  #kartenanwendung .fuss p {
    margin: 0;
    padding: 0;
  }
  #kartenanwendung .fuss br {
    display: none;
  }
  #kartenanwendung .fuss br:after {
    content: ' ';
  }
  #kartenanwendung .fuss .col-lg-6 a {
    float: right;
  }
  #kartenanwendung .fuss .col-lg-4 {
    padding-top: 0;
  }
}
#kartenanwendung .fb-row {
  display: none;
}
#kartenanwendung .footer-row {
  height: 106px;
  padding-top: 14px;
}
#rhoenkarte {
  width: 100%;
  min-height: 100%;
  height: auto;
  background: #546831;
  position: relative;
  top: -150px;
  margin: 0;
  overflow: hidden;
}
@media (max-width: 992px) {
  #rhoenkarte {
    top: -70px;
  }
}
#kartennavi {
  position: absolute;
  top: 190px;
  bottom: 115px;
  z-index: 500;
  border-radius: 5px;
  width: 100%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  margin: 0 0 0 10px;
}
@media (max-width: 992px) {
  #kartennavi {
    top: 110px;
    bottom: 95px;
  }
}
@media (max-width: 480px) {
  #kartennavi {
    margin: 0 0 0 0;
    bottom: 0;
    border-radius: 5px 5px 0 0;
  }
}
#kartennavi.datenladen:before {
  content: 'Daten werden geladen…';
  display: block;
  color: #000;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  width: 400px;
}
#kartennavi.datenladen ul {
  display: none;
}
#kartennavi ul.kartennavifilter {
  list-style: none;
  background: #fff;
  overflow: hidden;
  height: 50px;
  margin: 0;
  padding: 10px 0;
  border: 1px solid #d1deba;
  border-width: 0 0 1px;
}
#kartennavi ul.kartennavifilter li {
  padding-top: 4px;
  font-weight: bold;
  font-size: 12px;
}
#kartennavi ul.kartennavifilter li.filterblock {
  padding-left: 10px;
  float: left;
}
#kartennavi ul.kartennavifilter li.loginblock {
  padding-right: 10px;
  float: right;
}
#kartennavi .nav > li {
  display: table-cell;
}
#kartennavi .nav > li > a {
  padding: 6px 10px;
  line-height: 16px;
  white-space: nowrap;
  font-weight: bold;
  font-size: 12px;
}
#kartennavi .nav > li > a img {
  margin-right: 6px;
}
#kartennavi .nav-tabs {
  background: #fff;
}
#kartennavi .tab-pane {
  background: #fff;
}
#kartennavi .tab-content {
  position: absolute;
  width: 100%;
  bottom: 0;
  top: 34px;
  padding: 0;
  overflow: hidden;
  overflow-y: auto;
}
#kartennavi .tab-content dl {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e9e9e9;
}
#kartennavi .tab-content dl dd:nth-child(odd) {
  background: #f6f6f6;
}
#kartennavi .tab-content dl a {
  display: block;
  padding: 5px 15px;
}
#kartennavi .tab-content dl a:hover {
  background: #dddddd;
}
#kartennavi .tab-content dl a.active {
  background: #546831;
  color: #fff;
  font-weight: bold;
}
#kartennavi .tab-content dl dt {
  display: block;
  padding: 10px 15px;
  font-weight: bold;
  background: #d1deba;
  color: #546831;
}
#kartennavi .tab-content dl dt .checkbox {
  margin: 0;
  padding-left: 40px;
}
#kartennavi .tab-content dl dt label {
  font-weight: bold;
}
#kartennavi .tab-content dl .karten-toggle {
  border: none;
  background: none;
  padding: 0;
  float: left;
}
#kartennavi .tab-content dl .karten-toggle:before {
  content: '▼';
}
#kartennavi .tab-content dl .karten-toggle.collapsed:before {
  content: '▶';
}
#kartennavi.naturbeobachtungen .tab-content {
  top: 84px;
}
.karten-state-toggle {
  display: block;
  font-weight: normal;
  font-size: 12px;
  padding: 4px 15px;
}
.loginblock {
  font-weight: bold;
  font-size: 16px;
  padding: 8px 15px;
}
.loginnavi {
  display: block;
  padding: 15px 15px 0;
  font-weight: normal;
  font-size: 12px;
  border: 1px solid #546831;
  border-width: 0 0 1px;
}
.loginnavi ul {
  list-style: none;
  margin: 0 0 15px;
  padding: 0;
}
.loginnavi ul li {
  font-weight: bold;
}
.loginnavi-status {
  margin-bottom: 15px;
}
.eintragenform .feedback {
  margin: 0 0 15px;
}
@media (max-width: 992px) {
  .eintragenform label {
    clear: both;
    float: none;
    display: block;
  }
  .eintragenform .col-xs-3,
  .eintragenform .col-xs-8 {
    width: 100%;
  }
  .eintragenform .col-xs-offset-3 {
    margin-left: 0;
  }
}
ul.eintragenadminbuttons {
  text-align: center;
}
ul.eintragenadminbuttons li {
  margin: 0 0 15px;
}
#kartennavi dl.eintragenadminbuttons dt {
  background: transparent;
  padding: 0;
  margin: 0 0 15px;
}
#kartennavi dl.eintragenadminbuttons dd {
  margin: 0 0 15px;
}
#kartennavi dl.eintragenadminbuttons dd a {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
#kartennavi dl.eintragenadminbuttons dd a:hover {
  color: #546831;
}
#kartennavi .btn-profildaten {
  padding: 15px 0;
  margin: 0;
}
.eintragenfuss {
  margin-top: 30px;
  padding-top: 30px;
}
#pluploaddateiauswaehlen {
  color: #fff;
}
.genderlabel {
  text-align: center;
  font-size: 24px;
  line-height: 27px;
  font-weight: bold;
  text-align: right;
}
@media (max-width: 992px) {
  .meta {
    display: none;
  }
}
.iw h2 {
  margin: 0 0 7px;
  color: #546831;
  font-size: 20px;
  font-weight: bold;
}
.iw .metadata {
  font-size: 12px;
  line-height: 12px;
  display: table;
  background: #546831;
  border-radius: 5px;
  color: #fff;
  padding: 3px 8px 5px;
  margin: 0px 0px 7px;
}
.iw p {
  margin: 0;
  color: #333;
}
.iw .weiterlesen {
  font-weight: bold;
  text-align: right;
  font-size: 12px;
  line-height: 12px;
  margin: 6px 0 0;
}
.iw .weiterlesen .glyphicon {
  margin-bottom: -6px;
}
.iw a:hover h2 {
  color: #333;
}
.iw a:hover p {
  color: #546831;
}
.iw a:hover .metadata {
  color: #fff;
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #fff;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}
.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
  display: none;
}
.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}
.mfp-ajax-cur {
  cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close-button {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
  cursor: auto;
}
.mfp-close-button,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.mfp-loading.mfp-figure {
  display: none;
}
.mfp-hide {
  display: none !important;
}
.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}
.mfp-preloader a {
  color: #cccccc;
}
.mfp-preloader a:hover {
  color: white;
}
.mfp-s-ready .mfp-preloader {
  display: none;
}
.mfp-s-error .mfp-content {
  display: none;
}
button.mfp-close-button,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.mfp-close-button {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}
.mfp-close-button:hover,
.mfp-close-button:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-close-button:active {
  top: 1px;
}
.mfp-close-btn-in .mfp-close-button {
  color: #333333;
}
.mfp-image-holder .mfp-close-button,
.mfp-iframe-holder .mfp-close-button {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}
.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px;
}
.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.mfp-arrow:active {
  margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}
.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}
.mfp-arrow-left {
  left: 0;
}
.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px;
}
.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
  right: 0;
}
.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px;
}
.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}
.mfp-iframe-holder .mfp-close-button {
  top: -40px;
}
.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black;
}
/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}
/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444;
}
.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}
.mfp-figure figure {
  margin: 0;
}
.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}
.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}
.mfp-image-holder .mfp-content {
  max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close-button {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.mfp-ie7 .mfp-img {
  padding: 0;
}
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mfp-ie7 .mfp-container {
  padding: 0;
}
.mfp-ie7 .mfp-content {
  padding-top: 44px;
}
.mfp-ie7 .mfp-close-button {
  top: 0;
  right: 0;
  padding-top: 0;
}
/*# sourceMappingURL=styler-kartenanwendung.css.map */