@import url(side-menu.css);
@import url(form.css);
@import url(gridview.css);
@import url(box_popup.css);
@import url(modal_popup.css);

/*Aplica fonte de tamanho 15px nas telas menores que 400px "Classe: modal-title"*/
@media (max-width: 400px) {
    .modal-title {
        font-size: 15px !important
    }
}

@font-face {
    font-family: 'CalibriRegular';
    src: url('Fontes/calibri_1-webfont.eot');
    src: url('calibri_1-webfont.eot?#iefix') format('embedded-opentype'), url('Fontes/calibri_1-webfont.woff') format('woff'), url('Fontes/calibri_1-webfont.ttf') format('truetype'), url('calibri_1-webfont.svg#CalibriRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SegoeWP';
    src: url('Fontes/SegoeWP.ttf');
}

/*#region RESET */

* {
    outline: none;
}

html {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

* html #wrapper {
    height: 100%; /* hack para IE6 que trata height como min-height */
}

body {
    /*background: url('../Styles/Imagens/bg.png') repeat-x #ebebeb;*/
    margin: 0px;
    padding: 0px;
    font-family: 'CalibriRegular';
    height: 472px;
    width: 100%; /*1253px;*/
}

a {
    color: #10529d;
    text-decoration: none;
}

    a:hover {
        color: #093f7c;
        text-decoration: underline;
    }

h3 {
    margin: 0px;
    padding: 0px;
}

/*#endregion */

.left {
    float: left;
    overflow: auto;
    height: 251px;
    width: 246px;
}

.left2 {
    float: left;
    overflow: auto;
    height: 346px;
    width: 246px;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

#wrapper {
    min-height: 100%;
    -moz-min-width: 100%;
    -ms-min-width: 100%;
    -o-min-width: 100%;
    -webkit-min-width: 100%;
    min-width: 100%; /*1000px;*/
    position: relative;
    top: 0px;
    left: 0px;
}

/*#region PRINCIPAL */

/*Barra preta superior da tela*/
.detalhe {
    background: url('../Styles/Imagens/bg_detalhe.png') repeat-x;
    height: 8px;
    width: auto;
}

/*Container para o conteúdo entre a barra 'detalhe' e a barra azul 'status'*/
.header {
    background: url('../Styles/Imagens/bg_topo.png') no-repeat #eeeeee;
    /*height: 81px;*/
    width: auto;
    font-family: arial;
}

.logo {
    padding: 8px 0 0 20px;
    width: 240px;
    float: left;
}

.right {
    float: right;
    padding-right: 28px;
}

.titulo {
    color: #484b4d;
    font-size: 32px;
    text-align: right;
    font-family: 'SegoeWP', Arial;
}

.menu_top, .menu_top a {
    color: #15618f;
    font-size: 16px;
}

    .menu_top ul {
        /*margin-right: 30px;*/
        display: inline;
    }

        .menu_top ul li {
            list-style-type: none;
            float: right;
            margin-left: 10px;
        }

            .menu_top ul li span {
                display: block;
                float: left;
                margin-right: 5px;
            }

/* user menu settings */
#dropdown {
    /*display: block;*/
    width: 200px;
    height: 35px;
    line-height: 35px;
    text-align: left;
    position: relative;
    cursor: pointer;
    border-left: 4px solid #739cda;
    background: rgb(242, 242, 242);
    font-size: 1.20em;
    color: #656565;
    font-weight: normal;
    -webkit-box-shadow: 1px 1px 2px #000000;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 1px 2px #000000;
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -ms-box-shadow: 1px 1px 2px #000000;
    -ms-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    box-shadow: 1px 1px 2px #000000;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

    #dropdown:hover {
        color: #898989;
    }

    #dropdown.open {
        background: #5a90e0;
        color: #fff;
        border-left-color: #6c6d70;
    }

    #dropdown ul {
        position: absolute;
        top: 100%;
        left: -4px; /* move content -4px because of container left border */
        width: 200px;
        padding: 5px 0;
        display: none;
        border-left: 4px solid #8e9196;
        background: #fff;
        -webkit-box-shadow: 1px 1px 2px #000000;
        -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 1px 1px 2px #000000;
        -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        -ms-box-shadow: 1px 1px 2px #000000;
        -ms-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        box-shadow: 1px 1px 2px #000000;
        box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

        #dropdown ul li {
            font-size: 0.9em;
            width: 180px;
            text-align: center;
            float: left;
        }

            #dropdown ul li a {
                text-decoration: none;
                display: block;
                color: #447dd3;
                padding: 3px 15px;
            }

                #dropdown ul li a:hover {
                    color: #6fa0e9;
                    background: #e7f0f7;
                }

.loginName {
    padding-left: 0.5em;
    overflow: hidden;
    -moz-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: 150px;
}

.user span {
    /*background: url('../Styles/Imagens/user_icon.png') no-repeat;*/
    width: 22px;
    height: 24px;
    position: relative;
    top: -3px;
}

.img-arredondada-miniatura {
    border: 1px black solid;
    cursor: pointer;
    width: 35px;
    height: 35px;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.img-arredondada {
    display: block;
    margin: 0 auto;
    padding-bottom: 3px;
    width: 70px;
    height: 70px;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

ul#user_spot_links {
    position: absolute;
    top: 28px;
    left: -35px;
    display: none;
}

    ul#user_spot_links li {
        float: none;
        clear: both;
        padding: 5px;
        background-color: #aaa;
        border: 1px solid #999;
        white-space: nowrap;
    }

