/* -----------------------------------------------------------------
## Custom CSS
----------------------------------------------------------------- */
/* Add here all your CSS customizations */

.container_search {
    position: fixed;
    z-index: 999;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    top: -100%;
    transition: all ease-in-out 300ms;
}
#form_search{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.active_search{
    top: 0;
}
.fa-magnifying-glass{
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all ease 200ms;
}
.fa-magnifying-glass:hover{
    color: rgba(255, 255, 255, 1);
}
#form_search input{
    width: 70% !important;
    border: none;
    outline: none;
    font-size: 25px;
}
#form_search button{
    margin-left: 5px;
    border: none;
    background: #fff;
    font-size: 25px;
    outline: none;
    border: none;
    transition: all ease 200ms;
}
#form_search button:hover{
    background: #fe440f;
    color: #fff;
}
.search_btn_container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #fff;
    padding: 0 0 0 15px;
}

.autocomplete-suggestions { z-index:9999; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; border: 1px solid #999; background: #FFF; cursor: default; overflow: auto; -webkit-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); -moz-box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); box-shadow: 1px 4px 3px rgba(50, 50, 50, 0.64); }
.autocomplete-suggestion { padding: 10px 15px; white-space: nowrap; overflow: hidden; }
.autocomplete-no-suggestion { padding: 5px 10px;}
.autocomplete-selected { background: #F0F0F0; }
.autocomplete-suggestions strong { font-weight: bold; color: #FC3C2D; }
.autocomplete-group { padding: 2px 5px; font-weight: bold; font-size: 16px; color: #e12454; display: block; border-bottom: 1px solid #000; }

                           