#GalerieCol {
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
}

.galerieKat {
	width:200px;
	height:240px;
	margin: 0 5px 10px 5px;
	position:relative;
	cursor:pointer;
}

#GalerieKatCont {
	display:flex;
	width:100%;
	flex-direction: row;
	flex-wrap: wrap;
}

.galerieKat:hover {
	z-index:2;
}

.galerieKat:hover .galerieKatPrev:nth-child(2) {
	transform: translateY(30px) scale(1.15);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.galerieKat:hover .galerieKatPrev:nth-child(3) {
	transform: translateY(60px) scale(1.3);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.galerieKat:hover .galerieKatSubt:nth-child(4) {
	transform: translateY(95px) scale(1.3);
}

.galerieKatSubt {
	width:100%;
	height:40px;
	position:absolute;
	top:200px;
	color:#000000;
	background-color:#ffffff;
	display:flex;
	align-items:center;
	justify-content: center;
	transition:0.2s;
	
}

.galerieKatPrev {
	width:100%;
	height:200px;
	position:absolute;
	top:0;
	left:0;
	transition:0.2s;
}

#GalerieKatalog {
	position:fixed;
	width:calc(100% - 40px);
	height:calc(100% - 40px);
	transform:translate(20px, 20px);
	background-color: var(--sec-color);
	border-style:solid;
	border-width: 10px;
	color:#ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
	transition:0.2s;
	z-index:12;
}

#GalerieKatalog[data-active="0"] {
	top:100%;
	opacity:0;
}

#GalerieKatalog[data-active="1"] {
	top:0%;
	opacity:1;
}

.galerieElmntCont {
	width:200px;
	/*height:240px;*/
	margin: 10px 0px 0px 10px;
	display:flex;
	flex-direction: column;
	transition:0.2s;
}

.galerieElmntCont:hover {
	transform: scale(1.15);
	box-shadow: 0 0 20px #000000;
}

.galerieElmnt {
    width:200px;
    height:200px;
	cursor:pointer;
}

.galerieElmntSub {
	background-color:#ffffff;
	width:200px;
	height:40px;
	display:flex;
	align-items: center;
	justify-content: center;
	color:#000000;
}

#CloseKat {
	position:absolute;
	width:70px;
	height:70px;
	top:-10px;
	right:-10px;
	border-bottom-left-radius:30px;
	background-color:#ffffff;
	display:flex;
	color:#000000;
	justify-content: center;
	align-items:center;
    cursor:pointer;
	transition:0.2s;
}

#CloseKat:hover {
	border-bottom-left-radius:10px;
}

#GalerieBigPicCont {
    position:fixed;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    z-index:13;
    transition:0.2s;
}

#GalerieBigPicCont[data-active="0"] {
    top:100%;
	opacity:0;
}

#GalerieBigPicCont[data-active="1"] {
    top:0%;
	opacity:1;
}

#GalerieBigPic {
    max-width:100%;
    max-height:100%;
}

#DarkLayer {
	position:fixed;
	width:100%;
	height:100%;
	background-color:#000000;
	z-index:12;
}

#DarkLayer[data-active="0"] {
	top:100%;
	opacity:0;
	transition:opacity 0.2s, top 0s 0.2s;
}

#DarkLayer[data-active="1"] {
	top:0%;
	opacity:0.8;
	transition:opacity 0.2s, top 0s;
}