﻿
/* Image Viewer */

.image-filter-panel {
    background-color: #f5f5f5;
    padding-top: 15px;
}

.image-panel {
    width: 100%;
    position: relative;
    height: 600px;
    background-color: #cccccc;
}

.image-viewer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 1px solid #3064cb;
    border-bottom: 1px solid #3064cb;
}

.image-previous,
.image-next {
    position: absolute;
    top: 50%;
    font-size: 2em;
    color: #ffffff;
    margin-top: -50px;
    cursor: pointer;
}

.image-previous {
    left: 20px;
}

.image-next {
    right: 20px;
}

.image-footer {
    color: #3064cb;
    font-size: 18px;
    padding: 10px;
}

.thumbnail-panel {
    background-color: #cccccc;
    border-top: 1px solid #3064cb;
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 10px 0px 10px 5px;
    margin-bottom: 2px;
    white-space: nowrap;
}

.thumbnail-panel .list-inline {
    margin: 0;
}

.thumbnail-panel .list-inline li:last-child {
    padding-right: 10px;
}