body {
  background-color: #fff; 
}
.navbar{
  margin-bottom: 0px;
}
.starter-template {
  padding: 40px 15px;
  text-align: center;
}
.error {
  color: #900;
}
.success {
  color: #090;
}
.zart {
  color: #777;
}

.hellblau {
  color: #69f;
}

.workloadColor {
  color: #ba55d3;
}

.bottom-banner {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  margin-bottom: 0;
  background-color: #222;
  color: #aaa;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.meinButton {
	color:#777;
	background-color:#fff;
}

.myRange {
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
  width: auto;
  height: 32px;
  background-color: #fff;
  border: none;
  cursor: pointer;
}
.myTrack {
  position: absolute;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  top: 13px;
  background-color: #fff;
  box-shadow: inset 0px 0px 2px #888;
  border: 0.5px solid #888;  
  cursor: pointer;
}
.myThumb {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 16px;
  top: 0px;
  left: -16px;
  border: none;  
  background-color: #05f;  /* #0089fe #337ab7 */
  box-shadow: inset 0px 0px 6px #fff;  /* #003058; */
  opacity: 0.7;
  cursor: pointer;
}

/* 
Carousel fade instead of shift
inspired from http://codepen.io/Rowno/pen/Afykb  
*/

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
          transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}


/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
/* no gray gradient on left and right side */
.carousel-fade .carousel-control.left {
  background-image: none;
}
.carousel-fade .carousel-control.right {
  background-image: none;
}
.carousel-fade .carousel-indicators {
  position: absolute;
  bottom: 10px;
}

/* Accordion Pfeile rechts */
/* taken from http://www.bootply.com/88286 */

.panel-heading .accordion-toggle:before {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';  /* essential for enabling glyphicon */
    content: "\e113";    /* adjust as needed, taken from bootstrap.css */
    float: right;        /* adjust as needed */
    color: #888;         /* adjust as needed */
}
.panel-heading .accordion-toggle.collapsed:before {
    /* symbol for "collapsed" panels */
    content: "\e114";    /* adjust as needed, taken from bootstrap.css */
}

/* Multiple Choice Questions */
span.correct:before {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: green;
  content: "\e013";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
span.wrong:before {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  color: red;
  content: "\e014";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
span.positiveFeedback {
  color: green;
  display: none;
}
span.negativeFeedback {
  color: red;
  display: none;
}

/* Figure */
figure {
  width: 100%;
  padding: 15px;
}
img {
  width: 100%;
}
figure > figcaption {
  font-style: italic;
  color: #777;
}

/* Table */
.oerTable {
    border-collapse: collapse;
    width: 100%;
}
.oerTable > caption {
  font-style: italic;
}
.oerTable > thead > tr > th,
.oerTable > tbody > tr > th,
.oerTable > tfoot > tr > th,
.oerTable > thead > tr > td,
.oerTable > tbody > tr > td,
.oerTable > tfoot > tr > td {
    border: 1px solid #ccc;
    text-align: left;
    padding: 8px;
}
.oerTable > thead > tr > th,
.oerTable > tbody > tr > th,
.oerTable > tfoot > tr > th {
    background-color: #eee;
}
.oerTable > tbody > tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Question-Table */
.questionTable {
    border-collapse: collapse;
    width: 100%;
}
.questionTable > caption {
  color: black;
}
.questionTable > thead > tr > th,
.questionTable > tbody > tr > th,
.questionTable > tfoot > tr > th,
.questionTable > thead > tr > td,
.questionTable > tbody > tr > td,
.questionTable > tfoot > tr > td {
    border: 1px solid #eee;
    text-align: left;
    padding: 8px;
}
.questionTable > thead > tr > th,
.questionTable > tbody > tr > th,
.questionTable > tfoot > tr > th {
    background-color: #eee;
}

/* Chapter in content as panel to toggle */
.chapter {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 3px;
}
.chapter-title {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  color: #333;
  background-color: #eee;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  cursor: pointer;
}
.chapter-body {
  padding: 15px;
  border: 1px solid #ddd;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  display: none;
}
.chapter-title:hover {
  color: #000;
  background-color: #e7e7e7;
}
/* Pfeile rechts in Chapter */
.chapter-title::after {
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    color: #888;
}
.chapter-title.offen::after {
    content: "\e113";
}

/* Style of page-elements */
.tableOfContent {
  padding: 10px;
  border: 2px solid black;
}
.author {
  margin-top: 10px;
  background-image: linear-gradient(-45deg, #e7e7e7, #fff);
  padding: 10px;
  border: 2px solid black;
  text-align: center;
  width: 100%;
  cursor: pointer;
}
.authorPhoto {
  display: none;
}
.authorInfo {
  text-align:left;
  display: none;
}
.pageClicks {
  margin-top: 10px;
  background-image: linear-gradient(-45deg, #e7e7e7, #fff);
  padding: 10px;
  border: 2px solid black;
  text-align: center;
}

/* Language stuff */
span.de {
  display: none;
}
span.en {
  display: none;
}
span.cn {
  display: none;
}
/* class first defines whichone is visible first */
span.first {
  display: inline;
}