/* FUNDAÇÃO ESCOLA
----------------------------------------------------------
CSS ENCODING
IMPORTA FONTS EXTERNA
IMPORTA FONTS LOCAL
IMPORTA CSS
BODY
TOPO
MENU HORIZONTAL
MENU LATERAL
DATATABLES
----------------------------------------------------------
*/

/***** CSS ENCODING *****/
@charset "utf-8";

/***** IMPORTA FONTS *****/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,300);

/***** IMPORTA FONTS LOCAL  *****/
@import url("../fonts/font-awesome-4.7.0/css/font-awesome.min.css");

/***** IMPORTA CSS *****/
@import url("bootstrap.min.css");
@import url("formValidation.css");
@import url("bootstrap-datepicker.min.css");
@import url("plugins/dataTables.bootstrap.css");
@import url("summernote.css");
@import url("bootstrap-select.min.css");
@import url("bootstrap-wizard.css");

/***** BODY *****/
html {
    height: 100%;
}
body {
    height: 90%;
    margin-top: 50px;
    font-family: 'Open Sans', sans-serif !important;
    font-style: normal;;
}
@media(min-width:768px) {
    body {
        margin-top: 50px;
    }
}

#wrapper {
    padding-left: 0;
}

#page-wrapper {
    width: 100%;
    padding: 0;
    background-color: #fff;
}

@media(min-width:768px) {
    #wrapper {
        padding-left: 225px;
    }

    #page-wrapper {
        padding: 10px;
    }
}

/***** TOPO *****/
.navbar-inverse {
  background-color: #2A3F54;
  border-color: #73879C;
  padding-right: 25px;
}

/***** MENU HORIZONTAL *****/
.top-nav {
    padding: 0 15px;
}
.top-nav>li {
    display: inline-block;
    float: left;
}
.top-nav>li>a {
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 20px;
    color: #EEE;
}
.top-nav>li>a:hover,
.top-nav>li>a:focus,
.top-nav>.open>a,
.top-nav>.open>a:hover,
.top-nav>.open>a:focus {
    color: #fff;
    background-color: #73879C;
}

.top-nav>.open>.dropdown-menu {
    float: left;
    position: absolute;
    margin-top: 0;
    border: 1px solid rgba(0,0,0,.15);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.top-nav>.open>.dropdown-menu>li>a {
    white-space: normal;
}

/***** MENU LATERAL *****/
@media(min-width:768px) {
    .side-nav {
        position: fixed;
        top: 51px;
        left: 225px;
        width: 225px;
        margin-left: -225px;
        border: none;
        border-radius: 0;
        overflow-y: auto;
        background-color: #73879C; /*#2A3F54; #222*/
        bottom: 0;
        overflow-x: hidden;
        padding-bottom: 40px;
    }
    .side-nav>li>a {
        width: 225px;
    }
    .side-nav li a:hover,
    .side-nav li a:focus {
        outline: none;
        background-color: #2A3F54 !important; /*#000*/
    }
}
.side-nav>li>ul {
    padding: 0;
}
.side-nav>li>ul>li>a {
    display: block;
    padding: 3px 15px 3px 30px;
    text-decoration: none;
    color: #999;
    font-size: 13px;
}
.side-nav>li>ul>li>a:hover {
    color: #fff;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #2A3F54;
    border-bottom:  1px #EEE solid;
}

/***** DATATABLES *****/
div.dataTables_filter {
    float: right;
}
div.dataTables_filter input {
    display: inline-block;
    float: right;
}
div.dataTables_info {
    float: left;
}
div.dataTables_paginate {
    float: right;
}

/***** Page breadcrumb *****/
.page-title {
    padding: 10px 0 0 15px ;
    font-size: 26px;
    letter-spacing: -1px;
    display: block;
    color: #666;
    margin: 0px 0px 15px 0px;
    font-weight: 300;
    font-family: 'Open Sans', sans-serif;
}

.page-bar {
    background-color: #eee;
    margin-bottom: 25px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 25px;
    padding-right: 25px;
}
.page-bar:before, 
.page-bar:after {
    content: " ";
    display: table;
}
.page-bar:after {
    clear: both;
}
.page-bar .page-breadcrumb {
    display: inline-block;
    float: left;
    padding: 8px;
    margin: 0;
    list-style: none;
}
.page-bar .page-breadcrumb > li {
    display: inline-block;
}
.page-bar .page-toolbar {
    display: inline-block;
    float: right;
    padding: 0;
}


/*PAINEL*/
.panel {
  margin-bottom: 20px;
  background-color: #2A3F54;
  color: #fff;
  border: 0px solid transparent;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
          box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.panel-footer {
    padding: 10px 15px;
    background-color: #ccc;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.form-control {
    border-radius: 0px;
}
.btn {
    border-radius: 0px;
}
