/* Style */

/* темный слой, закрывающий собой страницу */
.flashlight_overlay{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color:#000;
    z-index:1001;
    -moz-opacity: 1;
    opacity:1;
}
/* содержимое лайтбокса - картинка и текст */
.flashlight_content {
    display: block;
    position: fixed;
    opacity:1;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
    background-color:#333;
    border: none;
    z-index:1002;
    text-align:center;
}
.flashlight_image{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-height: 100%;
    max-width: 100%;
    height: auto;
    margin: auto;
    background-color:white;
    cursor:pointer;
}
.flashlight_close{
    display:inline-block;
    font-size:20pt;
    padding:5px 5px;
    background:#ccc;
    cursor: pointer;
    text-decoration: none;
    color:#333;   
}
.flashlight {
    position:relative;
    opacity: 0.8;
}
.flashlight:hover {
    top:1px;
    left:1px;
    opacity: 1;
    
}
/* You can add your own responsive settings below ----------- */

/* Smartphones (portrait and landscape) -----------
@media only screen 
and (max-width : 840px) {
.flashlight_content { width: 95%;}
} */


