html,body{padding:0;margin:0;background-color: rgba(0,0,0,0.04);font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}

/* Desktop */
.main{
    width: 100%;
    max-width: 920px;
    /* padding-top: 80px; */
    margin: 0 auto;
}

/* Mobile */
@media screen and (max-width:768px){
    .main{
        width: 100%;        
    }

    .m-hide{
        display: none !important;
    }
}

/* Tablet */
@media screen and (min-width:768px) and (max-width:1080px){
    .main{
        max-width: 580px;
        padding-top: 80px;
    }
}

/* NAVIGATION TOP & SIDE BARS */
/* .topbar{
    width: 100%;
    height: 80px;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.12);
}
.sidebar{
    width: 100px;
    height: 100vh;
    background: white ;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.12);
} */


/* MAIN CONTENT */
.page-header{
    padding: 32px 16px;
}

.chart-widget-container{
    background-color: white;
    margin: 0 auto;
    border-radius: 8px;
    padding: 32px 16px;
}

.horizontal-bars{
    width: 100%;
    height: 12px;
    background-color: antiquewhite;
    border-radius: 4px;
    margin: 0 0 16px 0;
    overflow: hidden;
}

.bar{height:100%;float: left;mix-blend-mode: multiply;}
.b-40{width:40%;}
.b-30{width:30%;}
.b-20{width:20%;}
.b-10{width:10%;}
.b-5{width:5%;}

.table{
    width: 100%;
    display: block;
}

.table .header{
    font-size: 12px;
    text-transform: uppercase;
    padding: 0px;
    display: flex;
}

.table .row{
    padding: 8px 0px;
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid white;
    transition: 0.2s ease;
}

.table .row:hover{
    background:rgba(247,252,250,1); /* #F7FCFA */
    transition: 0.2s ease;
    cursor: pointer;
    border-top: 1px solid rgba(0,0,0,0.15);
    border-bottom: 1px solid  rgba(0,0,0,0.15);
}

.cell{
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
    float: left;
}

.c-5{flex:1;}
.c-20{flex: 4;}
.c-35{flex: 12;}
/* .c-5{width: 4%;}
.c-20{width: 18%;}
.c-35{width: 33.3%;} */
.align-right{text-align: right;}
.txt-bold{font-weight: bold;}
.txt-16{font-size: 16px;}
.txt-14{font-size: 14px;}

.burst{
    width: 12px;
    height: 12px;
    border-radius: 100%;
    margin: 0 auto;
    margin-top:4px;
}

.fund-name, .pourcentage{
    width: 100%;
    display: inline-block;
    float: left;
}

.fund-name{
    font-weight:bold;
}

/* TOGGLE */
#toggle-wrapper{
    position: relative;
    display: inline-block;
    width: 46px;
    height: 28px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #cececece;
  }
#toggle {
    width: 20px;
    height: 20px;
    position: absolute;
    cursor: pointer;
    top: 4px;
    left: 4px;
    right: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
    border-radius:16px;
}

.truncate {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* COLOR MODE */
select#color-modes{
    padding:4px;
    background: #cececece;
    outline: 0;
    border: 0;
    border-radius: 4px;
    border-right: 4px solid #cececece;
}
select#color-modes:focus{
    outline: 0;
}