.tls-search{
    max-width:700px;
    margin:0 auto;
    position:relative;
}

.tls-search input{
    width:100%;
    padding:16px 20px;
    border:1px solid #d8dce3;
    border-radius:12px;
    font-size:17px;
    outline:none;
    transition:.25s;
}

.tls-search input:focus{
    border-color:#123B73;
    box-shadow:0 0 0 3px rgba(18,59,115,.10);
}

.tls-results{

    display:none;

    width:100%;

    margin-top:20px;

    background:#fff;

    border-radius:12px;

    border:1px solid #e5e5e5;

    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.tls-item{

    display:block;

    width:100%;

    padding:14px 18px;

    border-bottom:1px solid #ececec;

    text-decoration:none;

    color:#222;

    transition:.2s;

    box-sizing:border-box;

}

.tls-item:hover{

    background:#f5f8fc;

    color:#123B73;

}

.tls-item:last-child{
    border-bottom:none;
}

.tls-view-all{
    display:block;
    padding:16px 20px;
    text-align:center;
    font-weight:600;
    color:#123B73;
    text-decoration:none;
    border-top:1px solid #eee;
    transition:.2s;
}

.tls-view-all:hover{
    background:#f5f8fc;
}

.tls-family{
    font-weight:600;
    color:#123B73;
    background:#f5f8fc;
}

.tls-view-all{

    display:block;

    text-align:center;

    padding:16px;

    font-weight:700;

    color:#123B73;

    text-decoration:none;

    background:#f5f8fc;

    border-top:1px solid #e5e5e5;

    transition:.2s;

}

.tls-view-all:hover{

    background:#123B73;

    color:#fff;

}