﻿/*
    CSS Animation
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }


@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}


@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

.swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

/*

   Novo estilo

*/

.ib-minwidth {
    min-width: 100%;
}

.validation-summary-errors ul {
    /*list-style: none;*/
    /*margin-left: -40px*/
}


/* ERROR & LOGIN & LOCKSCREEN*/
.middle-box-error {
    max-width: 400px;
    z-index: 100;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 100px;
}

    .middle-box-error h1 {
        font-size: 170px;
    }

.middle-box {
    max-width: 400px;
    z-index: 100;
    margin: 0 auto;
    padding-top: 50px;
}

.lockscreen.middle-box {
    width: 200px;
    padding-top: 110px;
}

.loginscreen.middle-box {
    width: 300px;
}

.loginColumns {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

.passwordBox {
    max-width: 460px;
    margin: 0 auto;
    padding: 100px 20px 20px 20px;
}

.logo-name {
    color: #e6e6e6;
    font-size: 180px;
    font-weight: 800;
    letter-spacing: -10px;
    margin-bottom: 0;
}

.middle-box h1 {
    font-size: 170px;
}

.wrapper .middle-box {
    margin-top: 140px;
}

.lock-word {
    z-index: 10;
    position: absolute;
    top: 110px;
    left: 50%;
    margin-left: -470px;
}

    .lock-word span {
        font-size: 100px;
        font-weight: 600;
        color: #e9e9e9;
        display: inline-block;
    }

    .lock-word .first-word {
        margin-right: 160px;
    }

/*

   Recursos para paginas customizadas

*/

/* IBOX */
.ibox {
    clear: both;
    margin-bottom: 25px;
    margin-top: 0;
    padding: 0;
}


    .ibox.collapsed .ibox-content {
        display: none;
    }

    .ibox.collapsed .fa.fa-chevron-up:before {
        content: "\f078";
    }

    .ibox.collapsed .fa.fa-chevron-down:before {
        content: "\f077";
    }

    .ibox:after, .ibox:before {
        display: table;
    }

.ibox-title {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    /*background-color: #ffffff;*/
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 3px 0 0;
    color: inherit;
    margin-bottom: 0;
    padding: 14px 15px 7px;
    min-height: 48px;
    /*cursor: move;*/
}

.ibox-content {
    /*background-color: #ffffff;*/
    color: inherit;
    padding: 15px 20px 20px 20px;
    border-color: #e7eaec;
    border-image: none;
    border-style: solid solid none;
    border-width: 1px 0;
}

.ibox-footer {
    color: inherit;
    border-top: 1px solid #e7eaec;
    font-size: 90%;
    /*background: #ffffff;*/
    padding: 10px 15px;
}


.ibox-heading {
    /*background-color: #f3f6fb;*/
    border-bottom: none;
}

    .ibox-heading h3 {
        font-weight: 200;
        font-size: 24px;
    }

.ibox-title h5 {
    display: inline-block;
    font-size: 14px;
    margin: 0 0 7px;
    padding: 0;
    text-overflow: ellipsis;
    /*float: left;*/
}

.ibox-title .label {
    float: left;
    margin-left: 4px;
}

.ibox-tools {
    display: block;
    float: none;
    margin-top: 0;
    position: relative;
    padding: 0;
    text-align: right;
}

    .ibox-tools a {
        cursor: pointer;
        margin-left: 5px;
    }


    .ibox-tools .dropdown-menu > li > a {
        padding: 4px 10px;
        font-size: 12px;
    }

.ibox .ibox-tools.open > .dropdown-menu {
    left: auto;
    right: 0;
}

.resizable-panels .ibox {
    clear: none;
    margin: 10px;
    float: left;
    overflow: hidden;
}

    .resizable-panels .ibox .ibox-content {
        height: calc(100% - 49px);
    }

.ibox-content h1, .ibox-content h2, .ibox-content h3, .ibox-content h4, .ibox-content h5,
.ibox-title h1, .ibox-title h2, .ibox-title h3, .ibox-title h4, .ibox-title h5 {
    margin-top: 5px;
}

.ibox-content.text-box {
    padding-bottom: 0;
    padding-top: 15px;
}


/* WRAPPER */
.wrapper.wrapper-content {
    padding: 40px;
}

.wrapper {
    padding: 0 20px;
}

.wrapper-content {
    padding: 20px 10px 40px;
}

.wrapper .middle-box {
    margin-top: 140px;
}


/* STAT */
.stat-percent {
    float: right;
}

.stat-list li:first-child {
    margin-top: 0;
}

.stat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .stat-list li {
        margin-top: 15px;
        position: relative;
    }


/* FONT */
.font-bold {
    font-weight: bold;
}


/* FLOT CHART  */
.float-e-margins {
    margin-bottom: 5px;
}

.flot-chart {
    display: block;
    height: 200px;
}

.widget .flot-chart.dashboard-chart {
    display: block;
    height: 120px;
    margin-top: 40px;
}

.flot-chart.dashboard-chart {
    display: block;
    height: 180px;
    margin-top: 40px;
}

.flot-chart-content {
    width: 100%;
    height: 100%;
}

.flot-chart-pie-content {
    width: 200px;
    height: 200px;
    margin: auto;
}


/* FORM-CHAT e SMALL-CHAT */
.small-chat-box .form-chat {
    padding: 10px 10px;
}

.open-small-chat {
    height: 38px;
    width: 38px;
    display: block;
    background: #1ab394;
    padding: 9px 8px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

    .open-small-chat:hover {
        color: white;
        background: #1ab394;
    }

#small-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

    #small-chat .badge {
        position: absolute;
        top: -3px;
        right: -4px;
    }


.small-chat-box {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 75px;
    background: #fff;
    border: 1px solid #e7eaec;
    width: 230px;
    height: 320px;
    border-radius: 4px;
}

    .small-chat-box.ng-small-chat {
        display: block;
    }

.body-small .small-chat-box {
    bottom: 70px;
    right: 20px;
}

.small-chat-box.active {
    display: block;
}

.small-chat-box .heading {
    background: #2F4050;
    padding: 8px 15px;
    font-weight: bold;
    color: #fff;
}

.small-chat-box .chat-date {
    opacity: 0.6;
    font-size: 10px;
    font-weight: normal;
}

.small-chat-box .content {
    padding: 15px 15px;
}

    .small-chat-box .content .author-name {
        font-weight: bold;
        margin-bottom: 3px;
        font-size: 11px;
    }

    .small-chat-box .content > div {
        padding-bottom: 20px;
    }

    .small-chat-box .content .chat-message {
        padding: 5px 10px;
        border-radius: 6px;
        font-size: 11px;
        line-height: 14px;
        max-width: 80%;
        background: #f3f3f4;
        margin-bottom: 10px;
    }

        .small-chat-box .content .chat-message.active {
            background: #1ab394;
            color: #fff;
        }

    .small-chat-box .content .left {
        text-align: left;
        clear: both;
    }

        .small-chat-box .content .left .chat-message {
            float: left;
        }

    .small-chat-box .content .right {
        text-align: right;
        clear: both;
    }

        .small-chat-box .content .right .chat-message {
            float: right;
        }



/* BACKGROUNDS */
.gray-bg {
    background-color: #f3f3f4;
}

.white-bg {
    background-color: #ffffff;
}

.navy-bg {
    background-color: #1ab394;
    color: #ffffff;
}

.blue-bg {
    background-color: #1c84c6;
    color: #ffffff;
}

.lazur-bg {
    background-color: #23c6c8;
    color: #ffffff;
}

.yellow-bg {
    background-color: #f8ac59;
    color: #ffffff;
}

.red-bg {
    background-color: #ED5565;
    color: #ffffff;
}

.black-bg {
    background-color: #262626;
}



/* FORMULARIO DE LOGIN */
.login-columns {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 20px 20px 20px;
}


/* DIVERSOS */

.no-margins {
    margin: 0 !important;
}


/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 10px;
}

