mre-grid2 {
    display: block;
    position: relative;
}

.mre-grid2-icone-lupa {
    margin-left: -30px;
    margin-top: 10px;
}

mre-grid2 .navbar-fixed {
    position: fixed;
    top: -5px;
    opacity: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background-color: #fff;
    padding: 12px 10px 12px 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;

    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

mre-grid2 .navbar-fixed.show {
    top: 55px;
    opacity: 1;
}

mre-grid2 .navbar-fixed a {
    margin-right: 1%;
    background-color: #ffffff;
}

mre-grid2 .navbar-fixed a > span {
    display: none;
}

mre-grid2 .navbar-fixed a i {
    color: #000;
}

mre-grid2 .navbar-fixed #buttons-align {
    line-height: 37px;
}

mre-grid2 table {
    background-color: #fff;
    margin-top: 25px;
}

mre-grid2 table td {
    padding: 0;
}

mre-grid2 table td > column {
    display: block;
    padding: 15px;
}

mre-grid2 th,
mre-grid2 table td > column {
    padding-left: 30px;
}

mre-grid2 th.padding,
mre-grid2 table td.padding {
    padding-left: 30px;
    padding-right: 30px;
}

@media screen and (min-width: 993px) {
    mre-grid2 .navbar-fixed {
        padding-left: 284px;
    }
}

@media screen and (min-width: 100px) and (max-width: 992px) {
    mre-grid2 .navbar-fixed #buttons-align {
        margin-left: 2em;
    }
}

/* --------------------- Actions / Ações -------------------- */
mre-grid2 .mre-grid-action[disabled] i {
    color: #bdbdbd; /* .grey.lighten-1 */
}

mre-grid2 .mre-grid-action[disabled] {
    pointer-events: none !important;
    cursor: default;
}

mre-grid2 .mre-grid-action[disabled]:hover {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

mre-grid2 th.order {
    cursor: pointer;
    transition: background-color .5s ease;
}

mre-grid2 th.order:hover {
    background-color: #EEE;
}

mre-grid2 th.order span {
    vertical-align: middle;
}

mre-grid2 .order-wrapper {
    position: relative;
    height: 24px;
    width: 24px;
    display: inline-block;
}

mre-grid2 .order-wrapper i {
    position: absolute;
    -webkit-transition: margin-top .5s ease;
    -moz-transition: margin-top .5s ease;
    -ms-transition: margin-top .5s ease;
    -o-transition: margin-top .5s ease;
    transition: margin-top .5s ease;
}

mre-grid2 .order-wrapper i:first-child {
    margin-top: -3px;
}

mre-grid2 .order-wrapper i:last-child {
    margin-top: 3px;
}

mre-grid2 .order-wrapper.asc i:first-child,
mre-grid2 .order-wrapper.desc i:last-child {
    margin-top: 0;
}

mre-grid2 .order-wrapper i.ng-leave {
    display: none;
}

/* --------------------- Corrigindo ngAnimate indesejado da paginação -------------------- */
mre-grid2 .pagination li.ng-leave {
    display: none;
}

.pagination li {
    vertical-align: middle;
    border-radius: 15px;
}

.pagination li.disabled a {
    display: none;
}

.pagination li.active {
    background-color: #1976D2;
}

.pagination li > a > span {
    vertical-align: bottom;
}

/* --------------------- ACCORDION -------------------- */
mre-grid2 table > tbody > tr.grid-accordion {
    border-bottom-width: 0;

    -webkit-transition: border-bottom linear;
    -moz-transition: border-bottom linear;
    -ms-transition: border-bottom linear;
    -o-transition: border-bottom linear;
    transition: border-bottom linear;

    -webkit-transition-delay: 0.25s;
    -moz-transition-delay: 0.25s;
    -ms-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;

    will-change: border, height, padding;
}

mre-grid2 table > tbody > tr.grid-accordion.open {
    border-bottom-width: 1px;

    -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

mre-grid2 .grid-accordion accordion {
    display: block;
    overflow: hidden;
    padding: 0 15px;
    max-height: 0;

    -webkit-transition: max-height 0.25s linear, padding 0.25s linear;
    -moz-transition: max-height 0.25s linear, padding 0.25s linear;
    -ms-transition: max-height 0.25s linear, padding 0.25s linear;
    -o-transition: max-height 0.25s linear, padding 0.25s linear;
    transition: max-height 0.25s linear, padding 0.25s linear;

    will-change: max-heigth, height, padding;
}

mre-grid2 .grid-accordion.open accordion {
    padding: 15px;
    max-height: 600px;
}