/* ShinyboxPlus stack v1.1.2 */


html.shinybox {
	overflow: hidden !important;
	padding-right: 15px;
}

#shinybox-overlay, #shinybox-overlay * {
  box-sizing: border-box; /* addition by me - JR */
}
                          
#shinybox-overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999!important;
	overflow: hidden;
	user-select: none;
	/*background: rgba(13, 13, 13, 0.6); replaced with: */
	background: rgba(0, 0, 0, 0.60);
}

@keyframes rightSpring {
	0% {
    margin-left: 0px;
}

50% {
	margin-left: -30px;
}

100% {
	margin-left: 0px;
}

}
@keyframes leftSpring {
	0% {
    margin-left: 0px;
}

50% {
	margin-left: 30px;
}

100% {
	margin-left: 0px;
}

}
#shinybox-overlay img {
	
	border: 5px solid rgba(255, 255, 255, 1.00);
	background: rgba(255, 255, 255, 1.00);
	
	border-radius: 0px;
	 box-shadow: 0 0 20px rgba(255, 255, 255, 1.00);
}

#shinybox-overlay #shinybox-slider {
	height: 100%;

	 height: calc(100% - 40px) !important;
	top: 20px;
	left: 0;
	/*top: 0;*/
	width: 100%;
	white-space: nowrap;
	position: absolute;
	display: none;
}

#shinybox-overlay #shinybox-slider.rightSpring {
	animation: rightSpring 0.3s;
}

#shinybox-overlay #shinybox-slider.leftSpring {
	animation: leftSpring 0.3s;
}

#shinybox-overlay #shinybox-slider .slide {
	height: 100%;
	width: 98%;
	line-height: 1px;
	text-align: center;
	display: inline-block;
	margin: 0 1%;
}

#shinybox-overlay #shinybox-slider .slide:before {
	content: "";
	display: inline-block;
	height: 50%;
	width: 1px;
	margin-right: -1px;
}

#shinybox-overlay #shinybox-slider .slide img,
#shinybox-overlay #shinybox-slider .slide .shinybox-video-container,
#shinybox-overlay #shinybox-slider .slide .shinybox-pdf-container {
	display: inline-block;
	max-height: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	vertical-align: middle;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-video-container {
	background: none;
	max-width: 1140px;
	max-height: 100%;
	width: 100%;
	padding: 5%;
	box-sizing: border-box;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-video-container .shinybox-video {
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	overflow: hidden;
	position: relative;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-video-container .shinybox-video iframe {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-pdf-container {
	background: none;
	max-width: 1140px;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-pdf-container .shinybox-pdf {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
}

#shinybox-overlay #shinybox-slider .slide .shinybox-pdf-container .shinybox-pdf iframe {
	width: 100%!important;
	height: 100%!important;
	position: absolute;
	top: 0;
	left: 0;
}

#shinybox-overlay #shinybox-slider .loading {
	background: url(../previous_works_files/pashinybox-images/loader-transparent.gif) no-repeat center center;
	height: 31px;
	width: 31px;
	margin: auto;
}

#shinybox-overlay #shinybox-bottom,
#shinybox-overlay #shinybox-top {
		position: absolute;
	left: 0;
	z-index: 999;
	height: 50px;
	width: 100%;
}

/* added - JR: */
#shinybox-overlay #shinybox-top {
	top: -50px;
	border-bottom: 1px solid rgba(51, 51, 51, 1.00); /* added - JR: */
	background-color: rgba(13, 13, 13, 0.95); /* added - JR: */
	
	
	
	
}

#shinybox-overlay #shinybox-top.visible-bars {
	top: 0;
}

#shinybox-overlay #shinybox-top.force-visible-bars {
	top: 0!important;
}

#shinybox-overlay #shinybox-bottom {

	text-align: right;
	bottom: -50px;
	border-top: 1px solid rgba(51, 51, 51, 1.00); /* added - JR: */
	background-color: rgba(13, 13, 13, 0.95); /* added - JR: */
	


}

#shinybox-overlay #shinybox-bottom.visible-bars {
	bottom: 0;
}

#shinybox-overlay #shinybox-bottom.force-visible-bars {
	bottom: 0!important;
}

#shinybox-overlay #shinybox-prev,
#shinybox-overlay #shinybox-next,
#shinybox-overlay #shinybox-close {
	background: url(../previous_works_files/pashinybox-images/icons.png) !important;
	background-repeat: no-repeat !important;
	border: none!important;
	text-decoration: none!important;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: inline-block;
	position: relative;
	z-index: 1;
}

#shinybox-overlay #shinybox-close {
	background-position: 15px 12px !important;
	/*float: left; replaced with individal settings below - JR*/
	float: right !important;
}


#shinybox-overlay #shinybox-prev,
#shinybox-overlay #shinybox-next {
	
	float: right !important;
}

#shinybox-overlay #shinybox-close {
	
	
	float: left !important;
	
}


#shinybox-overlay #shinybox-prev {
	background-position: -78px 13px !important;
}

#shinybox-overlay #shinybox-prev.disabled {
	opacity: 0.3;
	cursor: default; /* addition by me - JR */
}

#shinybox-overlay #shinybox-next {
	background-position: -32px 13px !important;
}

#shinybox-overlay #shinybox-next.disabled {
	opacity: 0.3;
	cursor: default; /* addition by me - JR */
}

#shinybox-overlay #shinybox-caption {
	color: #FFFFFF !important;
	font-size: 22px;
	line-height: 50px;
	text-align: center !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-left: 1em;
	padding-right: 1em;
}
/* end of ShinyboxPlus stack */