* {
    margin: 0;
    padding: 0;
}

body {
    color: #666;
    font-family: 'Roboto', sans-serif;
    background: #f4f4f4;
    font-weight: 400;
    font-size: 15px;
}

h2.titulo-secundario {
    margin: 30px 0 0 0;
    padding-bottom: 6px;
    font-weight: normal;
    border-bottom: 1px solid #d2d2d2;
    color: #013068;
    font-size: 22px;
}

.botoes {
    text-align: right;
    margin-top: 30px;
}

.btn {
    color: white;
    padding: 8px 12px 6px 12px;
    border-radius: 4px;
    background: #f19800;
    transition: background ease 0.5s;
}

    .btn:focus {
        color: #fff;
    }

    .btn:hover {
        background: #F1A602;
        transition: background ease 0.5s;
        color: #fff;
    }

    .btn i {
        margin-right: 2px;
    }

.btn-disciplinas {
    background: #fff;
    color: #666;
    border: 1px solid #d2d2d2;
}

    .btn-disciplinas:hover {
        background: #fff;
        color: #666;
        border: 1px solid #0076b3;
    }

    .btn-disciplinas:focus {
        color: #666;
    }

.btn-vermelho {
    background: #fff;
    color: #666;
    border: 1px solid #d2d2d2;
}

    .btn-vermelho:hover {
        background: #fff;
        color: #666;
        border: 1px solid #df706d;
    }

    .btn-vermelho:focus {
        color: #666;
    }

.btn.btn-selected {
    background: #0076b3;
    color: #fff;
    border: 1px solid #0076b3;
}

    .btn.btn-selected:hover {
        background: #0088cc;
        color: #fff;
        border: 1px solid #0088cc;
    }

.btn-vermelho.btn-selected {
    background: #df706d;
    color: #fff;
    border: 1px solid #df706d;
}

    .btn-vermelho.btn-selected:hover {
        background: #e38582;
        color: #fff;
        border: 1px solid #df706d;
    }

.btn-cancelar {
    background: #ccc;
    float: left;
}

.btn.btn-cinza {
    background: #c4c4c4;
    transition: background ease 0.5s;
    float: left;
}

    .btn.btn-cinza:hover, .btn.btn-cinza:active, .btn.btn-cinza:focus {
        background: #d4d4d4;
        color: #fff;
        transition: background ease 0.5s;
        outline: 0
    }

.btn:disabled {
    cursor: not-allowed !important;
    border: 1px solid #C6C6C6 !important;
    background: #e2e2e2 !important
}

    .btn:disabled:hover, btn:disabled:focus {
        background: #e2e2e2 !important;
        border: 1px solid #C6C6C6 !important;
        cursor: not-allowed !important;
    }

.btn-continuar:disabled {
    cursor: not-allowed !important;
    border: 1px solid #C6C6C6 !important;
    background: #c4c4c4 !important
}

    .btn-continuar:disabled:hover, btn:disabled:focus {
        background: #c4c4c4 !important;
        border: 1px solid #C6C6C6 !important;
        cursor: not-allowed !important;
    }

select:disabled {
    cursor: not-allowed !important;
    border: 1px solid #C6C6C6 !important;
    background: #e2e2e2 !important
}

    select:disabled:hover, select:disabled:focus {
        background: #e2e2e2 !important;
        border: 1px solid #C6C6C6 !important
    }

