
.gz-home-search{
    width:fit-content;
    margin:0 auto;
}

.gz-home-search-grid{

    display:grid;

    grid-template-columns:260px 260px 70px;

    gap:10px;

    background:#fff;

    padding:10px;

    border-radius:999px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    align-items:center;
}

.gz-home-search input{

    height:60px;

    font-size:15px;

    border:none;

    border-radius:999px;

    box-shadow:none;

    background:#fafafa;

    padding:0 20px;

    outline:none;
}

.gz-home-search button{

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#6F3DFF;

    color:#fff;

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:0;
}

.gz-home-search button:hover{
    opacity:.9;
}

.gz-search-btn svg{
    width:20px;
    height:20px;
}

/* =========================
   AUTOCOMPLETE
========================= */

.gz-ubicacion-wrapper{
    position:relative;
}

#gz-autocomplete{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-radius:16px;
    margin-top:8px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    z-index:9999;
    overflow:hidden;
}

.gz-autocomplete-item{
    padding:14px 18px;
    cursor:pointer;
    border-bottom:1px solid #eee;
    transition:.2s;
}

.gz-autocomplete-item:hover{
    background:#f3edff;
    padding-left:22px;
}

.gz-autocomplete-item strong{
    display:block;
    color:#222;
    font-size:15px;
    font-weight:600;
}

.gz-autocomplete-item small{
    display:block;
    margin-top:4px;
    color:#777;
    font-size:13px;
    line-height:1.4;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .gz-home-search{
        width:100%;
    }

    .gz-home-search-grid{
        grid-template-columns:1fr;
        border-radius:24px;
    }

    .gz-home-search input,
    .gz-home-search button{
        height:54px;
    }

    .gz-home-search button{
        width:100%;
        border-radius:18px;
    }

}