﻿/* Definições Gerais */
@font-face {
    font-family: 'Roboto';
    src: url(../fonts/Roboto-VariableFont_wdth,wght.ttf) format('truetype');
}

html,
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #f3f3f3;
    overflow: hidden;
    color: #212121;
    font-size: 13px;
}

    body.principal {
        background: #f3f3f3 !important;
    }

.container-principal {
    height: 100vh;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

a {
    text-decoration: none !important;
    color: #000;
}


/* Secondary */
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: 1px solid #6c757d;
}

    .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #545b62;
    }

/* Light */
.btn-light {
    background-color: #f8f9fa;
    color: #212529;
    border: 1px solid #dae0e5;
}

    .btn-light:hover {
        background-color: #e2e6ea;
        border-color: #d3d9df;
    }

/* Dark */
.btn-dark {
    background-color: #343a40;
    color: #fff;
    border: 1px solid #343a40;
}

    .btn-dark:hover {
        background-color: #23272b;
        border-color: #1d2124;
    }


.btn-principal, .btn-principal:hover, .btn-principal:focus {
    background: #EA5913 !important;
    border-color: #EA5913 !important;
    color: #FFF;
}
/* Definições Gerais */

/* Definições Navbar */
#header {
    box-shadow: 0 1px 0 rgba(12,13,14,0.1), 0 1px 6px rgba(59,64,69,0.1);
    min-height: 70px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: fixed;
    z-index: 90;
    width: 100%;
    left: 0;
    top: 0;
    padding: 0;
    background: #FFFFFF;
    border-radius: 0px;
    border-top: solid 3px #EA5913;
    display: flex;
    align-items: center;
}

#header .ma-backdrop {
    position: absolute;
}

.h-inner {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.hi-logo a {
    color: #999;
    text-transform: uppercase;
    display: block;
    font-size: 16px;
}

.hi-trigger {
    position: relative;
    margin-left: -5px;
    cursor: pointer;
    display: none !important;
}

    .hi-trigger:before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.22);
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        z-index: 0;
        margin-top: -22px;
        margin-left: -22px;
    }

    .hi-trigger.toggled:before {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.hi-menu {
    list-style: none;
    padding: 0;
}

    .hi-menu > li {
        display: inline-block;
        margin: 0 1px;
        vertical-align: top;
        min-width: 40px;
    }

@media (max-width: 767px) {
    .hi-menu > li {
        position: static !important;
    }

    #header {
        box-shadow: none;
        border-bottom: solid 2px #ddd;
    }
}

.hi-menu > li .dropdown-menu-lg {
    padding: 0;
}

    .hi-menu > li .dropdown-menu-lg .lg-body {
        min-height: 350px;
        overflow-x: hidden;
    }

.hi-menu > li > a {
    color: #999;
    display: block;
    text-align: center;
    z-index: 1;
    position: relative;
    -webkit-transition: background-color;
    -o-transition: background-color;
    transition: background-color;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
}

    .hi-menu > li > a > .him-icon {
        font-size: 24px;
        line-height: 36px;
    }

    .hi-menu > li > a > .him-label {
        line-height: 35px;
        white-space: nowrap;
        padding: 0 10px;
        font-size: 14px;
        text-transform: uppercase;
    }

    .hi-menu > li > a > .him-counts {
        position: absolute;
        font-style: normal;
        background: #F44336;
        padding: 1px 5px;
        right: 7px;
        top: -3px;
        font-size: 10px;
        line-height: 15px;
        color: #FFF;
    }

    .hi-menu > li > a > .him-remoteaccess {
        position: absolute;
        font-style: normal;
        background: #5CB85C;
        padding: 1px 5px;
        right: 0px;
        top: -5px;
        font-size: 10px;
        line-height: 15px;
        color: #FFF;
    }


@media (max-width: 767px) {
    .hi-menu .dropdown-menu-lg {
        width: calc(100% - 28px) !important;
    }

    .hi-menu .dropdown-menu {
        top: 67px !important;
    }
}

.hi-menu > li.toggled > a,
.hi-menu > li:hover > a {
    background-color: rgba(0, 0, 0, 0.08);
}

.him-notification:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 70px);
    background: url(../img/notifications.png) no-repeat center;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 400ms;
    transition-duration: 400ms;
    -webkit-transform: scale(0) rotate(-180deg);
    -ms-transform: scale(0) rotate(-180deg);
    -o-transform: scale(0) rotate(-180deg);
    transform: scale(0) rotate(-180deg);
    opacity: 0;
    filter: alpha(opacity=0);
    top: 42px;
}

.him-notification.empty:before {
    -webkit-transform: scale(1) rotate(0deg);
    -ms-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    opacity: 1;
    filter: alpha(opacity=100);
}

