#gallery {
  max-width: 100vw;
  font-family: monospace, "Montserrat", sans-serif;
  text-align: center;
  padding: 10px;
}
#gallery .gallery-container {
  background-color: #fff;
  color: #35373a;
  min-height: 100vh;
}
#gallery #gallery-filters {
  list-style: none;
  text-align: center;
  margin-bottom: 20px;
}
#gallery #gallery-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  font-size: 1rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}
#gallery #gallery-filters li:hover {
  color: #45beff;
}
#gallery #gallery-filters li.filter-active {
  color: #4fa6d5;
  border: 0;
  border-bottom: #4fa6d5;
  border-style: solid;
}
#gallery #gallery-filters li:last-child {
  margin-right: 0;
}
#gallery .tz-gallery {
  padding: 5px;
}
#gallery .tz-gallery .row > div {
  padding: 2px;
  position: relative;
  overflow: hidden;
}
#gallery .tz-gallery .lightbox .thumb {
  width: 100%;
  height: 256px;
  overflow: hidden;
  background: no-repeat center;
  background-color: black;
  color: white;
  background-size: cover;
}
#gallery .tz-gallery .lightbox .thumb .playbtn {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 100;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#gallery .tz-gallery .lightbox .thumb video {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: relative;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#gallery .tz-gallery .lightbox .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  position: relative;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
#gallery .remove-btn {
  position: absolute;
  background: rgb(173, 47, 47);
  z-index: 2000;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#42c58a",endColorstr="#00bfff",GradientType=1);
  width: 60px;
  height: 40px;
  position: absolute;
  cursor: pointer;
  top: 2px;
  left: 2px;
  border-radius: 0px 0px 200px 200px;
  transition: all 0.5s, border-radius 2s, top 1s;
  overflow: hidden;
}
#gallery .remove-btn i {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 1;
}
#gallery .remove-btn:hover {
  background: rgb(197, 77, 77);
}
#gallery .tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  content: "";
  pointer-events: none;
  z-index: 9000;
  transition: 1s;
}
#gallery .tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(2, 74, 125, 0.356);
  content: "";
  transition: 1s;
}
#gallery .tz-gallery .lightbox:hover:after,
#gallery .tz-gallery .lightbox:hover:before {
  opacity: 1;
}
#gallery .tz-gallery .lightbox:hover img, #gallery .tz-gallery .lightbox:hover video {
  transition: 1s ease-in-out;
  transform: scale(1.2);
  overflow: hidden;
}

#add_gallery_modal label, #add_gallery_modal span {
  color: black;
}/*# sourceMappingURL=gallery.css.map */