.modal {
  position:fixed;
  left:0;top:0;
  display:none;
  width:100%;height:100%;
  background-color:rgba(0,0,0,0.9);
  justify-content:center;
  align-items:center;
  text-align:center;
  overflow:hidden;  
  z-index:1000;
}

#modal-kontener {
  position:relative;
  max-width:100vw;
  max-height:100vh;
  width:auto;
  height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.modal-content { 
  display:block;
  margin:auto;
  max-width: 100vw;
  max-height: 100vh;
  min-height:100%;
  width: auto;
  height: auto;
  position:relative;
  vertical-align:middle;
  animation-name:zoom;
  animation-duration: 1s;
  object-fit:contain;
  overflow:hidden;
  pointer-events:none; /* a jobb klikk menü nem jelenik meg  */
  user-select:none; /* kijelölés tiltása */
  -webkit-user-drag:none; /* drag & drop tiltása */
  -webkit-touch-callout:none; /* iOS menü tiltása */
}

@keyframes zoom {
  from {transform:scale(0);opacity:0}
  to {transform:scale(1);opacity:1}
}

#modal-close {
  position:absolute;
  top:15px;right:15px;
  display:none;
  width:30px;height:30px;
  color:#eee;
  font-size:40px;
  font-weight:bold;
  background:#000;
  line-height:27px;
  border-radius:20px;
  border:2px solid var(--gray);
  transition:0.3s;
  z-index:1001;
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
}

#modal-close:hover,#modal-close:focus {color:var(--gray);text-decoration:none;cursor:pointer}

#PrevLink,#NextLink {
  position:absolute;
  top:calc(50% - 50px);
  width:50px;
  height:100px;
  display:none;
  cursor:pointer;
  padding:14px 0 0 0;
  text-indent:-6px;
  color:#eee;
  background:#000;
  font-weight:bold;
  font-size:50px;
  border-radius:0 100px 100px 0;
  outline:none;
  user-select:none;
  -webkit-user-select:none;
  -moz-opacity:0.2;opacity:0.2;filter:alpha(opacity=20);
  z-index:1001;
}
#PrevLink {left:0}
#NextLink {right:0;text-indent:4px;border-radius:100px 0 0 100px}

#PrevLink:hover,#NextLink:hover {-moz-opacity:0.7;opacity:0.7;filter:alpha(opacity=70)}

#kep_sorszam,#magantanar_kereso  {
  position:absolute;
  bottom:0;
  display:none;
  text-align:left;
  padding:5px 10px 5px 10px;
  font-size:16px;
  line-height:30px;
  background:rgba(0,0,0,0.7);
  color:#eee;
}

#kep_sorszam {left:0;float:left}

#magantanar_kereso {right:0;float:right}

