﻿/*#region Standard Search Button Css*/

.searchButtonDiv * {
    box-sizing: border-box !important;
}

.searchButtonDiv {
    width: 100% !important;
}
    /* Style the search field */
    .searchButtonDiv input[type=text] {
        padding: 5px !important;
        font-size: 17px !important;
        border: 1px solid grey !important;
        float: left !important;
        width: 80% !important;
        background: #f1f1f1 !important;
        border-top-left-radius: .25rem !important;
        border-bottom-left-radius: .25rem !important;
    }

    /* Style the submit button */
    .searchButtonDiv .searchButtonButtonElement {
        float: left !important;
        width: 20% !important;
        padding: 5px !important;
        background: #337ab7;
        color: white !important;
        font-size: 17px !important;
        border: 1px solid grey !important;
        border-left: none !important; /* Prevent double borders */
        cursor: pointer !important;
        border-top-right-radius: .25rem !important;
        border-bottom-right-radius: .25rem !important;
    }

    .searchButtonDiv a:hover {
        background: #0b7dda !important;
    }

    /* Clear floats */
    .searchButtonDiv::after {
        content: "" !important;
        clear: both !important;
        display: table !important;
    }

/*#endregion Standard Search Button Css */