.file_manager{

    .file{
        @extend .padding-0;
        position: relative;
        border-radius: $border-radius-large;
        overflow: hidden;

        .image, .icon{
            height: 150px;
            overflow: hidden;
            background-size: cover;
            background-position: top;            
        }

        .hover{
            position: absolute;
            right: 10px;
            top: 10px;
            display: none;
            transition: all 0.2s ease-in-out;
        }

        a{
            &:hover{                
                .hover{
                    @extend .displayblock;
                    transition: all 0.2s ease-in-out;
                }
            }
        }

        .icon {
            padding: 15px 10px;
            display: table;
            width: 100%;
            @extend .align-center;

            i {                
                display: table-cell;
                font-size: 30px;
                vertical-align: middle;
                color: $grey-600;
            }
        }

        .file-name {
            padding: 10px;
            border-top:1px solid $blue-grey-50;
            small{
                @extend .displayblock;

                .date{
                    float: right;
                }
            }
        }
    }
}

@media only screen and (max-width:992px) {    
    .file_manager{
                
        .nav-tabs{
            padding-left: 0;
            padding-right: 0;
    
            .nav-item{
                display: inline-block;
            }
        }
    }
}