html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.scrollbox {
  width: 125px;
  white-space:nowrap;
  overflow:auto;
}
/* CSS by JC */

/* code for legacy iframe implementation */
#app-container.menu-hidden main, #app-container.menu-sub-hidden main, #app-container.sub-hidden main {margin-left: 60px!important;}
main.default-transition {margin-top: 40px !important;}


/*Link bei previous/next button*/
a.page-link {
  /* padding: 40px; */
  padding-left: 10px!important;
  padding-right: 10px !important;
}

table.dataTable {
  border-collapse: none !important;
}

tr:nth-child(even) {
  background-color: #dddddd;
  border-style: none !important;
}


/* Ausblenden der Darstellungsoptionen */
.theme-colors .theme-button {display: none;}

/* Design Suchfeld */
input.form-control.form-control-sm {
  border-radius: 40px;
  margin-left: 10px !important;
}

/* Accordion Style */
.nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
  border-top: 4px solid #145388 !important;
  padding: 0 10px;
  padding-top: 4px;
}


/* Info Banner */
#lauftext-container {
  color: #D35400;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  top: 0px;
 
  animation-name: text-indent-animate;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-direction: reverse;
  animation-iteration-count: infinite;
 }
 
 #lauftext-container:hover {
  animation-play-state: paused;
 }
 
 @keyframes text-indent-animate {
  0% {
    text-indent: -40%;
  }
 
  100% {
   text-indent: 100%;
  }
 }


 /* Accordion */
 
.accordion {
  background-color: white;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 20px;
  box-shadow: 0 1px 15px rgb(0 0 0 / 4%), 0 1px 6px rgb(0 0 0 / 4%);
  margin: 10px;
}

.active, .accordion:hover {
  background-color: white; 
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #d7d7d7;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}


.panel {
  padding: 50px 18px;
  margin: -30px 0px 30px 10px;
  display: none;
  background-color: white;
  overflow: hidden;
  border-radius: 20px;
}


/* Table of Content - BrainX*/
.float-left.toc_root.widget-toc {
    display: contents;
}