/* Galeria */
.galeria_wrapper {
	margin-top:10px;
	height:225px;
	border: var(--gi-shadow-border);
	background: var(--gi-background-box);
}
.galeria {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 10vh auto;
  margin: 2em auto;
  max-width: 100%;
}
.galeria_teaser {
  display: grid;
  grid-gap: 1em;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 10vh auto;
  margin: 2em auto;
  max-width: 100%;
}

.galeria h2 {
  font-size: 30px;
  grid-column: 1/4;
}

.galeria a {
  cursor: zoom-in;
  transition: filter 0.2s ease-in-out;
}

.galeria a:hover {
  filter: brightness(90%);
}
.galeria img {
	margin:-10px 0px 0px 100px !important;
  width: 300px;
  height:190px;
	border:var(--gi-shadow-border);
	box-shadow:var(--gi-shadow-box);

}
.galeria_teaser img {
	margin:-35px 0px 0px 10px !important;
  width: 300px;
	border:var(--gi-shadow-border);
	box-shadow:var(--gi-shadow-box);
	border-radius: 3px;
}

/* Lightbox */

.lightbox {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  z-index: 1000;
}

.lightbox:target {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
}
.lightbox img {
  display: block;
  margin: auto;
  max-height: 80vh;
  max-width: 100vh;
  cursor:zoom-in;
}
.lightbox h3 {
   color:white;
}
.lightbox .fechar {
  color: #fff;
  font-size: 4em;
  font-weight: bold;
  height: 1em;
  position: fixed;
  right: 0;
  top: 0;
  width: 1em;
  z-index: 1001;
}
.lightbox_description {
	color:var(--gi-font-color-white);
	padding:10px;
	border: var(--gi-shadow-border);
	background: var(--gi-background-box);
	display:grid;
}
.lightbox_description i {
	color: #0ca0d6;
	font-size:30px;
	width:30px;
}
.lightbox_description_align {
	margin-left:40px;
	margin-top:-33px;
}
.lightbox_textbox {
	position:absolute;
	width:450px;
	padding:10px 10px 10px 10px;
	background: var(--gi-background-box);
	margin:40px 0px 0px 430px;
}
.lightbox_text_title {
  font-weight: bold;
  text-align: center;
}
/* Fixes */
.galeria_high {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 10vh auto;
    margin: 2em auto;
    max-width: 100%;
}
.galeria_high img {
    margin: -15px 0px 0px 150px;
    max-width: 100%;
    height:200px;
}
.galeria_high_l {
    display: grid;
    grid-gap: 1em;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 10vh auto;
    margin: 2em auto;
    max-width: 100%;
}
.galeria_high_l img {
    margin: -13px 0px 0px 70px;
    max-width: 100%;
    height:200px;
}
.galeria_wrapper_35 {
    margin-top: 10px;
    min-height: 235px;
    background-color: rgb(235,244,251);
    border: 1px solid #a6ceed;
}
.galeria_wrapper_80 {
    margin-top: 10px;
    min-height: 280px;
    background-color: rgb(235,244,251);
    border: 1px solid #a6ceed;
}