/* Style */
.flashlight_overlay{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color:#333;
    z-index:1001;
    -moz-opacity: 1;
    opacity:1;
    filter: alpha(opacity=1);
}
.flashlight_content {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    background-color: white;
    z-index:1002;
    overflow:hidden;
}
.flashlight_desc{
    padding:10px;
}
.flashlight_title{
    width: 100%;
    text-align: left;
    padding-top:2px;
    font-weight: bold;
}
.flashlight_image{
    width: 100%;
}
.flashlight_close{
    float:right;
    display:inline-block;
    padding:2px 5px;
    background:#ccc;
    cursor: pointer;
    text-decoration: none;
    color:#333;   
}
.flashlight {
    opacity: 0.7;
}
.flashlight:hover {
    opacity: 1;
}
/* You can add your own responsive settings below ----------- */

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

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
.flashlight_content { width: auto;}
}
