.search-label {
    display: inline-block;
    margin-right: 0.75rem;
}

.search-hr {
    margin: 0.3125rem 0;
}

.search-submit {
    display: inline-block;
    float: right;
}

input[type="text"].search-input {
    width: 92%;
    display: inline-block;
}

@media screen and (max-width: 1024px) {
    input[type="text"].search-input {
        width: 90%;
    }
}

@media screen and (max-width: 800px) {
    input[type="text"].search-input {
        width: 85%;
    }
}

@media screen and (max-width: 700px) {
    .search-history1 {
        display: none;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 10px;
        margin-bottom: 10px;
    }
    .search-history1 ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .search-history1 ul li {
        margin-bottom: 5px;
    }
    .search-history1 ul li a {
        text-decoration: none;
        color: #007BFF;
    }
    .search-history1 ul li a:hover {
        text-decoration: underline;
    }    
}

@media screen and (min-width: 701px) {
    .search-history1 {
        display: none !important;
    }  
}