.MainDashBoardContainer {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 1340px;
    min-height: 680px;
    margin-bottom: 40px;

    /*border:1px solid red;*/
}

.DashBoardElemente {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 430px;
    padding: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    height: auto;
    background-color: white;
    vertical-align: top;

    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);

    border:1px solid darkgrey;
}

.DashBoardElemente.Doppel {
    width: 860px;
}

.DashBoardElemente.FullWidth {
    /*display: block;*/
    width: 1315px;
}

/*.DashBoardElemente:hover {*/
    /*-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);*/
    /*-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);*/
    /*box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);*/
/*}*/

.DashBoardContentElement {
    position: relative;
    vertical-align: top;
    float: left;
    display: inline-block;
    box-sizing: border-box;
    width: 255px;
    height: auto;
    padding: 5px;
    margin-right: 14px;
    margin-top: 14px;

    border:1px solid #adadad;
}

.DashBoardContentElement:last-child {
    margin-bottom: 14px;
}

.DashBoardContentElementCloser {
    height: 14px;
    margin-top: 14px;
    clear: both;
}

.DashBoardButton.Active{
    color: green;
}




.DashBoardChartBoxContainer {
    position: fixed;
    /*display: none;*/
    z-index: 1000;
    top:50%;
    left:50%;
    width:1200px;
    margin-left:-600px;
    margin-top: -300px;
    height:600px;
    background-color: white;
    overflow: hidden;

    -webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,1);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,1);
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,1);

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}


