#imageView_container {
    width: 100%;
    height: 100%;
    background: black;
    margin: 0 auto;
    position: fixed;
    left: 0px;
    top: 0px;
    display: none;
    z-index: 999;
}

img#imageView {
    max-width:  100%;
    max-height: 100%;
    height: auto;

    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

span#imageviewerDesc {
    position: absolute;
    margin: auto;
    left: 50%;
    top: 10px;
    transform: translate(-50%, 0);

    font-family: 'Arial';
    font-style: normal;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: white;
    background-color: rgba(40,40,40,0.6);
    border-radius: 7px;
    padding: 3px 15px;
}

span#imageviewerSort {
    position: absolute;
    margin: auto;
    left: 50%;
    bottom: 10px;
    transform: translate(-50%, 0);

    font-family: 'Arial';
    font-style: normal;
    font-size: 14px;
    text-align: center;
    color: white;
    background-color: rgba(40,40,40,0.6);
    border-radius: 7px;
    padding: 3px 15px;
}

.dot {
    width:  40px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
    color: #ccc;
    overflow: hidden;
}

.dot:hover {
    color: white;
    background-color: rgba(255,255,255,0.5);
}

.dot img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

a#viewerClose {
    position: absolute;
    margin: auto;
    top: 5px;
    cursor: pointer;
}

a#viewerArrow {
    position: absolute;
    margin: auto;
    top: 50%;
    cursor: pointer;
    transform: translate(0, -50%);
}

a#viewerArrow.left  { left:  5px; }
a#viewerArrow.right, a#viewerClose.right { right: 5px; }

.nonselectable {
    -webkit-user-select: none; /* Safari */        
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE10+/Edge */
    user-select: none; /* Standard */    
}
