﻿#page2 {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #e9e9e9;
    transform: translateX(-100%);
    transition: transform ease-in-out 0.8s;
    overflow-x: hidden;
    z-index: 10;
}



.dash_body {
    position: relative;
    left: 48px;
    top: 48px;
    width: 98%;
    height: auto;
    background-color: #e9e9e9;
    transition: all 1s ease-in-out;
}

.dash_row {
    position: relative;
}

.dash_row_content {
    display: flex;
    flex-flow: row wrap;
}


.dash_row h2 {
    position: relative;
    font-family: "Segoe UI Semibold", Arial, sans-serif;
    color: rgb(62, 62, 62);
    left: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
}

.dash_tile {
    position: relative;
    margin-left: 20px;
    margin-bottom: 20px;
    width: 260px;
    height: 260px;
    background-color: #fff;
    color: rgb(62, 62, 62);
}

.dash_tile_header {
    position: relative;
    width: 70%;
    top: 20px;
    left: 20px;
    font-size: 1.6em;
}

.dash_tile_content {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 3.2em;
}

.small_tile_content {
    font-size: 0.5em;
}

.small_extension {
    font-size: 0.34em;
}

.small_extension_alt {
    font-size: 0.7em;
}
.smallercontent {
    position: relative;
    bottom: 6px;
    font-size: 0.78em;
}


/*Tooltip*/

.dash_tile .dash_tile_tooltip {
    visibility: hidden;
    position: absolute;
    left: 62px;
    bottom: 94%;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: opacity .7s;
}

.dash_tile:hover .dash_tile_tooltip {
    visibility: visible;
    opacity: 1;
}

.dash_tile_tooltip::after {
    content: "";
    position: absolute;
    top: calc( 100% + 4px);
    right: 89%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}



/*PIECHART*/
.dash_pie_tile {
    position: relative;
    background-color: #fff;
    height: 260px;
    width: 670px;
    margin-left: 20px;
    margin-bottom: 20px;
    color: rgb(62, 62, 62);
}

.pieWrapper {
    position: relative;
    top: 55px;
    left: 20px;
    float: left;
    border-radius: 50%;
    width: 12rem;
    height: 12rem;
}


.pie {
    position: relative;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slice, .slice90, .slice90plus, .slice180plus {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    z-index:1;
}

.slice90 {
    height: 1000%;
}

.slice90plus {
    transform-origin: 0 center;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slice180plus {
    transform-origin: center center;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 0;
}

.cover_pie {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    border-radius: 50%;
    width: 7rem;
    height: 7rem;
    background-color: #fff;
    z-index:2;
}

.dash_pie_header {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.6em;
}


.pie_info_container {
    position: relative;
    top: 55px;
    left: 45px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    width: 420px;
    height: 175px;
}


.pie_info_box {
    position: relative;
}

.pie_info_content {
    position: absolute;
    top: 0px;
    left: 16px;
    font-size: 1.1em;
    font-family: "Segoe UI Semibold", Arial, sans-serif;
}

    .pie_info_content.extension {
        left: 12px;
        top: -8px;
    }

.pie_info_extension {
    font-size: 1.4em;
}

.pie_info_text {
    position: absolute;
    white-space:nowrap;
    bottom: 0px;
    left: 16px;
    margin-bottom: 5px;
}

.pie_info_color {
    width: 8px;
    height: 48px;
    float: left;
}

.cover_pie_percent {
    position: absolute;
    right: 40px;
    top: 39px;
    font-size: 2.5em;
}

.percent_pie {
    position: absolute;
    z-index:2;
}


@media screen and (orientation: portrait) {
    .dash_body {
        left: 0px;
    }
}



.dash_Loading {
    margin: 107px;
    margin-top: 28px;
    width: 70px;
    height: 70px;
    background-image: url('../../Home/media/tenor.gif');
    background-size: contain;
}
