/**
 * Colorboxes
 *  
 ============================================================================ */
/**
 * Colorbox Core Style:
 * The following CSS is consistent between example themes and should not be altered.
 */
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#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%;
}

/**
 * These elements are buttons, and may need to have additional
 * styles reset to avoid unwanted base styles.
 */
#cboxPrevious, #cboxNext, #cboxCurrent, #cboxSlideshow {
  display: none !important;
}

button#cboxPrevious, button#cboxNext, button#cboxSlideshow {
  display: none;
}

#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
  cursor: pointer;
}

/**
 * Avoid outlines on :active (mouseclick),
 * but preserve outlines on :focus (tabbed navigating)
 */
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

/* Reset box sizing to content-box if theme is using border-box. */
#colorbox, #cboxContent, #cboxLoadedContent {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Colorbox module default style:
 * The styles are ordered & tabbed in a way that represents
 * the nesting of the generated HTML.
 */
#cboxOverlay {
  background-color: #ededee;
}

#colorbox {
  outline: 0;
}

#cboxWrapper {
  background: #939598;
  border-radius: 5px;
}

#cboxTopLeft {
  width: 15px;
  height: 15px;
}

#cboxTopCenter {
  height: 15px;
}

#cboxTopRight {
  width: 15px;
  height: 15px;
}

#cboxBottomLeft {
  width: 15px;
  height: 15px;
}

#cboxBottomCenter {
  height: 15px;
}

#cboxBottomRight {
  width: 15px;
  height: 15px;
}

#cboxMiddleLeft {
  width: 15px;
}

#cboxMiddleRight {
  width: 15px;
}

#cboxContent {
  background: #fff;
  border-radius: 5px;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-top: 60px;
}

#cboxTitle {
  position: absolute;
  top: 10px;
  left: 10px;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  max-width: 80%;
  padding: 4px 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#cboxCurrent {
  display: none;
}

.cboxSlideshow_on #cboxSlideshow {
  position: absolute;
  top: 0px;
  right: 40px;
  background: url(images/controls.png) no-repeat -115px -78px;
  width: 38px;
  height: 38px;
  text-indent: -9999px;
}

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -155px -78px;
}

.cboxSlideshow_off #cboxSlideshow {
  position: absolute;
  top: 0px;
  right: 40px;
  background: url(images/controls.png) no-repeat -39px -78px;
  width: 38px;
  height: 38px;
  text-indent: -9999px;
}

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -78px -78px;
}

#cboxPrevious {
  display: none;
}

#cboxPrevious:hover {
  display: none;
}

#cboxNext {
  display: none;
}

#cboxNext:hover {
  display: none;
}

#cboxLoadingOverlay {
  background: #939598;
}

#cboxClose {
  position: absolute;
  top: 1rem;
  right: .5rem;
}

#cboxClose:after {
  font-family: "Font Awesome 7 Pro", FontAwesome, sans-serif;
  font-size: 1rem;
  color: #d31245;
  content: "\e59b";
  padding: .75rem;
  background-color: #d31245;
  color: #ffffff;
  border-radius: 25%;
}
/*# sourceMappingURL=colorboxes.css.map */