/* -------------------------------------------- 
      ESTILOS PARA LAS GALERIAS DE FOTOS 
-------------------------------------------- */

/* ----- Estilos HTML ----- */
body {
    background-color: black;
}

nav {
    width:100%; 
    margin:0;
    position:fixed; /*Para que la barra se quede fija*/
    top: 0;
    z-index:101; /*Para que la barra se quede fija*/ 
}

footer {
    text-align: center;
    position: fixed;
    bottom: 0px;
    width: 100%;
    margin: auto;
    z-index:102; 
}

/* ----- PRELOAD ----- */
.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    background-color: black;
}

.loader-container {
    width: 400px;
    height: 100px;
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}

.progress {
    border-radius: 25px; 
    height: 35px;
}

.progress-bar {
    line-height: 35px;
    font-size: 25px;
}

/* ----- CAROUSEL ----- */
.carousel, .carousel-inner > .item > img {
    top: 40px;
    margin: auto;
    max-height: calc(100vh - 80px);
}

/* ----- TITULOS GALERIA ----- */
#tituloGaleria {
    float: left;
    position: absolute;
    left: 10px;
    bottom: -10px;
	transform-origin: left top 0;
    transform: rotate(-90deg);
    z-index: 101;
    font-family: font-family: 'Roboto', sans-serif;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
    
}

/* ----- COPY RIGHT ----- */
#copyRight {
    float: right;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 102;
    font-family: font-family: 'Roboto', sans-serif;
    font-size: 0.75em;
    color: white;
    font-weight: bold;
    
}