/*
 * Search form
 */
.searchForm {
    position: relative;

    input {
        width: 100%;
        border: none;
        line-height: 40px;
        padding: 0 15px;
    }

    button {
        width: 40px;
        height: 40px;
        text-align: center;
        line-height: 40px;
        background: @primary_color;
        color: #fff;
        position: absolute;
        right: 0;
        top: 0;
        border: none;
        cursor: pointer;
    }
}

/*
 * Search results
 */
.searchResultsWrap {

    .results {
        margin-bottom: 20px;

        li {
            padding: 20px 0;

            h2 {
                margin: 0;
                .ems(24);
            }
        }
    }
}
