.gallery-image-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}
.gallery-image-row:last-child {
	margin-bottom: 0;
}
.gallery-image-toggle {
	cursor: pointer;
	margin-bottom: 3rem;
}
.gallery-image-toggle img {
	width: 100%;
	height: auto;
	margin-bottom: 8px;
}
.gloria-popup-gallery {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
	pointer-events: none;
	visibility: hidden;
	opacity: 0;
	background-color: #222;
	transition: 0.5s;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	
}
.admin-bar .gloria-popup-gallery {
	top: 32px;
}
.gloria-popup-gallery .gallery-poppup__wrapper {
	width: 100%;
	display: block;
	margin-top: 70px;
	margin-bottom: 70px;
	max-height: 100vh;
	padding: 0 15px;
}

.gloria-popup-gallery .gallery-poppup__wrapper {
    overflow-y: auto;
}
.gloria-popup-gallery .gallery-poppup__wrapper::-webkit-scrollbar {
    width: 3px;
}
.gloria-popup-gallery .gallery-poppup__wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
    border: 1px solid transparent;
    background-clip: content-box;   /* THIS IS IMPORTANT */
}
.gloria-popup-gallery .gallery-poppup__wrapper::-webkit-scrollbar-thumb {
    background: #d7d6d6;
    border: 1px solid #d7d6d6;
}

.gloria-popup-gallery .gallery-poppup__close {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgb(255,255,255,0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	cursor: pointer;
}

.gloria-popup-gallery.active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.admin-bar .gloria-popup-gallery .gallery-poppup__close  {
	top: calc(20px);
}
.gallery-image-title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	color: #222;
	word-break: break-word;
}
.grid-masonry-item img,
.grid-masonry-item a {
	width: 100%;
}
.gallery-masonry-container .grid-masonry-item {
	width: 32%;
	margin-bottom: 2%;
}
.gallery-masonry-container .grid-masonry-gutter {
	width: 2%;
}

@media (min-width: 1200px) {
	.gloria-popup-gallery .gallery-poppup__wrapper {
		width: 1170px;
	}
}
@media (max-width: 991px) {
    .gallery-masonry-container .grid-masonry-item {
		width: calc(95% / 2);
		margin-bottom: 5%;
	}
	.gallery-masonry-container .grid-masonry-gutter {
		width: 5%;
	}
	.gloria-popup-gallery .gallery-poppup__wrapper {
		margin-top: 35px;
		margin-bottom: 35px;
	}
}
@media (max-width: 782px) {
	.admin-bar .gloria-popup-gallery {
		top: 46px;
	}
}
@media (max-width: 576px) {
	.gallery-image-row {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 380px) {
	.gallery-image-row {
		grid-template-columns: 1fr;
	}
}