/* Set a background image by replacing the URL below */
body {
	/* background: url("../images/tatry_1920.jpg") no-repeat center center fixed rgba(0, 0, 0, 0.5); */
	background-color: black;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
.box {
	/* height:auto; */
	background:#000;
	color:#fff;
	cursor:pointer;
}
.hidden {
	height:0px;
	-webkit-transition:height, 0.5s linear;
	-moz-transition: height, 0.5s linear;
	-ms-transition: height, 0.5s linear;
	-o-transition: height, 0.5s linear;
	transition: height, 0.5s linear;
}
.hidden.open {
	height:200px;
	 -webkit-transition:height, 0.5s linear;
	-moz-transition: height, 0.5s linear;
	-ms-transition: height, 0.5s linear;
	-o-transition: height, 0.5s linear;
	transition: height, 0.5s linear;
}

.dev {
	border: 1px solid red;
}

.homecol {
	min-height: 300px;
	/* margin-bottom: 20px; */
}
.homelogo {
	/* widht: 300px; */
	overflow: hidden;
	display: block;
	margin-top: auto;
	margin-bottom: auto;
}

.w10perc{
	width: 10%;
}
.w25perc{
	width: 25%;
}
.w50perc{
	width: 50%;
}
.h25perc{
	height: 25%;
}
.h50perc{
	height: 50%;
}
.container{
	/* background-color: rgba(255, 255, 255, 0.8); */
}
.border-right{
	/* border-right: 1px solid white; */
}
.border-top{
	/* border-top: 1px solid white; */
}
.content-text {
	text-align: justify
}
.table-white, .table-white td  {
	color:white;
}

footer::before {
	border: 0px;
}

/* ******************************** */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Fade efekt */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#lightbox img {
  max-width: 80%;
  max-height: 80%;
}

#close {
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
  font-size: 30px;
  color: white;
}

#lightboxContent {
  margin-top: 20px; /* Vytvorí priestor pod obrázkom */
  margin-left: 15px;
  text-align: center;
  color: white;
}