*::-webkit-scrollbar {
    width: 0.8rem;
}
*::-webkit-scrollbar-track {
    background: white;
}
*::-webkit-scrollbar-thumb {
    background-color: #0080C6;
    border-radius: 0px;
    border: 0px solid white;
}

.entries {
    width: 935px;

}
.titles {
    background: white;
}
.titles > div {
    background: white;
}

body { 
	font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #000000;
    background-color: #F9FBFC;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 10px;
}

body {
    font-family: 'Source Sans Pro';
    text-align: left;
}

.table {
    max-width: 960px;
    height: 600px;  
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #0080C6;
}

.titleswrapper {
    position: sticky;
	top: 0;
    background: white;
    z-index: 100;
}

.titles {
    display: flex;
    color: rgba(0, 126, 195, 1.000);
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.titles i {
    text-transform: none;
}

div.width {
    flex-grow: 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(214, 233, 242, 1.000);
    padding-right: 4px;
    padding-left: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
}

div.width:nth-child(1) {
    flex-basis: 170px;
}
div.width:nth-child(2) {
    flex-basis: 115px;
}
div.width:nth-child(3) {
    flex-basis: 120px;
}
div.width:nth-child(4) {
    flex-basis: 120px;
}
div.width:nth-child(5) {
    flex-basis: 120px;
}
div.width:nth-child(6) {
    flex-basis: 150px;
}
div.width:nth-child(7) {
    flex-basis: 75px;
}
div.width:nth-child(8) {
    flex-basis: 65px;
}

.table > div > div.entry > div:nth-child(8) {
    display: flex;
    justify-content: center;
    align-items: center;
}


.entry {
    display: flex;
    border-bottom: 1px solid rgba(214, 233, 242, 1.000);
}



.entry > div {
    padding-top: 5px;
    font-size: 1.3rem;
}

[data-verlauf="true"] .history:before {
    content: '';
    cursor: pointer;
    width: 30px;
    height: 15px;
    background-size: contain;
    background-repeat: none;
    background-image: url('../images/arrowdown.svg');
    background-position: center center;
    display: block;
    text-transform: center;
    transition: 0.25s ease all;
}
[data-verlauf="true"].showHistory .history:before {
    transform: rotate(180deg);
}
[data-verlauf="true"].showHistory {
    background: rgba(255, 254, 255, 1.000);
    box-shadow: 0px -5px 5px rgba(0,0,0,0.15);
}
.entries > .entry {
    display: none;
}
.entries > .entry.show {
    display: flex;
}

.verlauf {
    display: none;
    background: white;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.15);
}
.verlauf.showHistory {
    display: block;
}


.table.opened  .entry {
    opacity: 0.5;
    transition: 0.2s ease opacity;
}
.showHistory .entry,
.entry.showHistory {
    opacity: 1 !important;
}

.pagination {
    border-bottom: 1px solid #d6e9f2;
    display: flex;
    justify-content: center;
    width: 960px;
    padding-bottom: 10px;
}

.pagination .down,
.pagination .up {
    background-image: url(../images/arrowdown.svg);
    background-position: center center;
    flex-basis: 40px;
    height: 40px;
    background-size: 35px;
    background-repeat: no-repeat;
    cursor: pointer;
    transform: rotate(90deg);
}
.pagination .up { 
    transform: rotate(-90deg);
}
.pagination .count {
    line-height: 40px;
}
.pagination .down.disabled,
.pagination .up.disabled {
    opacity: 0.5;
    pointer-events: none;
}
.pagination .count {
    flex-basis: 150px;
    text-align: center;
}

.button {
    line-height: 30px;
    height: 30px;
    margin-top: 5px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    background: #a0cce2;
    color: white;
    display: block;
    border-radius: 2px;
    cursor: pointer;
}
.button:hover {
    background: #73afce;
}
.button.active {
    background: #0080c5;
}
.spacer {
    flex-basis: 100%;
}