.hideButton {
    display: none;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    padding: 15px 0 15px 0;
    width: 100%;
    background: #013068;
    -moz-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    -webkit-box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    #header #logo-div {
        text-align: center;
    }

    #header #logo {
        height: 51px;
    }

    #header .topo-azul #nome-menu {
        color: #fff;
        font-size: 9px;
        margin-top: 11px;
        font-family: Roboto;
    }

    #header .burger-button {
        float: left;
        margin: 0 10px 0 0;
    }

        #header .burger-button label {
            display: block;
            cursor: pointer;
            /* background:rgba(0, 0, 0, 0.3) none repeat scroll 0 0; */
            background: #002446;
            margin-bottom: 0 !important;
            padding: 10px 10px 6px 10px;
            -moz-border-radius: 4px;
            -webkit-border-radius: 4px;
            border-radius: 4px;
            -webkit-transition: background 0.6s ease;
            -moz-transition: background 0.6s ease;
            -ms-transition: background 0.6s ease;
            -o-transition: background 0.6s ease;
            transition: background 0.6s ease;
        }

            #header .burger-button label:hover {
                background: #F19800;
                -webkit-transition: background 0.6s ease;
                -moz-transition: background 0.6s ease;
                -ms-transition: background 0.6s ease;
                -o-transition: background 0.6s ease;
                transition: background 0.6s ease;
            }

        #header .burger-button .burger {
            position: relative;
            margin-top: 8px;
            margin-bottom: 8px;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            #header .burger-button .burger, #header .burger-button .burger::before, #header .burger-button .burger::after {
                display: block;
                width: 25px;
                height: 3px;
                background-color: #fff;
                border-radius: 4px;
                -webkit-transition-property: background-color, -webkit-transform;
                -moz-transition-property: background-color, -moz-transform;
                -o-transition-property: background-color, -o-transform;
                transition-property: background-color, transform;
                -webkit-transition-duration: .3s;
                -moz-transition-duration: .3s;
                -o-transition-duration: .3s;
                transition-duration: .3s;
            }

                #header .burger-button .burger::before, #header .burger-button .burger::after {
                    position: absolute;
                    content: "";
                }

                #header .burger-button .burger::before {
                    top: -8px;
                }

                #header .burger-button .burger::after {
                    top: 8px;
                }

                #header .burger-button .burger.actived {
                    background-color: transparent;
                }

                    #header .burger-button .burger.actived::before {
                        -webkit-transform: translateY(8px) rotate(45deg);
                        -moz-transform: translateY(8px) rotate(45deg);
                        -ms-transform: translateY(8px) rotate(45deg);
                        -o-transform: translateY(8px) rotate(45deg);
                        transform: translateY(8px) rotate(45deg);
                    }

                    #header .burger-button .burger.actived::after {
                        -webkit-transform: translateY(-8px) rotate(-45deg);
                        -moz-transform: translateY(-8px) rotate(-45deg);
                        -ms-transform: translateY(-8px) rotate(-45deg);
                        -o-transform: translateY(-8px) rotate(-45deg);
                        transform: translateY(-8px) rotate(-45deg);
                    }

    #header #search {
        float: left;
    }

        #header #search fieldset {
            position: relative;
        }

        #header #search .search-icon {
            position: absolute;
            top: 5px;
            right: 10px;
            width: 30px;
            height: 45px;
            border: none;
            background: transparent;
        }

        #header #search #search-result {
            position: absolute;
            top: 54px;
            left: 0;
            padding: 0;
            margin: 0;
            width: 100%;
            max-height: 400px;
            list-style: none;
            overflow-y: scroll;
            background: #FFF;
            -moz-box-shadow: 0 0 10px rgba(102,102,102,0.3);
            -webkit-box-shadow: 0 0 10px rgba(102,102,102,0.3);
            box-shadow: 0 0 10px rgba(102,102,102,0.3);
        }

            #header #search #search-result .list-item {
                border-left: 1px solid transparent;
            }

                #header #search #search-result .list-item:hover {
                    border-left-color: #F19800;
                }

    #header #user-welcome {
        display: table;
        float: right;
        margin-top: 7px;
    }

        #header #user-welcome .img-profile {
            float: left;
            display: inline-block;
            -moz-border-radius: 50%;
            -webkit-border-radius: 50%;
            border-radius: 50%;
        }

        #header #user-welcome .anchor {
            display: table-cell;
            vertical-align: middle;
            color: #fff;
        }

        #header #user-welcome .username {
            float: left;
            margin-left: 10px;
        }

        #header #user-welcome #burger-user {
            float: right;
            margin: 15px 0 0 10px !important;
            cursor: pointer;
        }

#rodape-fixed {
    width: 100%;
    background: #fff;
    padding: 7px;
    font-size: 13px;
    text-align: center;
    color: #013068;
    ;
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 10px #ccc;
    z-index: 1000000;
}

#sidebar #sidebar-checkbox:checked ~ #sidebar-nav {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

    #sidebar #sidebar-checkbox:checked ~ #sidebar-nav .sidebar-back:hover ~ .sidebar-nav-list .sidebar-item-label {
        visibility: visible;
    }

    #sidebar #sidebar-checkbox:checked ~ #sidebar-nav .sidebar-nav-list {
        visibility: visible;
    }

