﻿body {
}

.addImgButton {
    margin: auto;
    float: left;
    margin-left: 5px;
    width: 100px;
    height: 100px;
    padding-top: 30px;
}

.addImgControl {
    margin: 13px;
    width: 97%;
    background-color: rgba(232, 232, 232, 1);
    border: 1px solid #808080;
    border-radius: 5px;
    padding: 10px;
}

.imgContainer {
    position: relative;
    height: 96px;
    width: 96px;
    margin: 2px;
    float: left;
    border-radius: 3px;
}

.addedImg {
    height: 94px;
    width: 94px;
    margin: 2px;
    border-radius: 3px;
}

.imgDesc {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(29, 106, 154, 0.72);
    color: #fff;
    visibility: hidden;
    opacity: 0;
    /* transition effect. not necessary */
    transition: opacity .2s, visibility .2s;
    /*Extra Settings*/
    margin: auto;
}

.imgDesc_text {
    margin: auto;
    margin-top:25px;
}
.fileName {
    position: absolute;
    left: 1px;
    top: -20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 4px;
    padding: 5px;
}
.imgContainer:hover .imgDesc {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
}
