.fileExplorerItem {
    position: relative;
    display: inline-block;
    padding: 4px;
    margin: 4px;

    height: 120px;
    width: 120px;

    font-size: 50px;

    overflow: hidden;

    border: 0px;    
    cursor: pointer;
}

.fileExplorerItem:hover {
    background: lightblue;
    border: 1px dashed blue;
}

.fileExplorerItemSmall {
    height: 70px;
    width: 70px;

    font-size: 30px;
}

.fileExplorerItem > .folder {
    position: absolute;
    text-align: center;
    
    text-align: center;

    top: 4px;
    left: 0px;
    right: 0px;
    
    object-fit: contain;
    color: #777;
}

.fileExplorerItem > .image {
    height: 48%;
    width: calc(100% - 8px);
    position: absolute;
    top: 4px;
    right: 4px;
    left: 4px;
    object-fit: contain;
}

.fileExplorerItem > .file {
    position: absolute;
    text-align: center;
    
    text-align: center;

    top: 4px;
    left: 0px;
    right: 0px;
    
    object-fit: contain;
    color: #777;    
}

.fileExplorerItem > .fileText {
    text-align: center;
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    height: 45%;
    
    white-space: initial;
    overflow:hidden;
    overflow-wrap: break-word;
    font-size: 10px;
    line-height: 10px;
}

.fileExplorerItem > .fileTextSmall {
    font-size: 8px;
}

.fileExplorerItem > .fileAnchor {
    color: black;
}

.fileExplorerItem > .fileAnchor:hover {
    color: black;
    text-decoration: none;
}



.fa-plus:hover {
    color: green;
    text-shadow: 1px 1px yellow;
}

.fa-folder-plus {
    padding-left: 4px;
}

.fa-folder-plus:hover {
    color: #009688;
    text-shadow: 1px 1px yellow;
}

/* Upload button */
.fa-arrow-circle-up {
    padding-left: 1px;
}

.fa-arrow-circle-up:hover {
    color: #4caf50;
    text-shadow: 1px 1px yellow;
}

 
@keyframes shake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-1deg); }
    20% { transform: rotate(1deg); }
    30% { transform: rotate(0deg); }
    40% { transform: rotate(1deg); }
    50% { transform: rotate(-1deg); }
    60% { transform: rotate(0deg); }
    70% { transform: rotate(-1deg); }
    80% { transform: rotate(1deg); }
    90% { transform: rotate(0deg); }
    100% { transform: rotate(-1deg); }
}

.custom-menu {
    display: none;
    z-index: 1000;
    position: fixed;
    overflow: hidden;
    border: 1px solid #CCC;
    white-space: nowrap;
    font-family: sans-serif;
    background: #FFF;
    color: #333;
    border-radius: 5px;
    padding-left: 1px;
}

.custom-menu li {
    padding: 8px 12px;
    cursor: pointer;
    list-style-type: none;
}

.custom-menu li:hover {
    background-color: #DEF;
}

.fileDetails {
    height: 200px;
    width: 150px;
    background: lightblue;
    border: 2px solid blue;
    border-radius: 12px;
    display: none;
    position: fixed;
}
