/*centre la bar de recherche*/
body{
    overflow : hidden;
}
.container_total_recherche{
    display:flex;
}
.container_recherche{
    display: flex;
    border: #fff solid 2px;
    background-color:rgba(0,0, 0, 0.5);
    border-radius: 5px;
    margin: 0 auto;
    margin-top:1vh;
    width: 50%;
    height:5vh;
    text-align: center;
}
.container_recherche button {
    background-color:rgba(0,0, 0, 0.5);
    border-color:white;
    border-right:1vh;
    border-bottom:1vh;
    border-top:1vh;
}
.container_recherche img{
    width:100%;
    height: 100%;
    cursor: pointer;
}
.container_recherche input{
    width: 100%;
    height:5vh;
    border-radius: 5px;
    border: none;
    padding-left: 5px;
    background-color:rgba(0,0, 0, 0);
    color: #fff;
    font-size: 1.1em;
    font-weight: 1000;
}


.container_recherche input::placeholder{
    color: rgba(94, 91, 91);
}

.container_recherche input:focus{
    outline: none;
}
.container_recherche_v2{
    display: none;
    border: #fff solid 2px;
    background-color:rgba(0,0, 0, 0.5);
    border-radius: 5px;
    margin: 0 auto;
    margin-top:1vh;
    width: 50%;
    height:5vh;
    text-align: center;
}
.container_recherche_v2 form{
    width:100%;
    display:flex;
}
.container_recherche_v2 form input{
    width: 100%;
    height:5vh;
    border-radius: 5px;
    border: none;
    padding-left: 5px;
    background-color:rgba(0,0, 0, 0);
    color: #fff;
    font-size: 1.1em;
    font-weight: 1000;
}
.container_recherche_v2 button {
    background-color:rgba(0,0, 0, 0.5);
    border-color:white;
    border-right:1vh;
    border-bottom:1vh;
    border-top:1vh;
}
.container_recherche_v2 button img{
    width:100%;
    height: 100%;
    cursor: pointer;
}

.container_recherche_v2 form input::placeholder{
    color: rgba(94, 91, 91);
}

.container_recherche_v2 form input:focus{
    outline: none;
}
.container_scroll{
    position:relative;
    height:65vh;
    overflow-y: scroll;
    overflow-x: hidden;
    margin-top: 3vh;
    margin-bottom: 1vh;
    margin-left: 1vh;
    margin-right: 1vh;
    border: #fff solid 2px;
    background-color:rgba(0,0, 0, 0.7);
    border-radius: 5px;
    padding: 1vh;
    padding-bottom: 0;
}
.container_scroll::-webkit-scrollbar {
    display: none;
}
.container_resultats{
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.container_plat{
    margin-left:10px;
    margin-right:10px;  
    margin-bottom: 3vh;
    width:35vh;
    height: 100%;
    background-color: rgb(0, 0, 0);
    border : 2px solid #fff;
    border-radius: 7px;
    text-align: center;
    transition: 0.25s;
    display: unset;
}

.container_plat:hover{
    transform: scale(1.06);
    cursor: pointer;
}

.container_plat_img{
    margin: 0 auto;
    width: 35vh;
    height: 35vh;
    border-bottom: 2px solid #fff;
    border-radius: 7px;
}

.container_plat_img img{
    border-radius:7px;
    width: 100%;
    height: 100%;
    -webkit-user-drag: none;
}

.container_plat_texte{
    margin-top: 5px;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
    
    font-size: 1.2em;
    font-weight: 1000;
    color: #fff;
}


#rechercheHdud{
    display: flex;
    flex-direction: column;
}

#tagsD{
    display: flex;
    width: 52%;
    flex-wrap: wrap;
    text-align: center;
    position: relative;
    left: 25%;
    margin-top: 10vh;
}

.tagsIn {
    text-align: center;
    font-size:0.85vw;
    justify-content: center;
    background: url('./../img/tagLeft.png') no-repeat, url("./../img/tag.png") no-repeat, url("./../img/tagRight.png") no-repeat;
    background-size: 20px 80%, calc(101% - 40px) 80%, 20px 80%;
    background-position: left, center, right;
    height:5vh;
    display:flex;
    flex-direction: column;
    color:white;
    padding-left:1%;
    padding-right:3%;
    margin-right:0.4vh;
    caret-color: transparent;
    cursor: default;
  }

  .tagsIn:hover{
    color:red;
    cursor: pointer;
    background: url('./../img/tagLeftDel.png') no-repeat, url("./../img/tagDel.png") no-repeat, url("./../img/tagRightDel.png") no-repeat;
    background-size: 20px 80%, calc(101% - 40px) 80%, 20px 80%;
    background-position: left, center, right;
  }


  