﻿#imageGalleryWrapper ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    display: -webkit-flex; /* Safari */
    -webkit-flex-flow: wrap; /* Safari 6.1+ */
    display: flex;
    flex-flow: wrap;
    align-items: flex-start;
}

#imageGalleryWrapper ul {
    list-style-type: none;
    padding: 0;
}

#imageGalleryWrapper .imageOptions {
    cursor: pointer;
    display: none;
    left: 34%;
    margin-left: -18.5px;
    position: absolute;
    text-align: center;
    top: 44%;
    margin-top: -18.5px;
}

    #imageGalleryWrapper .imageOptions a {
        float: left;
    }

#imageGalleryWrapper li:hover .imageOptions {
    display: block;
}

ul.imageGalleryULList .imageWrapper {
    height: 160px;
    width: 100%;
}

.imageGalleryItems {
    width: 100%;
    margin: 5px 0;
}

.imageGalleryItem {
    background-color: #eee;
    padding: 5px;
    height: 40px;
    cursor: pointer;
    margin: 5px 0;
}

    .imageGalleryItem.selected {
        background-color: #ddd;
        padding: 5px;
        height: 40px;
        cursor: pointer;
        margin: 5px 0;
    }

    .imageGalleryItem p {
        font-size: 15px;
    }

    .imageGalleryItem:hover {
        background-color: #ddd;
    }

.imageGalleryItems .fa-trash-o {
    color: #e74c3c;
    margin-right: 5px;
}

.imageGalleryItems .fa-pencil {
    color: #4a89dc;
}
