/******************************************************************************************
                                        Imports de fonts
******************************************************************************************/
@font-face {
	/* Open sans Condensed */
	font-family: "Open Sans Condensed";
	src:url("../../fonts/open_sans_condensed/OpenSans-CondLight.ttf");
}

/* Imports des pictos */
/*
    https://www.flaticon.com/packs/ui-round
*/

/***************************
            GENERAL
****************************/
* {
    font-family:Open Sans Condensed;
}

/***************************
            HEADER
****************************/
#navbar {
    width:100%;
    position:fixed;
    top:0;
    -webkit-box-shadow: 0px 10px 3px -6px rgba(2,2,51,0.35);
    -moz-box-shadow: 0px 10px 3px -6px rgba(2,2,51,0.35);
    box-shadow: 0px 10px 3px -6px rgba(2,2,51,0.35);
    z-index:2;
}

#logo {
    width:70px;
    height: 70px;
}

#titre {
    font-size: 25pt;
    vertical-align: middle;
    line-height: 65px;
}

#deconnexionBouton {
    background-image: url("../../images/pictogrammes/logout.png");
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 25px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
}


/***************************
            CARTES
****************************/
.carteProjet {
    width: 330px;
    height:410px;
    margin: 0.65rem 0.75rem;
}

.carteProjet:hover {
    cursor:pointer;

}

.carteProjet:hover .imageProjet {
box-shadow: 0px 0px 17px -2px rgba(2,34,92,0.75);
-webkit-box-shadow: 0px 0px 17px -2px rgba(2,34,92,0.75);
-moz-box-shadow: 0px 0px 17px -2px rgba(2,34,92,0.75);

}
.imageProjet {
    width:100%;
    height: 85%;
    object-fit: cover;
    border-radius:1%;
}

.card-text {
    color: grey;
    font-size: 0.85rem;
}

/***************************
            404
****************************/
#pageErreur {
    width:100vw;
    height: 100vh;
    background-color: black;
    position:fixed;
    top:0;
    left:0;
    text-align: center;
}
#texte404 {
    position: fixed;
    bottom: 25%;
    text-align: center;
    width: 100%;
    color:white;
    font-size: 16pt;
}

#lienRetourPageErreur {
    border:solid 1px beige;
    background-color: beige;
    padding:6px 8px;
    border-radius: 5px;
    color:black;
}

#img404 {
    height: 100%;
}

/***************************
            ADMIN
****************************/
#imageConnect {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top:0;
    left:0;
    object-fit: cover;
}

#formConnect {
    position: fixed;
    top: calc((100vh - 260px)/2);
    left: calc((100vw - 500px)/2);
    width: 500px;
    background-color: rgba(0,0,0,0.5);
    padding: 15px;
    height: 260px;
    text-align: center;
}
#formConnect h3 {
    color:white;
    margin-bottom:15px;
}

#listeProjetAdmin .carteProjet {
    position:relative;
}

#listeProjetAdmin .carteProjet .btn {
    position: absolute;
    bottom:20px;
    right:0;
}

/***************************
        AJOUT/MODIF
****************************/
#divEdition {
    width:90%;
    margin-top:5%;
    margin-left:5%;
}

.carousel-control {
	height: 40px;
	margin-top: 30%;
	border: solid 1px var(--bootstrap-light-grey);
	width: 40px;
	background-color: rgba(0,0,0,0.85);
}

#blocCarousel {
	margin:auto;
}

.carousel-indicators {
	background-color:rgba(0,0,0,0.85);
	border:solid 1px var(--bootstrap-light-grey);
}
.carousel-indicators li {
	height: auto;
}

.suppressionImage {
	background-image: url("../../images/pictogrammes/delete.png");
	background-size: 40px;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 5px;
	right: 5px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border:none;
}

.gal_link {
	position: relative;
	margin:20px;
	width:25%;
    list-style: none;
}
.gal_link img {
	width: 100%;
}