.nav-dashboard {
    min-height: 60px;
}



/* Override the default bootstrap behavior where horizontal description lists
   will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    /*max-width: 280px;
    color: black;*/
    max-width: 370px;
}

.maximum-width {
    max-width: 100% !important;
}


.dl-horizontal-expanded dt {
    float: left;
    width: 25%;
    min-height: 25px;
    overflow: hidden;
    clear: left;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}

.dl-horizontal-expanded dd {
    min-height: 25px;
}

.details-title {
    min-height: 25px;
    font-weight: bold;
    text-align: right;
    padding-bottom: 0;
    padding-right: 5px;
    padding-left: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
}

.details-data {
    min-height: 25px;
    padding-left: 5px;
    padding-bottom: 0;
    float: left;
}



.page-break {
    display: block;
    page-break-before: always;
}

.table-print {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}

    .table-print .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: lightgray;
    }

    .table-print > thead > tr > th,
    .table-print > tbody > tr > th,
    .table-print > tfoot > tr > th,
    .table-print > thead > tr > td,
    .table-print > tbody > tr > td,
    .table-print > tfoot > tr > td {
        padding: 5px;
        vertical-align: top;
        border-top: 0px;
    }

    .table-print a:not(.btn) {
        color: blue;
        text-decoration: underline;
    }

