/* therapie am sachsenring       */
/* Copyright 2023 Lutz Moppert   */
/*
body {
    color: #545855;
    font: 90% medium Verdana, Arial, Helvetica, sans-serif;
    background: #fafafa url(../img/stripe.png) top left repeat-x;
}
 */
#topnav {
  background-image: url("../img/logo-back.png");
  background-repeat: repeat-x;
  }
#navbar-linklist {
  margin-left: 80px;
  }
#navbar-linklist, #navbtn {
  margin-top: 54px;
  }
@media (max-width: 992px) {
  #navbar-linklist {
    margin-top: 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 15px;
    float: right;
    background: white;
    width: 100%;
    }
  }
#navbar-linklist .nav-link, #navbtn {
  color: #e91;
  }
html>body {
  padding-top: 100px;
  color: #545855;
  }
a:link, a:visited {
  text-decoration : none;
  color: #999;
  }
a:hover {
  text-decoration: underline;
  color: #d80;
  }
a:active {
  text-decoration : none;
  color: #d80;
  }
main h2 {
  margin-top: 50px;
  font-weight: bold;
}
main h5 {
  margin-top: 25px;
}
.logo-raised {
  margin-top: -13px;
}
.photo-250 {
  max-width: 250px;
}
.photo-card {
  max-width: 540px;
}
@media (max-width: 766px) {
  .photo-card {
    padding-right: 8px;
  }
}
.carousel-img {
  min-height: 185px;
}
.carousel-thumb {
  max-height: 160px;
}
.image-portrait {
  padding: 0;
  background-color: #aaa;
}
@media (min-width: 567px) {
  .image-portrait {
    padding: 0 75px;
    background-color: #aaa;
  }
}
@media (min-width: 992px) {
  .image-portrait {
    padding: 0 150px;
    background-color: #aaa;
  }
}

/* Typography     */
::marker, .cdc {
  color: #ffaa22;
}
code, pre    {
    font-family: monaco, "Bitstream Vera Sans Mono", "Courier New", courier, monospace;
    font-weight: normal;
    font-size: small;
    }

/* Modals         */
.button:hover {
  border-color: #999;
  box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.button:active {
  box-shadow: 0 1px 3px rgba(0,0,0,0.25) inset;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.5);
  transition: opacity 200ms;
  visibility: hidden;
	opacity: 0;
  z-index: 1;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 200px auto;
  padding: 30px;
  background: white; 
  border: 1px solid #aaa;
  width: 700px;
  box-shadow: 0 0 50px rgba(255,255,255,0.5);
  position: relative;
}
.popup > h2 {
  margin-top: 0;
  color: #666;
}
.popup > .close {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
  opacity: 0.8;
  transition: all 200ms;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  color: #666;
}
.popup > picture > img {
  max-width: 640px;
}
.popup > .close:hover {
  opacity: 1;
}