/*
PALETTE DE COULEUR / https://coolors.co/
    #DE8643 -- Persian Orange
    #FFD76A -- orange Yellow Crayola
    #161a1f -- Eerie Black
    #384454 - Charcoal
    ##EAEAEA -- Platinium
*/

:root {
    --main-color-bg: #1f252e;
    --main-color-bf: #2d3e53;
    /*--main-color-bf: #384454;*/
    --main-color-choc: #46423c;
    --main-color-link: #eb9b3e;
    --main-color-light: #f3ba44;
    --main-color-dark: #8f6c27;
    --main-color-bl: #FCFCFC;

    --main-color-text: #242424;
  }

@font-face {
    font-family: 'BebasNeue';
    src: url('./font/BebasNeue.otf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PragRoman';
    src: url('./font/coolvetica rg.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Login';
    src: url('./font/Suburbana.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Nougat";
    src: url("./font/Nougat-ExtraBlack.ttf");
}

/********************************MISE EN PAGE GENERALE**********************************/
body {
    background-color: var(--main-color-bg);
    /*font-family: "Segoe UI";*/
    /*color:#161a1f;*/
    
    font-family: "Noto Sans", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "wdth" 400;
}


textarea {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

select {
    display: block;
    width: 300px;
    padding: 10px;
    height: 34px;
    line-height: 34px;
    border: 1px solid silver;
    border-radius: 10px;
    font-size: 14px;
}

a {
    color: var(--main-color-link);
}

a:hover {
    color: var(--main-color-link);
}

.navbar-nav .nav-link.active, .navbar-nav .show > .nav-link {
    color: var(--main-color-link);
}

/*Surcharge de l'icône du menu de navigation pour l'avoir en blanc*/
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    height: 50px;
    width: 50px;
}

  .list-group-item-customNav{
    background-color: #222;
    color: #FFF;
    border:none;
    border-radius: 0px;
    border-bottom :1px solid white;
    font-size: 2em;
}

.content-section-a {
    padding: 50px 0;
    /*background-color #f8f8f8;*/
    background-color: #f7f7f7;
    /*background: linear-gradient(to bottom, #afafaf 0% , #F5F5F5 3%, #F5F5F5 97%, #afafaf 100%);*/
    box-shadow: 0px 0px 10px #222;
}


.content-section-b {
    padding: 50px 0;
    background-color: #FFF;
    box-shadow: 0px 0px 10px #999;
    /*ùbox-shadow: 0px 0px 10px #999;*/
}

.arc{
    border-radius: 0 0 200% 200%;
    height:150px;
    background-color: #384454;
}


/********************************HEADER**********************************/
.intro-header {
    /* If you're making other pages, make sure there is 50px of padding to make sure the navbar doesn't overlap content! */
    text-align: center;
    margin-top: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--main-color-bg);  
    /*background:#384454 url("../graphique/headerfond.jpg");*/

}

.img-logo{
    float: center;
}

/*Affichage des stats la page home*/
.item-stats{
    height:100px;
    width:100px;
    border-radius: 200px;
    background-color: var(--main-color-light);  
    /*border: 3px solid var(--main-color-light);*/
    color:#333;
    font-size: 40px;
    text-align: center;
    line-height: 100px;

}

.item-stats-h4{
    margin-top : 30px;
    font-weight: 300;
    text-align: center;
}

/*.intro-header h4{
    color:white;
    text-shadow: 0px 0px 5px #000000;
    margin-top : 20px;
}*/

/*Affichage des inputs de connexion dans le header*/
.affConnexion {
    margin-top: 5px;
}

.affConnexion input {
    border-radius: 5px;
    color: #444;
    padding: 3px;
}

.affConnexion a {
    margin-top: 2px;
    margin-left: 5px;
}

/********************************FORMULAIRE**********************************/
/*Pour les input �tant mal renseign�*/
.inputFailed {
    border: 1px solid red;
    border-radius: 0px;
}


/*pour les inputs de formulaire*/
.input-form {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    height: 50px;
}

/*Pour afficher les messages d'erreurs d'un formulaire*/
.errorForm {
    position: absolute;
    display: none;
    margin-top: -5px;
    background-color: #FFFFFF;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 3px #222;
    background: url(../graphique/warning.png);
    background-color: white;
    background-size: 20px;
    background-position: 3% 50%;
    background-repeat: no-repeat;
    padding-left: 35px;
}

.lien {
    font-size: 11px;
    padding-left: 20px;
    text-decoration: none;
}

.lien:hover {
    color: darkblue;
}


/*Nouvelle classe bouton*/

.btn-blue {
    margin-top: -5px;
    border: 1px solid white;
    color: white;
}

.btn-blue:hover {
    background-color: white;
    color: #44609a;
}

.btn-secondary {
    background-color: silver;
}

.btn-secondary:hover {
    color: white;
    background-color: gray;
}

.btn-form {
    font-size: 20px;
}

.icon-android {
    background: orange url(../graphique/btn_android.png);
    background-size: 20px;
    background-position: 5% 50%;
    background-repeat: no-repeat;
    padding-left: 40px;
}

.icon-beer {
    background: orange url(../graphique/btn_beer.png);
    background-size: 20px;
    background-position: 5% 50%;
    background-repeat: no-repeat;
    padding-left: 40px;
}


/*Bouton plus petit utilis� comme indicateur*/

.btnFiltre {
    padding: 15px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background-color ease .2s;
}

.btnFiltre:hover {
    background-color: DarkOrange;
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
    padding-left: 20px;
}

.btnFiltre:hover:before {
    content: "> ";
}

.btnFiltreSelect {
    background-color: #ffe7b5;
}

.btnFiltreSelect:before {
    content: "> ";
}


/*****Fond transparent pour l'affichage des popup******/

.fondtransparent {
    z-index: 10000;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: gray;
    opacity: 0.8;
}


/*******Pour l'affichage d'information*******/

.infoBox {
    background: #EEE;
    background: -webkit-linear-gradient(top, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%);
    color: #212121;
    border-radius: 20px;
    border: 5px solid white;
    padding: 16px;
}


/******Popup généraliste********/

.popup {
    z-index: 10002;
    display: none;
    position: fixed;
    padding: 20px;
    top: 150px;
    left: 0px;
    /*font-size : 14px;*/
    text-align: center;
    background-color: #FFF;
    box-shadow: 0px 0px 10px #222;
    border-radius : 20px;
    width : 25%;
}


/******Popup pour afficher les alertes******/

.alert {
    z-index: 1;
    position: fixed;
    padding: 20px;
    left: 50%;
    top: 35%;
    text-align: center;
    min-width: 600px;
    margin-left: -300px;
    min-height: 100px;
    /*line-height: 50px;*/
    border: 3px solid red;
    font-size : 18px;
    border-radius: 10px;
    background-color: #FEFEFE;
    box-shadow: 0px 0px 50px;
}


/******Popup pour afficher les informations******/

.information {
    z-index: 1;
    position: fixed;
    padding: 20px;
    left: 50%;
    top: 35%;
    text-align: center;
    min-width: 600px;
    margin-left: -300px;
    min-height: 100px;
    /*line-height: 50px;*/
    /*border: 3px solid rgb(150, 150, 150);*/
    font-size : 18px;
    border-radius: 10px;
    background-color: #FEFEFE;
    box-shadow: 0px 0px 20px #666;
}


/********************Affichage des vignettes d'une bières***/

@keyframes beerAnim {
    from {
        box-shadow: 0px 0px 10px #222;
        transform: scale(1.00);
    }
    to {
        box-shadow: 0px 0px 20px #222;
        transform: scale(1.05);
    }
}

@keyframes beerAnimOff {
    from {
        height: 0px;
    }
    to {
        height: 400px;
    }
}


.beerBox {
    cursor: pointer;
    /*box-shadow: 0px 0px 5px #444;*/
    /*z-index: 1;*/
    /*border: 1px solid rgb(194, 194, 194);*/
    /*width: 100%;*/
    /*background-color: #FEFEFE;*/
    /*animation-name: beerAnim;
    animation-duration: 2s;*/
    background-color: var(--main-color-bf);
    /*background: linear-gradient( var(--main-color-bf) 94%,var(--main-color-bg));*/
    margin-top: 15px; 
    height: 500px;
    
    border-radius: 5px;
    border : none;
    box-shadow: 0px 0px 10px #222;
    transform: scale(1.0);
    transition: transform 0.2s linear;
}

.beerBox:hover {
    z-index:10000;
    transform: scale(1.04);
    box-shadow: 0px 0px 20px #222;
    /*animation-name: beerAnim;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;*/
}

/*.resultPlace:hover{
    background : var(--main-color-light);
    cursor : pointer;
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}*/

.beerBox img {
    object-fit: cover;
}

.animateBeerIn {
    animation-name: beerAnim;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

.animateBeerOut {
    animation-name: beerAnim;
    animation-duration: 1s;
    /*animation-fill-mode: forwards;*/
    animation-direction: reverse;
}

.beerBox .card-title {
    /*color:var(--main-color-link);*/
    color: white;
    font-family: "Roboto", serif;
    font-size: 22px;
}

.beerBox p {
    text-align: left;
    color: #AAA;
    margin-top : -10px;
    font-size: 14px;
}

.card-body{
    min-height: 93.4px;
}

/*On adapte pour les petits écrans*/
@media (max-width: 1080px) {
    .beerBox img{
        min-height: 400px;
        max-height: 400px;
    }

    .navbar-custom{
        height: 100px;
    }

    .navbar-custom .navbar-brand img{
        height:80px;
        width: 80px;
    }
}


/*******Champ de recherche*****/

.searchInput {
    padding: 10px;
    width: 100%;
    /*border: 1px solid silver;*/
    background-color : var(--main-color-bf);
    border-radius: 50px;
    font-size : 34px;
    color:white; 
    /*font-size: 12px;*/
    outline: none;
    padding-left: 40px;
    padding-right: 40px;
}

.searchBeerInput {
    outline: none;
    font-size : 28px;
    background-color : var(--main-color-bf);  
    border-radius: 0px;
    color:white; 
    font-weight:300;
    border: 0px;
    width: 90%;
}

.searchBeerInput::placeholder {
    opacity: 1; 
    color:white; 

}

.searchPlaces{
    padding: 5px;
    width: 100%;
    outline: none;
    font-size : 20px;
    background-color : var(--main-color-bg);
    border-radius: 0px;
    color:white; 
    border:none; 
    border-bottom : 1px solid white; 
    font-weight:300;
}


/*****Champs de recherche de la page d'accueil****/

.searchInput_home {
    padding: 10px;
    width: 100%;
    /*margin-bottom : 50px;*/
    border: 1px solid #44312C;
    background-color: #846058;
    border-radius: 5px;
    font-size: 24px;
    outline: none;
    color: #444;
}

.searchInput_proposition_home {
    display: none;
    background-color: #6e5650;
    margin-left: 50px;
    border-radius: 0px 0px 10px 10px;
    text-shadow: none;
    color: #444;
    border-right: 1px solid #44312C;
    border-left: 1px solid #44312C;
    border-bottom: 1px solid #44312C;
    box-shadow: inset 0px 3px 3px 0px #444444;
}

.searchInput_proposition_home .propositionBiere {
    padding: 5px;
    text-align: left;
    cursor: pointer;
}

.searchInput_proposition_home .propositionBiere:hover {
    background-color: #FFC266;
}

.searchInput_proposition_home .propositionBiere img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 2px;
}

.searchInput_proposition_home .propositionBiere div {
    font-family: 'PragRoman';
    font-weight: normal;
    font-size: 20px;
    line-height: 80px;
    position: absolute;
    display: inline;
    padding-left: 10px;
    color: black;
}

.searchInput_home::placeholder {
    color: #52413D;
}


/******Titre de section*******/

.titre {
    /*border-bottom: 3px solid orange;
    line-height: 36px;
    padding-left: 10px;
    margin-bottom: 10px;
    text-align: left;
    font-family: 'BebasNeue';
    font-size: 36px;
    color: #464646;
    letter-spacing: 0.07em;
    text-transform: uppercase;*/

    border-bottom: 2px solid orange;
    line-height: 28px;
    padding-left: 10px;
    margin-bottom: 30px;
    text-align: left;
    /*font-family: 'BebasNeue';*/
    font-size: 36px;
    color: #464646;
    font-weight: 700;
    letter-spacing: -0.05em;
    /*text-transform: uppercase;*/
}

.titre-space {
    margin-top: 50px;
}

.barreAdmin {
    border: 1px solid #444;
    line-height: 20px;
    height: 20px;
    font-size: 11px;
    color: #444;
    padding: 5px;
    background-color: #EEE;
    text-align: left;
}

.barreAdmin .libelle {
    float: left;
}

.barreAdmin .afficon {
    float: right;
}

img.icon {
    margin-left: 10px;
    margin-right: 10px;
    height: 20px;
    width: 20px;
}


/*** Affichage de message juste en dessous du menu de navigation***/

.message {
    position: fixed;
    display: none;
    z-index: 1;
    top: 50px;
    right: 1%;
    background-color: orange;
    font-size: 15px;
    font-weight: bold;
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #FFF;
}

.newBeer {
    height: 80px;
    width: 80px;
    background-image: url("../graphique/add_new_beer.png");
    background-size: 80px 80px;
    cursor: pointer;
    transition: background-image ease .2s;
}

.newBeer:hover {
    background-image: url("../graphique/add_new_beer_hover.png");
    background-size: 80px 80px;
}

.visionneuse {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: #222;
    z-index: 2000;
    text-align: center;
}

.visionneuse .imageVisionneuse {
    margin-top: 40px;
    width: auto;
    box-shadow: 0px 0px 5px #000;
    background-color: #FFF;
    padding: 10px;
}

.visionneuse .iconeVisionneuse {
    cursor:pointer;
}

/***Pour l'affichage du formulaire d'�dition d'une bi�re (mode admin only)***/
.editBeer {
    text-align: center;
}

.editBeer h3 {
    background-color: #EEE;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid gray;
    cursor: pointer;
}

.editBeer h3:hover {
    border: 2px solid orange;
}


/****** Affichage des meilleurs bi�res ******/

.affBestBeer {
    float: left;
    height: 300px;
    width: 300px;
    cursor: pointer;
    margin: 10px;
}

.affBestBeer:hover {
    filter: brightness (120%);
    -webkit-filter: brightness(120%);
}

.affBestBeer img {
    height: 300px;
    width: 300px;
    object-fit: cover;
    float: left;
    border-radius: 10px;
}

.affBestBeer .nameBeer {
    font-family: PragRoman;
    position: absolute;
    background-color: white;
    opacity: 0.9;
    margin-top: 260px;
    width: 295px;
    line-height: 37px;
    padding-left: 5px;
    font-size: 20px;
    text-transform: capitalize;
    text-shadow: 0px 0px 5px #EEE;
    font-weight: normal;
    text-align: left;
    border-top: 3px solid orange;
}


/***********Pour l'affichage de la "couleur d'une bière"************/

.typeBeer {
    padding: 10px;
    text-align: center;
}

.typeBeer p {
    font-size: 16px;
    border-top: 1px solid gray;
}


/*******Affichage des basseries**********/

.affBrasserie {
    padding: 10px;
    border-bottom: 1px solid gray;
    text-align: left;
}

.affBrasserie .info {
    margin-top: -10px;
    margin-bottom: 10px;
}

.affBrasserie img {
    border-radius: 5px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
}

.affBrasserie img:hover {
    filter: brightness (120%);
    -webkit-filter: brightness(120%);
}


/****Pour afficher un établissement***/
.contentPresEtablis {
    /*background: linear-gradient(to bottom, #222222, #444444);*/
    /*background-color: #384454;*/
    margin-top:56px;
    background-color: var(--main-color-choc);
    color: whitesmoke;
}

.contentPresEtablis .titreEtablis {
    font-size: 50px;
    color: whitesmoke;
}

.contentPresEtablis .titreEtablis p {
    font-size: 18px;
    color: whitesmoke;
    line-height : 0px;
    text-align : right;
    letter-spacing: 0em;
}

.infoEtablis {
    color: whitesmoke;
    background-color: var(--main-color-choc);
    font-size: 16px;
}




/******Pour afficher les informations d'une bière******/
.contentPresBeer {
    background-color: var(--main-color-bg);
    color: #EEE;
}

.contentPresBeer .container-fluid{
    padding : 0px;
    background-color: var(--main-color-bg);
    color:#efefef;
    /*box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important;*/
    /*border : 1px solid #E1A624;*/
    
}

.presBeer {
    /*text-align : center;*/
    height: inherit;
}

.presBeer .logoImg {
    width: 100%;
    height: 100%;
    
    /*background-color : white;
    padding : 10px;*/
    /*border : 1px solid gray;*/
    object-fit: cover;
    z-index: 10;
}


/*Survol pour la possibilité d'ajouter un logo*/
.presBeer img[id="logoBeer"]:hover {
    filter: brightness (120%);
    -webkit-filter: brightness(120%);
}

.presBeer .option {
    z-index: 1;
    float: left;
    margin-top: -410px;
    height: 400px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity ease .5s;
    text-align: center;
}

.presBeer .option:hover {
    opacity: 1;
}

.presBeer .option img {
    width: 100px;
    height: 100px;
    background-color: silver;
    cursor: pointer;
    opacity: 0.7;
    padding: 10px;
    margin: 10px;
    margin-top: 100px;
    border-radius: 5px;
    transition: opacity ease .2s
}

.presBeer .option img:hover {
    opacity: 1;
}

.presBeer .titreBeer {
    font-size: 52px;
    text-align: left;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
    /*border-radius: 20px 0px 0px 20px;*/
    border-bottom: 3px solid var(--main-color-link);
    color: var(--main-color-bl);
}

.presBeer p {
    text-align: left;
    padding: 20px 20px 20px 0px;
    font-weight: normal;
    /*font-size: 18px;*/
}

.presBeer .description {
    font-weight: normal;
    font-size: 16px;
    border-bottom: 1px solid gray;
    padding: 20px;
}


/*affichage de la note générale*/

.rateg {
    height: 100px;
    width: 300px;
}


/*explication de la note*/

.exNote {
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
    color: gray;
}


/***********Présentation du chasseur************/

.chassepar {
    text-align: center;
    cursor: pointer;
    width: 154px;
    height: 154px;
    padding: 2px;
    border-radius: 75px;
    /*box-shadow: 0px 0px 5px #222;*/
    background: #ECECEC;
}

.chassepar:hover {
    filter: brightness (120%);
    -webkit-filter: brightness(120%);
}

.chassepar img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 75px;
}

.chassepar .pseudo {
    margin-top: -30px;
    font-family: 'Login';
    Font-size: 22px;
    font-weight: bold;
    color: white;
    text-shadow: 0px 0px 5px #222;
    /*margin-top : 130px;*/
}

.chassepar .titrechass {
    position: absolute;
    margin-top: -100px;
    margin-left: -30px;
    background-color: white;
    font-size: 12px;
    padding: 5px;
    border: 2px solid #666;
}


/***********Présentation du chasseur sur la page de bière************/

.chasseparBeer {
    text-align: center;
    z-index: 1000;
    cursor: pointer;
    width: 104px;
    height: 104px;
    padding: 2px;
    
    /*box-shadow: 0px 0px 5px #222;*/
    background: #ECECEC;
    
}

.chasseparBeer:hover {
    filter: brightness (120%);
    -webkit-filter: brightness(120%);
}

.chasseparBeer img {
    width: 100px;
    height: 100px;
    object-fit: cover;
 
}

.chasseparBeer .pseudo {
    margin-top: -30px;
    font-family: 'Login';
    Font-size: 22px;
    font-weight: bold;
    color: white;
    text-shadow: 0px 0px 5px #222;
    /*margin-top : 130px;*/
}

.chasseparBeer .titrechass {
    position: absolute;
    margin-top: -100px;
    margin-left: -30px;
    background-color: white;
    font-size: 12px;
    padding: 5px;
    border: 2px solid #666;
    transform: rotate(-45deg);
    color: #222;
}


/*VERSION LOGIN SOLO*/

.chasseparBig {
    text-align: center;
    margin-top: 10px;
    padding: 40px;
    /*box-shadow: 0px 0px 5px #222;*/
    border-radius: 175px;
}

.chasseparBig img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 3px;
    padding: 0px;
    box-shadow: 0px 0px 20px #222;
    background-color: #317AC1;
    border-radius: 175px;
}

