.lightgallery {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 15px;
  width: 100%;
  justify-content: flex-start;
  padding-left: 0;
}
.lightgallery li {
  border-radius: 5px;
  overflow: hidden;
  text-align: center;
  width: 100%;
  max-width: calc((100% - 60px) / 5);
  padding-left: 0 !important;
}
@media screen and (max-width: 1024px) {
  .lightgallery li {
    max-width: calc((100% - 45px) / 4);
  }
}
@media screen and (max-width: 768px) {
  .lightgallery li {
    max-width: 32%;
  }
}
@media screen and (max-width: 414px) {
  .lightgallery li {
    max-width: 48%;
  }
}
.lightgallery li.li-item {
  cursor: pointer;
}
.lightgallery li::before {
  display: none;
}
.lightgallery li a {
  width: 100%;
  pointer-events: none;
}
.lightgallery li img {
  height: 125px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media print, screen and (min-width: 1025px) {
  .lg-outer .lg-img-wrap {
    max-width: 1200px;
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
}

.lg-toolbar .lg-icon {
  border-radius: 9999px;
  background-color: #fff;
  color: #0058ab;
  font-weight: 700;
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-top: 20px;
}
.lg-toolbar .lg-icon:hover {
  color: #0058ab;
}

.lg-actions .lg-next,
.lg-actions .lg-prev {
  background-color: #0058ab;
  height: 141px;
  width: 77px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .lg-actions .lg-next,
  .lg-actions .lg-prev {
    height: 77px;
    width: 40px;
  }
}
.lg-actions .lg-next::after, .lg-actions .lg-next::before,
.lg-actions .lg-prev::after,
.lg-actions .lg-prev::before {
  transform: scale(1, 2);
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 400;
}

.lg-actions .lg-next {
  border-radius: 10px 0 0 10px;
  right: 0;
}
.lg-actions .lg-next:before {
  content: ">";
}

.lg-actions .lg-prev {
  border-radius: 0 10px 10px 0;
  left: 0;
}
.lg-actions .lg-prev:after {
  content: "<";
}
/*# sourceMappingURL=lightgallery-custom.css.map */