body {
    background-color: #eaeef3;
	display: -ms-flexbox;
	 background-image: url('../imagens/fundo.jpg');
    max-height: 100%; /* You must set a specified height */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */ 
}
.menu-header{
    color: #fff !important;
}
.img-user{
    width: 20px;
    height: 20px;
}
.sidebar{
    background-color: #006ccd;
    min-width: 250px;
    max-width: 250px;
    min-height: calc(100vh - 56px);
    transition: all 0.3s;
}
.sidebar ul li a{
    display: block;
    padding: 0.75rem 1rem; 
    color: #c7cace;
    text-decoration: none;
}
.sidebar ul li a:hover{
    color: #ecedee;
    background-color: #354358;
}
.sidebar ul .active a{
    color: #ecedee;
    background-color: #354358;    
}
.sidebar ul ul a{
    padding-left: 2.5rem;
    background-color: #1e2835;
}

.container-fluid {
	margin-top: 15px;
	margin-left: 35px;
}
.container-sm {
	margin-top: 20px;
	margin-left: 35px;
}

/*Seletor utilizado para ativar o botão ocultar menu em PC*/ 
.sidebar.toggled{
    margin-left: -250px;
}

@media (max-width: 768px){
    .sidebar{
        margin-left: -250px;
    }
    .sidebar.toggled{
        margin-left: 0px;
    }
}
.sidebar [data-toggle="collapse"]{
    position: relative;
}
.sidebar [data-toggle="collapse"]:before{
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 1rem;
}
.sidebar [aria-expanded="true"]{
    background-color: #52d50c;
}
.sidebar [aria-expanded="true"]:before{
    content: "\f0d8";
}
.content{
    width: 100%;
}
.title{
    font-size: 2.0rem !important;
}
.card-dash{
    padding-right: 5px;
    padding-left: 5px;
}
.hr-title{
    margin-top: 0rem !important;
}
.view-img-size{
    width: 150px;
    height: 150px;
}
.img-edit{
    position: relative;
    display: inline-block;
}
.img-edit:hover .edit{
    display: block;
}
.edit{
    padding-top: 7px;
    padding-right: 7px;
    position: absolute;
    right: 0;
    top: 0;
    display: none;
}