.chasseparBig .pseudo {
    float: center;
    /*margin-top : -100px;*/
    font-family: 'Login';
    Font-size: 52px;
    font-weight: bold;
    color: #EFEFEF;
    text-shadow: 0px 0px 5px #444;
}

.chasseparBig .grade {
    float: center;
    margin-top: -30px;
    Font-size: 20px;
    color: #DAA520;
    text-shadow: 0px 0px 5px #444;
}

.rateI {
    height: 50px;
    clear: both;
}

.rateI img {
    height: 50px;
    width: 50px;
}

.presBeer div.rateI div.rightBeer {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 50px 50px;
    height: 50px;
    width: 25px;
    float: left;
}

.presBeer div.rateI div.leftBeer {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 50px 50px;
    height: 50px;
    width: 25px;
    float: left;
}


/******Permet l'affichage des notes *******/


/*Utilis� dans le fichier de function helper*/
.affNote {}

.affNote img {
    display: inline;
    height: 60px;
    width: 60px;
}

.affNoteCommentaire {
    display: inline;
}

.affNoteCommentaire img {
    display: inline;
    height: 40px;
    width: 40px;
}


/******Pour les images afficher sur la pages Bi�res******/


/*la visionneuse*/

.view {
    text-align: center;
}

.view img {
    width: 400px;
    height: 400px;
    border: 20px solid silver;
    border-radius: 10px;
    object-fit: cover;
}

