﻿/*Thumbnail Div CSS*/
.thumbnailDiv {
    position: relative;
}

/*image Attachment Icon and ToolTip*/
.attachmentIcon {
    height: 20px;
    width: 20px;
    background-color: transparent;
    /*position: absolute;*/
    z-index: 1;
    /*left: 30px;*/
}

.thumbnailDiv img {
    vertical-align: text-top !important;
}

.attachmentDiv {
    position: absolute;
}


/* Tooltip container */

.attachmentTooltip {
    position: relative;
    display: inline-block;
    left: 15px;
}


    /* Tooltip text */
    .attachmentTooltip .attachmentTooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        top: 20px;
        left: 50%;
        margin-left: -60px;
    }


    /* Show the tooltip text when you mouse over the tooltip container */

    .attachmentTooltip:hover .attachmentTooltiptext {
        visibility: visible;
    }