#sidebar #sidebar-lum-contentheckbox:checked ~ .sidebar-popup-item {
    display: block;
}

#sidebar .sidebar-back {
    position: absolute;
    top: 50%;
    right: -31px;
    margin-top: -124px;
    padding: 5px 10px 8px 10px;
    cursor: pointer;
    background: #FFF;
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    #sidebar .sidebar-back:before {
        content: "\203a";
        font-size: 2em;
        color: #666;
    }

#sidebar #sidebar-nav {
    position: fixed;
    top: 82px;
    left: 0;
    z-index: 9999;
    width: 58px;
    height: 93%;
    background: #FFF;
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    -moz-transition: all .4s ease-out,width .2s linear;
    -o-transition: all .4s ease-out,width .2s linear;
    -webkit-transition: all .4s ease-out,width .2s linear;
    transition: all .4s ease-out,width .2s linear;
}

    #sidebar #sidebar-nav:hover {
        width: 250px;
    }

#sidebar .sidebar-nav-list {
    float: left;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    list-style: none;
    visibility: hidden;
}

    #sidebar .sidebar-nav-list:hover {
        overflow-y: auto;
    }

        #sidebar .sidebar-nav-list:hover .sidebar-nav-item .sidebar-item-label {
            visibility: visible;
            opacity: 1;
        }

    #sidebar .sidebar-nav-list .sidebar-nav-item {
        position: relative;
        float: left;
        width: 100%;
        white-space: nowrap;
    }

        #sidebar .sidebar-nav-list .sidebar-nav-item:last-child {
            margin-bottom: 20px !important;
        }

        #sidebar .sidebar-nav-list .sidebar-nav-item:hover > .sub-nav-list {
            max-height: 300px;
        }

        #sidebar .sidebar-nav-list .sidebar-nav-item:hover > a {
            background: #003364;
        }

            #sidebar .sidebar-nav-list .sidebar-nav-item:hover > a .icon {
                fill: #FFF;
            }

            #sidebar .sidebar-nav-list .sidebar-nav-item:hover > a .sidebar-item-label, #sidebar .sidebar-nav-list .sidebar-nav-item:hover > a .sidebar-item-label:before {
                color: #FFF;
            }

        #sidebar .sidebar-nav-list .sidebar-nav-item.has-subnav .sidebar-item-label:before {
            content: "\203a";
            position: absolute;
            top: 12px;
            right: 15px;
            font-size: 1.5em;
            color: #666;
        }

    #sidebar .sidebar-nav-list .sub-nav-list .sidebar-sub-nav-item .sidebar-item-label:before {
        display: none;
    }

    #sidebar .sidebar-nav-list .sidebar-nav-item .icon {
        margin-right: 10px;
        vertical-align: top;
        width: 25px;
        height: 25px;
        float: left;
    }

    #sidebar .sidebar-nav-list .sidebar-nav-item .sidebar-item-label {
        font-size: 1em;
        line-height: 25px;
        color: #666;
        visibility: hidden;
        opacity: 1;
    }

    #sidebar .sidebar-nav-list:hover .sidebar-nav-item .ico-favorito-off {
        background: url(../img/ico-favorito-off.png) no-repeat top;
        float: right;
        margin-top: -37px;
        margin-right: 16px;
        width: 17px;
        height: 17px;
        z-index: 10000000;
        position: relative;
        cursor: pointer;
    }

        #sidebar .sidebar-nav-list:hover .sidebar-nav-item .ico-favorito-off:hover {
            background: url(../img/ico-favorito-off.png) no-repeat bottom;
            float: right;
            margin-top: -37px;
            margin-right: 16px;
            width: 17px;
            height: 17px;
        }

    #sidebar .sidebar-nav-list:hover .sidebar-nav-item .ico-favorito-on {
        background: url(../img/ico-favorito-on.png) no-repeat top;
        float: right;
        margin-top: -37px;
        margin-right: 16px;
        width: 17px;
        height: 17px;
    }

        #sidebar .sidebar-nav-list:hover .sidebar-nav-item .ico-favorito-on:hover {
            background: url(../img/ico-favorito-on.png) no-repeat bottom;
            float: right;
            margin-top: -37px;
            margin-right: 16px;
            width: 17px;
            height: 17px;
        }

    #sidebar .sidebar-nav-list .sidebar-nav-item .sidebar-item-label span {
        width: 100%;
    }

    #sidebar .sidebar-nav-list .sidebar-nav-item a {
        display: block;
        padding: 15px;
        width: 100%;
        text-decoration: none;
        font-size: 1em;
        color: #666;
        background: #FFF;
        border-bottom: 1px solid rgba(204,204,204,0.4);
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        #sidebar .sidebar-nav-list .sidebar-nav-item a:hover {
            color: #FFF;
            background: #003364;
        }

            #sidebar .sidebar-nav-list .sidebar-nav-item a:hover .icon, #sidebar .sidebar-nav-list .sidebar-nav-item a:hover .sidebar-item-label {
                fill: #fff;
                color: #fff;
            }