.imgBeer {
    margin: 10px;
    width: 150px;
    height: 150px;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
}


/******Pour afficher les lieux sur la page v_beer ******/

.liste_lieux {
    color: #222;
}

.liste_lieux:hover {
    background-color: #FFC266;
    color: white;
    cursor: pointer;
}


/******Pour afficher les avis d�j� �mis sur la bi�re******/

.affrate {
    margin-bottom: 20px;
}

.affrate .pseudo {
    text-align: left;
    font-size: 20px;
    border-bottom: 1px solid gray;
}


/*v_beer : pour ajouter une photo*/

.affrate .addPicture img {
    height: 75px;
    width: 75px;
    object-fit: cover;
    border-radius: 3px;
    float: right;
    /*box-shadow: 0px 0px 5px #222;*/
}

.affrate .textarea {
    margin-top: 5px;
    font-weight: normal;
    text-align: left;
}


/*Pour ajouter un avis sur une bi�re DEPRECATED !!!*/

.rate {
    background: linear-gradient(to bottom, #DDD, transparent);
    border-top: 1px dashed #444;
    padding: 10px;
}

.rate img {
    height: 75px;
    width: 75px;
    object-fit: cover;
    border-radius: 3px;
}

.rate textarea {
    border-radius: 10px;
    border: 1px solid #ECECEC;
    padding: 5px;
    min-height: 15px;
    outline: none;
    font-size: 16px;
    color: #444;
    width: 100%;
}

.rate .pseudo {
    text-align: left;
    font-size: 20px;
    border-bottom: 1px solid gray;
}

.titre_rate {
    border-bottom: 1px solid gray;
    line-height: 32px;
    padding-left: 10px;
    text-align: left;
    font-size: 20px;
    clear: both
}


/*Pour l'affichage des votes*/

.rateInfo {
    height: 40px;
}

.rateInfo img {
    height: 40px;
    width: 40px;
}

div.rateInfo div.rightBeer {
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40px 40px;
    height: 40px;
    width: 20px;
}

div.rateInfo div.leftBeer {
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 40px 40px;
    height: 40px;
    width: 20px;
}


/****Code pour l'affichage des chopes pour noter l'avis*****/

div.rateBeer {
    height: 40px;
}

div.rateBeer div.rightBeer {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40px 40px;
    height: 40px;
    width: 20px;
    float: left;
}

div.rateBeer div.leftBeer {
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 40px 40px;
    height: 40px;
    width: 20px;
    float: left;
}

.beerOn {
    background: url(../graphique/beer.png);
}

.beerOff {
    background: url(../graphique/beerNB.png);
}


/****Code pour l'affichage du tabassage*****/

div.tabassageBeer {
    height: 40px;
    width: 100%;
}

div.tabassageBeer div.tabassage {
    cursor: pointer;
    background-repeat: no-repeat;
    background-size: 40px 40px;
    height: 40px;
    width: 40px;
    float: left;
}

.tabOn {
    background: url(../graphique/tabassage.png);
}

.tabOff {
    background: url(../graphique/tabassageNB.png);
}


/*v_lieux*/

.addLieu {
    z-index: 2;
    display: none;
    position: fixed;
    padding: 10px;
    left: 50%;
    top: 20%;
    font-size: 14px;
    text-align: center;
    min-width: 500px;
    margin-left: -250px;
    min-height: 300px;
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0px 0px 5px #222;
}


/*v_etablissemnet*/

.linkBeer {
    z-index: 10001;
    display: none;
    position: fixed;
    padding: 10px;
    left: 50%;
    top: 20%;
    font-size: 14px;
    text-align: center;
    min-width: 500px;
    margin-left: -250px;
    min-height: 300px;
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0px 0px 5px #222;
}

.pictureObj{
    width: 100px;
    height: 100px;
    margin: 5px;
    /*background-color : white;
    padding : 10px;*/
    /*border : 1px solid gray;*/
    border-radius: 10px;
    object-fit: cover;
}

.pictureObj:hover{
    width: 100px;
    height: 100px;
    margin: 5px;
    /*background-color : white;
    padding : 10px;*/
    /*border : 1px solid gray;*/
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0px 0px 5px orange;
    cursor: pointer;
}


/***************************************/
/* code couleur type de lieux */
.type_lieu_1{
    border: 2px solid #667c56;
}

.type_lieu_2{
    border: 2px solid #9e7948;
}

.type_lieu_3{
    border: 2px solid #4e4744;
}

.type_lieu_4{
    border: 2px solid #a62311;
}

.type_lieu_5{
    border: 2px solid #ea5a46;
}

.type_lieu_6{
    border: 2px solid #e0c300;
}

/*affichage des bulles d'informations sur les cartes*/
.customPopupLeaf .leaflet-popup-tip,
.customPopupLeaf .leaflet-popup-content-wrapper {
    border-radius: 5px;
    color:white;
    background-color:var(--main-color-bg);
    width : 400px;
}

.mapInfoBeer {
    text-align: left;
    font-size: 1.0rem;
    width : 360px;
}

.mapInfoBeer h3 {
    border-bottom: 1px solid orange;
    letter-spacing: -1px;
}

.mapInfoBeer p {
    text-align: left;
    font-size: 0.8rem;
}

.mapInfoBeer .btn {
    color: white;
}


/*Cadre d'affichage des cartes*/
#map_canvas {
    /*border: 1px solid #CCC;*/
}

