#main-gallery {
	position: relative;
	margin-bottom: 4rem;
}
.single-products .product-gallery {
	display: none;
}

.single-products .product-gallery.active {
	display: block;
}
.no-parent .tabs {
	display: none;
}
.cycle-nav {
	position: absolute;
	bottom: -5rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
}
.cycle-nav .btn:first-child {
	margin-right: 1rem;
}
#main-gallery:target {
	padding-top: 124px;
	margin-top: -124px;
}
.tabs {
	overflow: hidden;
	background-color: #7487c0;
	display: flex;
	justify-content: center;
	position: sticky;
	top: 124px;
	list-style: none;
	margin: 0;
	z-index: 1;
}

.btn[disabled] {
	display: none !important;
}

.admin-bar .tabs {
	top: 156px;
}

.tabs .tablink {
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 1rem;
	transition: 0.3s ease all;
	font-size: 1.2em;
	font-weight: bold;
	color: white;
	text-decoration: none;
	display: inline-block;
}

.tabs .tablink.active {
	background-color: white;
	color: #7487c0;
}

.tabs .tablink:hover {
	background-color: white;
	color: #7487c0;
}

.tabcontent {
	display: none;
}

.tabcontent.active {
	display: block;
}

.tabcontent img {
	width: 100%;
	height: auto;
}

.gallery-header h2 {
	background: #535fab;
	padding: 1rem;
}

#main-gallery .gallery-header {
	margin: 0;
}

.gallery-header h2 {
	color: white;
	margin: 0;
	text-align: center;
}

.product-gallery {
	column-count: 6;
	column-gap: 8px;
	padding: 8px;
	padding-bottom: 4rem;
	background: #cfd4f3;
}

.product-gallery__item {
	display: inline-block;
	width: 100%;
	position: relative;
	opacity: 0.2;
	transform: scale(0.01);
	border-radius: 10%;
	overflow: hidden;
	transition: all 1s ease;
}

.product-gallery__item.hide {
	display: none;
}

.product-gallery__item.animated {
	opacity: 1;
	transform: scale(1);
	border-radius: 8px;
}

.product-gallery__item .search {
	color: white;
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 40px;
	transform: scale(1.2) translate(-50%, -50%);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	z-index: 1;
}

.product-gallery__item:hover .search {
	transform: scale(1) translate(-50%, -50%);
	opacity: 1;
}

.product-gallery__item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	transition: filter 0.3s ease;
}
@media (max-width: 1440px) {
	.product-gallery {
		column-count: 5;
	}
}
@media (max-width: 1200px) {
	.product-gallery {
		column-count: 4;
	}
}
@media (max-width: 992px) {
	.tabs {
		position: relative;
		top: 0;
		flex-wrap: wrap;
	}
	.admin-bar .tabs {
		top: 0;
	}
	.tabs .tablink {
		padding: 0.5rem 1rem;
		font-size: 1em;
		flex-grow: 1;
		flex-basis: 0;
		white-space: nowrap;
		text-align: center;
	}
}
@media (max-width: 768px) {
	.product-gallery {
		column-count: 3;
	}
	.product-gallery__item .search {
		font-size: 20px;
	}
}
@media (max-width: 576px) {
	.product-gallery {
		column-count: 2;
	}
}
@media (max-width: 480px) {
	.tabs .tablink {
		min-width: 50%;
	}
}