#sidebar .sub-nav-list {
    padding: 0;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    -moz-transition: max-height 400ms ease-in;
    -o-transition: max-height 400ms ease-in;
    -webkit-transition: max-height 400ms ease-in;
    transition: max-height 400ms ease-in;
}

    #sidebar .sub-nav-list .sidebar-sub-nav-item {
        position: relative;
    }

        #sidebar .sub-nav-list .sidebar-sub-nav-item:last-child a {
            border-bottom: 2px solid #003364;
        }

        #sidebar .sub-nav-list .sidebar-sub-nav-item a {
            background: #F4F4F4;
            padding-left: 30px;
        }

            #sidebar .sub-nav-list .sidebar-sub-nav-item a:hover {
                background: #e0e0e0;
            }

                #sidebar .sub-nav-list .sidebar-sub-nav-item a:hover:after {
                    color: #FFF;
                }

            #sidebar .sub-nav-list .sidebar-sub-nav-item a:after {
                display: none;
            }

            #sidebar .sub-nav-list .sidebar-sub-nav-item a:hover .sidebar-item-label {
                color: #666;
            }

/* TÍTULOS */

h1.title {
    padding-bottom: 6px;
    font-size: 22px;
    font-weight: normal;
    color: #013068;
    border-bottom: 1px solid #F19800;
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 0;
}

/* FIM TÍTULOS */

#main {
    margin-top: 120px;
    margin-bottom: 80px;
}

.section {
    margin-top: 100px;
}

/* LISTA DE ALUNOS */

#botao-criar {
    color: #666;
    text-decoration: none;
}

    #botao-criar span {
        background: #013068;
        color: #fff;
        border-radius: 50%;
        line-height: 2.3em;
        padding: 4px 9px;
        font-size: 15px;
        margin-right: 7px;
        transition: background ease 0.3s;
        font-weight: 700;
    }

    #botao-criar:hover span {
        background: #f19800;
        transition: background ease 0.3s;
    }

/* TABELAS */

#lista-alunos_wrapper {
    margin-top: 20px;
}

/* dataTables */

.tabela-padrao thead th {
    background: #013068;
    color: white;
    text-align: center;
    padding: 11px 17px !important;
    font-weight: 400;
    font-size: 12px;
    border-right: 1px solid white;
}

.tabela-padrao tbody td {
    text-align: center;
    font-size: 13px;
    padding: 5px 10px !important;
    font-weight: 400;
}

    .tabela-padrao tbody td i {
        color: #fff;
        background: #f19800;
        padding: 5px 8px;
        border-radius: 4px;
        font-size: 15px;
        cursor: pointer;
        transition: background ease 0.5s;
        margin-bottom: 4px;
    }

        .tabela-padrao tbody td i:hover {
            background: #013068;
            transition: background ease 0.6s;
        }

.table-striped > tbody > tr:nth-of-type(odd) {
    background: white !important;
}

.table-striped > tbody > tr > td {
    border-bottom: 1px solid #DDDDDD !important;
}

.table-responsive {
    border: none !important;
    overflow-y: auto;
}

/* Customizacoes da datatable */

table.dataTable thead th {
    position: relative;
    background-image: none !important;
}

tr.disabled {
    font-style: italic;
    opacity: 0.7;
}

table.dataTable thead th.sorting:after,
table.dataTable thead th.sorting_asc:after,
table.dataTable thead th.sorting_desc:after {
    position: absolute;
    top: 12px;
    right: 8px;
    display: block;
    font-family: FontAwesome;
}

table.dataTable thead th.sorting:after {
    content: "\f0dc";
    color: #ddd;
    font-size: 0.8em;
    padding-top: 0.12em;
}