/*affichage des villes sous forme de list*/
.city-list{
    margin-bottom: 20px;
    /*padding: 10px;
    box-shadow: 0px 0px 5px #232323;*/
    background-color:rgb(33, 37, 41);
    color : whitesmoke;
    /*border-radius : 3px;*/
    
}

.city-list li{
    /*margin-top: 20px;*/
    color : whitesmoke;
    cursor : pointer;
}

.city-list li:hover{
    /*margin-top: 20px;*/
    background-color:orange;
}

/*Image qui affiche l'icone de téléchargement de l'application*/

.downloadApp {
    transition: all 2s;
}

.downloadApp:hover {
    transform: rotate(-1080deg);
}


/*Affichage de l'icône de chargement des bières dans la pagede la cave*/

@keyframes nomAnim {
    from {
        transform: rotate(-1080deg);
    }
    to {
        transform: rotate(1080deg);
    }
}

.chargementBeer {
    /*transition: all 2s;
    transform : rotate(-1080deg);*/
    animation: nomAnim 5s ease-in infinite;
    height: 100px;
    width: 100px;
    text-align: center;
    margin-top: 10px;
}

/************EFFET SUR BOUTON**********************/
/*FIX ME : regression aussi sur l'image du download principale*/
.img_downloadApp{
    height: 250px;
    width: 250px;
    border-radius: 20px;
    background-color: var(--main-color-bf);
    box-shadow: 0 0 10px rgba(0, 0, 0);
}