.line-wrap {
    width: 18px;
    height: 12px;
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    margin: 12px;
    cursor: pointer;
}

    .line-wrap .line {
        width: 18px;
        height: 2px;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        -webkit-transition-duration: 300ms;
        transition-duration: 300ms;
        background-color: #999;
    }

        .line-wrap .line.center {
            margin: 3px 0;
        }

.toggled .line-wrap {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
/* Definições Navbar */
/* Definições para a página principal */

#page {
    padding: 75px 12px 5px 12px;
}

.page-title {
    margin: 10px 2px 10px 2px;
}

    .page-title > h2 {
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        color: #212121;
        cursor: default;
        margin: 0;
    }

.breadcrumb {
    color: #818181;
    background: transparent;
    cursor: default;
    margin: 0;
    padding: 0px;
}

.page-funcao {
    font-size: 12px;
    color: #989898;
}

ul.breadcrumb li.funcao:before {
    content: '';
}

/* Definições para a página principal */
.card .card-toolbar .btn {
    padding: 6px 6px;
    font-size: 12px;
    line-height: 1.42857143;
    width: 38px;
    height: 38px;
    border-radius: 4px;
}

    .card .card-toolbar .btn > i {
        font-size: 13px;
    }

.card-lg .card-toolbar .btn {
    padding: 8px 8px;
    font-size: 20px;
    line-height: 1.3333333;
    transition: all .2s ease;
    width: 49px;
    height: 49px;
    border-radius: 8px;
}

