/* GENERAL
***********************************************************************/
.bar {
    display: none;
    width:         10px;
    background:    #4d4d4d;
    margin:        0 auto;
    border-radius: 0;
    }

/* SPECTACLES
***********************************************************************/
.spectacle {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.spectacle .content {
    box-shadow: 0 2px 30px black;
    }

.spectacle .content:not(.zoom) h3 {
    text-align: center;
    font-size: 2vw;
    font-family: Raleway, sans;
    font-weight: 900;
    margin: .5em;
    }

.spectacle .content:not(.zoom) h4 {
    text-transform: initial;
    text-align: center;
    font-style: italic;
    font-size: 1.5vw;
    font-family: "Noto serif",serif;
    }

.spectacle .bar {
    display: block;
}

.spectacle .bar.size1 {
    height: 15vh;
}

.spectacle .bar.size2 {
    height: 20vh;
}

.spectacle .bar.size3 {
    height: 25vh;
}

/* MOBILE */
@media screen
and (min-device-width: 320px)
and (max-width: 568px) {
    .spectacle .bar.size1 {
        height: 5vh;
        }
    
    .spectacle .bar.size2 {
        height: 8vh;
        }
    
    .spectacle .bar.size3 {
        height: 13vh;
        }
        
    }

/* EMPLACEMENTS LIBRES
***********************************************************************/

.libre {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    }

.libre .content {
    background: violet;
    box-shadow: 0 2px 30px black;
    color:white;
    font-weight: 900;
    }

.libre .content h3 {
    text-align: center;
    }

.libre .bar {
    display: block;
    }

/* OBJETS
***********************************************************************/
.item.objet {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: transparent;
    min-width: 60vw;
}

.item.objet img {
    max-height: 80vh;
    /*width: 100%;*/
}

.item.objet:not(.zoom) img {
    max-height: 80vh;
    }

.item.objet h3 {
    display: none;
}

.item.objet .content {
    background: transparent;
}

/* MOBILE */
@media screen
and (min-device-width: 320px)
and (max-width: 568px) {
    
    .item img {
        max-height: 50vh;
        /*width: 100%;*/

        }
    
    .item:not(.zoom) img {
        max-height: 30vh;
        max-width: 50vw;
        }
    }

/* INTRO
***********************************************************************/
.intro {
    background: transparent;
    flex:   0 0 100vw;
    margin: 0;
    display:         flex;
    flex-direction:  column;
    justify-content: center;
    text-align:      center;
}

.intro .content {
    background: transparent;
}

.intro h3, .intro h4 {
    display: none;
}
/* DETAIL
***********************************************************************/
.article h3, .article h4 {
    text-align: left;
    font-weight: 900;
    margin: 0 0 1em 0;
    }

.article h3 {
    text-align: left;
    font-size: 3vw;
    }

.article h4 {
    font-family: "Noto serif",serif;
    text-transform: initial;
    font-style: italic;
    text-align: left;
    font-size: 2vw;
    }