table.dataTable thead th.sorting_asc:after {
    content: "\f0de";
}

table.dataTable thead th.sorting_desc:after {
    content: "\f0dd";
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
    opacity: 1.0;
}

table.dataTable thead .sorting:after {
    opacity: 0.7;
}

div.table-responsive > div.dataTables_wrapper > div.row > div[class^="col-"]:last-child {
    padding-left: 0;
}

div.dataTables_processing {
    top: 0 !important;
}

div.cg-busy-backdrop {
    opacity: none !important;
    background-color: #F4F4F4 !important;
}

div.dt-processing {
    display: block !important;
}

div.cg-busy {
    z-index: 99999999999999999;
}

div.cg-busy-default-sign {
    border-top-width: 1px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    margin-top: 50px;
}

div.dt-buttons {
    float: right !important;
    color: #013068 !important;
    margin-top: 7px;
}

.margin-merged-icons {
    margin: 0 5px;
    display: none;
}

button.dt-button, div.dt-button, a.dt-button {
    border: none !important;
    background: none !important;
    color: #013068 !important;
    margin-top: 7px;
}

    button.dt-button:hover:not(.disabled),
    div.dt-button:hover:not(.disabled),
    a.dt-button:hover:not(.disabled) {
        border: none !important;
        background: none !important;
        color: #013068 !important;
        margin-top: 7px;
    }

    button.dt-button:active:not(.disabled),
    button.dt-button.active:not(.disabled),
    div.dt-button:active:not(.disabled),
    div.dt-button.active:not(.disabled),
    a.dt-button:active:not(.disabled),
    a.dt-button.active:not(.disabled) {
        border: none !important;
        box-shadow: none !important;
        color: #013068 !important;
    }

    button.dt-button:focus:not(.disabled),
    div.dt-button:focus:not(.disabled),
    a.dt-button:focus:not(.disabled) {
        border: none !important;
        text-shadow: none !important;
        background: none !important;
        color: #013068 !important;
    }

.dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_paginate,
.dataTables_wrapper .dataTables_processing {
    text-align: right;
}

.dataTables_length {
    margin: 15px 0 0 0;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 20px 0;
}

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        margin: 0;
    }

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        padding: 0;
        border: 0;
    }

.pagination > .active > a, .pagination > .active > a:focus,
.pagination > .active > a:hover, .pagination > .active > span,
.pagination > .active > span:focus, .pagination > .active > span:hover {
    background-color: #013068;
}

.pagination > li > a:focus, .pagination > li > a:hover,
.pagination > li > span:focus, .pagination > li > span:hover {
    background-color: #f3f3f3;
}

.pagination > li > a, .pagination > li > span {
    color: #013068;
}

/* Resolucao Datatable Header Duplicado */

.dataTables_scrollBody thead {
    visibility: hidden;
}

table.dataTable, table.dataTable.no-footer {
    border-top: none !important;
}

.dataTables_scrollHead {
    margin-bottom: -24px !important;
}

.input-pesquisar-icone {
    width: 282px !important;
    border: 1px solid $cinza-bordas !important;
    border-radius: 4px;
    margin-left: 0px !important;
    margin-bottom: 10px;
    font-weight: 300;
    background: url(../images/ico-lupa.gif) right no-repeat;
}

.dataTables_filter {
    text-align: left !important;
}

#marcar-todos {
    margin: 0;
}

/* Scroll em Datatable */

#tabela-alunos-remanejamento_wrapper, #tabela-alunos-remanejados_wrapper {
    margin: 0;
    margin-top: 0 !important;
    overflow: hidden;
    .dataTables_scroll

{
    max-height: 300px;
    overflow-y: auto;
}
}

/* Classe para retirar icones de ordenacao */

.sem-ordenacao {
    pointer-events: none !important;
    cursor: default !important;
}

.sem-ordenacao::after {
    display: none !important
}

.sem-ordenacao-check {
    cursor: default !important
}

.sem-ordenacao-check::after {
    display: none !important
}

/* Inputs */

.input-text {
    padding: 10px;
    width: 100%;
    background-color: #fff;
    border: 1px solid $cinza-bordas;
    border-radius: 4px;
    outline: none;
    font-size: 15px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    height: 45px;
}

    .input-text:hover, .input-text:focus, .input-text.selected {
        border-color: #f19800;
        box-shadow: none;
    }

