/*
 Nancy Novedades
 Componentes auxiliares da loja
*/

.store-float-whatsapp{
    position:fixed;

    right:20px;
    bottom:20px;

    z-index:999;

    width:55px;
    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:#20c96b;

    color:#fff !important;

    text-decoration:none !important;

    font-size:24px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.20);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.store-float-whatsapp:hover{
    transform:translateY(-3px) scale(1.03);

    box-shadow:
        0 12px 30px rgba(0,0,0,.25);
}

.store-search{
    position:relative;

    flex:1;

    max-width:420px;
}

.store-search input{
    width:100%;

    height:43px;

    padding:0 15px 0 42px;

    border:1px solid #e5e5e5;

    border-radius:11px;

    outline:none;

    background:#fafafa;
}

.store-search input:focus{
    border-color:#ff9a68;

    box-shadow:
        0 0 0 3px rgba(255,90,0,.08);
}

.store-search-icon{
    position:absolute;

    left:15px;
    top:50%;

    transform:translateY(-50%);

    color:#999;
}
