.lightbox-msg{
    
    background-color:rgba(0,0,0,.4);
    position:fixed;
    z-index:1000;
    width:100%;
    height:100%;
    opacity:0;
    display:none;
}

.lightbox-content{
    
    background-color:#FFF;
    position:relative;
    width:450px;
    margin:auto;
    padding:25px;
    box-sizing: border-box;
    top:150px;
    text-align:center;
    display:table;
    border-radius:5px;
    -webkit-box-shadow: -1px 4px 21px -1px rgba(0,0,0,0.75);
-moz-box-shadow: -1px 4px 21px -1px rgba(0,0,0,0.75);
box-shadow: -1px 4px 21px -1px rgba(0,0,0,0.75);
    

}

.lightbox-close{
    
    position:absolute;
    right:15px;
    top:15px;
    z-index:1;
    font-family: arial;
    font-weight:600;
}

@media only screen and (max-width: 500px){
   .lightbox-content{
    
    position:relative;
    background-color:#F8F8F6;
    font-size:13px;
    color:#666;
    line-height: 16px;
    width:90%;
    height:auto;
    box-sizing:border-box;
    padding:15px;
    margin-left:auto;
    margin-right:auto;
    top:100px;
    text-align:center;
    margin-top:2px;
    margin-bottom:2px;
    border-radius:3px;
    box-shadow: 0px 0px 10px rgba(0,0,0,.3);
    /*-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;*/

}