.body {
    margin: 0;
}
.number {
  text-align: right;
}
.depth-4 .mvag {
    background: #efeaea;
    text-align: center;
    cursor: help;
}
.positive-number {
  color: green;
}
input:focus{
    outline: none;
}
.negative-number {
  color: red;
}
.depth-4 .account {
    background: #efeaea;
}
html {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}
.center-text {
  text-align: center;
}
.header {
    text-align: center;
    font-weight: bold;
    font-size: 26px;
    margin-bottom: 6px;
}
.overall-sum {
  font-weight: bold;
}
.depth-1 {
  font-weight: bold;
  cursor: pointer;
}
.depth-2 {
  cursor: pointer;
}
.depth-3 {
  font-size: smaller;
  cursor: pointer;
}
.depth-4 {
  font-size: smaller;
  font-style: italic;
}
.drill-area {
  text-align: center;
  border-left-color: white;
  border-right-color: white;
  border-bottom-color: white;
  border-top-color: white;
}
.drill-area-last-row {
  text-align: center;
  border-left-color: white;
  border-bottom-color: white;
  border-top-color: white;
}
.hidden {
  display:none;
}
.show {
  display: table-row;
}
#dataTable > thead > tr > th > p {
  margin-bottom: 0px;
}
#dataTable > tbody > tr > td {
  border: 1px black solid;
  border-collapse: collapse;
  padding-left: 5px;
  padding-right: 5px;
}

#egt-table > tbody > tr > td {
  border: 1px black solid;
  border-collapse: collapse;
  padding-left: 5px;
  padding-right: 5px;
}

#result-table > tbody > tr > td {
  border: 1px black solid;
  border-collapse: collapse;
  padding-left: 5px;
  padding-right: 5px;
}

#dataTable > tfoot > tr > td {
  border-bottom: 3px black double;
  border-collapse: collapse;
  padding-left: 5px;
  padding-right: 5px;
}

#egt-table > tfoot > tr > td {
  border-bottom: 3px black double;
  border-collapse: collapse;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
}

#result-table > tfoot > tr > td {
  border-bottom: 3px black double;
  border-collapse: collapse;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
}

#dataTable .drill-area {
  border: none;
  border-collapse: collapse;
}

#dataTable .drill-area-last-row {
  border: none;
  border-collapse: collapse;
}

table th {
  border: 1px solid;
  border-collapse: collapse;
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
}
* {
  box-sizing: border-box;
}
#searchBar {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
#searchField:focus {
  border: none;
}
#searchField {
    background-image: url(../images/searchicon.png);
    background-position: 5px 3px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding: 0px 20px 0px 30px;
    border: none;
    width: 60%;
}
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    font-weight: normal;
    visibility: hidden;
    text-align: left;
    width: 680px;
    background-color: #DADADA;
    color: #000;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: -250%;
    left: 50%;
    margin-left: 10px;
    padding-left: 10px;
    border: solid 1px black;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent grey transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

#content {
    display: inline-flex;
    margin: 10px;
}

.chart-container {
    position: relative;
    height:40vh; width:20vw;
}

.background-logo {
	background-image: url('../images/proO_logo_2021_sRGB.png');
    background-repeat: no-repeat;
    position: fixed;
    right: 10px;
    bottom: 30px;
    height: 90px;
    width: 144px;
}

.imprint {
    font-size: small;
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.dropbtn {
    padding: 3px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
    float: left;
}

.moreDataDropdown {
    position: relative;
    display: inline-block;
    float: right;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #DADADA;
    font-weight: bold;
    font-size: 16px;
    min-width: 300px;
    text-align: left;
    z-index: 1;
    border: solid 1px black;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.dropdown-content-more-data {
    display: none;
    position: absolute;
    background-color: #DADADA;
    font-weight: bold;
    font-size: 16px;
    min-width: 300px;
    text-align: left;
    z-index: 1;
    border: solid 1px black;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.dropdown-content a {
    color: black;
    padding: 2px 4px;
    text-decoration: none;
    display: block;
}

.dropdown-content-more-data a {
    color: black;
    padding: 2px 4px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown-content-more-data a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}

.moreDataDropdown:hover .dropdown-content-more-data {
  display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

.queryForm {
    background-color: #DADADA;
}


.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.sort-column {
  cursor: pointer;
}