.img_downloadApp:hover{
    box-shadow: 0 0 5px var(--main-color-link);
    background-color: var(--main-color-choc);
}

.deletePicture{
    height: 40px;
    width: 40px;
    border-radius: 25px;
}
.deletePicture:hover{
    box-shadow: 0 0 5px rgba(255, 0, 0);
}


/***********Classes relatives à l'affichages des statisitques d'un chasseur *****/

.note {
    font-size: 12px;
    color: gray;
}

.affStats p {
    height : 75px;
    padding-top : 15px;
    background-color: rgb(33, 37, 41);
    border : 1px solid #E1A624;
    line-height : 20px;    
    font-size: 16px;
    text-align: center;
    color: whitesmoke;
    border-radius: 5px;
}

.affStats td {
    
    
}

.affStats span {
    font-family: "PragRoman";
    font-weight: bold;
    font-size: 40px;
}

.affStats .infoStats {
    color: whitesmoke;
    font-style: italic;
    font-size: 12px;
    text-align: center;
}


/************SURCHARGE BOOTSTRAP v4****************/

.btn-outline-nav {
    color: var(--main-color-link);
    background-color: transparent;
    background-image: none;
    border-color: var(--main-color-link);
    border-radius: 50px;
    padding: 8px;
    padding-left: 16px; 
    padding-right: 16px;
}