.user:hover ul#user_spot_links {
    display: block;
}

.config span {
    background: url('../Styles/Imagens/config_icon.png') no-repeat;
    width: 20px;
    height: 20px;
    position: relative;
    top: -1px;
}

.sh_menu {
    width: auto;
}

    .sh_menu img {
        height: 16px;
        width: 19px;
        float: left;
        margin: 0 8px 0 0;
    }

    .sh_menu a {
        color: white;
    }

        .sh_menu a:hover {
            text-decoration: none;
        }

.ativo a:hover {
    text-decoration: underline;
}

.sh_menu span {
    background: url('../Styles/Imagens/menu_icon.png') no-repeat;
    width: 18px;
    height: 14px;
    position: relative;
    top: 2px;
}

.menu-font {
    font-family: arial;
    font-size: 13px;
}

.menu-margin {
    margin-left: 5px;
}

.sair span {
    background: url('../Styles/Imagens/sair_icon.png') no-repeat;
    width: 20px;
    height: 20px;
    position: relative;
    top: -2px;
}

.status {
    background: url('../Styles/Imagens/bg_status.png') repeat;
    /*height: 24px;*/
    color: #ffffff;
    font-size: 14px;
    width: 100%;
}

    .status table {
        padding: 0 25px;
        width: 100%;
    }

    .status span {
        font-size: 16px;
        font-weight: bold;
    }

.content {
    width: 100%;
    width: auto;
    margin: 0 auto 0 0px;
}

.cont_padding {
    padding: 0.2% 1%;
    width: 98%;
}

.conteudo {
    border: 1px solid #cfcfcf;
    width: 100%;
    min-height: 680px;
    padding: 1% 0.2%;
    margin: 0 auto;
}

.footer {
    background: url('../Styles/Imagens/bg_footer.png') repeat-x;
    height: 63px;
    width: 100%;
    position: fixed;
    bottom: 0px;
}

.suporte {
    float: left;
    margin: 10px 30px 0px;
}

.assinatura {
    float: right;
    margin: 10px 30px 0px;
}

    .assinatura p {
        font-size: 11px;
        color: #ffffff;
        margin: 0px;
        text-align: right;
    }

.versao {
    text-align: center;
    color: gray;
}

/*#endregion */

/*#region TELA DE ACESSO NEGADO */

.acesso-negado {
    font-family: 'Arial';
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

    .acesso-negado img {
        max-width: 100%;
        height: 189px;
        margin-right: 2px;
    }

/*#endregion */

/*#region PROPRIEDADES RESPONSIVAS */

@media only screen and (max-width: 843px) {
    .titulo {
        display: none;
    }

    .user {
        display: none;
    }

    .hide {
        display: none;
    }

    .sair, .fix {
        position: relative;
        top: 37px;
    }

    .status {
        background-image: url('../Styles/Imagens/bg_status.png');
        -ms-background-size: contain;
        background-size: contain;
        position: static;
    }
}

@media only screen and (max-width: 553px) {
    .fix {
        display: none;
    }
}

@media only screen and (max-width: 287px) {
    .acesso-negado img {
        display: none;
    }
}

/*#endregion */

.Btn_Adicionar { /* Propiedade do  botão onde ele vai ficar na tela! */
    position: fixed;
    bottom: 2em;
    right: 0.7em;
    text-decoration: none;
    color: white;
    background-color: rgba(51, 20, 20, 0.3);
    font-size: 12px;
    padding: 1em;
    display: none;
}

.circle { /* Define o circulo do botão */
    border-radius: 100% !important;
    text-align: center !important;
    color: #ffffff !important;
}

.circle-sm { /* Tamanho do botão */
    width: 60px;
    padding-top: 15px;
    height: 60px;
    font-size: 25px !important;
}

.bg-success { /* Deixa o fundo azul */
    /*     background: url(../../icon.svg) no-repeat !important;*/
    background-color: #53e69d !important;
}

.di { /* Defini o desplay nele */
    display: inline-block;
}

.CenterSpan span { /* Centraliza o incone de mais dentro do botão */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.checkboxMedioTabela > tbody > tr > td input[type=checkbox] {/* Aumentar o tamanho do checkbox na tabela para melhor visualização obs: em qualquer tela irá ficar do mesmo tamanho  */
    height: 1.7em;
    width: 1.7em;
}

.marginFormgroup { /* Manter margin em baixo para organizar ter uma melhor visualização */
    margin-bottom: 2em !important;
}

.tamanhoColunaBtnAcao > thead > tr > th:first-child{
    width: 10% !important;
}

.tooltip > .tooltip-inner {
    width: auto !important;
    max-width: 350px !important;
}

.treeview-menu > li > a {
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    overflow: hidden !important;
}

.treeview-menu > li > a:hover {
    white-space: normal !important;
    overflow: visible !important;
}

.Sombra {
    box-shadow: 20px 20px 20px grey;
}

.BarraTitulo {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 4px;
    width: 98%;
}

.wrapper-pad {
    position: relative;
    width: 400px;
    height: 100px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.signature-pad {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 100px;
    background-color: white;
}