/*
KLEUR
#75FB93	FPL Groen
#301037	FPL Paars
#D62E55	FPL Roze
#7FF5FD	FPL Blauw

FONTS
Lettertype Titels	LULO CLEAN
Lettertype Tekst	Helvetica Ligh
*/

body{
    background: #00FF87;
    font-family: 'Helvetica 45 Light', sans-serif;
}

body,
a{
    color: #301037;
}

.chartWrapper{
    margin-bottom: 2rem;
    padding: 1rem;
    background: #00FF87;    
}

.chartWrapper .bottom{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: .8rem;
    margin-top: 1rem;
}

.chartWrapper canvas{
    max-height: 688px;
}

.chartWrapper button{
    font-size: .8rem;
    background:transparent;
    text-decoration: underline;
    border: 0;
    padding:0;
    margin-bottom:4px;
}

@media (max-width:768px){
    .chartWrapper{
        padding: 1rem 0;       
    }
    .chartWrapper .bottom{
        padding: 0 .4rem;
    }
    .chartWrapper canvas{
        max-height: 550px;
    }
    .chartWrapper button{
        order:1;
    }
    .chartWrapper span{
        order:2;
    }
}

/* table{
    table-layout: fixed;
} */

.table{
    background: #ffffff;
    margin-top: 2rem;
}

.transfers,
.pricechanges{
    overflow-x: scroll;
}

table td,
table th,
.transfers .titles th{
    font-size: 14px;
}

.transfers td{
    max-width: 200px;
}

.transfers table td span{
    display: flex;
    align-items: center;
    padding: 4px 8px;
    white-space:nowrap;
    overflow-x: scroll;
}

.transfers table td span:not(:last-child){
    margin-bottom:2px;
}

.transfers table td:nth-child(odd) span{
    margin-right:-1px;
}

.transfers table td:nth-child(even) span{
    margin-left: -1px;
}

.transfers table td div{
    max-height: 140px;
    overflow-y: scroll;
}

span.table-danger{
    background: #f5c6cb;
    color: #E90052;
}

span.table-success{
    background: #79F2B9;
    color: #198754;
}

.green{
    color: #198754;
}

.red{
    color: #E90052;
}

th:first-child, td:first-child
{
  position:sticky;
  left:0px;
  font-size:12px;
}

.transfers th:first-child, .transfers td:first-child{
    background-color:#7FF5FD;
    color: #D62E55;
}

.table-bordered>:not(caption)>*{
    border-width: 2px 0;
    border-color:#301037;
}

span.position{
    text-transform: uppercase;
    margin-right: 4px;
    background: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    height: 15px;
    width: 15px;
    border-radius: 100%;
    
}

.pricechanges tr{
    vertical-align: middle;
}

.profile{
    width: 50px;
    margin-right: 10px;
}

.pricechanges thead{
    background-color:#7FF5FD;
    color: #D62E55;
}

.pricechanges td{
    max-width: 220px;
}

@media (max-width:768px){
    .pricechanges td{
        white-space:nowrap;
        overflow: scroll;        
    }
    .pricechanges .profile{
        width: 30px;
    }
    .pricechanges th:not(:first-child){
        text-align: center;
    }
}