:root {
  --color-primary: #2C2E35;
  --color-primary-inverted: #fff;
  --background-color-base: #fff;
  --background-color-base-inverted: #2C2E35;
  --color-base: #2C2E35;
}

.gallery-wall__item {
  position: relative;
  display: flex;
  min-height: 300px;
  flex: 1 1 100%;
}
@media (min-width: 1200px) {
  .gallery-wall__item {
    flex: 1 1 calc(25% - 24px);
  }
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .gallery-wall__item {
    flex: 1 1 calc(50% - 24px);
  }
}
.gallery-wall__item__content {
  height: 100%;
  position: relative;
  width: 100%;
}
.gallery-wall__item__content iframe,
.gallery-wall__item__content video,
.gallery-wall__item__content img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: 100%;
}
.gallery-wall__item .play-button {
  width: 40px;
  height: 40px;
  background-color: var(--background-color-base);
  color: var(--color-primary);
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  padding: 0;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.gallery-wall__item .play-button:before {
  content: "";
  -webkit-mask-image: url("https://www.emmanuel.edu/themes/custom/zensource_foundation_theme/images/play.svg");
          mask-image: url("https://www.emmanuel.edu/themes/custom/zensource_foundation_theme/images/play.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-base);
  width: 50%;
  height: 50%;
  transition: 0.25s ease;
}
.is-tabbing .gallery-wall__item .play-button:focus {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
.is-tabbing .gallery-wall__item .play-button:focus:before {
  background-color: var(--background-color-base);
}
@media (hover: hover) {
  .gallery-wall__item .play-button:hover {
    background-color: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
  .gallery-wall__item .play-button:hover:before {
    background-color: var(--background-color-base);
  }
}
.is-tabbing .gallery-wall__item:focus .play-button {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
.is-tabbing .gallery-wall__item:focus .play-button:before {
  background-color: var(--background-color-base);
}
@media (hover: hover) {
  .gallery-wall__item:hover .play-button {
    background-color: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
  .gallery-wall__item:hover .play-button:before {
    background-color: var(--background-color-base);
  }
}
.gallery-wall__items {
  flex-wrap: wrap;
}
.gallery-wall__masonry__item {
  position: relative;
}
.gallery-wall__masonry__item .play-button {
  width: 40px;
  height: 40px;
  background-color: var(--background-color-base);
  color: var(--color-primary);
  border-radius: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  padding: 0;
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}
.gallery-wall__masonry__item .play-button:before {
  content: "";
  -webkit-mask-image: url("https://www.emmanuel.edu/themes/custom/zensource_foundation_theme/images/play.svg");
          mask-image: url("https://www.emmanuel.edu/themes/custom/zensource_foundation_theme/images/play.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-base);
  width: 50%;
  height: 50%;
  transition: 0.25s ease;
}
.is-tabbing .gallery-wall__masonry__item .play-button:focus {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
.is-tabbing .gallery-wall__masonry__item .play-button:focus:before {
  background-color: var(--background-color-base);
}
@media (hover: hover) {
  .gallery-wall__masonry__item .play-button:hover {
    background-color: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
  .gallery-wall__masonry__item .play-button:hover:before {
    background-color: var(--background-color-base);
  }
}
.is-tabbing .gallery-wall__masonry__item:focus .play-button {
  background-color: var(--background-color-base-inverted);
  color: var(--color-primary-inverted);
}
.is-tabbing .gallery-wall__masonry__item:focus .play-button:before {
  background-color: var(--background-color-base);
}
@media (hover: hover) {
  .gallery-wall__masonry__item:hover .play-button {
    background-color: var(--background-color-base-inverted);
    color: var(--color-primary-inverted);
  }
  .gallery-wall__masonry__item:hover .play-button:before {
    background-color: var(--background-color-base);
  }
}
@media (min-width: 576px) {
  .gallery-wall__masonry__item {
    padding: 5px;
  }
}
.gallery-wall__masonry__item img {
  width: 100%;
  height: auto;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .gallery-wall__masonry {
    display: none;
  }
}
.gallery-wall.gallery-wall__masonry__reset {
  display: none;
}
@media (max-width: 767.98px) {
  .gallery-wall.gallery-wall__masonry__reset {
    display: block;
  }
}
/*# sourceMappingURL=gallery-wall.css.map */