.product-gallery__slide[hidden] {
	display: none;
}

.product-gallery__slide,
.product-gallery__slide > a {
	display: block;
}

@media (min-width: 1181px) {
	.section-merch-detail-info .product-gallery {
		flex: 1 1 auto;
		min-width: 0;
	}

	.section-merch-detail-info .slider_desktop .product-gallery__main {
		flex: 1 1 auto;
		width: auto;
		max-width: none;
		min-width: 0;
		margin-left: 0;
	}

	.section-merch-detail-info .slider_desktop .product-gallery__main img {
		width: 100%;
		max-width: none;
		height: auto;
	}
}

.section-merch-detail-info .product-gallery__nav {
	display: flex;
	flex: 0 0 120px;
	flex-direction: column;
	width: 120px;
	max-height: 600px;
}

.section-merch-detail-info .product-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 120px;
	max-width: 120px;
	min-height: 0;
	overflow: hidden auto;
	scrollbar-width: none;
}

.section-merch-detail-info .product-gallery__thumbs::-webkit-scrollbar {
	display: none;
}

.section-merch-detail-info .product-gallery__thumb {
	display: block;
	flex: 0 0 120px;
	width: 120px;
	height: 120px;
	padding: 2px;
	border: 2px solid transparent;
	border-radius: 20px;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	transition: border-color .2s, opacity .2s;
}

.section-merch-detail-info .product-gallery__thumb:hover {
	opacity: .75;
}

.section-merch-detail-info .product-gallery__thumb.is-active {
	border-color: var(--colorBlackSecondary);
	opacity: 1;
}

.section-merch-detail-info .product-gallery__thumb img {
	display: block;
	width: 100%;
	min-width: 0;
	height: 100%;
	border: 0;
	border-radius: 16px;
	box-shadow: none;
	object-fit: cover;
}

.section-merch-detail-info .product-gallery__arrow {
	flex: 0 0 40px;
	width: 120px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 10px;
	background-color: var(--colorWhite);
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	transition: background-color .2s;
}

.section-merch-detail-info .product-gallery__arrow:hover {
	background-color: var(--colorBlackFifth);
}

.section-merch-detail-info .product-gallery__arrow_prev {
	margin-bottom: 10px;
	background-image: url("../../icons/catalog/icon-catalog-slider-button-arrow-up.svg");
}

.section-merch-detail-info .product-gallery__arrow_next {
	margin-top: 10px;
	background-image: url("../../icons/catalog/icon-catalog-slider-button-arrow-down.svg");
}

@media (max-width: 1366px) and (min-width: 1181px) {
	.section-merch-detail-info .product-gallery__nav {
		max-height: 500px;
	}
}

@media (max-width: 1180px) {
	.section-merch-detail-info .product-gallery__nav {
		flex: none;
		flex-direction: row;
		width: 100%;
		max-height: 115px;
	}

	.section-merch-detail-info .product-gallery__thumbs {
		flex: 1 1 auto;
		flex-direction: row;
		width: auto;
		max-width: none;
		overflow: auto hidden;
	}

	.section-merch-detail-info .product-gallery__thumb {
		flex-basis: 115px;
		width: 115px;
		height: 115px;
	}

	.section-merch-detail-info .product-gallery__arrow {
		flex-basis: 40px;
		width: 40px;
		height: 115px;
	}

	.section-merch-detail-info .product-gallery__arrow_prev {
		margin: 0 10px 0 0;
		background-image: url("../../icons/catalog/icon-catalog-slider-button-arrow-left.svg");
	}

	.section-merch-detail-info .product-gallery__arrow_next {
		margin: 0 0 0 10px;
		background-image: url("../../icons/catalog/icon-catalog-slider-button-arrow-right.svg");
	}
}
