.popup-cont-cats {
	position: fixed;
 	width: 100vw;
 	height: 100vh;
 	background-image: url('../img/bg/bg-popup.png');
	display: none;
	z-index: 10;
}
.popup-cats{
	width: 300px;
	height: 300px;
	background-color: white;
	padding: 20px;
	margin: 40px auto 40px;
}$("#column-left").on('click','.cats', function(){
	$(this).children().children('.popup-cont-cats').fadeIn(400);								
						});<aside id="column-left">
			<div class="cats">
					<div class="content-cats">
							<div class="popup-cont-cats">
								<div class="popup-cats">
									Здесь будет содержимое 1 категории
								</div>
							</div>
 						<div class="description-cats">
 								Выпадающй текст
 						</div>
					</div> 
			</div>
</aside>