/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Project : Intranet Comptel 
    Author  : Comptel System Ltda.
*/

.current-Folder{
    font-weight: bold;
}

.drive-rout-containter{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.drive-container{
    overflow: auto;
    display: flex;
    background-color: #EEE!important;;
    height: 69vh;
    flex-direction: row;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
    align-content: flex-start;
}

.drive-dialog-filter {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .6);
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: .6s;
    -moz-transition-duration: .6s;
    transition-duration: .6s;
    -webkit-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    -moz-transition-timing-function: cubic-bezier(.23, 1, .32, 1);
    transition-timing-function: cubic-bezier(.23, 1, .32, 1)
}
.drive-dialog-filter--is-shown {
    opacity: 1
}

.contextmenu-node{
    position: absolute;
    background-color: white;
    border: solid #CCCCCC 1px;
    z-index: 10000;
}

.contextmenu-item{
    margin: 0.5em;
    padding-left: 0.5em;
}

@media screen and (min-width: 359px) and (max-width: 1023px){
    .drive-card{
        /*width: calc(40% - -16px)!important;*/
    }
}

.container-drive{
    /*width: calc(18% - 16px);*/
    /*display: inline-block;*/
}

.drive-card {
    margin: 5px;
    height: 43px;
    cursor: pointer;
    color: grey;
    border-radius: 2px;
    background-color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.14), 0 2px 2px 0 rgba(0, 0, 0, 0.098), 0 1px 5px 0 rgba(0, 0, 0, 0.084); 
    padding: 13px;
    display: flex;
    flex-direction: row;
}

.img-drive{
    font-size: 1.5em!important;
    /*padding: 10px;*/
}

.img-drive-sm{
    font-size: 1em!important;
}

.drive-card:active{
    color: white;
    background-color: #4285F4;
}

.drive-card-active{
    color: white;
    background-color: #4285F4;
}

.drive-card span{
    padding: 4px 7px;
    /*    position: absolute;
        top:14px;*/
}

.dragover{
    color: grey;
    border: 1px solid #4285F4;
}

.dragging{
    opacity:.4;
}

.dropbox-over {
    background-color: #bfb!important;
}