/* Works on Firefox */

.aside {
  scrollbar-width: thin;
  scrollbar-color: blue orange;
}

/* Works on Chrome, Edge, and Safari */
.aside::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.aside::-webkit-scrollbar-track {
    background: #3f484b;
}

.aside::-webkit-scrollbar-thumb {
    background-color: #1a2226;
    border-radius: 5px;
    border: 1px solid #7b7b7b;
}

html{
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    /*font-family: "Source Sans Pro",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";*/
    font-size: 1rem;
    font-weight: 400;
    /*line-height: 1.5;*/
    color: #212529;
    text-align: left;
    background-color: #fff;
    height: 100%;
    width: 100%
}




@media (min-width: 750px){
    .wrapper {
        grid-template-columns: 238px auto;
        transition: grid-template-columns 0.5s;
    }
    .wrapper_mini {
        grid-template-columns: 55px auto !important;
        transition: grid-template-columns 0.5s;
    }
}

@media (max-width: 750px){
    .wrapper {
        grid-template-columns: 0px auto;
        transition: grid-template-columns 0.5s;
    }
    .fundo_menu{
        display: none;
        position: fixed;
        top: 0px;
        left: 258px;
        right: 0px;
        bottom: 0px;
        z-index: 998;
        background-color: #cccccc9e;
        transition: display 0.5s;
    }
    .fundo_menu_max{
        display: block;
    }
}



.wrapper {
  display: grid;
  grid-template-rows: 50px auto 50px;
  height: 100%;
}

.aside {
  grid-row-start: 1;
  grid-row-end: 4;
  background: #424242;
}

.logo{
    background: #2f2f2f;
    padding-top: 19px;
    text-align: center;
    color: #e6e6e6;
    overflow: hidden;
    white-space: nowrap;
    /*justify-content: center;*/
    align-items: center;
    display: flex;
    padding: 6px 0px;
    font-size: 25px;
}

.logo img{
    height: 40px;
    width: auto;
    margin: 0px 5px 0px 4px;
}

.content-wrapper{
    background: #f7f7f7;
    overflow: auto;
}

.float-right {
    float: right!important;
}

@media (min-width: 576px){
    .d-sm-inline-block {
        display: inline-block!important;
    }
}


.main-footer{
    color: #86909c;
    border-top: 1px solid #e4e4e4;
}

@media (min-width: 576px){
    .main-footer{
        font-size: revert;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        height: 100%;
        align-content: space-around;
        padding: 14px;
    }
}

@media (max-width: 576px){
    .main-footer{
        font-size: small;
        display: flex;
        ustify-content: center;
        align-content: space-around;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .float-right{
        display: none;
    }
}


.text-center{
    text-align: center
}


@media (max-width: 768px){
    .titulo_rel_template {
        display: none;
    }
}


button:disabled,
button[disabled]{
  border: 1px solid #999999 !important;
  background-color: #cccccc !important;
  color: #666666 !important;
  cursor: not-allowed !important;
}