/* shpBox lightbox css */
#shpbox{
	visibility:hidden;
	height:0;
	width:0;
	margin:0;
	/* transition:background .15s ease-in; */
}
#shpbox.active{
	background: rgba(0, 0, 0, 0.57);
    width:100%;
    height:100%;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 100000;
    visibility: visible;
    top: 0;
    left: 0;
}
#shpbox .shpbox{display:none;width:0;height:0;}
#shpbox .shpbox.active{
	display:block;
	width:auto;
	height:auto;
	position:fixed;
	z-index:1000000;
	visibility:visible;
    /* Vertical Centering */
    height: 100%;
    width:100%;
        display:-webkit-box;
        display:-ms-flexbox;
    display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
    align-items: center;
}
#shpbox .shpbox.active img{
    max-width:100%;
    max-height:100%;
    max-width:100vw;
    max-height: 100vh;
	display:block;
	width:auto;
	height:auto;
	margin:0 auto;
	top:0;
	border-radius:5px;
}
#shpbox .shpbox.active span.box-caption {
	    color: white;
    text-align: center;
    position: absolute;
    width: 100%;
    padding: .5em 0;
/*	background: rgba(0, 0, 0, 0.35);*/
	line-height: 1.2em;
	border-top-right-radius:0;
	border-top-left-radius:0;
    margin-top: -5px;
	font-size:24px;
    left:0;
    text-shadow: 0 0 2px #000;
}
#shpbox .shpbox.active:before {
    content: "x";
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 12px 12px 6px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 33px;
    border-bottom-right-radius: 15px;
    z-index: -2;
    font-weight: bold;
}