.search-query, .search-submit {
    position: absolute;
    top: 0;
    right: 8px;
}
.search-query {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 36px;
    padding: 0 44px 0 8px;
    width: calc(100% - 300px);
    border: 0;
    border-radius: 2px;
    box-shadow: rgba(100, 100, 100, 0.247059) 0px 1px 3px 0px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.search-submit {
    border: 0;
    background-color: transparent;
    color: #3498DB;
    font-size: 18px;
    line-height: 36px;
    padding: 0;
    width: 36px;
    cursor: pointer;
}
@media (max-width: 479px) {
    .search-query {
        position: relative;
        left: 8px;
        width: calc(100% - 16px);
        box-sizing: border-box;
    }
    .search-submit {
        top: 59px;
    }
}
.search-description {
    text-align: center;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    padding: 0 8px;
}
.search-description p {
    margin: 60px 0;
    font-size: 16px;
    color: #888;
}
.search-description a:first-of-type {
    margin-right: 80px;
}
.search-loading {
    display: none;
    text-align: center;
    position: relative;
    top: 20px;
    font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.5);
}
.search-results {
    padding: 0 8px;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}
.search-results-row {
    padding: 10px;
    padding-bottom: 1px;
    margin: 12px 0;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 100, 0.247059) 0px 1px 3px 0px;
}
.search-results-row a {
    font-size: 18px;
}
.search-results-row a:hover {
    text-decoration: underline;
}
.search-results-row span {
    font-size: 14px;
    color: #555;
}
.search-results-row p {
    font-size: 16px;
    color: #333;
}
.search-pagination {
    list-style: none;
    font-weight: 400;
    color: #3498DB;
    padding: 0;
    margin: 0 auto;
    counter-reset: pagination 0;
}
.search-pagination li {
    float: left;
    cursor: pointer;
    width: 10%;
    text-align: center;
    line-height: 30px;
    counter-increment: pagination;
    margin-bottom: 12px;
}
.search-pagination li:before {
    content: counter(pagination, decimal);
}
.search-pagination li.bold {
    font-weight: 700;
    color: #559;
}