.fm-search-wrapper{
    position: relative;

    .fm-input-group{
        position: relative;
        display: block;
        &:after{
            content:"\55";
            font-family: ETModules;
            width: 50px;
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            background: #4f331d;
            color: #fff;
            font-size: 26px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        #fm-search-input{
            width: 100%;
            border: none;
            padding: 18px 60px 18px 10px;
            &::placeholder{
                color: #000;
            }
        }
    }

    .fm-search-results {
        display: none;
        margin-top: 5px;
        background: #fff;
        border: 1px solid #ddd;
        max-height: 300px;
        overflow-y: auto;
        padding: 10px;
        font-size: 0.95em;
        line-height: 1.4;
        box-shadow: 0 2px 6px rgba(0,0,0,.1);
        position: absolute;
        z-index: 1;
        bottom: 0;
        transform: translateY(100%);
        width: 100%;
        &.active{
            display: block;
        }
        .fm-section {
            margin-bottom: 10px;
        }
        ul {
            list-style: none;
            margin: 0;
            padding-left: 10px;
            li {
                margin: 3px 0;
            }
        }
        strong{
            color: #4f331d;
        }
        a {
            color: #4f331d;
            text-decoration: none;
            &:hover {
                text-decoration: underline;
            }
        }
    }
    .fm-loading,
    .fm-error,
    .fm-no-result {
        color: #777;
        margin: 0;
    }
}