/* --------------- */
/* -- Résultats -- */
/* --------------- */

.boite-select1 {
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: none;
    width: 200px;
    height: 340px;
    justify-content: center;
    justify-items: center;
}

.boite-select2 {
    margin: 0 auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border: none;
    width: 200px;
    height: 340px;
    justify-content: center;
    justify-items: center;
}

/*************** lISTE DÉROULANT *************/

select {
    margin: 0 auto;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    outline: 0;
    box-shadow: none;
    border: 0 !important;
    flex: 1;
    padding: 0 .5em;
    color: #0c0c0c;
    cursor: pointer;
    background: url('../images/icones/fleche_bas_15x15.png') no-repeat right 0.5em center;
}

select img {
    width: 20px;
}

select::-ms-expand {
    display: none;
}

.select {
    margin: 0 auto;
    position: relative;
    display: flex;
    width: 10em;
    height: 30px;
    line-height: 3;
    overflow: hidden;
    border-radius: .25em;
    background: rgb(248, 247, 245);
}

.select::after {
    content: '\25BC'; /* Flèche vers le bas */
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    padding: 0 1em;
    cursor: pointer;
    pointer-events: none;
    transition: color 0.25s ease;
}

.select:hover::after {
    color: #b2b9b8;
}