﻿/*Стель для галлереи с фокусом*/
#gallery {
    -moz-user-select: none;
    user-select: none;
}

    #gallery img {
        max-width: 350px;
        min-width: 200px;
        width: 100%;
        cursor: zoom-in;
    }

        #gallery img:focus {
            position: fixed;
            top: 50%;
            left: 50%;
            z-index: 31;
            max-width: 100%;
            max-height: 100%;
            width: auto;
            outline: none;
            pointer-events: none;
            -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            -moz-user-select: none;
            user-select: none;
        }

            #gallery img:focus ~ div {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 30;
                background: rgba(240,240,240,.9);
                cursor: zoom-out;
            }
