/*
Custom CSS file
Author: Gabriel Coelho
Company: Uverest
*/

/*Utilitários*/
.border-none {
    border:none !important;
}

body {
    min-height:100vh;
}

/*LOGIN*/
.login-logo {
    max-width:65%;
}

/*MENU DASHBOARD*/
.sidebar .nav-item .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.6rem 1rem;
    width: 14rem;
}

.dashboard-logo {
    max-width:120px;
}

/*TABELAS*/
.table thead tr {
    background:#02384A !important;
}

.table thead tr th{
    color:#ddd;
}

.table td {
    vertical-align: middle !important;
}

/*FORMULÁRIOS*/

/*SWITCH TOGGLE*/
.toggle-on, .toggle-off {
    top:2px;
}

/*Input file*/
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.5em + 0.75rem);
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #6e707e;
    content: "Procurar";
    background-color: #eaecf4;
    border-left: inherit;
    border-radius: 0 0.35rem 0.35rem 0;
}

/*Div para controle de status (bolinha verde, vermelha)*/
.badge-status {
    width:10px;
    height:10px;
    border-radius:50%;
    background-color:#ccc;
    position:relative;
    left:50%;
    margin-left:-5px;
}

.badge-status.green {
    background-color:#1CC88A;
}
.badge-status.red {
    background-color:#E74A3B;
}