/* ==========================================================
 * QUICK GALLERY — BOTÓN
 * ========================================================== */

.quick-gallery-trigger {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
	position: absolute;
	top: 46px;
	right: 9px;
	z-index: 30;
}

.quick-gallery-trigger:hover {
	background: rgba(0, 0, 0, 0.75);
}

.quick-gallery-trigger:focus {
	outline: none;
}

.quick-gallery-trigger svg,
.quick-gallery-trigger .cks-quick-gallery-icon {
	display: block;
	width: 19px;
	height: 19px;
	color: currentColor;
}