/* Style */
.flashlight_overlay{
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color:rgba(0,0,0,0.8);
    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%);
    background-color: white;
    z-index:1002;
    overflow:hidden;
    width:80% !important;
    height:50% !important;
    max-width: 640px;
}
.flashlight_video iframe{
    position: absolute;
    height:90%;
    width: 100%;
}
.flashlight_desc{
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 97%;
}
.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;   
}
/* 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;}
}
