﻿.basic-search .Reset_button {
    width: 18%;
    height: 40px;
    background: linear-gradient(#eee, #fff);
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 0 #eee;
    margin-left: 5px;
    text-shadow: 0 -1px 0 #000;
    font-family: 'Nunito', Helvetica, Arial, Lucida, sans-serif;
    letter-spacing: 3px
}

.basic-search #SearchTerm {
    width: 80%;
}



.basic-search .Reset_button:hover {
    animation: glow 800ms ease-out infinite alternate;
    background: #002147;
    background: linear-gradient(#ccc, #ddd);
    border-color: #002147;
    box-shadow: 0 0 5px rgb(0 33 71 / 20%), inset 0 0 5px rgb(0 33 71 / 10%), 0 2px 0 #000;
    color: #000;
    outline: none;
}



@media screen and (max-width: 480px) {
    .basic-search #SearchTerm {
        width: 100%;
    }

    .basic-search .Reset_button {
        width: 100%;
        margin-left: 0px;
        margin-top: 5px;
    }
}

@media (min-width:480px) and (max-width: 680px) {
    .basic-search #SearchTerm {
        width: 70%;
    }

    .basic-search .Reset_button {
        width: 27%;
    }
}

@media (min-width:680px) and (max-width: 999px) {
    .basic-search #SearchTerm {
        width: 80%;
    }

    .basic-search .Reset_button {
        width: 17%;
    }
}

@media (min-width:999px) {
    .basic-search #SearchTerm {
        width: 85%;
    }

    .basic-search .Reset_button {
        width: 14%;
    }
}
