body, html {
    margin: 0;
    font-family: sans-serif;
}

.nav {
    padding: 16px;
}

.nav-btn {
    text-decoration: none;
    padding: 16px;
    color: black;
}

.nav-btn:hover {
    background-color: rgba(224, 81, 32, 0.8);
    color: white;
}

.main-a {
  color: black;
}

.main-a:hover {
  color: rgba(224, 81, 32, 0.8);
}

#active {
    background-color: rgba(224, 81, 32, 0.8);
    color: white;
}

.top-img {
  width: 100%;
}

.top-img-container {
    position: relative;
    text-align: center;
    color: white;
}

.bottom-btn {
    padding: 16px;
}

.bottom-btn:hover {
    color: black;
}

.centered {
    position: absolute;
    top: 50%;
    left: 300px;
    transform: translate(-50%, -50%);
    background: hsla( 0, 0%, 0%,0.5);
    padding: 25px;
    border-style: solid;
    border-width: 7px;
    border-color: rgba(224, 81, 32, 0.8);
}

ul.breadcrumb {
    padding: 0px 16px;
    list-style: none;
    background-color: #eee;
}

ul.breadcrumb li {
    display: inline;
    font-size: 14px;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

ul.breadcrumb li a {
    color: rgba(224, 81, 32);
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}

.nav-2 {
    padding-left: 16px;
    background-color: #eee;
}

.vertical-menu {
    width: 100%;
    height: 100%;
    background-color: #eee;
}

.vertical-menu a {
    background-color: #eee;
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
}

.vertical-menu a:hover {
    background-color: rgba(224, 81, 32, 0.8);
    color: white;
}

.vertical-menu a.active {
    background-color: rgba(224, 81, 32, 0.8);
    color: white;
}

.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #ccc;
}

.content {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.imprint {
    width: 80%;
    text-align: left;
    margin: 0 auto;
}

.collapsible:after {
    content: '\02795';
    font-size: 13px;
    color: rgba(224, 81, 32, 0.8);
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
}

* {
    box-sizing: border-box;
}

.column {
    float: left;
    padding: 10px;
}

.left {
  width: 25%;
  margin: 0;
}

.right {
  width: 75%;
  background-color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

a {
    color: rgba(224, 81, 32, 0.8);
}

th, td {
    text-align: left;
    padding: 16px;
}

tr:nth-child(even) {
    background-color: #f2f2f2
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    cursor: default;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 125%;
    margin-right: -60px;

    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
