.fixed-table-container { position: relative; overflow: auto;}
.table-fixed { background-color: #0096D7;position: absolute; left: 0; top: 0; }
.table-fixed .group {background-color: tomato !important; }

.rights-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.moveLeft {
    background-image: url('/Library/image/Arrowhead-Left-01-32.png');
    background-color: #FFFFFF;
    border-radius: 15px;
    position: absolute;
    top: 200px;
    cursor: pointer;
    margin-left: -25px;
    width: 32px;
    height: 32px;
}

.moveRight {
    position: absolute;
    z-index: 2;
    background-color: #FFFFFF;
    background-image: url('/Library/image/Arrowhead-Right-01-32.png');
    border-radius: 15px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    right: -5px;
    top: 200px;
}


.saving-message {
    color: white;
    font-size: 30px;
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    right: 0;
    margin-top: -22px;
    /*background-color: rgba(0,126,105,1);*/
    background-color: rgba(0,169,132,1); /* rgba(154,140,131,1); */
    border-radius: 5px;
    padding: 5px 10px;
    opacity: 0.7;
    box-shadow:
            0 1px 1px rgba(0,0,0,0.1),
            inset 0 1px 0 rgba(255,255,255,0.6);
}

.save-icon, .nothing-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

.save-icon { background: url('/Library/image/icon-checkbox-white.png') no-repeat; }
.nothing-icon { background: url('/Library/image/icon-close.png') no-repeat; }


.fadein.ng-hide-remove,
.fadeout.ng-hide-add {
    -webkit-transition: 400ms ease-in-out all;
    -moz-transition: 400ms ease-in-out all;
    -o-transition: 400ms ease-in-out all;
    transition: 400ms ease-in-out all;
    display: block !important;
}

.fadein.ng-hide-remove,
.fadeout.ng-hide-add.ng-hide-add-active {
    opacity: 0;
}

.fadeout.ng-hide-add,
.fadein.ng-hide-remove.ng-hide-remove-active {
    opacity: 1;
}