﻿@charset "UTF-8";

:root {
    /* Primary Colors - Tons de Azul do Prime Antigo */
    --primary-color100: #EFF8FB;
    --primary-color200: #C1E4F0;
    --primary-color300: #90CFE4;
    --primary-color400: #63BCD9;
    --primary-color500: #32A6CD;
    --primary-color600: #2A8CAC;
    --primary-color700: #22718C;
    --primary-color800: #144352;
    --primary-color900: #0A2129;
    --main-primary-color: #00809F; /* main-color */
    /* Secondary Colors - Tons de Verde Pastel (Site da Eco) */
    /* Secondary 1 */
    --secondary-color-a-100: #EFFAF9;
    --secondary-color-a-200: #C4EDE8;
    --secondary-color-a-300: #96DFD5;
    --secondary-color-a-400: #6BD1C4;
    --secondary-color-a-500: #3CC3B1;
    --secondary-color-a-600: #309C8E;
    --secondary-color-a-700: #226D63;
    --secondary-color-a-800: #184E47;
    --secondary-color-a-900: #0C2723;
    /* Secondary 2 */
    --secondary-color-b-100: #EBF4FF;
    --secondary-color-b-200: #B3E8FF;
    --secondary-color-b-300: #75D6FF;
    --secondary-color-b-400: #3DC5FF;
    --secondary-color-b-500: #00B2FF;
    --secondary-color-b-600: #008FCC;
    --secondary-color-b-700: #006894;
    --secondary-color-b-800: #004766;
    --secondary-color-b-900: #002433;
    /* Grayscale */
    --white: #fff;
    --gray100: #F8F9FA;
    --gray200: #E9ECEF;
    --gray300: #DEE2E6;
    --gray400: #CED4DA;
    --gray500: #ADB5BD;
    --gray600: #6C757D;
    --gray700: #495057;
    --gray800: #343A40;
    --gray900: #212529;
    --black: #000;
    /* Complementar */
    --complementary01: #9E4C00;
    /* Cores de Destaque */
    --highlight-color01: #BEF272 /* verde de destaque - logo sistema (tom mais amarelo) */;
    --highlight-color02: #A3F268; /* verde de destaque - logo sistema (tom mais verde) */
    --highlight-color03: #B8336A; /* rosa de destaque */
    --highlight-color04: #C490D1; /* lilás de destaque */

    /* transparency: 100% - 80% - 64% - 56% - 40% - 24% - 16% - 8% - 4% */

    font-size: 62.5%; /* 10px */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-size: 1.6rem;
    font-family: var(--font-main);
}


#infovis
{
    position: relative;
    /*width: 1300px;*/
    width: 100%;
    height: 530px;
    overflow: hidden;
}

#infovisCrianca
{
    position: relative;
    width: 1260px;
    height: 530px;
    overflow: hidden;
}

.jit-autoadjust-label
{
    padding: 15px;
}

#update, #restore
{
    text-align: center;
    width: 100px;
    margin: 0px 35px 10px 35px;
}

.button
{
    display: inline-block;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 14px / 100% Arial, Helvetica, sans-serif;
    padding: 0.5em 1em 0.55em;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 0.5em;
    -moz-border-radius: 0.5em;
    border-radius: 0.5em;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
}

    .button:hover
    {
        text-decoration: none;
    }

    .button:active
    {
        position: relative;
        top: 1px;
    }

/* white */
.white
{
    color: #606060;
    border: solid 1px #b7b7b7;
    background: #fff;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
    background: -moz-linear-gradient(top, #fff, #ededed);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
}

    .white:hover
    {
        background: #ededed;
        background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
        background: -moz-linear-gradient(top, #fff, #dcdcdc);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
    }

    .white:active
    {
        color: #999;
        background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
        background: -moz-linear-gradient(top, #ededed, #fff);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
    }


#container
{
    width: 1000px;
    height: 600px;
    margin: 0 auto;
    position: relative;
}

#left-container,
#right-container,
#center-container
{
    height: 600px;
    position: absolute;
    top: 0;
}

#left-container, #right-container
{
    width: 200px;
    color: #686c70;
    text-align: left;
    overflow: auto;
    background-color: #fff;
    background-repeat: no-repeat;
    border-bottom: 1px solid #ddd;
}

#left-container
{
    left: 0;
    background-image: url('col2.png');
    background-position: center right;
    border-left: 1px solid #ddd;
}

#right-container
{
    right: 0;
    background-image: url('col1.png');
    background-position: center left;
    border-right: 1px solid #ddd;
}

    #right-container h4
    {
        text-indent: 8px;
    }

.text
{
    margin: 7px;
}

#inner-details
{
    font-size: 0.8em;
    list-style: none;
    margin: 7px;
}

#log
{
    position: absolute;
    top: 10px;
    font-size: 1.0em;
    font-weight: bold;
    color: #23A4FF;
}

.LabelTree {
    width: 59px;
    height: 48px;
    cursor: pointer;
    font-size: 0.8em;
    text-align: center;
    /*padding-top: 7px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-left: 9px;*/
}


/*TOOLTIPS*/
.tip
{
    color: #111;
    width: 139px;
    border: 1px solid;
    background-color: white;
    border: 1px solid #ccc;
    -moz-box-shadow: #555 2px 2px 8px;
    -webkit-box-shadow: #555 2px 2px 8px;
    -o-box-shadow: #555 2px 2px 8px;
    border-radius: 3px 2px 2px 2px;
    box-shadow: #555 2px 2px 8px;
    opacity: 0.9;
    filter: alpha(opacity=90);
    font-size: 10px;
    font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
    padding: 7px;
}

.circle
{
    width: 15px;
    height: 15px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
}

.toolTip
{
    position: absolute;
    display: none;
    width: 400px;
    height: 140px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background: #ededed;
    z-index: 1;
}