.table-print-small {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}

    .table-print-small > thead > tr > th,
    .table-print-small > tbody > tr > th,
    .table-print-small > tfoot > tr > th,
    .table-print-small > thead > tr > td,
    .table-print-small > tbody > tr > td,
    .table-print-small > tfoot > tr > td {
        padding: 5px;
        vertical-align: top;
        border-top: 0px;
    }

    .table-print-small .table-striped > tbody > tr:nth-of-type(odd) {
        background-color: lightgray;
    }

    .table-print-small a:not(.btn) {
        color: blue;
        text-decoration: underline;
    }

.table-print-linetop {
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
}

    .table-print-linetop > thead > tr > th,
    .table-print-linetop > tbody > tr > th,
    .table-print-linetop > tfoot > tr > th,
    .table-print-linetop > thead > tr > td,
    .table-print-linetop > tbody > tr > td,
    .table-print-linetop > tfoot > tr > td {
        padding: 5px;
        vertical-align: top;
        border-top: 1px solid gray;
    }

    .table-print-linetop a:not(.btn) {
        color: blue;
        text-decoration: underline;
    }

.body-print {
    font-size: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: white;
    color: black;
    margin-top: 0px;
    padding-top: 0px;
}



.world_map {
    background-image: url("../../../images/landing/mapa.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.form-row {
    margin-left: 0px;
    margin-right: 0px;
    min-height: 40px;
}

body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/*
    GRID E BOX
    Recursos para formatação de Grid e Box
*/


.grid-btn-pagesize {
    padding-left: 20px;
    text-align: right;
}

.grid-btn-group {
    padding-bottom: 60px;
    width: 100%;
    display: block;
}

.form-grid a:not(.btn) {
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .action-btn {
        width: 100%;
        max-width: 100%;
        margin-right: 15px;
        margin-bottom: 10px;
    }

    .form-actions {
        margin-left: -15px;
        text-align: left;
    }

    .text-sm-center {
        text-align: center;
    }

    .nobody-content {
        padding-left: 0px;
        padding-right: 0px;
        margin-left: -1px;
        margin-right: -15px;
    }
}

@media (min-width: 768px) {
    .action-btn {
        min-width: 200px;
        max-width: 280px;
        margin-right: 30px;
        margin-bottom: 10px;
    }

    .form-actions {
        text-align: center;
    }

    .text-md-right {
        text-align: right;
    }

    .nobody-content {
        padding-left: 0px;
        padding-right: 0px;
        margin-left: -1px;
        margin-right: -1px;
    }
}

/*@media (min-width: 991px) {
     .action-btn {
         width: 280px;
         margin-right: 100px;
         margin-bottom: 10px;
         margin-left: -15px;
     }
     .form-actions {
         text-align: center;
     }
 }*/

.grid-img {
    width: 20px;
    height: 20px;
    padding-right: 4px;
}

.grid-btn-xs {
    /*background: transparent;
    border:none;*/
}

@media screen and (max-width: 767px) {

    .grid-btn {
        min-height: 45px;
    }

    .grid-xs-novisible {
        visibility: hidden;
        min-height: 0px;
        height: 0px;
        width: 0px;
        border-width: 0px;
        padding: 0px;
        margin: 0px;
    }
}


@media screen and (min-width: 768px) and (max-width: 991px) {

    .grid-btn {
        min-height: 45px;
        margin-bottom: 10px;
    }

    .grid-md-novisible {
        visibility: hidden;
        height: 0px;
        min-height: 0px;
        border-width: 0px;
        padding: 0px;
        margin: 0px;
        border: none;
    }
}

@media (min-width: 992px) {
    .grid-btn {
        min-height: 45px;
        margin-bottom: 10px;
    }
}

.container-fluid-nav div {
    display: flex;
    justify-content: space-around;
}

.navbar-nav.navbar-center {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}