.card-lg .card-toolbar .input-group-btn .btn {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.card-footer-btn {
    padding: 15px;
    background: #FAFAFA;
    border-top: solid 1px #ece5e5;
}

    .card-footer-btn .btn {
        padding: 6px;
        font-size: 16px;
        line-height: 28px;
        transition: all .2s ease;
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
/* Definições Form.master */

/* Definições de Conteúdo */
.padding5 {
    padding: 5px !important;
}

.no-padding {
    padding: 0 !important;
}

.label {
    font-size: 85%;
    font-weight: normal;
    display: inline-block;
}

/*
td {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}*/

td > .label {
    margin-bottom: 0px;
    padding: 6px 12px !important;
}
/* Definições de Conteúdo */

.nav-pills {
    background: #f3f3f3;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border: solid 1px #ddd;
    padding: 8px;
}

.tab-content {
    border: solid 1px #ddd;
    border-top: 0px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 15px 15px 5px 15px;
    overflow: auto;
}

.alert {
    margin-bottom: 10px !important;
}

/* Definições Table */
.table {
    margin-bottom: 0px;
}

    .table > thead > tr > th {
        vertical-align: top;
        position: sticky !important;
        top: 0 !important;
        border-bottom-width: 1px !important;
        z-index: 10;
        padding: 10px;
        background: #F3F3F3;
    }

    .table > thead > tr > th {
        padding: 12px !important;
    }

.dataTable.table > thead > tr > th {
    padding: 12px 22px 12px 12px !important;
    background: #fff;
}

    .dataTable.table > thead > tr > th.sorting_disabled {
        padding: 12px !important
    }

.dataTables_length .select2-container--bootstrap .select2-selection--single {
    padding: 6px 12px;
    height: 34px;
}

.table .sorting:after, .table .sorting_asc:after, .table .sorting_desc:after {
    top: 12px !important;
}

.table > thead > tr > th > div.linebottom {
    height: 1px;
    width: 100%;
    background: #ece5e5;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.table > thead > tr + tr th {
    border-top: 0 !important;
}

.table > thead > tr > th:last-child,
.table > tbody > tr > td:last-child,
.table > tbody > tr > th:last-child,
.table > tfoot > tr > th:last-child {
    padding-right: 20px !important;
}

    .table > thead > tr > th:last-child.col-btn,
    .table > tbody > tr > td:last-child.col-btn,
    .table > tfoot > tr > th:last-child.col-btn {
        padding-left: 2px !important;
        padding-right: 12px !important;
    }

.table > tbody > tr:last-child > td,
.table > tbody > tr:last-child > th,
.table > tfoot > tr:last-child > th {
    border-bottom: 1px solid #ece5e5 !important;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > th {
    border-bottom: 1px solid #ece5e5 !important;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > th {
    padding: 12px;
    cursor: default;
}

.table > tbody > tr.selected {
    background: rgba(0, 113, 227, 0.05) !important;
}

.table .screen-only {
}

.table .print-only {
    display: none;
}

.dataTable .table > tbody > tr > td:first-child,
.dataTable .table > thead > tr > th:first-child,
.dataTable .table > tfoot > tr > th:first-child {
    padding-left: 20px !important;
}

.table-condensed > tbody > tr > td {
    vertical-align: top;
}

td.form-field {
    padding: 0px !important;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #FFF;
}

.table-striped > tbody > tr:nth-of-type(even) {
    background-color: #FAFAFA;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #4285F4;
    border-color: #4285F4;
}

.pagination > li > a, .pagination > li > span {
    color: #333;
    padding: 7px 12px;
    border-radius: 8px !important;
    margin-left: 4px;
}


table.dataTable {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.dataTables_filter label {
    padding-top: 0px;
    margin-bottom: 0px;
}

.dataTables_length select,
.dataTables_filter input {
    height: 49px;
    font-size: 16px;
    font-weight: normal;
}

.dataTables_filter {
    /*margin-right: 5px;*/
}

.dataTables_paginate {
    height: 30px;
}

    .dataTables_paginate .pagination {
        margin: 0;
    }

.input-group-filter {
    width: 200px;
}

    .input-group-filter input {
        height: 49px !important;
        font-size: 16px !important;
        font-weight: normal !important;
    }

.input-group i {
    min-width: 24px;
    text-align: center;
}

.img-profile {
    padding: 20px !important;
    background: #FAFAFA;
    text-align: center;
}

.table-profile {
    width: 100% !important;
}

    .table-profile td {
        border-bottom: solid 1px #EEE;
        padding: 10px;
    }

    .table-profile tr:first-child td {
        border-top: solid 1px #EEE;
    }

    .table-profile tr:last-child td {
        border-bottom: none !important;
    }

    .table-profile td {
        border-right: none !important;
        border-left: none !important;
    }
/* Definições Table */
/* Definições de Formulário */

.input-group-addon {
    min-width: 36px;
    background: #FFF;
    border-radius: 8px;
}

.btn, .input-group-btn .btn, .grid-commands .btn {
    height: 46px;
    padding: 12px 16px;
    border-radius: 8px;
}


@media (min-width: 768px) {
    .form-group {
        margin-bottom: 10px;
    }
}

.btn-toolbar {
    padding: 8px 8px;
    font-size: 20px;
    line-height: 1.3333333;
    transition: all .2s ease;
    width: 50px;
    height: 50px;
}


.card-header > h2 > .label {
    position: relative;
    margin-left: 4px;
    top: -8px;
    font-size: 8px;
    padding: 4px 3px !important;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    text-align: center;
}

.btn > .label {
    position: absolute;
    right: -5px;
    top: -5px;
    font-size: 60%;
    padding: 2px !important;
    width: 15px;
    height: 15px;
    border-radius: 4px;
}

.btn-lg {
    border: none;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.card-toolbar .btn-group {
    margin-right: 2px;
}

.card-lg .card-toolbar .btn-group {
    margin-right: 4px;
}

.modal-toolbar .btn-group, .modal-footer .btn-group {
    margin-left: 4px;
}

.note-toolbar .btn-group + .btn-group {
    border-left: 0;
}

.modal-body hr {
    margin-bottom: 20px !important;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 25px !important;
    border-color: #eee;
}

legend {
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.control-label {
    font-weight: normal;
    padding-right: 5px !important;
}

.form-horizontal .control-label {
    padding-top: 12px;
}

@media (max-width: 767px) {
    .modal-open .modal {
        padding-top: 0px;
        padding-left: 0px !important;
    }
}

.required {
    color: #E02222;
    font-size: 12px;
    font-weight: bold;
    padding-right: 3px;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.f-600 {
    font-weight: 600 !important;
}

.c-cinza {
    color: #989898 !important;
}

.bootstrap-datetimepicker-widget {
    z-index: 99999;
}

hr {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    border-top: solid 1px #ece5e5;
}

.form-control {
    font-size: 14px;
    box-shadow: none;
    height: 46px;
    padding: 12px 12px;
    line-height: 1.5;
    border-radius: 8px;
}

.form-control-moldura {
    padding: 12px;
    border: solid 1px #ddd;
    border-radius: 8px;
    background: #f3f3f3;
}

    .form-control-static {
        font-weight: bold;
        padding-top: 12px;
    }

.form-control-image {
    height: auto;
    text-align: center;
    border-bottom-color: transparent;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

    .form-control-image .foto {
        border-radius: 8px !important;
        width: 95px !important;
        height: 95px !important;
        border: solid 0px !important;
    }

.has-feedback label ~ .form-control-feedback {
    top: 38px;
    font-size: 16px;
    height: 24px;
    width: 33px;
}

select.form-control {
    padding: 3px 5px !important;
}

.box {
    border: solid 1px #ece5e5;
    padding: 10px;
    margin: 5px !important;
}

.input-group-telefone + .input-group-telefone {
    margin-top: 10px !important;
}

.input-group-telefone > .form-control {
    width: 50%;
}

.input-group-email + .input-group-email {
    margin-top: 10px !important;
}

.input-group-email > .form-control {
    width: 50%;
}

.row-listavalor + .row-listavalor {
    margin-top: 10px !important;
}

th.col-btn {
    padding: 2px !important;
    text-align: center;
}

td.col-btn {
    text-align: center;
}

.col-btn > .btn {
    width: 46px !important;
    height: 46px !important;
    padding: 12px !important;
    text-align: center;
}

.col-btn > .btn-group > .btn {
    width: 46px !important;
    height: 46px !important;
    padding: 12px !important;
}

.col-btn > .btn-link {
    font-size: 16px !important;
    color: #888;
}

    .col-btn > .btn-link:hover {
        color: #000;
    }

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
    outline: 1px dotted #3d290f !important;
    outline-offset: 0px;
}
/* Definições de Formulário */

/* Definições de Modal */
@media (min-width: 768px) {
    .modal-open .modal {
        overflow-y: hidden !important;
    }
}

body.modal-open, .modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
    margin-right: 0;
}

.modal .modal-content {
    border-radius: 14px;
    border: none;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    background-color: #F3F3F3;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.modal-backdrop.in {
    opacity: 0.2;
}

.modal .modal-header {
    border-bottom: none;
    padding: 15px;
    cursor: move;
}

.modal .modal-info {
    padding: 15px;
    background: #fafafa !important;
    border-bottom: solid 1px #ece5e5;
}

.modal .modal-toolbar {
    padding: 5px 15px 5px 1px;
    background: #f3f3f3 !important;
    border-bottom: solid 1px #ece5e5;
}

.modal .modal-close {
    margin: -5px -10px;
    padding: 9px 12px !important;
    background-color: #ece5e5;
}

    .modal .modal-close:hover,
    .modal .modal-close:focus {
        background-color: #ece5e5;
    }

.modal .modal-body {
    max-height: calc(100vh - 213px);
    overflow: hidden;
    overflow-y: auto;
    padding: 0px 15px;
    position: initial !important;
}

.modal-body:last-child {
    margin-bottom: 0px !important;
}

.close {
    font-size: 28px;
}

.modal .close {
    margin-top: 0px !important;
    width: 50px !important;
    margin-right: -10px !important;
    font-weight: normal !important;
    opacity: .5 !important;
}

    .modal .close:hover {
        font-weight: normal !important;
        opacity: .8 !important;
    }

.bootbox .modal-header {
    padding: 15px;
    background: #FFF;
    border-bottom: solid 1px #ece5e5;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.bootbox .modal-body {
    background: #FFF;
    padding: 25px;
}

.bootbox .modal-footer {
    padding: 15px;
    background: #F3F3F3;
    border-top: solid 1px #ece5e5;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.modal-footer {
    border-top: none;
}
/* Definições de Modal */

.anexoDeletado td > div {
    text-decoration: line-through;
}

.pmo-pic {
    cursor: pointer;
}

    .pmo-pic .p-relative {
        text-align: center;
        position: relative;
    }

    .pmo-pic input[type='file'] {
        display: none;
    }

    .pmo-pic img {
        width: 100%;
        max-width: 250px;
        height: auto;
        background: #fff;
    }

    .pmo-pic .btn {
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }

    /*.pmo-pic .pmop-edit {
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        background: rgba(0, 0, 0, .38);
        text-align: center;
        padding: 10px 10px 11px;
        width: 100%;
        opacity: 0;
    }*/

    .pmo-pic h2 {
        font-size: 18px;
        font-weight: 400;
        color: #333;
        margin: 4px;
        padding: 12px;
        display: block;
        text-align: center;
    }

    .pmo-pic h4 {
        font-size: 16px;
        font-weight: 400;
        color: #333;
        margin: 4px;
        padding: 12px;
        display: block;
        text-align: center;
    }

/*.pmo-pic:hover .pmop-edit {
        opacity: 1;
        filter: alpha(opacity=100);
    }*/

.foto {
    display: inline-block;
    width: 180px;
    height: 180px;
    border: solid 1px #ece5e5;
    border-radius: 100%;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: #FFF;
}
/* Anexo */
/* Definições de Filtro */

footer {
    position: fixed;
    bottom: 0;
    padding: 2px;
    background: #FFF;
    width: 100%;
    border-top: 1px solid #F3F3F3;
    z-index: 1030;
    text-align: center;
    border-bottom: solid 2px #4285F4;
    font-size: 11px;
}

@media (max-width: 767px) {
    footer {
        display: none;
    }

    .modal .modal-content {
        border-radius: 0px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    }
}

/* Definições de Filtro */
/* Util */

.col-vertical {
    width: auto !important;
    text-overflow: initial;
    white-space: initial;
    overflow: initial;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    transform: rotate(-90deg);
}

.col-input {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.col-005 {
    min-width: 5px;
    max-width: 5px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-010 {
    min-width: 10px;
    max-width: 10px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-020 {
    min-width: 20px;
    max-width: 20px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-030 {
    min-width: 30px;
    max-width: 30px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-040 {
    min-width: 40px;
    max-width: 40px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-060 {
    min-width: 60px;
    max-width: 60px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-080 {
    min-width: 80px;
    max-width: 80px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-100 {
    min-width: 100px;
    max-width: 100px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-120 {
    min-width: 120px;
    max-width: 120px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-140 {
    min-width: 140px;
    max-width: 140px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-160 {
    min-width: 160px;
    max-width: 160px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-180 {
    min-width: 180px;
    max-width: 180px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-190 {
    min-width: 190px;
    max-width: 190px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-220 {
    min-width: 220px;
    max-width: 220px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-240 {
    min-width: 240px;
    max-width: 240px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-150 {
    min-width: 150px;
    max-width: 150px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-200 {
    min-width: 200px;
    max-width: 200px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-300 {
    min-width: 300px;
    max-width: 300px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-400 {
    min-width: 400px;
    max-width: 400px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-500 {
    min-width: 500px;
    max-width: 500px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.col-600 {
    min-width: 600px;
    max-width: 600px;
    width: auto !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.huge {
    font-size: 40px;
}
/* Util */
/* Card */

.bgm-info {
    color: #31708f;
    background-color: #d9edf7;
}

.bgm-primary {
    color: #FFF;
    background-color: #337ab7;
}

.bgm-success {
    color: #3c763d;
    background-color: #dff0d8;
}

.bgm-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

.bgm-danger {
    color: #a94442;
    background-color: #f2dede;
}

.card-login {
    background: #FFF;
    width: 100vh;
    padding: 60px;
    height: 100vh;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

@media (max-width: 767px) {
    .card-login {
        background: #FFF;
        border-right: 0px;
        width: 100%;
        padding: 30px;
        box-shadow: none;
    }
}

.card {
    /*border: solid 1px #ddd;
    margin-bottom: 15px !important;
    background: #FFF;
    border-radius: 14px;*/
    border: solid 1px #dcd5d5;
    margin-bottom: 10px !important;
    background: #FFF;
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(12,13,14,0.1), 0 1px 6px rgba(59,64,69,0.1);
}

.card-body {
    border-top: solid 1px #ddd;
}

.card-lg {
    border: 0px !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    background: transparent;
}

    .card-lg .card-body {
        border: solid 1px #ddd;
        background: #FFF;
    }

    .card-lg .card-body, .card-lg .card-scroll {
        border-radius: 8px;
    }

.card-header {
    padding: 15px !important;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom: solid 1px #dcd5d5;
}

.card-header-closable {
    cursor: pointer;
}

.card-header h2 {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    display: inline;
}

    .card-header h2 i {
        margin-right: 5px;
        width: 20px;
    }

.card .card-header .actions {
    list-style: none;
    float: right;
    padding-left: 8px !important;
}

    .card .card-header .actions li {
        display: inline-block;
        min-width: 20px;
        text-align: right;
    }

        .card .card-header .actions li a:focus {
            outline: 0 !important;
        }

        .card .card-header .actions li i {
            color: #adadad;
            font-size: 14px;
        }

.card-padding {
    padding: 15px 15px 5px 15px;
}

.card-table {
    padding: 0 !important;
}

    .card-table table {
        border-right: solid 1px #ddd !important;
    }

.card-scroll {
    overflow: auto;
    box-sizing: border-box;
    padding-bottom: 20px;
    padding-right: 20px;
}

.modal .card-scroll {
    border-top: solid 1px #ddd;
}

.card-table > .card-scroll {
    border: solid 0px;
}

.card-toolbar {
    padding: 8px;
    border-top: solid 1px #ddd;
    background: #F3F3F3;
}

.card-lg .card-toolbar {
    padding: 0px 0px 10px 0px;
    border-bottom: 0px !important;
    border-top: 0px !important;
    background: #f3f3f3;
}

.card-footer {
    border-top: solid 1px #ece5e5;
    padding: 8px;
}

.card-lg .card-footer {
    border-top: 0px !important;
    padding: 10px 0px 0px 0px;
}

.card-footer label {
    margin-bottom: 0px;
}

.card-inside {
    box-shadow: none !important;
    border: 0 !important;
}

    .card-inside .card-header {
        border-bottom: solid 1px #ece5e5;
        padding: 5px 5px !important;
    }

    .card-inside .card-padding {
        padding: 15px 0px !important;
    }
/* Card */
/* Dropdown com Icones */

.dm-icon {
    max-height: 50vh;
    overflow-y: auto;
}

    .dm-icon::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .dm-icon > li > a > i {
        min-width: 18px;
        font-size: 14px;
        margin-right: 8px;
    }

/* Dropdown com Icones */

/* Toggle Switch */

.toggle-switch {
    display: inline-block;
    vertical-align: top;
    padding-top: 7px;
    height: 30px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .toggle-switch .ts-label {
        display: inline-block;
        margin: 0 20px 0 0;
        vertical-align: top;
        -webkit-transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
        transition: color 0.56s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .toggle-switch .ts-helper {
        display: inline-block;
        position: relative;
        width: 40px;
        height: 16px;
        border-radius: 8px;
        background: rgba(0, 0, 0, 0.26);
        -webkit-transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        vertical-align: middle;
        cursor: pointer;
    }

        .toggle-switch .ts-helper:before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            width: 24px;
            height: 24px;
            background: #fafafa;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
            border-radius: 50%;
            webkit-transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        }

    .toggle-switch:not(.disabled) .ts-helper:active:before {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(128, 128, 128, 0.1);
    }

    .toggle-switch input {
        position: absolute;
        z-index: 1;
        width: 46px;
        margin: 0 0 0 -4px;
        height: 24px;
        opacity: 0;
        filter: alpha(opacity=0);
        cursor: pointer;
    }

        .toggle-switch input:checked + .ts-helper:before {
            left: 20px;
        }

    .toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper {
        background: rgba(0, 150, 136, 0.5);
    }

        .toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper:before {
            background: #009688;
        }

        .toggle-switch:not([data-ts-color]) input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 150, 136, 0.2);
        }

    .toggle-switch.disabled {
        opacity: 0.6;
        filter: alpha(opacity=60);
    }

    .toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper {
        background: rgba(244, 67, 54, 0.5);
    }

        .toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper:before {
            background: #F44336;
        }

        .toggle-switch[data-ts-color="red"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(244, 67, 54, 0.2);
        }

    .toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper {
        background: rgba(33, 150, 243, 0.5);
    }

        .toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper:before {
            background: #2196F3;
        }

        .toggle-switch[data-ts-color="blue"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(33, 150, 243, 0.2);
        }

    .toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper {
        background: rgba(255, 193, 7, 0.5);
    }

        .toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper:before {
            background: #FFC107;
        }

        .toggle-switch[data-ts-color="amber"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(255, 193, 7, 0.2);
        }

    .toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper {
        background: rgba(186, 104, 200, 0.5);
    }

        .toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper:before {
            background: #BA68C8;
        }

        .toggle-switch[data-ts-color="purple"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(186, 104, 200, 0.2);
        }

    .toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper {
        background: rgba(233, 30, 99, 0.5);
    }

        .toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper:before {
            background: #E91E63;
        }

        .toggle-switch[data-ts-color="pink"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(233, 30, 99, 0.2);
        }

    .toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper {
        background: rgba(205, 220, 57, 0.5);
    }

        .toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper:before {
            background: #CDDC39;
        }

        .toggle-switch[data-ts-color="lime"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(205, 220, 57, 0.2);
        }

    .toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper {
        background: rgba(0, 188, 212, 0.5);
    }

        .toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper:before {
            background: #00BCD4;
        }

        .toggle-switch[data-ts-color="cyan"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(0, 188, 212, 0.2);
        }

    .toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper {
        background: rgba(76, 175, 80, 0.5);
    }

        .toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper:before {
            background: #4CAF50;
        }

        .toggle-switch[data-ts-color="green"] input:not(:disabled):checked + .ts-helper:active:before {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28), 0 0 0 20px rgba(76, 175, 80, 0.2);
        }
/* Toggle Switch */
/* Dropdown */

.dropdown-menu {
    box-shadow: 0 1px 0 rgba(12,13,14,0.1), 0 1px 6px rgba(59,64,69,0.1);
    border: 0;
    z-index: 2000;
}

    .dropdown-menu .divider {
        background: #eee;
    }
/* Dropdown */
/* Summernote */

.note-editor.note-frame {
    border: solid 1px #ece5e5;
    margin-bottom: 0px !important;
}

/* Summernote */
/* Profile */
.profile > a {
    display: block;
    height: 129px;
    width: 100%;
    background: url(../../assets/images/profile-menu.png) no-repeat left top;
    background-size: 100%;
    cursor: pointer;
    position: relative;
}

    .profile > a .sp-info {
        background: rgba(0, 0, 0, 0.37);
        padding: 6px 12px;
        color: #fff;
        position: absolute;
        bottom: 0;
        width: 100%;
        font-size: 11px;
    }

        .profile > a .sp-info span {
            max-width: 100%;
            display: block;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .profile > a .sp-info > i {
            font-size: 16px;
            line-height: 100%;
            position: absolute;
            right: 15px;
            top: 7px;
            -webkit-transition: all;
            -o-transition: all;
            transition: all;
            -webkit-transition-duration: 300ms;
            transition-duration: 300ms;
        }

.profile .profile-menu {
    display: none;
}

.profile.toggled .sp-info > i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sp-user {
    padding: 10px;
    max-width: 100%;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 12px;
}

/* Profile */
/* Checkbox */
.checkbox {
    padding-left: 20px;
    padding-top: 2px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

    .checkbox label {
        display: inline-block;
        position: relative;
        padding-left: 5px;
    }

        .checkbox label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #ddd;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
            transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
        }

        .checkbox label::after {
            display: inline-block;
            position: absolute;
            width: 16px;
            height: 16px;
            left: 0;
            top: 0;
            margin-left: -20px;
            padding-left: 3px;
            padding-top: 1px;
            font-size: 11px;
            color: #555555;
        }

    .checkbox input[type="checkbox"] {
        opacity: 0;
    }

        .checkbox input[type="checkbox"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .checkbox input[type="checkbox"]:checked + label::after {
            font-family: 'Font Awesome 5 Pro';
            content: "\f00c";
        }

        .checkbox input[type="checkbox"]:disabled + label {
            opacity: 0.65;
        }

            .checkbox input[type="checkbox"]:disabled + label::before {
                background-color: #ece5e5eee;
                cursor: not-allowed;
            }

    .checkbox.checkbox-circle label::before {
        border-radius: 50%;
    }

    .checkbox.checkbox-inline {
        margin-top: 0;
    }

.checkbox-primary input[type="checkbox"]:checked + label::before {
    background-color: #428bca;
    border-color: #428bca;
}

.checkbox-primary input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}

.checkbox-danger input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}

.checkbox-info input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}

.checkbox-warning input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}

.checkbox-success input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.radio {
    padding-left: 20px;
}

    .radio label {
        display: inline-block;
        position: relative;
        padding-left: 5px;
    }

        .radio label::before {
            content: "";
            display: inline-block;
            position: absolute;
            width: 17px;
            height: 17px;
            left: 0;
            margin-left: -20px;
            border: 1px solid #ddd;
            border-radius: 50%;
            background-color: #fff;
            -webkit-transition: border 0.15s ease-in-out;
            -o-transition: border 0.15s ease-in-out;
            transition: border 0.15s ease-in-out;
        }

        .radio label::after {
            display: inline-block;
            position: absolute;
            content: " ";
            width: 11px;
            height: 11px;
            left: 3px;
            top: 3px;
            margin-left: -20px;
            border-radius: 50%;
            background-color: #555555;
            -webkit-transform: scale(0, 0);
            -ms-transform: scale(0, 0);
            -o-transform: scale(0, 0);
            transform: scale(0, 0);
            -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
            transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
        }

    .radio input[type="radio"] {
        opacity: 0;
    }

        .radio input[type="radio"]:focus + label::before {
            outline: thin dotted;
            outline: 5px auto -webkit-focus-ring-color;
            outline-offset: -2px;
        }

        .radio input[type="radio"]:checked + label::after {
            -webkit-transform: scale(1, 1);
            -ms-transform: scale(1, 1);
            -o-transform: scale(1, 1);
            transform: scale(1, 1);
        }

        .radio input[type="radio"]:disabled + label {
            opacity: 0.65;
        }

            .radio input[type="radio"]:disabled + label::before {
                cursor: not-allowed;
            }

    .radio.radio-inline {
        margin-top: 0;
    }

.radio-primary input[type="radio"] + label::after {
    background-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::before {
    border-color: #428bca;
}

.radio-primary input[type="radio"]:checked + label::after {
    background-color: #428bca;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}

.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}

.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}

.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}

.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: initial !important;
}

th .checkbox {
    padding-top: 4px !important;
}

td .checkbox {
    padding-top: 4px !important;
}

    th .checkbox label::before, th .radio label::before, th .checkbox label::after, th .radio label::after,
    td .checkbox label::before, td .radio label::before, td .checkbox label::after, td .radio label::after {
        margin-left: -16px !important;
    }

/* Scroll */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.fc-other-month {
    background: #FAFAFA;
}

.fc td, .fc th {
    border-color: #ece5e5;
}

.progress {
    position: relative;
}

    .progress span {
        position: absolute;
        display: block;
        width: 100%;
    }

.m-b-0 {
    margin-bottom: 0px !important;
}

.m-b-10 {
    margin-bottom: 10px !important;
}

.p-t-0 {
    padding-top: 0 !important;
}

.p-l-0 {
    padding-left: 0 !important;
}

.p-l-30 {
    padding-left: 30px !important;
}

.v-a-middle {
    vertical-align: middle !important;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

.dl-horizontal dt {
    text-align: left;
}

/* Timeline */
ul.timeline {
    padding: 10px 0;
    list-style: none;
    position: relative;
    margin: 0;
}

    ul.timeline::before {
        position: absolute;
        top: 0;
        height: 100%;
        content: "";
        padding-right: 16px;
        border-right: solid 1px #ece5e5;
    }

    ul.timeline li div {
        display: inline-block;
        margin: 30px 0;
        vertical-align: middle;
    }

    ul.timeline li .bullet {
        width: 32px;
        height: 32px;
        color: #FFF;
        text-align: center;
        line-height: 32px;
        box-sizing: border-box;
        border-radius: 50%;
        position: relative;
    }

    ul.timeline li .time {
        width: 60px;
        text-align: center;
    }

    ul.timeline li .desc {
        width: -webkit-calc(100% - 100px);
        width: -moz-calc(100% - 100px);
        width: calc(100% - 100px);
    }

.datepicker table tr td.disabled, .datepicker table tr td.disabled:hover {
    text-decoration: line-through !important;
}

.quadrado {
    position: relative;
    width: 100%;
}

    .quadrado:after {
        content: "";
        display: block;
        padding-bottom: 100%;
    }

    .quadrado > .imagem {
        position: absolute;
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: 100%;
        background-repeat: no-repeat;
        background-color: #FFF;
    }

.text-mobile {
    display: flex !important;
}

.text-mobile-span {
    flex: 2;
}

.text-mobile > i {
    width: 30px;
    text-align: center;
    padding-bottom: 5px;
}

.text-mobile-span > span > i {
    margin-right: 5px;
    margin-left: 10px;
    text-align: center;
}

@media (max-width: 767px) {
    .container-principal {
        overflow: auto;
    }

    .modal:not(.bootbox) .modal-dialog {
        height: 100vh;
        margin: 0px;
    }

    .modal-body {
        max-height: calc(100vh - 160px) !important;
        height: calc(100vh - 160px);
    }

    .modal .col-scroll {
        max-height: initial !important;
    }

    .modal-xl {
        width: 100% !important;
    }

    .modal:not(.bootbox) > .modal-content {
        height: 100vh !important;
        overflow: auto !important;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    }

    .control-label {
        padding-top: 0px !important;
        margin-bottom: 2px !important;
    }

    ::-webkit-scrollbar {
        width: 0px;
        height: 0px;
    }
}

@media (min-width: 992px) {
    .modal.right .modal-dialog {
        position: fixed;
        margin: auto;
        width: 900px;
        height: 100%;
        -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
    }

    .modal.right .modal-content {
        height: 100%;
        overflow-y: auto;
    }

    .modal.right.fade .modal-dialog {
        right: -900px;
        -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
        -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
        -o-transition: opacity 0.3s linear, right 0.3s ease-out;
        transition: opacity 0.3s linear, right 0.3s ease-out;
    }

    .modal.right.fade.in .modal-dialog {
        right: 0;
    }

    .modal.right .modal-body {
        max-height: calc(100vh - 130px);
    }
}

.tox-tinymce {
    border: 0px !important;
}

.tox .tox-statusbar {
    border-top: solid 1px #ece5e5 !important;
}

.tox:not([dir="rtl"]) .tox-toolbar__group:not(:last-of-type) {
    border-right: solid 1px #ece5e5 !important;
}

.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
    background: none !important;
    border-bottom: solid 1px #ece5e5 !important;
}

.tox .tox-menubar + .tox-toolbar, .tox .tox-menubar + .tox-toolbar-overlord .tox-toolbar__primary {
    border-top: solid 1px #ece5e5 !important;
}

.tox .tox-collection--list .tox-collection__group {
    border-color: #ece5e5 !important;
}

.alert, .label {
    border-radius: 8px;
}

.input-group-addon:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.modal-footer .btn {
    border-radius: 980px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    height: auto;
}

.bootbox .modal-footer .btn {
    display: initial;
}