/*
Removes the unit (e.g. px, em, rem) from a value, returning the number only.
@param {Number} $num - Number to strip unit from.
@returns {Number} The same number, sans unit.
*/
/*
Converts one or more pixel values into matching rem values.
@param {Number|List} $values - One or more values to convert. Be sure to separate them with spaces and not commas. If you need to convert a comma-separated list, wrap the list in parentheses.

@param {Number} $base [null] - The base value to use when calculating the `rem`. If you're using Foundation out of the box, this is 16px. If this parameter is `null`, the function will reference the `$base-font-size` variable as the base.

@returns {List} A list of converted values.
*/
/*
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value. By default, the base pixel value used to calculate the rem value is taken from the `$global-font-size` variable.
@access private
@param {Number} $value - Pixel value to convert.
@param {Number} $base [null] - Base for pixel conversion.
@returns {Number} A number in rems, calculated based on the given value and the base pixel value. rem values are passed through as is.
*/
.gallery--large .popup, .gallery--default .popup,
.gallery--large > a,
.gallery--default > a {
  position: relative;
  overflow: hidden;
}
.gallery--large .popup img, .gallery--default .popup img,
.gallery--large > a img,
.gallery--default > a img {
  transition: transform 0.15s ease 0s;
  transform: scale3d(1, 1, 1);
}
.gallery--large .overlay-video, .gallery--default .overlay-video,
.gallery--large .overlay,
.gallery--default .overlay {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery--large .overlay-video .svg-inline--fa, .gallery--default .overlay-video .svg-inline--fa,
.gallery--large .overlay .svg-inline--fa,
.gallery--default .overlay .svg-inline--fa {
  font-weight: bold;
  color: #fff;
}
.gallery--large .overlay .svg-inline--fa, .gallery--default .overlay .svg-inline--fa {
  transition: opacity 0.3s ease 0s;
  opacity: 0;
}
@media (max-width: 34.3125em) {
  .gallery--large .overlay, .gallery--default .overlay {
    display: none;
  }
}
@media (min-width: 34.375em) {
  .gallery--large > a:hover:hover img, .gallery--default > a:hover:hover img {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  .gallery--large > a:hover .overlay, .gallery--default > a:hover .overlay,
  .gallery--large > a:hover .overlay-video,
  .gallery--default > a:hover .overlay-video {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .gallery--large > a:hover .overlay .svg-inline--fa, .gallery--default > a:hover .overlay .svg-inline--fa {
    transition: opacity 0.3s ease 0s;
    opacity: 1;
  }
}

.lg-sub-html h4 {
  color: #ffffff;
}

.gallery--large > a {
  background-color: #ffffff;
  margin-bottom: 1.5rem;
  color: #2d2d2d;
  display: block;
}
.gallery--large > a:hover {
  text-decoration: none;
}
.gallery--large > a.bgd--gray {
  background-color: #eaeaea;
}
.gallery--large .caption {
  padding: 1.5rem;
}
.gallery--large .caption p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
html:not(.is-loaded-base.is-loaded-bold) .gallery--large .caption p {
  letter-spacing: 0.015625rem;
}/*# sourceMappingURL=lightgallery.css.map */
