/* Theme Name: The Project - Responsive Website Template
Author:HtmlCoder
Author URI:http://www.htmlcoder.me
Author e-mail:htmlcoder.me@gmail.com
Version:1.0.0
Created:December 2014
License URI:http://support.wrapbootstrap.com/
File Description: Place here your custom CSS styles
*/
/* =============== Estilos do autocomplete =============== */

.ui-autocomplete {
    background: #fff;
    border-top: 1px solid #ccc;
    cursor: pointer;
    font: 15px 'Open Sans',Arial;
    margin-left: 3px;
    width: 493px !important;
    position: fixed;
    z-index: 9999 !important;
}

    .ui-autocomplete .ui-menu-item {
        list-style: none outside none;
        padding: 7px 0 9px 10px;
    }

        .ui-autocomplete .ui-menu-item:hover {
            background: #eee
        }

    .ui-autocomplete .ui-corner-all {
        color: #666 !important;
        display: block;
    }

#dvIndique {
    display: none;
}

.mainmenu .submenu {
    display: none;
}

.mainmenu li:hover .submenu {
    display: block;
    max-height: 200px;
}

.submenu {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: all 0.5s ease-out;
}

.pulse {
    animation: pulse 0.7s infinite;
    -webkit-animation: pulse 0.7s infinite;
    margin: 0 auto;
    animation-direction: alternate;
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -webkit-filter: brightness(100%);
    }

    100% {
        -webkit-transform: scale(1.2);
        -webkit-filter: brightness(250%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        filter: brightness(100%);
    }

    100% {
        transform: scale(1.2);
        filter: brightness(250%);
    }
}