/* ==========================================================================
   Author's custom styles
   ========================================================================== */

.navbar {
    overflow: hidden;
    background-color: #333;
    z-index: 5;
}
  
  /* Page content */
.content {
    padding: 16px;
  }
  
  /* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
  }

.sticky-down {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: auto;
}
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
  .sticky + .content {
    padding-top: 60px;
  }

.intro {
    background-color: #9e0231;
    border-style: solid;
    border-width: 0px 0px 10px 0px;
    border-color: #96be10;
    padding-top: 10px;
}

.container {
    /* background: #cccccc; */
    background: rgba(204, 204, 204, 0.7);
    padding-right: 0em;
    margin-top: 8px;
    margin-bottom: 8px;
}

body {
    background-image: url("../img/bggrey.png");
    background-repeat: repeat;
    font-weight: 500;
    font-size: 2em;
    font-family: 'Muli', sans-serif;
}

div {
    margin: auto;
    height: 100%;
    margin-bottom: 5px;
    /*margin-left: -1em;
    padding: 0px 10px;*/
    /* border: 1px solid #000; */
}

h1, h2, h3, h4 {
    color: #333;
    margin: 5% 0% 5% 0%;
    font-variant: small-caps;
    font-weight: bolder;
}

h1 {
    color: #e5e5e5;
    font-size: 2.2em;
}

h5 {
    font-size: 2em;
    padding-left: 8px;
}

.normalWeight {
    font-weight: normal;
}

li {
    float: left;
}

a {
    display: block;
    padding: 8px;
}

.normallink {
    padding: 0px;
}

li > a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul {
    list-style-type: none;
    margin: 0;
    color: #fff;
    padding: 0;
    overflow: hidden;
}

ol {
    overflow: auto;
}


li a:hover {
    background-color: #96be10;
}

.active {
    background-color: #96be10;
}

.nav-tabs {
    border-style: none;
    background-color: #9e0231;
}

.img-responsive {
    max-height: 100%;
}

.italic {
    font-style: italic;
}

/* .img-thumbnail {
    width: 50%;
    height: 50%;
} */

.img-thumbnail:hover {
    box-shadow: 0 0 5px 3px #9e0231;
}

.centered {
    margin: auto;
    width: 100%;
    padding: 10px;
}

.maxwidth {
    width: 100%;
    height: auto;
    padding: 5px;
}

.row {
    margin-right: 0em;
}

.white-bg {
    background-color: #fff;
}

/*
Colors in BBS EHS Trier:
rot - #9e0231
rgba(158, 2, 49, 0)
grün - #96be10
rgba(150, 190, 16, 0)
grau - #a3a4a6
grau Website - #e5e5e5
rot Website - #9e0231
grün Website - #8eb90f
*/

/*Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap*/

@media (max-width: 575px) {
    div {
        padding-right: 16px;
    }

    .logo {
        max-width: 30%;
    }

    a {
        font-size: 70%;
    }

    .img-responsive {
        width: 100%;
    }
}

/* Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
    div {
        padding-right: 16px;
    }

    .logo {
        max-width: 40%;
    }

    a {
        font-size: 80%;
    }
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
    div {
        padding-right: 16px;
    }

    .logo {
        max-width: 40%;
    }

    a {
        font-size: 100%;
    }
}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
    .logo {
        max-width: 100%;
    }

    a {
        font-size: 100%;
    }

    .embed-responsive-16by9 {
        padding-bottom: 40%;
    }
}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
    .logo {
        max-width: 100%;
    }

    a {
        font-size: 100%;
    }
}