/*! Swipebox v1.2.8 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}


#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#swipebox-slider {
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
}
#swipebox-slider .slide {
 /* background: url(../images/loader.gif) no-repeat center center;*/
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
  vertical-align: middle;
}
#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container {
  display: inline-block;
  max-height: 100%; /*100%*/
  max-width: 100%;
  margin: 0; /*margin: 0*/
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: left; /*middle*/
}

/*infotText created by Gil, this is for the hidden text that will be added to the swipebox slides*/
.infoText,.linkText{
	display:none;
	color:white;
}



#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

#swipebox-action,
#swipebox-caption{
  position: absolute;
  left: 0; /*positions bottom swipebox navigation bar all the way to the left */
  z-index: 999; /*999 -- perhaps to say way above anything else on the page including picture */
  height: 50px; /*height of bars*/
  width: 100%;/*width of bars */
}

#swipebox-action {
  bottom: -50px; /*-50px remains docked to bottom of gallery when click*/
}
#swipebox-action.visible-bars {
  -ms-transform: translateY(-50px);
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}
#swipebox-action #swipebox-prev,
#swipebox-action #swipebox-next,
#swipebox-action #swipebox-close {
  background-image: url(../images/icons.png);
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  z-index:999;
}
#swipebox-action #swipebox-prev {
  background-position: -32px 13px;
  right: 100px;
}
#swipebox-action #swipebox-next {
  background-position: -78px 13px;
  right: 40px;
}
#swipebox-action #swipebox-close {
  background-position: 15px 12px;
  left: 40px;
}
#swipebox-action #swipebox-prev.disabled,
#swipebox-action #swipebox-next.disabled {
  opacity: 0.3;
}

#swipebox-caption {
  top: -50px;
  text-align: center;
}
#swipebox-caption.visible-bars {
  -ms-transform: translateY(50px);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

#swipebox-info{
    position: relative;
    top: 30px;
    background-color: white;
    border: 1px solid red;    
    margin-left: 65% !important ;
    height: 50%;
    width: 25%;
}

.current img{
    /*margin-right: 25%;*/
}

#swipebox-slider.rightSpring {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}

#swipebox-slider.leftSpring {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}

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

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

  100% {
    margin-left: 0px;
  }
}

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

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

  100% {
    margin-left: 0px;
  }
}
@-webkit-keyframes leftSpring {
  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;
  }
}
@media screen and (max-width: 800px) {
  #swipebox-action #swipebox-close {
    left: 0;
  }

  #swipebox-action #swipebox-prev {
    right: 60px;
  }

  #swipebox-action #swipebox-next {
    right: 0;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-action,
#swipebox-caption, #swipebox-link {
  text-shadow: 1px 1px 1px black;
  background-color: #0d0d0d;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0d0d0d), to(black));
  background-image: -webkit-linear-gradient(top, #0d0d0d, black);
  background-image: linear-gradient(to bottom, #0d0d0d, black);
  opacity: 0.95;
}

#swipebox-action {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#swipebox-caption, #swipebox-link{
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
  font-size: 19px;
  line-height: 43px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}
#swipebox-link{
	display:inline-block;
	width:100%;
	color:white;
	text-align:center;		
	text-decoration: none;
}

#swipebox-link a,#swipebox-link a:visited{
	color:white;
	text-decoration: none;	
}

#swipebox-link:hover{
	text-decoration: underline;
}
.slide-image{ 
	height: 75% !important;
	margin: 100px 0 0 100px !important;	
}
.slide-text{
    font-family: 'Quicksand', sans-serif;
	height: 74% !important;
	margin: 100px 0 0 5px !important;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	display:inline-block;
	vertical-align:top;
	width: 400px;
	color: #fff;
	border-top: 1px solid #c0c0c0;
	text-align: left;
	white-space: normal !important;

}
/*
    background: -webkit-linear-gradient(##3B3B3B,#0d0d0d); /* For Safari 5.1 to 6.0 */
/*	background: -o-linear-gradient(#3B3B3B, #0d0d0d); /* For Opera 11.1 to 12.0 */
	/*	background: -moz-linear-gradient(#3B3B3B, #0d0d0d); /* For Firefox 3.6 to 15 */
/*		background: linear-gradient(#3B3B3B, #0d0d0d); /* Standard syntax */
