/*
body {

    --s: 30px;
    --c1: #d6d6d6;
    --c2: #919191;
    --c3: #232323;
    
    background: 
        repeating-conic-gradient(#0000 0 25%,var(--c1) 0 50%)
        0 0/calc(2*var(--s)) var(--s),
        linear-gradient(-45deg,var(--c2) 33.3%,var(--c3) 0)
        0 0/var(--s) calc(var(--s)/2);
    background-attachment: fixed; 
}
*/

header.main-header {
    /*
    box-shadow: 0 -1px 2px 2px black;
    */
    box-shadow: 0 1px #252424;
}

header img.header-logo {
    width: 42px;
    height: 42px;
    transform: scale(2);
    transform-origin: top left;
    margin-right: 48px;
}

header img.header-logo-hidden {
    width: 1px;
    height: 1px;
    margin: 0;
    visibility: hidden;
}

header nav.navbar-custom {
    margin-bottom: 48px;
}

@media (max-width: 576px) {
  header nav.navbar-custom {
    padding-top: 8px !important;
  }

  .navbar-toggler {
    color: none !important;
    background-color: none !important;
  }
}

.rich-text img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

body {
  /*
  background-color: #b5d8e6;
  */
  background-image: url("../images/bg_ci.ea27f3b2542b.png");
  background-repeat: repeat;
  background-size: 10%;
  background-position: top left;
  background-attachment: fixed;
  
}

footer {
  /* box-shadow: 0px 4px 3px 3px #909090; */
  border-bottom: 1px solid #252424;
}

.page-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
}

.main-content{
    max-width: 1200px;
    width: 100%;
    box-sizing: border-box;
    border-right:  1px solid #252424;
    border-left:  1px solid #252424;
}

.sidepanel{
    flex-grow: 1;
    padding: none;
    margin: none;
    /* flex: 1;
     background-color: #b5d8e6; 
    border-top-width: 58px;
    border-top-color: #f8f9fa;
    border-top-style: solid; */
}

@media (max-width: 1200px) {
  .sidepanel-top {
    display: none; /* oder visibility: hidden */
  }
}

.sidepanel-top {
  
  padding: 1rem 0px;
  margin: none;
  position: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none; /* verhindert das Kontextmenü */
  user-select: none;
  color: #f8f9fa;
  background-color: #f8f9fa;
  border-bottom: 1px solid #252424;
}

.dropdown-menu-custom {
    --bs-navbar-active-color: none !important;
    --bs-dropdown-link-active-bg: none !important;
    border: none !important;
    box-shadow: none !important;
}



@media (min-width: 576px) {
  .navbar .dropdown-menu {
    left: auto !important;
    right: auto !important;
    border-top: none !important;
    border-bottom: 1px solid #252424 !important;
    border-left: 1px solid #252424 !important;
    border-right: 1px solid #252424 !important;
    border-top-left-radius: 0%;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 0%;
    border-bottom-left-radius: 6px;
    overflow: hidden;
    position: absolute;
  }

  .nav-item:hover > a {  
    color: #f8f9fa;
    background-color: #1b5c94;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .nav-item.dropdown .dropdown-menu {
    display: none;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
  .nav-item.dropdown .dropdown-menu {
    display: none;
  }
  .navbar-nav .dropdown-menu a {
    color: #212529;
    text-decoration: none;
    display: block;
    padding: 0.25rem 1.5rem;
  }
  .navbar-nav .dropdown-menu a:hover {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  .navbar-nav .dropdown-menu a:focus {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  .navbar-nav .dropdown-menu a.active {
    color: #212529;
    background-color: #f8f9fa;
  }
  .navbar-nav .dropdown-menu a.active:hover {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  .navbar-nav .dropdown-menu a.active:focus {
    color: #212529;
    background-color: #f8f9fa;
  }
  .navbar-nav .dropdown-menu a.disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: transparent;
  }
  .navbar-nav .dropdown-menu a.disabled:hover {
    color: #6c757d;
    background-color: transparent;
  }
  .navbar-nav .dropdown-menu a.disabled:focus {
    color: #6c757d;
    background-color: transparent;
  }
  .navbar-nav .dropdown-menu a:hover {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  .navbar-nav .dropdown-menu a:focus {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  .navbar-nav .dropdown-menu a.active {
    color: #f8f9fa;
    background-color: #1b5c94;
  }
  
  .animate {
    animation-duration: 0.6s;
    -webkit-animation-duration: 0.6s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }

  .slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
  }
}

@keyframes slideIn {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 500px; /* groß genug wählen */
  }
  0% {
    max-height: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    max-height: 0;
  }
  100% {
    max-height: 500px;
  }
  0% {
    max-height: 0;
  }
}



.ascii-container {
  white-space: nowrap;    /* Verhindert Zeilenumbrüche */
  padding: 0;             /* Kein zusätzliches Padding */
  margin: -10px 8px;              /* Kein zusätzlicher Abstand */
  display: inline-block;  /* Minimiert die Größe des Containers */
}

.ascii-char {
  font-family: "Courier New", monospace; /* Monospace-Schriftart */
  cursor: pointer;
  margin: 0;
  text-align: center; 
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: normal;
  transition: font-weight 0.3s ease;
}

.ascii-char:hover{
  font-weight: bold;
}

/* for images in tamplates */

.image-block {
  margin-bottom: 2rem;
  text-align: center;
}



.image-small {
  max-width: 200px;
}

@media (max-width: 576px) 
{
  .image-medium, .image-large, .image-full {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 576px) 
{
  .image-medium {
    max-width: 400px;
  }

  .image-large {
    max-width: 600px;
  }

  .image-full {
    width: 100%;
    height: auto;
  }
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}
    */

.align-right {
  text-align: right;
}

/* timeline */

.timeline-with-icons {
  border-left: 1px solid #252424;
  position: relative;
  list-style: none;
}

.timeline-with-icons .timeline-item {
  position: relative;
}

.timeline-with-icons-bottom {
  border-left-width: 1px;
  border-left-color: #252424;
  border-left-style: dashed;
  position: relative;
  top: -4em;
}

.timeline-with-icons-bottom .timeline-item-spacer {
  position: relative;
  height: 45px;
}

.timeline-with-icons .timeline-item:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline-with-icons .timeline-icon {
  position: absolute;
  left: -3em;/* -48px; */
   background-color: rgb(248, 249, 250);
  color: hsl(217, 88.8%, 35.1%);
  border-radius: 50%;
  border-width: 1px;
  border-color: #252424;
  border-style: solid;
  height: 2em;
  width: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

