#photogallery figure {
	margin: 0;
}

.gallery-controls a,
.gallery-controls span {
	display: flex;
	justify-content: center;
	width: 100%;
	color: white;
	padding: 5px;
}

.photogallery-item > div {
	position: relative;
	overflow: clip;
}

.photogallery-item > div > div {
	position: absolute;
	width: 100%;
	height: 32px;
	bottom: -32px;
	left: 0;
	color: white;
	display: flex;
	justify-content: space-evenly;
	transition: 0.2s ease;
}

.photogallery-item:hover > div > div {
	bottom: 4px;
}

.photogallery-item .gallery-catalog-link {
	background: red;
}

.photogallery-item .gallery-catalog-link:hover {
	background: #cb1014;
}

.photogallery-item:hover .gallery-catalog-link svg {
	animation: icon-shake 2s infinite;
}

.photogallery-item .gallery-detail-link {
	background: black;
}

.photogallery-item .gallery-detail-link:hover {
	background: #272727;
}

.photogallery-item svg {
	width: 22px;
	height: 22px;
	margin-right: 4px;
}

.photogallery-description {
	margin-top: 24px;
}

.gallery-controls:has(.gallery-fancybox) {
	pointer-events: none;
}

.gallery-fancybox {
	background: black;
}

@keyframes icon-shake {
	0%, 100% {
		transform: rotateZ(0deg);
	}
	35%, 45%, 55%, 65% {
		transform: rotateZ(5deg);
	}
	
	40%, 50%, 60% {
		transform: rotateZ(-5deg);
	}

}