/* imagepreview container */
.imagepreview {
    position: relative;
    display: inline-block;    
}

/* imagepreview text */
.imagepreview .spanimage {
    visibility: hidden;
    width: 200px;
    /* background-color: rgba(255, 255, 255); */
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */

    /* Position the imagepreview text */
    position: absolute;
    
    top: 5px;
    left: -10px;

    /* Fade in imagepreview */
    opacity: 0;
    transition: opacity 0.3s;
    
}

/* imagepreview arrow */
.imagepreview .spanimage::after {
    content: "";
    position:static;
    top: 15px;
    left: 5px;
    
    border-width: 5px;
    border-style: solid;
    
}

/* imagepreview no */
.imagepreview .spanimagehidden {
    display: none;    
}


/* Show the imagepreview text when you mouse over the imagepreview container */
.imagepreview:hover .spanimage {
    visibility: visible;
    opacity: 1;
}