/*
 * Quote Search Styles
 * Author: Tom Schweers
 * Created: 2/21/23
 * Description: Style the Search for Quote input at the top of all the Trident pages.
*/

/* TS commented 5/30/24 for BL 42562
[name ~= add_to_quote] button span {
    display : none;
}
*/

#quoteSearchWrapper {
    display: block;
    position: absolute;
    left: 160px;
    top: 11px;
    width: 200px
}
#quoteSearchInput {
    background: url("func_magnify_ena.png") no-repeat right;
    background-position: 95% 50%;
    background-color: #fff;
    color: #000;
    box-sizing: border-box;
    padding: 8px;
    outline: none;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size:12px;
    transition: all .5s;
    -webkit-transition:all .5s;
    -moz-transition: all .5s;
    width: 100%;
}
#quoteSearchInput:hover {
    width: 220px;
    box-shadow: 0 5px 5px rgba(15, 15, 51, 0.4);
}