.galeria {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  background-color: #f29300;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  height: 60vh;
  width: 100%;
}

.galeria:last-child {
  margin-bottom: 3rem;
}

body .boton-navegacion-galeria {
  display: inline-flex;
  position: absolute;
  align-self: flex-start;
  align-items: center;

  border-radius: 50%;

  /* height: 50px; */
  height: 60vh;
  width: 50px;
  padding: 0;
  margin: 0;

  /* border-color: floralwhite; */
  background-color: transparent;
  border: none;
  color: #ffffffaa;

  text-align: center;
  vertical-align: middle;
  font-size: 40px;
  text-shadow: 0 7px 14px rgba(0,0,0,0.25), 0 5px 5px rgba(0,0,0,0.22);

  transition: transform 0.2s;

  z-index: 6;
}

body .boton-navegacion-galeria:hover {
  transform: scale(1.3);
}

body .boton-navegacion-galeria-izquierda {
  order: 1;
  padding-left: 0.4em;
  left: 0.4em;
}

body .boton-navegacion-galeria-derecha {
  order: 3;
  justify-content: flex-end;
  right: 0.4em;
  padding-right: 0.4em;
}

.contenedor-elementos-galeria,
.contenedor-video-galeria {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  order: 2;

	width: 100%;
  height: 100%;
}

.contenedor-elemento-galeria {
	display: inherit;
	flex-direction: inherit;
	flex-wrap: inherit;
  width: inherit;
  height: inherit;
  /* justify-content: space-between; */
  justify-content: center;
}

.imagen-galeria,
.video-galeria {
  margin: auto;
  /* margin-left: auto; */
  /* margin-right: auto; */
  /* flex-grow: 1; */
  min-height: 0;
  max-height: 100%;
  /* width: 100%; */
  object-fit: cover;
}

.imagen-galeria {
  background-color: white;
}

.video-galeria {
  margin-bottom: unset;
  background-color: black;
  /* height: 100%; */
}

.video-galeria-youtube {
  height: 100%;
  width: 70%;
}

.descripcion-imagen-galeria {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;

	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
  padding-top: 0.8em;
}

.fecha-descripcion-imagen-galeria {
  flex-grow: 1;

  color: floralwhite;

	/* text-align: center; */
	font-weight: bold;
	font-style: italic;
  margin-right: 0.8em;
}

.texto-descripcion-imagen-galeria {
  flex-grow: 2;

  /* min-height: 0; */
  /* overflow: hidden scroll; */
  /* margin-left: 1em; */

	color: floralwhite;
	font-style: italic;
}

@media only screen and (max-width: 909px) {
  .galeria {
    flex-wrap: wrap;
    /* height: 500px; */
    height: unset;
  }

  .galeria-videos {
    height: 80vh;
  }

  .contenedor-elementos-galeria,
  .contenedor-video-galeria {
    order: 1;
    /* height: 88%; */
  }

  .boton-navegacion-galeria {
    width: 44px;
    height: 44px;
    margin-top: 0.8rem;
    align-self: flex-end;
  }

  .boton-navegacion-galeria-izquierda {
    order: 2;
  }

  .boton-navegacion-galeria-derecha {
    order: 3;
  }

  .video-galeria-youtube {
    width: 100%;
  }

  .descripcion-imagen-galeria {
    flex-direction: column;
  }

  .texto-descripcion-imagen-galeria {
    /* display: none; */
  }
}
