/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 2/mar/2017, 14:55:22
    Author     : filipemurteira
*/


.menuCliente{
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    
    min-width: 180px;
    text-align: center;
}

.menuCliente .subMenu{
    position: absolute;
    top: 100%;
    width: 100%;
    text-align: left;
    background-color: #ebe9e9;
    border-top: 1px solid #FFFFFF;
    padding: 10px;
    display: block;
    
    z-index: 10;
    
    visibility: hidden;
    opacity: 0;
    
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.menuCliente.aberto .subMenu,
.menuCliente:hover .subMenu{
    visibility: visible;
    opacity: 1;
}
.menuCliente .subMenu a{
    display: block;
    color: #222222;
    font-size: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.menuCliente .subMenu a .fa{
    min-width: 14px;
    text-align: center;
}
.menuCliente .subMenu a.active,
.menuCliente .subMenu a:hover{
    color: #bc8d15;
}

/* Menu Cliente Mobile */
.menuClienteM .subMenu{
    text-align: left;
    background-color: #ebe9e9;
    border-top: 1px solid #FFFFFF;
    padding: 15px 20px;
    display: block;
    
    z-index: 10;
    
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.menuClienteM .btCliente b{
    color: #ffffff;
}
.menuClienteM .subMenu a{
    display: block;
    color: #222222;
    font-size: 12px;
    padding-top: 3px;
    padding-bottom: 3px;
}
.menuClienteM .subMenu a .fa{
    min-width: 14px;
    text-align: center;
}
.menuClienteM .subMenu a.active,
.menuClienteM .subMenu a:hover{
    color: #bc8d15;
}

/* Pesquisa */
.itemPesquisa{
    margin-top: 15px;
}
.itemPesquisa b{
    font-size: 18px;
    color: #b08d18;
}
.itemPesquisa a{
    font-size: 12px;
    color: #577b6f;
    font-weight: normal;
    display: block;
}

.itemPesquisa a:hover{
    
    color: #bc8d15;
    }

.itemPesquisa a .fa{
    min-width: 15px;
}