.input-select {
    display: block;
    padding: 10px 2.5%;
    width: 100%;
    border: none;
    border: 1px solid #CCC;
    outline: none;
    font-size: 15px;
    background: #FFF;
    color: #666;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.label-form {
    color: $azul-primario;
    font-weight: 300;
}

/* PLANO */

#info-aluno-plano {
    background: #fff;
    padding: 8px 15px;
    border-bottom: 2px solid #d2d2d2;
    list-style: none;
    margin-bottom: 30px;
}

    #info-aluno-plano li {
        float: left;
        border-right: 1px solid #d2d2d2;
        padding: 2px 30px 0 30px;
    }

        #info-aluno-plano li:first-child {
            padding-left: 0;
        }

        #info-aluno-plano li:nth-child(5) {
            border-right: none;
            padding-right: 0;
        }

        #info-aluno-plano li span {
            font-weight: 700;
            color: #013068;
            font-size: 15px;
        }

.coluna-dia {
    background: #fff;
    padding-bottom: 1px;
    border-bottom: 2px solid #d2d2d2;
}

.titulo-dia {
    background: #0076b3;
    color: #fff;
    font-size: 13px;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
    margin-top: 0;
}

.horarios {
    list-style: none;
    padding-left: 10px;
}

    .horarios li {
        padding-left: 19px;
        background: url(../images/ico-relogio.gif) no-repeat top left;
        background-position: 0 2px;
        font-size: 12px;
        margin-bottom: 12px;
    }

        .horarios li:last-child {
            margin-bottom: 0;
        }

        .horarios li span.hora-bold {
            color: #013068;
            font-weight: 700;
            font-size: 13px;
        }

        .horarios li span.hora-size {
            font-size: 14px;
        }

.porcentagem, .campos-cadastro {
    position: relative;
    float: left;
    width: 20%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
}

    .porcentagem .dados {
        border: 1px solid #d2d2d2;
        background: #fff;
        padding: 12px;
        text-align: center;
        font-size: 14px;
        line-height: 1.3em;
        min-height: 95px;
    }

        .porcentagem .dados h4 {
            margin-top: 0;
            margin-bottom: 3px;
            color: #f19800;
            font-size: 30px;
            line-height: 0.9em;
            font-weight: 700;
        }

.campos-cadastro {
    margin-top: 0;
}

    .campos-cadastro label {
        font-weight: 400;
        color: #013068;
    }

    .campos-cadastro select option {
        font-size: 13px;
    }

#calendar {
    margin-top: 10px;
    background: #fff;
}

/* Modal Bootstrap */

.modal-dialog {
    margin: 110px auto 40px auto !important;
    width: 500px;
}

.modal-title {
    font-size: 18px;
    color: #013068;
    text-transform: uppercase;
    font-weight: 700;
}

.modal-passo {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
    margin: 10px 0 20px 0;
}

    .modal-passo span {
        background: #013068;
        color: #fff;
        border-radius: 4px;
        padding: 5px 10px;
    }

.itens-botoes {
    text-align: center;
}

    .itens-botoes button {
        width: 150px;
        margin-bottom: 7px;
    }

/* Popover */

.popover {
    background-color: #f4f4f4;
}

/* Mensagem asterisco */
.msg-asterisco {
    text-align: right;
    margin: 5px 0;
    font-size: 14px;
    color: #F19800;
    font-family: texgyreheros-regular, sans-serif;
}

/* fullcalendar */

.fc-widget-header {
    color: #013068;
}

/* Faixa informativa Regras*/

.info {
    margin-bottom: 20px;
}

.info-branco {
    background: #FFF;
    border: 1px solid #d2d2d2;
    border-radius: 4px;
    padding: 15px;
}

    .info-branco h3 {
        font-size: 16px;
        color: #013068;
        padding-bottom: 10px;
        border-bottom: 1px solid #d2d2d2;
        margin-bottom: 15px;
        margin-top: 0;
        text-transform: uppercase;
        font-weight: 700;
    }

        .info-branco h3 i {
            color: #f19800 !important;
            font-size: 18px;
        }

    .info-branco p {
        margin-bottom: 0;
    }

    .info-branco strong {
        color: #013068;
    }
