@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,500,700&display=swap');
* {
    font-family: 'Roboto', sans-serif;
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    /* Preferred icon size */
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    /* Support for all WebKit browsers. */
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */
    text-rendering: optimizeLegibility;
    /* Support for Firefox. */
    -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */
    font-feature-settings: 'liga';
    &.info {
        font-size: 15px !important;
        padding-top: 4px;
    }
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none;
}

body {
    background-color: rgb(244, 244, 244)!important;
}

#wrapper {
    height: 100vh;
    width: calc( 100vw - 250px);
    left: 250px;
    position: absolute;
    top: 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    background: #f6f6f7!important;
    padding-bottom: 10px;
}

.card-content {
    background: white;
    margin: 10px;
    padding: 20px;
    border-radius: 5px;
    color: #777;
}

.container {
    max-width: calc( 100vw - 300px);
    /*max-width: calc( 100vw - 100px );*/
    padding: 30px;
}

.container-fluid {
    margin-top: 20px;
}

.margin {
    margin: 5px;
}

.icone-content {
    background: #f1f1f1;
    margin: 1px;
    text-align: center;
    padding: 10px 0px;
}

.icone-content.active {
    background: red;
}

@media only screen and (max-width: 768px),
(min-device-width: 768px) and (max-device-width: 1024px) {
    #wrapper {
        width: 100%;
        left: 0px;
    }
    .container {
        max-width: 100%;
    }
}

.z-depth-0 {
    box-shadow: none !important;
}

.z-depth-1 {
    box-shadow: none !important;
}

.z-depth-1-half {
    box-shadow: none !important;
}

.z-depth-2 {
    box-shadow: none!important;
}

.z-depth-3 {
    box-shadow: none !important;
}

.z-depth-4,
.modal {
    box-shadow: none !important;
}

.z-depth-5 {
    box-shadow: none !important;
}

.cartao-wrapper {
    width: 30px;
}

.cartao-wrapper img {
    width: 100%;
}

.label-danger {
    background-color: #0080ff;
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: none!important;
    border-bottom: 1px solid #eceff1;
}

.table-bordered>tbody>tr>td {
    font-size: 12px;
}

.dropdown-menu {
    border: 1px solid rgb(244, 244, 244)!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}

.caixa {
    background: #fff;
    border-radius: 5px!important;
    padding: 1%;
    margin-bottom: 10px;
    position: absolute;
    width: 98%;
}

.table>tbody+tbody {
    border-top: 0px!important;
}

tr {
    background: #fff;
    border-bottom: 1px solid #eceff1;
}

.btn-info {
    color: #fff!important;
    background-color: #0072e2!important;
    border-color: #0072e2!important;
}

.btn-whats {
    color: #fff!important;
    background-color: #26d367!important;
    border-color: #26d367!important;
}

.btn-info .glyphicon {
    color: #fff!important;
}

.btn-danger {
    color: #fff!important;
    background-color: #e52f48!important;
    border-color: #e52f48!important;
}

.btn-danger .glyphicon {
    color: #fff!important;
}

h1 {
    color: #9ea1a2!important;
    font-size: 24px;
    margin: 20px;
}

h1 {
    color: #9ea1a2!important;
    font-size: 24px;
    margin: 20px;
}

h4 {
    color: #474747;
}

.fc-day-top {
    background-color: #f5f5f5!important;
}

.modal.in .modal-dialog {
    border-radius: 5px;
    padding: 1%;
}

#loader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba( 255, 255, 255, 0.5);
    z-index: 99;
}

#loader img {
    position: relative;
    width: 100px;
    height: 100px;
    left: calc( 50vw - 50px);
    top: calc( 50vh - 50px);
}

hr {
    border-top: 1px solid #c5c4c4!important;
}

.dashhover:hover {
    box-shadow: 10px 10px 50px grey;
    border: 1px solid grey;
}

.dashhover:hover .icondash {
    color: black;
}

.d-flex{
    display:flex !important;
}

.justify-center{
    justify-content: center !important;
}

.CSSfiltros{
background-color: rgb(240, 240, 240);
-webkit-animation: fadein 1s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 1s; /* Firefox < 16 */
        -ms-animation: fadein 1s; /* Internet Explorer */
         -o-animation: fadein 1s; /* Opera < 12.1 */
            animation: fadein 1s;
            box-shadow:2px 2px 2px 1px rgb(211, 211, 211);  
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}