/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 04 2026 | 16:11:30 */
#filters{
    display: flex;
    gap: 10px;
	justify-content: center;
	align-items: center;
}

#filters div{
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
	padding: 5px 10px 5px 10px;
	background-color: #F182C1;
	color: #fff;
}

#filters div:hover{
	background-color: #333;
	color: #EF2E9B;
}

#gallery{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#gallery .active{
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 20px;
    width: 30%;
    padding: 5px;
    transition: width .3s;
}

#gallery .inactive{
    width: 0;
    padding: 0;
    transition: width .3s;
}