/***Loader***/
/* Start by setting display:none to make this hidden.
   Then we position it in relation to the viewport window
   with position:fixed. Width, height, top and left speak
   speak for themselves. Background we set to 80% white with
   our animation centered, and no-repeating */
.divLoader {
    position: relative;
}

.divModalLoader {
    display: none;
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .5) url('../../images/app-loader.gif') 50% 50% no-repeat;
}

/* When the body has the loading class, we turn
   the scrollbar off with overflow:hidden */
.divLoader.loading {
    overflow: hidden;
}

/* Anytime the body has the loading class, our
   modal element will be visible */
.divLoader.loading .divModalLoader {
    display: block;
}

.section .agencies .form-search form  {
    width: 100%;
    max-width: 100%;
}

.section .agencies .form-search form input{
    height: 50px;
    width: 100%;
    padding: 5px 25px 5px 10px;
    font-size: 25px;
    border: 1px solid #D8D8D8;
    color: #4e4949;
}

.section .agencies .form-search form button i {
    font-size: 30px;
    top: 5px;
    position: relative;
}