/*-------POPOVER DO FULLCANLENDAR----------------*/
#escolher-horario {
    width: 260px;
    background: #f4f4f4;
    padding: 15px;
    border-radius: 4px;
}

    #escolher-horario .ico-fechar {
        float: left;
        width: 100%;
        color: #666;
        text-align: right;
        margin-top: -10px;
    }

        #escolher-horario .ico-fechar i {
            margin-right: -8px;
            color: #013068;
        }

    #escolher-horario .hora-inicio {
        width: 50%;
        padding-right: 2%;
        float: left;
        margin-top: -10px;
    }

    #escolher-horario .hora-fim {
        width: 50%;
        padding-left: 2%;
        float: left;
        margin-top: -10px;
    }

    #escolher-horario label {
        color: #013068;
        font-weight: 400;
    }

    #escolher-horario input {
        border-radius: 4px;
        width: 100%;
        border: 1px solid #d2d2d2;
        background: #fff;
        font-size: 12px;
        padding: 3px 6px;
    }

    #escolher-horario select {
        border-radius: 4px;
        width: 100%;
        border: 1px solid #d2d2d2;
        background: #fff;
        font-size: 12px;
        padding: 3px 6px;
    }

    #escolher-horario .btn-salvar-horario {
        padding-top: 8px;
        padding-bottom: 8px;
        width: 100%;
        font-size: 14px;
        margin-top: 15px;
    }

.excluir-horario .btn {
    width: 48%;
    float: left;
    margin-bottom: 15px;
}

.excluir-horario .btn-continuar {
    margin-left: 2%;
}

.excluir-horario .btn-cinza {
    margin-right: 2%;
}

.excluir-horario h4 {
    font-weight: normal;
    color: #013068;
    font-size: 16px;
    text-align: center;
    margin-top: 0;
}
/*-------POPOVER DO FULLCANLENDAR----------------*/

#loading-content {
    pointer-events: all;
    z-index: 999;
    border: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    background-color: #f4f4f4;
}

.sk-fading-home-circle {
    width: 40px !important;
    height: 40px;
    top: 50%;
    left: 49%;
    position: absolute;
}

    .sk-fading-home-circle .sk-circle {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

        .sk-fading-home-circle .sk-circle:before {
            content: '';
            display: block;
            margin: 0 auto;
            width: 40%;
            height: 18%;
            background-color: #013068;
            border-radius: 100%;
            -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
            animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
        }

    .sk-fading-home-circle .sk-circle2 {
        -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    .sk-fading-home-circle .sk-circle3 {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
    }

    .sk-fading-home-circle .sk-circle4 {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .sk-fading-home-circle .sk-circle5 {
        -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
        transform: rotate(120deg);
    }

    .sk-fading-home-circle .sk-circle6 {
        -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
        transform: rotate(150deg);
    }

    .sk-fading-home-circle .sk-circle7 {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .sk-fading-home-circle .sk-circle8 {
        -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
        transform: rotate(210deg);
    }

    .sk-fading-home-circle .sk-circle9 {
        -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
        transform: rotate(240deg);
    }

    .sk-fading-home-circle .sk-circle10 {
        -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
        transform: rotate(270deg);
    }

    .sk-fading-home-circle .sk-circle11 {
        -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
        transform: rotate(300deg);
    }

    .sk-fading-home-circle .sk-circle12 {
        -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
        transform: rotate(330deg);
    }

    .sk-fading-home-circle .sk-circle2:before {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .sk-fading-home-circle .sk-circle3:before {
        -webkit-animation-delay: -1s;
        animation-delay: -1s;
    }

    .sk-fading-home-circle .sk-circle4:before {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .sk-fading-home-circle .sk-circle5:before {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

    .sk-fading-home-circle .sk-circle6:before {
        -webkit-animation-delay: -0.7s;
        animation-delay: -0.7s;
    }

    .sk-fading-home-circle .sk-circle7:before {
        -webkit-animation-delay: -0.6s;
        animation-delay: -0.6s;
    }

    .sk-fading-home-circle .sk-circle8:before {
        -webkit-animation-delay: -0.5s;
        animation-delay: -0.5s;
    }

    .sk-fading-home-circle .sk-circle9:before {
        -webkit-animation-delay: -0.4s;
        animation-delay: -0.4s;
    }

    .sk-fading-home-circle .sk-circle10:before {
        -webkit-animation-delay: -0.3s;
        animation-delay: -0.3s;
    }

    .sk-fading-home-circle .sk-circle11:before {
        -webkit-animation-delay: -0.2s;
        animation-delay: -0.2s;
    }

    .sk-fading-home-circle .sk-circle12:before {
        -webkit-animation-delay: -0.1s;
        animation-delay: -0.1s;
    }

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/*-------------------------------------*/

/* PÁGINA INICIAL */

#div-logo {
    text-align: center;
    color: #013068;
}

#logo-he {
    margin-bottom: 40px;
}

#como-funciona {
    margin-top: 30px;
}

    #como-funciona .grid-cm {
        margin-bottom: 30px;
    }

    #como-funciona h2 {
        font-size: 30px;
        text-align: center;
        font-weight: 700;
        color: #013068;
        margin-top: 0;
        margin-bottom: 65px;
        background: url(../images/linhas-titulo.gif) repeat-x center;
    }

    #como-funciona .box-branco {
        border-radius: 4px;
        background: #FFFFFF;
        border: 1px solid #d2d2d2;
        box-shadow: 1px 1px 2px #ccc;
    }

        #como-funciona .box-branco .box-numero {
            width: 47px;
            height: 47px;
            background: #f19800;
            color: #ffffff;
            border-radius: 50%;
            margin: -24px auto 0 auto;
            text-align: center;
            line-height: 2.3;
            font-size: 20px;
            font-weight: 700;
            box-shadow: 1px 1px 3px #aaaaaa;
        }

        #como-funciona .box-branco .box-descricao {
            padding: 15px;
            text-align: center;
            font-size: 14px;
            min-height: 190px;
        }

        #como-funciona .box-branco h3 {
            font-size: 18px;
            font-weight: 700;
            color: #013068;
            margin: 15px 0 0 0;
            text-align: center;
        }

        #como-funciona .box-branco img {
            border-top: 1px solid #d2d2d2;
            border-radius: 0 0 4px 4px;
            width: 100%;
        }

