.mobile-el {
    display: none;
}

@media screen and (max-width: 900px) {
    .mobile-el {
        display: unset;
    }

    .pc-el {
        display: none !important;
    }

    
    .mobile-bottom-language {
        position: fixed;
	    z-index: 100;
	    bottom: 0;
	    left: 50%;
	    transform: translate(-50%, 150%);
	    width: calc(100% - 9.2vw);
	    height: 11.5vw;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    background: white;
	    border-radius: 10px 10px 0px 0px;
	    box-shadow: 0 3px 5px rgb(0 0 0 / 30%);
	    font-size: 5.5vw;
	    transition: transform 0.3s;
    }

    .mobile-bottom-language.show {
    	transform: translate(-50%, 0%);
    	transition: transform 0.3s;
    }

    .mobile-bottom-language .inactive {
        opacity: 0.3;
    }

    /*.storefront-full-width-content.archive .content-area {
    	height: auto;
    }*/

    /*ul.products::before, ul.products::after {
    	content: "";
    	display: none;
    }*/

    ul.products li.product.instock:nth-child(1n) img,
    ul.products li.product.instock:nth-child(2n) img,
    ul.products li.product.instock:nth-child(3n) img {
        animation-name: none;
    }

}