/* written by q66 <quaker66@gmail.com>
 */

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    text-align: center;
    display: none;
}

#lightbox .image {
    width: 80%;
    height: 70%;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

#lightbox .under_image {
    line-height: 2em;
}

#lightbox .large {
    max-width: 100%;
    max-height: 100%;
}

#lightbox .arrow_left {
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    position: fixed;
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-right: 1em solid #AAAAAA;
    left: 3em;
    z-index: 1000;
}
#lightbox .arrow_left:hover {
    border-right: 1em solid #FFFFFF;
    cursor: pointer;
}

#lightbox .arrow_right {
    width: 0;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
    position: fixed;
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1em solid #AAAAAA;
    right: 3em;
    z-index: 1000;
}
#lightbox .arrow_right:hover {
    border-left: 1em solid #FFFFFF;
    cursor: pointer;
}

#lightbox .close {
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    color: #EEEEEE;
}
#lightbox .close:hover {
    color: #76a6c9;
}

#lightbox .count {
}

.gallery {
    text-align: center;
}

.gallery .bg {
    display: inline-block;
    padding: 0.25em;
    background: #202020;
    opacity: 0.9;
    outline-style: solid;
    outline-color: #303030;
    outline-width: thin;
    -webkit-box-shadow: 0 0 6px 6px #222222;
    -moz-box-shadow:    0 0 6px 6px #222222;
    -ms-box-shadow:     0 0 6px 6px #222222;
    -o-box-shadow:      0 0 6px 6px #222222;
    box-shadow:         0 0 6px 6px #222222;
}

.thumbnail {
    width: 150px;
    display: inline-block;
    position: relative;
    margin: 5px;
}

.thumbnail_active {
    -webkit-box-shadow: 0 0 1px 3px #76a6c9;
    -moz-box-shadow:    0 0 1px 3px #76a6c9;
    -ms-box-shadow:     0 0 1px 3px #76a6c9;
    -o-box-shadow:      0 0 1px 3px #76a6c9;
    box-shadow:         0 0 1px 3px #76a6c9;
}

.thumbnail img {
    width: 100%;
    height: 100%;
}

.thumbnail img:hover {
    transition: 0.2s;
    -webkit-box-shadow: 0 0 1px 3px #76a6c9;
    -moz-box-shadow:    0 0 1px 3px #76a6c9;
    -ms-box-shadow:     0 0 1px 3px #76a6c9;
    -o-box-shadow:      0 0 1px 3px #76a6c9;
    box-shadow:         0 0 1px 3px #76a6c9;
    cursor: pointer;
}

@media (max-width: 720px) {
    .thumbnail {
        width: 80px;
        margin: 3px;
    }

    .gallery .large {
        width: 100%;
    }

    #lightbox .image {
        width: 95%;
        height: 95%;
    }

    #lightbox .arrow_left {
        border-top: 2em solid transparent;
        border-bottom: 2em solid transparent;
        border-right: 2em solid #AAAAAA;
    }
    #lightbox .arrow_left:hover {
        border-right: 2em solid #FFFFFF;
    }

    #lightbox .arrow_right {
        border-top: 2em solid transparent;
        border-bottom: 2em solid transparent;
        border-left: 2em solid #AAAAAA;
    }
    #lightbox .arrow_right:hover {
        border-left: 2em solid #FFFFFF;
    }
}
