/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:relative; top:0; left:0; z-index:9999; }
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}

/* 
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{
  position: fixed;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,.8);
  z-index: 9999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#colorbox{outline: none;}
        #cboxContent{background:transparent;}
        #cboxLoadedContent{margin-bottom:20px;}
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#fff;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#fff;}
        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#fff;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#fff;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#fff;}
        #cboxLoadingOverlay{background:rgba(0,0,0,.8) no-repeat 5px 5px;}
        #cboxClose{position:absolute; bottom:0; right:0; display:block; color:#fff;}
        



/* Individual Styles */     
#cboxPrevious, #cboxNext {
 position:fixed; 
 height: 80vh; 
 width: 10%; 
 top: 10vh; 
 left: 0; 
 color:#fff;
 background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
 border: none;
}
#cboxNext {
 left: unset; 
 right:0; 
}

#cboxNext:hover > * {
transform: scale(1.05) translateX(2px);
}
#cboxPrevious:hover > * {
transform: scale(1.05) translateX(-2px);
}


#cboxClose {position:fixed; right: 15px; top: 0;padding: 10px 20px 20px; font-size: 36px;line-height: 1;background: none;}
#cboxClose:hover > * {transform: scale(1.05);}

body.admin-bar #cboxClose {top: 22px;}

#cboxTitle{
	width: 98%;
	color:#fff;
	text-align:left;
	padding:8px;
	padding-right: 12px;
	margin: 30px 0 20px 0;
}

#cboxTitle.no_title{
	padding:0px 8px;
}




#cboxContent { padding: 60px 60px 0; }

@media (max-width: 680px) {
#cboxContent { padding: 40px 40px 0; }
}

#cboxClose, #cboxCurrent {
    height: 44px;
    margin-bottom: -1px; 
    }
    
#cboxCurrent{ position:fixed; left: 50%; bottom: 20px; }