#nome-escola {
    text-align: right;
    color: #fff;
    padding-top: 16px;
}

#referencias {
    color: #013068;
}

#gerar-horarios {
    text-align: center;
    margin-top: 60px;
}

    #gerar-horarios a {
        text-decoration: none;
        color: #FFFFFF;
        background: #f19800;
        border-radius: 4px;
        padding: 15px 20px;
        font-size: 20px;
        font-weight: 300;
        transition: background 0.5s;
    }

        #gerar-horarios a:hover {
            background: #013068;
            transition: background 0.5s;
        }

@media (max-width: 1199px) {
    #info-aluno-plano li {
        padding: 0;
        font-size: 13px;
        padding: 2px 13px 0 13px;
    }

        #info-aluno-plano li span {
            font-size: 14px;
        }

    .horarios li {
        font-size: 11px;
    }

        .horarios li span.hora-size {
            font-size: 13px;
        }
}

@media (max-width: 991px) {
    .coluna-dia {
        margin-bottom: 20px;
    }

    #info-aluno-plano li {
        clear: both;
        padding: 0;
        font-size: 14px;
        border: none;
    }

        #info-aluno-plano li span {
            font-size: 15px;
        }

    .porcentagem, .campos-cadastro {
        padding-left: 10px;
        padding-right: 10px;
    }

        .porcentagem .dados {
            font-size: 13px;
        }

            .porcentagem .dados h4 {
                font-size: 20px;
            }
}

@media (max-width: 767px) {
    .dataTables_filter label {
        width: 100%;
    }

        .dataTables_filter label .input-pesquisar-icone {
            width: 100% !important;
        }

    .porcentagem, .campos-cadastro {
        width: 100%;
        margin-top: 15px;
    }

        .porcentagem .dados {
            font-size: 15px;
            min-height: auto;
        }

            .porcentagem .dados h4 {
                font-size: 30px;
            }

    .btn {
        display: block;
    }
}

@media (max-width: 480px) {
    h1.title {
        font-size: 16px;
    }
}

.fc-event {
    position: relative;
    display: block;
    font-size: 1.15em;
    line-height: 1.3;
    border-radius: 3px;
    border: 1px solid #3a87ad;
    font-weight: normal;
}

.fc-time-grid-event .fc-time {
    font-size: .7em;
    white-space: nowrap;
}