.loader_container {
    width: 100%;
    height: 100%;
    /*position: absolute;*/
    background: rgba(0,0,0,0.2);
    z-index: 9;
}

.fade_content {
    opacity: 0.4;
}

#loading {
    width: 50px;
    height: 50px;
    margin: 30px auto;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
    background: #d6b368;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}

/* RECHERCHE */

#div_list_result_search {
    border: 1px solid #bcbcbc;
    background-color: #fff;
    max-height: 210px;
}
div.row_result {
    padding: 5px 6px;
    cursor: pointer;
    border-bottom: 1px solid #dddddd;
}
div.row_result:last-child{
    border-bottom: none;
}
div.row_result:hover {
    background-color: #f1f1f1;
    transition:0.2s;
}
/* FIN RECHERCHE */