.main-menu img.w-12.h-12 {
	width: 4rem;
	height: 4rem;
}
.main-menu li.lg\:hidden:nth-of-type(1) a {
	animation-delay: 0.14s;
}

.main-menu li.lg\:hidden:nth-of-type(3) a {
	animation-delay: 0.23s;
}

.main-menu li.lg\:hidden:nth-of-type(5) a {
	animation-delay: 0.27s;
}

.main-menu li.lg\:hidden:nth-of-type(7) a {
	animation-delay: 0.32s;
}

.main-menu li.lg\:hidden:nth-of-type(9) a {
	animation-delay: 0.4s;
}

.main-menu li.lg\:hidden:nth-of-type(11) a {
	animation-delay: 0.5s;
}

.main-menu li.lg\:hidden:nth-of-type(13) a {
	animation-delay: 0.58s;
}

.main-menu li.lg\:hidden:nth-of-type(15) a {
	animation-delay: 0.64s;
}

.main-menu li.lg\:hidden:nth-of-type(17) a {
	animation-delay: 0.7s;
}

.main-menu .lg\:hidden a {
	--animate-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: backInUp;
	animation-name: backInUp;
	animation-direction: alternate;
}

@keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(0.7);
		transform: translateY(1200px) scale(0.7);
		opacity: 0.7;
	}

	80% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}

	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
/* 
@media only screen and (max-width: 767px) {
	.selia-theme .mm-ocd.mm-ocd {
		z-index: 40;
		--categ-menu-bottom-top-added: 10px;
		--categ-menu-top: 28vh;
	}

	.selia-theme .mm-ocd .mm-ocd__content {
		top: 28vh;
		--categ-menu-top: 28vh;
		top: calc(28vh - 50px);
		top: calc(var(--categ-menu-top, 30vh) - var(--categ-menu-bottom-top-added, 50px));
		bottom: 0;
		padding-bottom: calc(20px + 0.4rem);
		padding-bottom: calc(var(--mobile-nav-height, 20px) + 0.4rem);
		width: 100%;
		max-width: 100%;
	}

	.mm-ocd--right .mm-ocd__backdrop {
		top: 0;
		width: 100%;
		height: calc(var(--categ-menu-top, 30vh) - var(--categ-menu-bottom-top-added, 50px));
	}

	#app .mm-ocd .mm-ocd__content {
		transform: translate3d(0%, 110%, 0);
	}

	#app .header-inner-wrapper .close-mobile-menu {
		display: none;
	}

	#app .mm-ocd.mm-ocd--open .mm-ocd__content {
		transform: translate3d(0, 0, 0);
	}

	.mobile-nav-is-on.mob-hide-burg-m:not(.mob-nav-home-only) .store-header .mburger {
		display: none !important;
	}
} */