/*
button on Top

JS-Datein
ontop.js

html
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
*/


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: #ffb70f;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#myBtn:hover {
  background-color: #555;
}


/*
Abstand oben
.mt50 {margin-top: 50px;
}
*/

/*
Textes Hervorhebung (Textmarker)
<span style="background-color:yellow;font-weight:bold"> Textmarker </span>

----------------------
CSS
.meinhg {
   background-color:yellow;
   font-weight:bold;
}
HTML
<span class="meinhg"> Textmarker </span>,
-------------------------------------------
*/

/*
1. Google responsive
2. Objekte responsive

<div class="responsiveContainer">
  <!-- iframe-Code von Google Maps -->
</div>
*/

.responsiveContainer {
  position: relative;
  padding-bottom: 56%;
  height: 0;
  overflow: hidden;
}

/*  objekte  */
.responsiveContainer iframe,
.responsiveContainer object,
.responsiveContainer embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
}

/* Variante 2 */
.google-maps {
    position: relative;
    padding-bottom: 75%; /*   Dies ist das Seitenverhältnis  */
    height: 0;
    overflow: hidden;
}
.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Varinate 3 */
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}


/* Trennline */

hr.one {
    border-bottom: 2px solid #9cd06c;
    border-radius: 15px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}


/* ------------ NEU style.css ------------------ */

.navbar-brand > img {
    margin: 0 auto;
    max-width: 100%;
    max-height: 100px;
}