.btn-outline-nav:hover {
    color: #fff;
    background-color: var(--main-color-link);
    border-color: var(--main-color-link);
}

.btn-outline-nav:focus,
.btn-outline-nav.focus {
    color: #fff;
    background-color: var(--main-color-link);
    border-color: var(--main-color-link);
}

.btn-outline-nav.disabled,
.btn-outline-nav:disabled {
    color: #ffa600;
    background-color: transparent;
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color-link);
    border-color: var(--main-color-link);
    border-radius: 50px;
    padding: 8px;
    padding-left: 16px; 
    padding-right: 16px;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-color-light);
    border-color: var(--main-color-light);
}

.btn-primary {
    color: #fff;
    background-color: var(--main-color-link);
    border-color: var(--main-color-link);
    border-radius: 50px;
    padding: 8px;
    padding-left: 16px; 
    padding-right: 16px;
}

.btn-primary:hover {
    color: #fff;
    background-color: var(--main-color-light);
    border-color: var(--main-color-light);
}

.btn-download{
    color: #fff;
    font-weight: bold;
    /*background-color: var(--main-color-link);*/
    border-color: var(--main-color-link);
    border-radius: 50px;
    padding: 16px;
    padding-left: 32px; 
    padding-right: 32px;
}

.btn-download:hover {
    color: #fff;
    background-color: var(--main-color-light);
    border-color: var(--main-color-light);
}

/*Pour la barre de navigation*/


/*Surcharge Bootstrap*/

.navbar-custom {
    background: #222;
}

.navbar-brand {
    color: #CCC;
    cursor: pointer;
}

.navbar-brand:hover {
    cursor: pointer;
}

.navbar-brand img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.navbar-brand-mobile{
    transform: translateX(-50%);
    left: 50%;
    position: absolute;
    top: 0;
}

.nav-link {
    color: var(--main-color-bl);
    font-size: 18px;
}

.nav-link:hover {
    color: var(--main-color-light);
    text-decoration: none;
}

.nav-link:focus {
    color: var(--main-color-light);
    text-decoration: none;
}

.footer {
    position: absolute;
    width: 100%;
    height: 60px;
    /* Set the fixed height of the footer here */
    line-height: 60px;
    /* Vertically center the text there */
    background-color: #222222;
    border-top: 1px solid black;
    color: #CCC;
}

/*Permet de mettre les pages au centres 
Utilisé pour l'inscription et la connexion #384454*/
.vcenter_page {
    background-color : #1f252e;
}

.vcenter_page .container {
    height: 100%;
}

.vcenter_page .container:first-child .row  {
    height: 100%;
}