/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
.ui-autocomplete {
  max-height: 100px;
  overflow-y: auto;
  /* prevent horizontal scrollbar */
  overflow-x: hidden;
}
/* IE 6 doesn't support max-height
   * we use height instead, but this forces the menu to always be this tall
   */
* html .ui-autocomplete {
  height: 100px;
}
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
}
#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
  max-width: calc(100% - 143px);
  object-fit: contain;
  object-position: center center;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
/* 
    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.
*/ asdsds #cboxOverlay {
  background: #fff;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
#colorbox {
  outline: 0;
}
#cboxContent {
  background: transparent;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  background: transparent;
}
#cboxTitle {
  position: absolute;
  color: #ccc;
}
#cboxCurrent {
	position: absolute;
    padding-top: 15px;
    color: #777777;
    float: left;
    display: block;
    top: -26px;
    text-align: center;
    font-size: 12px;
    left: 50%;
    transform: translateX(-50%);
	z-index:0;
}
#cboxLoadingGraphic {
  background: url(images/loading.gif) no-repeat center center;
}
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}
#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: unset;
  width: 38px;
  height: 19px;
  transition: opacity .3s;
}
#cboxClose:hover, #cboxClose:focus {
  opacity: 50%;
}
#cboxLoadedContent {
  background: transparent;
}
#cboxNext {
  position: absolute;
  text-indent: 0px;
  background: url(/images/arrow-next.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 25.5px 37.4px;
  height: 40px;
	width:40px;
  font-size: 0px;
  text-align: left;
  right: 40%;
  bottom:-55px;
	transition: opacity .3s;
}
#cboxNext:hover {opacity:.5;}
#cboxPrevious {
  position: absolute;
  text-indent: 0px;
  background: url(/images/arrow-prev.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 25.5px 37.4px;
  height: 40px;
	width:40px;
  font-size: 14px;
  text-align: left;
  left: 40%;
  bottom:-55px;
	transition: opacity .3s;
}
#cboxPrevious:hover {opacity:.5;}
#cboxClose {position: fixed;
    width: calc(100% - 53px);
    height: 10%;
    left: 50%;
    top: 0%;
    text-align: center;
    z-index: 999999;
    transform: translate(-50%,0%);
    padding: 5px;
    background-color: #fff;
    cursor: pointer;
    background-image: url(/images/close-dark.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
    opacity: .3 !important;
    transition: opacity .3s;
}
#cboxTitle {
  position: absolute;
  color: #ccc;
  font-size: 20px;
  font-family: 'Montserrat';
  white-space: pre;
  text-align: left;
  line-height: 18px;
  padding-top: 15px;
	pointer-events: none;
}